diff -Nru ktexteditor-5.28.0/autotests/input/md5checksum.txt ktexteditor-5.31.0/autotests/input/md5checksum.txt --- ktexteditor-5.28.0/autotests/input/md5checksum.txt 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/input/md5checksum.txt 2017-02-05 11:12:49.000000000 +0000 @@ -5467,7 +5467,7 @@ { KTextEditor::Attribute::Ptr attrib(new KTextEditor::Attribute()); - KTextEditor::ViewPrivate *view = m_views.empty() ? Q_NULLPTR : m_views.begin().value(); + KTextEditor::ViewPrivate *view = m_views.empty() ? nullptr : m_views.begin().value(); if (!view) { qCWarning(LOG_PART) << "ATTENTION: cannot access lineAttributes() without any View (will be fixed eventually)"; return attrib; diff -Nru ktexteditor-5.28.0/autotests/src/bug205447.cpp ktexteditor-5.31.0/autotests/src/bug205447.cpp --- ktexteditor-5.28.0/autotests/src/bug205447.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/bug205447.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -56,7 +56,7 @@ { // set up document and view and open test file KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); const QUrl url = QUrl::fromLocalFile(QLatin1String(TEST_DATA_DIR"bug205447.txt")); doc.setEncoding(QStringLiteral("UTF-8")); QVERIFY(doc.openUrl(url)); @@ -85,7 +85,7 @@ { // set up document and view and open test file KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); const QUrl url = QUrl::fromLocalFile(QLatin1String(TEST_DATA_DIR"bug205447.txt")); doc.setEncoding(QStringLiteral("UTF-8")); QVERIFY(doc.openUrl(url)); diff -Nru ktexteditor-5.28.0/autotests/src/bug286887.cpp ktexteditor-5.31.0/autotests/src/bug286887.cpp --- ktexteditor-5.28.0/autotests/src/bug286887.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/bug286887.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -53,7 +53,7 @@ KTextEditor::DocumentPrivate doc(false, false); // view must be visible... - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); diff -Nru ktexteditor-5.28.0/autotests/src/bug313759.cpp ktexteditor-5.31.0/autotests/src/bug313759.cpp --- ktexteditor-5.28.0/autotests/src/bug313759.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/bug313759.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -56,7 +56,7 @@ // set up document and view KMainWindow *toplevel = new KMainWindow(); KTextEditor::DocumentPrivate *doc = new KTextEditor::DocumentPrivate(true, false, toplevel); - KTextEditor::ViewPrivate *view = static_cast(doc->createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc->createView(nullptr)); bool outputWasCustomised = false; TestScriptEnv *env = new TestScriptEnv(doc, outputWasCustomised); const QUrl url = QUrl::fromLocalFile(QLatin1String(TEST_DATA_DIR"bug313759.txt")); diff -Nru ktexteditor-5.28.0/autotests/src/bug313769.cpp ktexteditor-5.31.0/autotests/src/bug313769.cpp --- ktexteditor-5.28.0/autotests/src/bug313769.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/bug313769.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -61,7 +61,7 @@ doc.buffer().ensureHighlighted(doc.lines()); // view must be visible... - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(900, 800); view->config()->setDynWordWrap(true); diff -Nru ktexteditor-5.28.0/autotests/src/bug317111.cpp ktexteditor-5.31.0/autotests/src/bug317111.cpp --- ktexteditor-5.28.0/autotests/src/bug317111.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/bug317111.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -56,7 +56,7 @@ // set up document and view KMainWindow *toplevel = new KMainWindow(); KTextEditor::DocumentPrivate *doc = new KTextEditor::DocumentPrivate(true, false, toplevel); - KTextEditor::ViewPrivate *view = static_cast(doc->createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc->createView(nullptr)); bool outputWasCustomised = false; TestScriptEnv *env = new TestScriptEnv(doc, outputWasCustomised); const QUrl url = QUrl::fromLocalFile(QLatin1String(TEST_DATA_DIR"bug317111.txt")); diff -Nru ktexteditor-5.28.0/autotests/src/codecompletiontestmodel.h ktexteditor-5.31.0/autotests/src/codecompletiontestmodel.h --- ktexteditor-5.28.0/autotests/src/codecompletiontestmodel.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/codecompletiontestmodel.h 2017-02-05 11:12:49.000000000 +0000 @@ -34,7 +34,7 @@ Q_OBJECT public: - CodeCompletionTestModel(KTextEditor::View *parent = 0L, const QString &startText = QString()); + CodeCompletionTestModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()); KTextEditor::View *view() const; KTextEditor::CodeCompletionInterface *cc() const; @@ -52,7 +52,7 @@ Q_OBJECT public: - AbbreviationCodeCompletionTestModel(KTextEditor::View *parent = 0L, const QString &startText = QString()); + AbbreviationCodeCompletionTestModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()); QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE; diff -Nru ktexteditor-5.28.0/autotests/src/codecompletiontestmodels.h ktexteditor-5.31.0/autotests/src/codecompletiontestmodels.h --- ktexteditor-5.28.0/autotests/src/codecompletiontestmodels.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/codecompletiontestmodels.h 2017-02-05 11:12:49.000000000 +0000 @@ -33,7 +33,7 @@ Q_OBJECT Q_INTERFACES(KTextEditor::CodeCompletionModelControllerInterface) public: - CustomRangeModel(KTextEditor::View *parent = 0L, const QString &startText = QString()) + CustomRangeModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()) : CodeCompletionTestModel(parent, startText) {} Range completionRange(View *view, const Cursor &position) Q_DECL_OVERRIDE @@ -65,7 +65,7 @@ Q_OBJECT Q_INTERFACES(KTextEditor::CodeCompletionModelControllerInterface) public: - CustomAbortModel(KTextEditor::View *parent = 0L, const QString &startText = QString()) + CustomAbortModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()) : CodeCompletionTestModel(parent, startText) {} @@ -83,7 +83,7 @@ Q_OBJECT Q_INTERFACES(KTextEditor::CodeCompletionModelControllerInterface) public: - EmptyFilterStringModel(KTextEditor::View *parent = 0L, const QString &startText = QString()) + EmptyFilterStringModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()) : CodeCompletionTestModel(parent, startText) {} @@ -98,7 +98,7 @@ Q_OBJECT Q_INTERFACES(KTextEditor::CodeCompletionModelControllerInterface) public: - UpdateCompletionRangeModel(KTextEditor::View *parent = 0L, const QString &startText = QString()) + UpdateCompletionRangeModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()) : CodeCompletionTestModel(parent, startText) {} @@ -124,7 +124,7 @@ Q_OBJECT Q_INTERFACES(KTextEditor::CodeCompletionModelControllerInterface) public: - StartCompletionModel(KTextEditor::View *parent = 0L, const QString &startText = QString()) + StartCompletionModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()) : CodeCompletionTestModel(parent, startText) {} @@ -150,7 +150,7 @@ Q_OBJECT Q_INTERFACES(KTextEditor::CodeCompletionModelControllerInterface) public: - ImmideatelyAbortCompletionModel(KTextEditor::View *parent = 0L, const QString &startText = QString()) + ImmideatelyAbortCompletionModel(KTextEditor::View *parent = nullptr, const QString &startText = QString()) : CodeCompletionTestModel(parent, startText) {} diff -Nru ktexteditor-5.28.0/autotests/src/completion_test.cpp ktexteditor-5.31.0/autotests/src/completion_test.cpp --- ktexteditor-5.28.0/autotests/src/completion_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/completion_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -93,7 +93,7 @@ QVERIFY(m_doc); m_doc->setText(QStringLiteral("aa bb cc\ndd")); - KTextEditor::View *v = m_doc->createView(0); + KTextEditor::View *v = m_doc->createView(nullptr); QApplication::setActiveWindow(v); m_view = static_cast(v); Q_ASSERT(m_view); diff -Nru ktexteditor-5.28.0/autotests/src/katedocument_test.cpp ktexteditor-5.31.0/autotests/src/katedocument_test.cpp --- ktexteditor-5.28.0/autotests/src/katedocument_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/katedocument_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -50,7 +50,7 @@ { Q_OBJECT public: - explicit MovingRangeInvalidator(QObject *parent = 0) + explicit MovingRangeInvalidator(QObject *parent = nullptr) : QObject(parent) { } @@ -283,7 +283,7 @@ void KateDocumentTest::testReplaceTabs() { KTextEditor::DocumentPrivate doc; - auto view = static_cast(doc.createView(Q_NULLPTR)); + auto view = static_cast(doc.createView(nullptr)); auto reset = [&]() { doc.setText(" Hi!"); @@ -410,9 +410,10 @@ // sure, these two implementations result in the same checksum. void KateDocumentTest::testDigest() { - // git hash of data/md5checksum.txt: 95c6f5f5dbb36abf1151b2a8501b37282e268d13 + // Git hash of test file (git hash-object data/md5checksum.txt): + const QByteArray gitHash = "696e6d35a5d9cc28d16e56bdcb2d2a88126b814e"; // QCryptographicHash is used, therefore we need fromHex here - const QByteArray fileDigest = QByteArray::fromHex("95c6f5f5dbb36abf1151b2a8501b37282e268d13"); + const QByteArray fileDigest = QByteArray::fromHex(gitHash); // make sure, Kate::TextBuffer and KTextEditor::DocumentPrivate::createDigest() equal KTextEditor::DocumentPrivate doc; @@ -436,7 +437,7 @@ void KateDocumentTest::testTypeCharsWithSurrogateAndNewLine() { KTextEditor::DocumentPrivate doc; - auto view = static_cast(doc.createView(Q_NULLPTR)); + auto view = static_cast(doc.createView(nullptr)); const uint surrogateUcs4String[] = { 0x1f346, '\n', 0x1f346, 0 }; const auto surrogateString = QString::fromUcs4(surrogateUcs4String); doc.typeChars(view, surrogateString); @@ -447,7 +448,7 @@ void KateDocumentTest::testRemoveComposedCharacters() { KTextEditor::DocumentPrivate doc; - auto view = static_cast(doc.createView(Q_NULLPTR)); + auto view = static_cast(doc.createView(nullptr)); doc.setText(QString::fromUtf8("व्यक्तियों")); doc.del(view, Cursor(0, 0)); diff -Nru ktexteditor-5.28.0/autotests/src/kateencodingtest.cpp ktexteditor-5.31.0/autotests/src/kateencodingtest.cpp --- ktexteditor-5.28.0/autotests/src/kateencodingtest.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/kateencodingtest.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -38,7 +38,7 @@ QString inFile = app.arguments().at(2); QString outFile = app.arguments().at(3); - Kate::TextBuffer buffer(0); + Kate::TextBuffer buffer(nullptr); // set codec buffer.setFallbackTextCodec(QTextCodec::codecForName("ISO 8859-15")); diff -Nru ktexteditor-5.28.0/autotests/src/katefoldingtest.cpp ktexteditor-5.31.0/autotests/src/katefoldingtest.cpp --- ktexteditor-5.28.0/autotests/src/katefoldingtest.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/katefoldingtest.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -55,7 +55,7 @@ doc.setHighlightingMode("C++"); doc.buffer().ensureHighlighted(6); - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); view->setCursorPosition(Cursor(3, 0)); @@ -88,7 +88,7 @@ doc.setText(text); // view must be visible... - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); @@ -129,7 +129,7 @@ doc.setText(text); // view must be visible... - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); view->setCursorPosition(KTextEditor::Cursor(5, 2)); diff -Nru ktexteditor-5.28.0/autotests/src/katesyntaxtest.cpp ktexteditor-5.31.0/autotests/src/katesyntaxtest.cpp --- ktexteditor-5.28.0/autotests/src/katesyntaxtest.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/katesyntaxtest.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -87,7 +87,7 @@ * create a document with a view to be able to export stuff */ KTextEditor::DocumentPrivate doc; - auto view = static_cast(doc.createView(Q_NULLPTR)); + auto view = static_cast(doc.createView(nullptr)); /** * load the test case diff -Nru ktexteditor-5.28.0/autotests/src/katetextbuffertest.cpp ktexteditor-5.31.0/autotests/src/katetextbuffertest.cpp --- ktexteditor-5.28.0/autotests/src/katetextbuffertest.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/katetextbuffertest.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -40,7 +40,7 @@ void KateTextBufferTest::basicBufferTest() { // construct an empty text buffer - Kate::TextBuffer buffer(0, 1); + Kate::TextBuffer buffer(nullptr, 1); // one line per default QVERIFY(buffer.lines() == 1); @@ -57,7 +57,7 @@ void KateTextBufferTest::wrapLineTest() { // construct an empty text buffer - Kate::TextBuffer buffer(0, 1); + Kate::TextBuffer buffer(nullptr, 1); // wrap first empty line -> we should have two empty lines buffer.startEditing(); @@ -79,7 +79,7 @@ void KateTextBufferTest::insertRemoveTextTest() { // construct an empty text buffer - Kate::TextBuffer buffer(0, 1); + Kate::TextBuffer buffer(nullptr, 1); // wrap first line buffer.startEditing(); @@ -139,7 +139,7 @@ // test with different block sizes for (int i = 1; i <= 4; ++i) { // construct an empty text buffer - Kate::TextBuffer buffer(0, i); + Kate::TextBuffer buffer(nullptr, i); // wrap first line buffer.startEditing(); @@ -213,7 +213,7 @@ void KateTextBufferTest::foldingTest() { // construct an empty text buffer & folding info - Kate::TextBuffer buffer(0, 1); + Kate::TextBuffer buffer(nullptr, 1); Kate::TextFolding folding(buffer); // insert some text @@ -406,7 +406,7 @@ void KateTextBufferTest::nestedFoldingTest() { // construct an empty text buffer & folding info - Kate::TextBuffer buffer(0, 1); + Kate::TextBuffer buffer(nullptr, 1); Kate::TextFolding folding(buffer); // insert two nested folds in 5 lines @@ -445,7 +445,7 @@ QFile::setPermissions(folder_name, QFile::ExeOwner); - Kate::TextBuffer buffer(0, 1); + Kate::TextBuffer buffer(nullptr, 1); buffer.setTextCodec(QTextCodec::codecForName("UTF-8")); buffer.setFallbackTextCodec(QTextCodec::codecForName("UTF-8")); bool a, b; diff -Nru ktexteditor-5.28.0/autotests/src/kateview_test.cpp ktexteditor-5.31.0/autotests/src/kateview_test.cpp --- ktexteditor-5.28.0/autotests/src/kateview_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/kateview_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -50,7 +50,7 @@ KTextEditor::DocumentPrivate doc(false, false); doc.setText("Hi World!\nHi\n"); - KTextEditor::View* view1 = static_cast(doc.createView(Q_NULLPTR)); + KTextEditor::View* view1 = static_cast(doc.createView(nullptr)); view1->show(); QCOMPARE(view1->coordinatesToCursor(view1->cursorToCoordinate(KTextEditor::Cursor(0, 2))), @@ -84,7 +84,7 @@ KTextEditor::DocumentPrivate doc(false, false); doc.setText("int a;"); - KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, 0); + KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, nullptr); view->config()->setDynWordWrap(true); view->show(); @@ -110,8 +110,8 @@ QVERIFY(doc.openUrl(QUrl::fromLocalFile(file.fileName()))); QCOMPARE(doc.highlightingMode(), QString("C++")); - KTextEditor::ViewPrivate *view1 = new KTextEditor::ViewPrivate(&doc, 0); - KTextEditor::ViewPrivate *view2 = new KTextEditor::ViewPrivate(&doc, 0); + KTextEditor::ViewPrivate *view1 = new KTextEditor::ViewPrivate(&doc, nullptr); + KTextEditor::ViewPrivate *view2 = new KTextEditor::ViewPrivate(&doc, nullptr); view1->show(); view2->show(); QCOMPARE(doc.views().count(), 2); @@ -131,7 +131,7 @@ KTextEditor::DocumentPrivate doc; QVERIFY(doc.openUrl(QUrl::fromLocalFile(file.fileName()))); - KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, 0); + KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, nullptr); const KTextEditor::Cursor cursor(0, 4); view->setCursorPosition(cursor); QCOMPARE(view->cursorPosition(), cursor); @@ -145,7 +145,7 @@ KTextEditor::DocumentPrivate doc; doc.setText("nY\nnYY\n"); - KTextEditor::ViewPrivate *view1 = new KTextEditor::ViewPrivate(&doc, 0); + KTextEditor::ViewPrivate *view1 = new KTextEditor::ViewPrivate(&doc, nullptr); view1->setBlockSelection(true); view1->setSelection(Range(0, 1, 1, 3)); view1->lowercase(); @@ -176,7 +176,7 @@ KTextEditor::DocumentPrivate doc; QVERIFY(doc.openUrl(QUrl::fromLocalFile(file.fileName()))); - KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, 0); + KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, nullptr); view->resize(100, 200); view->show(); @@ -250,7 +250,7 @@ << "baz" ); - KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, 0); + KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, nullptr); view->setCursorPositionInternal(KTextEditor::Cursor(1, 2)); view->killLine(); @@ -290,7 +290,7 @@ QVERIFY(doc.openUrl(QUrl::fromLocalFile(file.fileName()))); QCOMPARE(doc.highlightingMode(), QString("C++")); - KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, 0); + KTextEditor::ViewPrivate *view = new KTextEditor::ViewPrivate(&doc, nullptr); view->config()->setFoldFirstLine(false); view->setCursorPosition({4, 0}); @@ -317,4 +317,71 @@ QVERIFY(view->textFolding().isLineVisible(1)); } +// test for bug https://bugs.kde.org/374163 +void KateViewTest::testDragAndDrop() +{ + KTextEditor::DocumentPrivate doc(false, false); + doc.setText("line0\n" + "line1\n" + "line2\n" + "\n" + "line4"); + + KTextEditor::View* view = static_cast(doc.createView(nullptr)); + view->show(); + view->resize(400, 300); + + QWidget *internalView = nullptr; + foreach (QObject* child, view->children()) { + if (child->metaObject()->className() == QByteArrayLiteral("KateViewInternal")) { + internalView = qobject_cast(child); + break; + } + } + QVERIFY(internalView); + + // select "line1\n" + view->setSelection(Range(1, 0, 2, 0)); + QCOMPARE(view->selectionRange(), Range(1, 0, 2, 0)); + + QTest::qWaitForWindowExposed(view); + const QPoint startDragPos = internalView->mapFrom(view, view->cursorToCoordinate(KTextEditor::Cursor(1, 2))); + const QPoint endDragPos = internalView->mapFrom(view, view->cursorToCoordinate(KTextEditor::Cursor(3, 0))); + const QPoint gStartDragPos = internalView->mapToGlobal(startDragPos); + const QPoint gEndDragPos = internalView->mapToGlobal(endDragPos); + + // now drag and drop selected text to Cursor(3, 0) + QMouseEvent pressEvent(QEvent::MouseButtonPress, startDragPos, gStartDragPos, + Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QCoreApplication::sendEvent(internalView, &pressEvent); + + // ugly workaround: Drag & Drop has own blocking event queue. Therefore, we need a single-shot timer to + // break out of the blocking event queue, see (*) + QTimer::singleShot(50, [&](){ + QMouseEvent moveEvent(QEvent::MouseMove, endDragPos + QPoint(5, 0), gEndDragPos + QPoint(5, 0), + Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QMouseEvent releaseEvent(QEvent::MouseButtonRelease, endDragPos, gEndDragPos, + Qt::LeftButton, Qt::NoButton, Qt::NoModifier); + QCoreApplication::sendEvent(internalView, &moveEvent); + QCoreApplication::sendEvent(internalView, &releaseEvent); + }); + + // (*) this somehow blocks... + QMouseEvent moveEvent1(QEvent::MouseMove, endDragPos + QPoint(10, 0), gEndDragPos + QPoint(10, 0), + Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); + QCoreApplication::sendEvent(internalView, &moveEvent1); + + QTest::qWait(100); + + // final tests of dragged text + QCOMPARE(doc.text(), QString("line0\n" + "line2\n" + "line1\n" + "\n" + "line4")); + + QCOMPARE(view->cursorPosition(), KTextEditor::Cursor(3, 0)); + QCOMPARE(view->selectionRange(), Range(2, 0, 3, 0)); +} + // kate: indent-mode cstyle; indent-width 4; replace-tabs on; diff -Nru ktexteditor-5.28.0/autotests/src/kateview_test.h ktexteditor-5.31.0/autotests/src/kateview_test.h --- ktexteditor-5.28.0/autotests/src/kateview_test.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/kateview_test.h 2017-02-05 11:12:49.000000000 +0000 @@ -43,6 +43,8 @@ void testKillline(); void testFoldFirstLine(); + + void testDragAndDrop(); }; #endif // KATE_VIEW_TEST_H diff -Nru ktexteditor-5.28.0/autotests/src/kte_documentcursor.cpp ktexteditor-5.31.0/autotests/src/kte_documentcursor.cpp --- ktexteditor-5.28.0/autotests/src/kte_documentcursor.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/kte_documentcursor.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -298,7 +298,7 @@ // set to true if you want to see the contents const bool showView = false; if (showView) { - doc.createView(0)->show(); + doc.createView(nullptr)->show(); QTest::qWait(5000); } diff -Nru ktexteditor-5.28.0/autotests/src/messagetest.cpp ktexteditor-5.31.0/autotests/src/messagetest.cpp --- ktexteditor-5.28.0/autotests/src/messagetest.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/messagetest.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -45,7 +45,7 @@ { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); QVERIFY(QTest::qWaitForWindowExposed(view)); @@ -63,7 +63,7 @@ QVERIFY(view->messageWidget()); QVERIFY(view->messageWidget()->isVisible()); - QVERIFY(message != 0); + QVERIFY(message != nullptr); delete message; QTest::qWait(600); // fadeout animation takes 500 ms QVERIFY(!view->messageWidget()->isVisible()); @@ -73,7 +73,7 @@ { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); QVERIFY(QTest::qWaitForWindowExposed(view)); @@ -94,7 +94,7 @@ // should be deleted after 1.5 seconds QTest::qWait(1000); - QVERIFY(message.data() == 0); + QVERIFY(message.data() == nullptr); // message widget should be hidden after 2 seconds QTest::qWait(500); @@ -105,7 +105,7 @@ { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); QVERIFY(QTest::qWaitForWindowExposed(view)); @@ -131,13 +131,13 @@ // should still be there after deleted after another 1.9 seconds QTest::qWait(1900); - QVERIFY(message.data() != 0); + QVERIFY(message.data() != nullptr); QVERIFY(view->messageWidget()->isVisible()); // another 200ms later: 3.1 seconds are gone, message should be deleted // and fade animation should be active QTest::qWait(200); - QVERIFY(message.data() == 0); + QVERIFY(message.data() == nullptr); QVERIFY(view->messageWidget()->isVisible()); // after a total of 3.6 seconds, widget should be hidden @@ -149,7 +149,7 @@ { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); QVERIFY(QTest::qWaitForWindowExposed(view)); @@ -176,14 +176,14 @@ // after 0.5s, first message should be visible, (timer of m1 triggered) QTest::qWait(500); QVERIFY(view->messageWidget()->isVisible()); - QVERIFY(m1.data() != 0); - QVERIFY(m2.data() != 0); + QVERIFY(m1.data() != nullptr); + QVERIFY(m2.data() != nullptr); // after 1.2s, first message is deleted, and hide animation is active QTest::qWait(700); QVERIFY(view->messageWidget()->isVisible()); - QVERIFY(m1.data() == 0); - QVERIFY(m2.data() != 0); + QVERIFY(m1.data() == nullptr); + QVERIFY(m2.data() != nullptr); // timer of m2 triggered after 1.5s, i.e. after hide animation if finished QTest::qWait(500); @@ -191,12 +191,12 @@ // after 2.1s, second message should be visible QTest::qWait(500); QVERIFY(view->messageWidget()->isVisible()); - QVERIFY(m2.data() != 0); + QVERIFY(m2.data() != nullptr); // after 2.6s, second message is deleted, and hide animation is active QTest::qWait(500); QVERIFY(view->messageWidget()->isVisible()); - QVERIFY(m2.data() == 0); + QVERIFY(m2.data() == nullptr); // after a total of 3.1s, animation is finished and widget is hidden QTest::qWait(500); @@ -207,7 +207,7 @@ { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); QVERIFY(QTest::qWaitForWindowExposed(view)); @@ -239,11 +239,11 @@ QTest::qWait(1000); QVERIFY(view->messageWidget()->isVisible()); QCOMPARE(view->messageWidget()->text(), QString("m1")); - QVERIFY(m1.data() != 0); + QVERIFY(m1.data() != nullptr); // post m2, m1 should be hidden, and m2 visible QVERIFY(doc.postMessage(m2)); - QVERIFY(m2.data() != 0); + QVERIFY(m2.data() != nullptr); // alter text of m1 when m2 is visible, shouldn't influence m2 QTest::qWait(600); @@ -252,13 +252,13 @@ // after 0.7 seconds, m2 is visible QTest::qWait(100); QCOMPARE(view->messageWidget()->text(), QString("m2")); - QVERIFY(m2.data() != 0); + QVERIFY(m2.data() != nullptr); // after 1.6 seconds, m2 is hidden again and m1 is visible again QTest::qWait(900); QVERIFY(view->messageWidget()->isVisible()); - QVERIFY(m1.data() != 0); - QVERIFY(m2.data() == 0); + QVERIFY(m1.data() != nullptr); + QVERIFY(m2.data() == nullptr); // finally check m1 agagin QTest::qWait(1000); @@ -285,8 +285,8 @@ QVERIFY(doc.postMessage(m1)); // now create views - KTextEditor::ViewPrivate *v1 = static_cast(doc.createView(0)); - KTextEditor::ViewPrivate *v2 = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *v1 = static_cast(doc.createView(nullptr)); + KTextEditor::ViewPrivate *v2 = static_cast(doc.createView(nullptr)); v1->show(); v2->show(); v1->resize(400, 300); @@ -300,7 +300,7 @@ QVERIFY(v2->messageWidget()->isVisible()); QCOMPARE(v1->messageWidget()->text(), QString("message")); QCOMPARE(v2->messageWidget()->text(), QString("message")); - QVERIFY(m1.data() != 0); + QVERIFY(m1.data() != nullptr); // delete message, then check after fadeout time 0f 0.5s whether message is gone delete m1; @@ -313,7 +313,7 @@ { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); QVERIFY(QTest::qWaitForWindowExposed(view)); @@ -343,7 +343,7 @@ // wait 1s, message should be null (after total of 2100 ms) QTest::qWait(1000); - QVERIFY(message.data() == 0); + QVERIFY(message.data() == nullptr); // show view again, message contents should be fading for the lasting 400 ms view->show(); @@ -352,7 +352,7 @@ // wait another 0.5s, then message widget should be hidden QTest::qWait(500); - QVERIFY(message.data() == 0); + QVERIFY(message.data() == nullptr); QVERIFY(!view->messageWidget()->isVisible()); } @@ -360,7 +360,7 @@ { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->show(); view->resize(400, 300); QVERIFY(QTest::qWaitForWindowExposed(view)); @@ -390,7 +390,7 @@ // wait 1s, check that message is still valid QTest::qWait(1000); - QVERIFY(message.data() != 0); + QVERIFY(message.data() != nullptr); // // show view again, and trigger user interaction through resize: @@ -403,13 +403,13 @@ // wait 1.5s and check that message is still displayed QTest::qWait(1500); - QVERIFY(message.data() != 0); + QVERIFY(message.data() != nullptr); QVERIFY(view->messageWidget()->isVisible()); QCOMPARE(view->messageWidget()->text(), QString("Message text")); // wait another 0.8s, then the message is deleted QTest::qWait(800); - QVERIFY(message.data() == 0); + QVERIFY(message.data() == nullptr); QVERIFY(view->messageWidget()->isVisible()); // another 0.5s, and the message widget should be hidden diff -Nru ktexteditor-5.28.0/autotests/src/movingrange_test.cpp ktexteditor-5.31.0/autotests/src/movingrange_test.cpp --- ktexteditor-5.28.0/autotests/src/movingrange_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/movingrange_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -287,7 +287,7 @@ "xxxx.."); doc.setText(text); - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); // create range feedback RangeFeedback rf; @@ -403,7 +403,7 @@ "xxxx.."); doc.setText(text); - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); view->setCursorPosition(Cursor(1, 6)); view->show(); view->resize(200, 100); diff -Nru ktexteditor-5.28.0/autotests/src/plaintextsearch_test.cpp ktexteditor-5.31.0/autotests/src/plaintextsearch_test.cpp --- ktexteditor-5.28.0/autotests/src/plaintextsearch_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/plaintextsearch_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -28,7 +28,7 @@ QTEST_MAIN(PlainTextSearchTest) -QtMessageHandler PlainTextSearchTest::s_msgHandler = 0; +QtMessageHandler PlainTextSearchTest::s_msgHandler = nullptr; void myMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) { @@ -49,13 +49,13 @@ void PlainTextSearchTest::cleanupTestCase() { - qInstallMessageHandler(0); + qInstallMessageHandler(nullptr); } PlainTextSearchTest::PlainTextSearchTest() : QObject() - , m_doc(0) - , m_search(0) + , m_doc(nullptr) + , m_search(nullptr) { } @@ -65,7 +65,7 @@ void PlainTextSearchTest::init() { - m_doc = new KTextEditor::DocumentPrivate(false, false, 0, this); + m_doc = new KTextEditor::DocumentPrivate(false, false, nullptr, this); m_search = new KatePlainTextSearch(m_doc, Qt::CaseSensitive, false); } diff -Nru ktexteditor-5.28.0/autotests/src/scriptdocument_test.cpp ktexteditor-5.31.0/autotests/src/scriptdocument_test.cpp --- ktexteditor-5.28.0/autotests/src/scriptdocument_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/scriptdocument_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -28,7 +28,7 @@ QTEST_MAIN(ScriptDocumentTest) -QtMessageHandler ScriptDocumentTest::s_msgHandler = 0; +QtMessageHandler ScriptDocumentTest::s_msgHandler = nullptr; void myMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) { @@ -49,14 +49,14 @@ void ScriptDocumentTest::cleanupTestCase() { - qInstallMessageHandler(0); + qInstallMessageHandler(nullptr); } ScriptDocumentTest::ScriptDocumentTest() : QObject() - , m_doc(0) - , m_view(0) - , m_scriptDoc(0) + , m_doc(nullptr) + , m_view(nullptr) + , m_scriptDoc(nullptr) { } @@ -67,7 +67,7 @@ void ScriptDocumentTest::init() { m_doc = new KTextEditor::DocumentPrivate; - m_view = m_doc->createView(0); + m_view = m_doc->createView(nullptr); m_scriptDoc = new KateScriptDocument(this); m_scriptDoc->setDocument(m_doc); } diff -Nru ktexteditor-5.28.0/autotests/src/script_test_base.cpp ktexteditor-5.31.0/autotests/src/script_test_base.cpp --- ktexteditor-5.28.0/autotests/src/script_test_base.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/script_test_base.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -44,7 +44,7 @@ const QString testDataPath(QLatin1String(TEST_DATA_DIR)); -QtMessageHandler ScriptTestBase::m_msgHandler = 0; +QtMessageHandler ScriptTestBase::m_msgHandler = nullptr; void noDebugMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) { switch (type) { diff -Nru ktexteditor-5.28.0/autotests/src/searchbar_test.cpp ktexteditor-5.31.0/autotests/src/searchbar_test.cpp --- ktexteditor-5.28.0/autotests/src/searchbar_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/searchbar_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -63,7 +63,7 @@ KTextEditor::DocumentPrivate doc; doc.setText("a a a b b"); - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); KateSearchBar bar(false, &view, &config); @@ -96,7 +96,7 @@ void SearchBarTest::testSetMatchCaseIncremental() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a A a"); @@ -130,7 +130,7 @@ void SearchBarTest::testSetMatchCasePower() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a A a"); @@ -171,7 +171,7 @@ void SearchBarTest::testSetSelectionOnlyPower() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a a a"); @@ -220,7 +220,7 @@ QFETCH(int, numMatches2); KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a a a"); @@ -244,7 +244,7 @@ void SearchBarTest::testSetSelectionOnly() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a a a"); @@ -280,7 +280,7 @@ QFETCH(int, numMatches4); KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a a a"); @@ -316,7 +316,7 @@ void SearchBarTest::testReplaceAll() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a a a"); @@ -371,7 +371,7 @@ QFETCH(Range, match); KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText(text); @@ -408,7 +408,7 @@ QFETCH(Range, match); KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a a a"); @@ -442,7 +442,7 @@ QFETCH(Range, match); KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("a a a"); @@ -487,7 +487,7 @@ QFETCH(Range, match); KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText(text); @@ -506,7 +506,7 @@ void SearchBarTest::testReplaceDollar() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("aaa\nbbb\nccc\n\n\naaa\nbbb\nccc\nddd\n"); @@ -525,7 +525,7 @@ void SearchBarTest::testSearchHistoryIncremental() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig *const config = view.config(); KTextEditor::EditorPrivate::self()->searchHistoryModel()->setStringList(QStringList()); @@ -545,7 +545,7 @@ QCOMPARE(bar.m_incUi->pattern->findText("foo"), 1); KTextEditor::DocumentPrivate doc2; - KTextEditor::ViewPrivate view2(&doc2, 0); + KTextEditor::ViewPrivate view2(&doc2, nullptr); KateViewConfig *const config2 = view2.config(); KateSearchBar bar2(false, &view2, config2); @@ -562,7 +562,7 @@ void SearchBarTest::testSearchHistoryPower() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig *const config = view.config(); KTextEditor::EditorPrivate::self()->searchHistoryModel()->setStringList(QStringList()); @@ -590,7 +590,7 @@ QCOMPARE(bar.m_powerUi->pattern->count(), 2); KTextEditor::DocumentPrivate doc2; - KTextEditor::ViewPrivate view2(&doc2, 0); + KTextEditor::ViewPrivate view2(&doc2, nullptr); KateViewConfig *const config2 = view2.config(); KateSearchBar bar2(true, &view2, config2); @@ -602,7 +602,7 @@ void SearchBarTest::testReplaceInBlockMode() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); view.setInputMode(View::NormalInputMode); KateViewConfig config(&view); @@ -623,7 +623,7 @@ void SearchBarTest::testReplaceManyCapturesBug365124() { KTextEditor::DocumentPrivate doc; - KTextEditor::ViewPrivate view(&doc, 0); + KTextEditor::ViewPrivate view(&doc, nullptr); KateViewConfig config(&view); doc.setText("one two three four five six seven eight nine ten eleven twelve thirteen\n"); diff -Nru ktexteditor-5.28.0/autotests/src/templatehandler_test.cpp ktexteditor-5.31.0/autotests/src/templatehandler_test.cpp --- ktexteditor-5.28.0/autotests/src/templatehandler_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/templatehandler_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -46,7 +46,7 @@ " ${index}\n" "}"; - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); // fixed indentation options @@ -104,7 +104,7 @@ void TemplateHandlerTest::testEscapes() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); view->insertTemplate({0, 0}, QStringLiteral("\\${field} ${bar} \\${foo=3} \\\\${baz=7}")); QCOMPARE(doc->text(), QStringLiteral("${field} bar ${foo=3} \\${baz=7}")); @@ -114,7 +114,7 @@ { QFETCH(QString, text); - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); view->insertTemplate({0, 0}, text); @@ -139,7 +139,7 @@ void TemplateHandlerTest::testAdjacentRanges() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); using S = QString; @@ -162,7 +162,7 @@ QFETCH(QString, tpl); QFETCH(int, cursor); - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); view->insertTemplate({0, 0}, tpl); @@ -203,7 +203,7 @@ void TemplateHandlerTest::testExitAtCursor() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); view->insertTemplate({0, 0}, QStringLiteral("${foo} ${bar} ${cursor} ${foo}")); @@ -221,7 +221,7 @@ QCOMPARE(doc->text(), QStringLiteral("foo bar a foo")); // required to process the deleteLater() used to exit the template handler - QCoreApplication::sendPostedEvents(0, QEvent::DeferredDelete); + QCoreApplication::sendPostedEvents(nullptr, QEvent::DeferredDelete); QApplication::processEvents(); // go to the first field and verify it's not mirrored any more (i.e. the handler exited) @@ -234,7 +234,7 @@ void TemplateHandlerTest::testDefaultMirror() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); using S = QString; @@ -249,7 +249,7 @@ void TemplateHandlerTest::testFunctionMirror() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); using S = QString; @@ -264,7 +264,7 @@ void TemplateHandlerTest::testAutoSelection() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); view->insertTemplate({0, 0}, "${foo} ${bar} ${bar} ${cursor} ${baz}"); @@ -297,7 +297,7 @@ QFETCH(QString, input); QFETCH(int, change_offset); - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); view->insertTemplate({0, 0}, input); @@ -317,7 +317,7 @@ void TemplateHandlerTest::testCanRetrieveSelection() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); view->insertText("hi world"); view->setSelection(KTextEditor::Range(0, 1, 0, 4)); @@ -353,7 +353,7 @@ void TemplateHandlerTest::testDefaults() { - auto doc = new KTextEditor::DocumentPrivate(false, false, 0, 0); + auto doc = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); auto view = static_cast(doc->createView(nullptr)); QFETCH(QString, input); diff -Nru ktexteditor-5.28.0/autotests/src/testutils.cpp ktexteditor-5.31.0/autotests/src/testutils.cpp --- ktexteditor-5.28.0/autotests/src/testutils.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/testutils.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -79,7 +79,7 @@ //END TestScriptEnv::TestScriptEnv(KTextEditor::DocumentPrivate *part, bool &cflag) - : m_engine(0), m_viewObj(0), m_docObj(0), m_output(0) + : m_engine(nullptr), m_viewObj(nullptr), m_docObj(nullptr), m_output(nullptr) { m_engine = new QScriptEngine(this); @@ -126,12 +126,12 @@ { // delete explicitly, as the parent is the KTE::Document kpart, which is // reused for all tests. Hence, we explicitly have to delete the bindings. - delete m_output; m_output = 0; - delete m_docObj; m_docObj = 0; - delete m_viewObj; m_viewObj = 0; + delete m_output; m_output = nullptr; + delete m_docObj; m_docObj = nullptr; + delete m_viewObj; m_viewObj = nullptr; // delete this too, although this should also be automagically be freed - delete m_engine; m_engine = 0; + delete m_engine; m_engine = nullptr; // kDebug() << "deleted"; } diff -Nru ktexteditor-5.28.0/autotests/src/undomanager_test.cpp ktexteditor-5.31.0/autotests/src/undomanager_test.cpp --- ktexteditor-5.28.0/autotests/src/undomanager_test.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/undomanager_test.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -41,7 +41,7 @@ { public: TestDocument() - : KTextEditor::DocumentPrivate(false, false, 0, 0) + : KTextEditor::DocumentPrivate(false, false, nullptr, nullptr) {} }; @@ -147,7 +147,7 @@ void UndoManagerTest::testCursorPosition() { TestDocument doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); doc.setText(QLatin1String("aaaa bbbb cccc\n" "dddd ffff")); @@ -172,7 +172,7 @@ void UndoManagerTest::testSelectionUndo() { TestDocument doc; - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); doc.setText(QLatin1String("aaaa bbbb cccc\n" "dddd eeee ffff")); @@ -207,7 +207,7 @@ TestDocument doc; doc.setWordWrap(true); doc.setWordWrapAt(20); - KTextEditor::ViewPrivate *view = static_cast(doc.createView(0)); + KTextEditor::ViewPrivate *view = static_cast(doc.createView(nullptr)); QString text = QString::fromLatin1("1234 1234 1234 1234\n" "1234 1234 1234 1234"); diff -Nru ktexteditor-5.28.0/autotests/src/vimode/base.cpp ktexteditor-5.31.0/autotests/src/vimode/base.cpp --- ktexteditor-5.28.0/autotests/src/vimode/base.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/vimode/base.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -37,8 +37,8 @@ BaseTest::BaseTest() { - kate_view = Q_NULLPTR; - kate_document = Q_NULLPTR; + kate_view = nullptr; + kate_document = nullptr; mainWindow = new QMainWindow; mainWindowLayout = new QVBoxLayout(mainWindow); @@ -87,7 +87,7 @@ delete kate_view; delete kate_document; - kate_document = new KTextEditor::DocumentPrivate(false, false, 0, NULL); + kate_document = new KTextEditor::DocumentPrivate(false, false, nullptr, nullptr); // fixed indentation options kate_document->config()->setTabWidth(8); @@ -194,7 +194,7 @@ QKeyEvent *key_event = new QKeyEvent(QEvent::KeyPress, keyCode, keyboard_modifier, key); // Attempt to simulate how Qt usually sends events - typically, we want to send them // to kate_view->focusProxy() (which is a KateViewInternal). - QWidget *destWidget = Q_NULLPTR; + QWidget *destWidget = nullptr; if (QApplication::activePopupWidget()) { // According to the docs, the activePopupWidget, if present, takes all events. destWidget = QApplication::activePopupWidget(); diff -Nru ktexteditor-5.28.0/autotests/src/vimode/emulatedcommandbar.cpp ktexteditor-5.31.0/autotests/src/vimode/emulatedcommandbar.cpp --- ktexteditor-5.28.0/autotests/src/vimode/emulatedcommandbar.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/vimode/emulatedcommandbar.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -1029,7 +1029,7 @@ clearSearchHistory(); vi_global->searchHistory()->append("foo"); vi_global->searchHistory()->append("bar"); - QVERIFY(emulatedCommandBarCompleter() != NULL); + QVERIFY(emulatedCommandBarCompleter() != nullptr); BeginTest("foo bar"); TestPressKey("/\\ctrl-p"); verifyCommandBarCompletionVisible(); @@ -1065,7 +1065,7 @@ clearSearchHistory(); vi_global->searchHistory()->append("xyz"); vi_global->searchHistory()->append("bar"); - QVERIFY(emulatedCommandBarCompleter() != NULL); + QVERIFY(emulatedCommandBarCompleter() != nullptr); BeginTest("foo bar"); TestPressKey("/\\ctrl-p"); QCOMPARE(emulatedCommandBarCompleter()->currentCompletion(), QString("bar")); @@ -1076,7 +1076,7 @@ vi_global->searchHistory()->append("xyz"); vi_global->searchHistory()->append("bar"); vi_global->searchHistory()->append("foo"); - QVERIFY(emulatedCommandBarCompleter() != NULL); + QVERIFY(emulatedCommandBarCompleter() != nullptr); BeginTest("foo bar"); TestPressKey("/\\ctrl-p"); QCOMPARE(emulatedCommandBarTextEdit()->text(), QString("foo")); @@ -1101,7 +1101,7 @@ vi_global->searchHistory()->append("xyz"); vi_global->searchHistory()->append("bar"); vi_global->searchHistory()->append("foo"); - QVERIFY(emulatedCommandBarCompleter() != NULL); + QVERIFY(emulatedCommandBarCompleter() != nullptr); BeginTest("foo bar"); TestPressKey("/\\ctrl-n"); verifyCommandBarCompletionVisible(); @@ -3106,7 +3106,7 @@ #endif // Find the "Print" action for later use. - QAction *printAction = NULL; + QAction *printAction = nullptr; foreach(QAction* action, kate_view->actionCollection()->actions()) { if (action->shortcut() == QKeySequence("Ctrl+p")) diff -Nru ktexteditor-5.28.0/autotests/src/vimode/keys.cpp ktexteditor-5.31.0/autotests/src/vimode/keys.cpp --- ktexteditor-5.28.0/autotests/src/vimode/keys.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/vimode/keys.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -1516,7 +1516,7 @@ kate_view->unregisterCompletionModel(fakeCodeCompletionModel); delete fakeCodeCompletionModel; - fakeCodeCompletionModel = 0; + fakeCodeCompletionModel = nullptr; // Hide the kate_view for subsequent tests. kate_view->hide(); mainWindow->hide(); diff -Nru ktexteditor-5.28.0/autotests/src/wordcompletiontest.cpp ktexteditor-5.31.0/autotests/src/wordcompletiontest.cpp --- ktexteditor-5.28.0/autotests/src/wordcompletiontest.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/autotests/src/wordcompletiontest.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -70,9 +70,9 @@ m_doc->setText(s); // creating the view only after inserting the text makes test execution much faster - QSharedPointer v(m_doc->createView(0)); + QSharedPointer v(m_doc->createView(nullptr)); QBENCHMARK { - KateWordCompletionModel m(0); + KateWordCompletionModel m(nullptr); QCOMPARE(m.allMatches(v.data(), KTextEditor::Range()).size(), count / distinctWordRatio); } } @@ -89,9 +89,9 @@ s.prepend("\n"); m_doc->setText(s); - QSharedPointer v(m_doc->createView(0)); + QSharedPointer v(m_doc->createView(nullptr)); QBENCHMARK { - KateWordCompletionModel m(0); + KateWordCompletionModel m(nullptr); QCOMPARE(m.allMatches(v.data(), KTextEditor::Range()).size(), 1); } } @@ -106,9 +106,9 @@ s.prepend("\n"); m_doc->setText(s); - QSharedPointer v(m_doc->createView(0)); + QSharedPointer v(m_doc->createView(nullptr)); QBENCHMARK { - KateWordCompletionModel m(0); + KateWordCompletionModel m(nullptr); QCOMPARE(m.allMatches(v.data(), KTextEditor::Range()).size(), count); } } diff -Nru ktexteditor-5.28.0/CMakeLists.txt ktexteditor-5.31.0/CMakeLists.txt --- ktexteditor-5.28.0/CMakeLists.txt 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/CMakeLists.txt 2017-02-05 11:12:49.000000000 +0000 @@ -1,10 +1,12 @@ -cmake_minimum_required(VERSION 2.8.12) +cmake_minimum_required(VERSION 3.0) -project(KTextEditor) +set(KF5_VERSION "5.31.0") # handled by release scripts +set(KF5_DEP_VERSION "5.31.0") # handled by release scripts +project(KTextEditor VERSION ${KF5_VERSION}) # ECM setup include(FeatureSummary) -find_package(ECM 5.28.0 NO_MODULE) +find_package(ECM 5.31.0 NO_MODULE) set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake Modules." URL "https://projects.kde.org/projects/kdesupport/extra-cmake-modules") feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND FATAL_ON_MISSING_REQUIRED_PACKAGES) @@ -13,7 +15,7 @@ include(ECMSetupVersion) include(ECMGenerateHeaders) -include(ECMPackageConfigHelpers) +include(CMakePackageConfigHelpers) include(CheckFunctionExists) include(CheckSymbolExists) include(KDEInstallDirs) @@ -21,11 +23,8 @@ include(KDECMakeSettings) include(GenerateExportHeader) -set(KF5_VERSION "5.28.0") # handled by release scripts -set(KF5_DEP_VERSION "5.28.0") # handled by release scripts - ecm_setup_version( - ${KF5_VERSION} + PROJECT VARIABLE_PREFIX KTEXTEDITOR VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/ktexteditor_version.h" PACKAGE_VERSION_FILE "${CMAKE_CURRENT_BINARY_DIR}/KF5TextEditorConfigVersion.cmake" @@ -33,7 +32,7 @@ ) # Dependencies -set(REQUIRED_QT_VERSION 5.5.0) +set(REQUIRED_QT_VERSION 5.6.0) # Required Qt5 components to build this framework find_package(Qt5 ${REQUIRED_QT_VERSION} NO_MODULE REQUIRED Core Widgets Script PrintSupport Xml XmlPatterns) @@ -46,6 +45,7 @@ find_package(KF5Parts ${KF5_DEP_VERSION} REQUIRED) find_package(KF5Sonnet ${KF5_DEP_VERSION} REQUIRED) find_package(KF5IconThemes ${KF5_DEP_VERSION} REQUIRED) +find_package(KF5SyntaxHighlighting ${KF5_DEP_VERSION} REQUIRED) # libgit2 integration, at least 0.22 with proper git_libgit2_init() find_package(LibGit2 "0.22.0") @@ -66,7 +66,7 @@ # Create a Config.cmake and a ConfigVersion.cmake file and install them set(CMAKECONFIG_INSTALL_DIR "${KDE_INSTALL_CMAKEPACKAGEDIR}/KF5TextEditor") -ecm_configure_package_config_file( +configure_package_config_file( "${CMAKE_CURRENT_SOURCE_DIR}/KF5TextEditorConfig.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/KF5TextEditorConfig.cmake" INSTALL_DESTINATION "${CMAKECONFIG_INSTALL_DIR}" diff -Nru ktexteditor-5.28.0/debian/changelog ktexteditor-5.31.0/debian/changelog --- ktexteditor-5.28.0/debian/changelog 2016-12-05 20:15:59.000000000 +0000 +++ ktexteditor-5.31.0/debian/changelog 2017-02-14 22:50:22.000000000 +0000 @@ -1,3 +1,17 @@ +ktexteditor (5.31.0-0ubuntu1) zesty; urgency=medium + + * Pass '-fno-keep-inline-functions' to gcc in the acc test in order to + avoid possible spurious test failures. + * New upstream release (5.31.0) + + -- José Manuel Santamaría Lema Tue, 14 Feb 2017 22:50:22 +0000 + +ktexteditor (5.30.0-0ubuntu1) zesty; urgency=low + + * New upstream release (5.30.0) + + -- Rik Mills Wed, 01 Feb 2017 18:34:01 +0000 + ktexteditor (5.28.0-0ubuntu1) zesty; urgency=medium [ Rik Mills ] diff -Nru ktexteditor-5.28.0/debian/control ktexteditor-5.31.0/debian/control --- ktexteditor-5.28.0/debian/control 2016-12-05 20:15:59.000000000 +0000 +++ ktexteditor-5.31.0/debian/control 2017-02-14 22:50:22.000000000 +0000 @@ -5,17 +5,17 @@ Uploaders: Maximiliano Curia Build-Depends: cmake (>= 2.8.12), debhelper (>= 9), - extra-cmake-modules (>= 5.28.0~), + extra-cmake-modules (>= 5.31.0~), libgit2-dev (>= 0.22~), - libkf5archive-dev (>= 5.28.0~), - libkf5config-dev (>= 5.28.0~), - libkf5guiaddons-dev (>= 5.28.0~), - libkf5i18n-dev (>= 5.28.0~), - libkf5iconthemes-dev (>= 5.28.0~), - libkf5kio-dev (>= 5.28.0~), - libkf5parts-dev (>= 5.28.0~), - libkf5sonnet-dev (>= 5.28.0~), - libkf5syntaxhighlighting-dev (>= 5.28.0~), + libkf5archive-dev (>= 5.31.0~), + libkf5config-dev (>= 5.31.0~), + libkf5guiaddons-dev (>= 5.31.0~), + libkf5i18n-dev (>= 5.31.0~), + libkf5iconthemes-dev (>= 5.31.0~), + libkf5kio-dev (>= 5.31.0~), + libkf5parts-dev (>= 5.31.0~), + libkf5sonnet-dev (>= 5.31.0~), + libkf5syntaxhighlighting-dev (>= 5.31.0~), libqt5xmlpatterns5-dev (>= 5.6.1~), perl, pkg-config, @@ -30,7 +30,7 @@ Package: libkf5texteditor-dev Architecture: any Section: libdevel -Depends: libkf5parts-dev (>= 5.28.0~), +Depends: libkf5parts-dev (>= 5.31.0~), libkf5texteditor5 (= ${binary:Version}), qtbase5-dev (>= 5.6.1~), ${misc:Depends}, diff -Nru ktexteditor-5.28.0/debian/libkf5texteditor-dev.acc.in ktexteditor-5.31.0/debian/libkf5texteditor-dev.acc.in --- ktexteditor-5.28.0/debian/libkf5texteditor-dev.acc.in 2016-12-05 20:15:59.000000000 +0000 +++ ktexteditor-5.31.0/debian/libkf5texteditor-dev.acc.in 2017-02-14 22:50:22.000000000 +0000 @@ -1,4 +1,4 @@ - + @@ -15,6 +15,7 @@ -fPIC + -fno-keep-inline-functions - + \ No newline at end of file diff -Nru ktexteditor-5.28.0/metainfo.yaml ktexteditor-5.31.0/metainfo.yaml --- ktexteditor-5.28.0/metainfo.yaml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/metainfo.yaml 2017-02-05 11:12:49.000000000 +0000 @@ -4,6 +4,7 @@ type: solution platforms: - name: Linux + - name: FreeBSD - name: Windows - name: MacOSX portingAid: false diff -Nru ktexteditor-5.28.0/po/af/ktexteditor5.po ktexteditor-5.31.0/po/af/ktexteditor5.po --- ktexteditor-5.28.0/po/af/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/af/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -5,305 +5,331 @@ msgstr "" "Project-Id-Version: katepart4 stable\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2005-11-25 11:24+0200\n" "Last-Translator: Juanita Franz \n" "Language-Team: AFRIKAANS \n" -"Language: \n" +"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: completion/katecompletionconfig.cpp:42 -#, fuzzy +#, fuzzy, kde-format msgid "Code Completion Configuration" msgstr "Woord Klaarmaak Inprop" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 -#, fuzzy +#, fuzzy, kde-format msgid "Always" msgstr "Altyd Aan" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "" #: completion/katecompletionmodel.cpp:796 -#, fuzzy +#, fuzzy, kde-format msgid "Namespaces" msgstr "Hoeveelheid spasies:" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "" #: completion/katecompletionmodel.cpp:800 -#, fuzzy +#, fuzzy, kde-format msgid "Structs" msgstr "Kortpaaie" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "" #: completion/katecompletionmodel.cpp:804 -#, fuzzy +#, fuzzy, kde-format msgid "Functions" msgstr "Funksie" #: completion/katecompletionmodel.cpp:806 -#, fuzzy +#, fuzzy, kde-format msgid "Variables" msgstr "Veranderlikes:" #: completion/katecompletionmodel.cpp:808 -#, fuzzy +#, fuzzy, kde-format msgid "Enumerations" msgstr "Konfigurasie" #: completion/katecompletionmodel.cpp:1320 -#, fuzzy +#, fuzzy, kde-format msgid "Prefix" msgstr "Voorvoegsel:" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "" #: completion/katecompletionmodel.cpp:1324 -#, fuzzy +#, fuzzy, kde-format msgid "Scope" msgstr "Stop" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Naam" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "" #: completion/katecompletionmodel.cpp:2042 -#, fuzzy +#, fuzzy, kde-format msgid "Private" msgstr "ferite" #: completion/katecompletionmodel.cpp:2045 -#, fuzzy +#, fuzzy, kde-format msgid "Static" msgstr "Stata" #: completion/katecompletionmodel.cpp:2048 -#, fuzzy +#, fuzzy, kde-format msgid "Constant" msgstr "Konteks" #: completion/katecompletionmodel.cpp:2051 -#, fuzzy +#, fuzzy, kde-format msgid "Namespace" msgstr "Terugruimte" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "" #: completion/katecompletionmodel.cpp:2057 -#, fuzzy +#, fuzzy, kde-format msgid "Struct" msgstr "Uitkrap" #: completion/katecompletionmodel.cpp:2060 -#, fuzzy +#, fuzzy, kde-format msgid "Union" msgstr "Funksie" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funksie" #: completion/katecompletionmodel.cpp:2066 -#, fuzzy +#, fuzzy, kde-format msgid "Variable" msgstr "Veranderlikes:" #: completion/katecompletionmodel.cpp:2069 -#, fuzzy +#, fuzzy, kde-format msgid "Enumeration" msgstr "Konfigurasie" #: completion/katecompletionmodel.cpp:2072 -#, fuzzy +#, fuzzy, kde-format msgid "Template" msgstr "Vervang" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "" #: completion/katecompletionmodel.cpp:2078 -#, fuzzy +#, fuzzy, kde-format msgid "Override" msgstr "Oorskryf" #: completion/katecompletionmodel.cpp:2081 -#, fuzzy +#, fuzzy, kde-format msgid "Inline" msgstr "Onderstreep" #: completion/katecompletionmodel.cpp:2084 -#, fuzzy +#, fuzzy, kde-format msgid "Friend" msgstr "Soek" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "" #: completion/katecompletionmodel.cpp:2093 -#, fuzzy +#, fuzzy, kde-format msgid "Local Scope" msgstr "Lokale Lêers" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "" #: completion/katecompletionmodel.cpp:2102 -#, fuzzy +#, fuzzy, kde-format msgid "Unknown Property" msgstr "Boks Eienskappe" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "Auto Word Completion" msgstr "Woord Klaarmaak Inprop" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Told Voltooi" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Hergebruik woord hierbo" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Hergebruik Woord Hieronder" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 -#, fuzzy +#, fuzzy, kde-format msgid "&File" msgstr "Lêertipe" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 -#, fuzzy +#, fuzzy, kde-format msgid "&Edit" msgstr "Redigeer..." #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 -#, fuzzy +#, fuzzy, kde-format msgid "&View" msgstr "Nuwe" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "Statiese Woord Oorvloei" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 -#, fuzzy +#, fuzzy, kde-format #| msgid "Borders" msgid "Borders" msgstr "Grense" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Kode Vou" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 -#, fuzzy +#, fuzzy, kde-format msgid "&Tools" msgstr "Data Nutsprogramme" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "Word Completion" msgstr "Woord Klaarmaak Inprop" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 -#, fuzzy +#, fuzzy, kde-format msgid "&Settings" msgstr "Teks Instellings" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -315,14 +341,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "Vertoon Vou en Merkers" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will show marks on the vertical " #| "scrollbar.

These marks will, for instance, show bookmarks." @@ -335,14 +361,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show preview of folded code" msgstr "Druk die huidige dokument." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display an icon border on " #| "the left hand side.

The icon border shows bookmark signs, for " @@ -358,11 +384,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Vertoon ikoon grens" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -372,12 +400,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Vertoon lyn nommers" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -390,14 +419,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "Vertoon Vou en Merkers" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will show marks on the vertical " #| "scrollbar.

These marks will, for instance, show bookmarks." @@ -410,12 +439,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Wys rolstaaf merke" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will show marks on the vertical " #| "scrollbar.

These marks will, for instance, show bookmarks." @@ -428,12 +458,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -446,14 +477,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgid "Show scrollbar mini-map" msgstr "Wys rolstaaf merke" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -466,41 +497,45 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save the current document" msgid "Map the whole document" msgstr "Stoor die huidige dokument" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Minimal matching" -msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "Minimale passing" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Altyd Aan" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy +#, fuzzy, kde-format msgid "Always Off" msgstr "Altyd Aan" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -508,11 +543,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Sorteer Boekmerke Kieslys" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -522,70 +559,73 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "Deur skep" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Die boekmerke sal wees gesorteer deur Die lyn nommers hulle word rangorde na." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "Deur posisie" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 -#, fuzzy +#, fuzzy, kde-format #| msgid "Comment" msgid "Command" msgstr "Kommentaar" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 -#, fuzzy +#, fuzzy, kde-format #| msgid "Execution" msgid "Description" msgstr "Uitvoering" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit Entry" msgid "Edit Entry..." msgstr "Regideer Inskrywing" #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit Entry" msgid "Add Entry..." msgstr "Regideer Inskrywing" #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Further Notes" msgstr "Voetskrif Eienskappe" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Section:" msgid "&Description:" msgstr "Seksie:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Pattern:" msgid "&Category:" msgstr "Patroon:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "Enable &auto completion" msgstr "Woord Klaarmaak Inprop" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "A&uto Word Completion" msgstr "Woord Klaarmaak Inprop" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "Verwyder volgende spasies" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "&Keyword completion" msgstr "Woord Klaarmaak Inprop" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -692,35 +738,39 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 -#, fuzzy +#, fuzzy, kde-format #| msgid "String" msgid "Sorting" msgstr "String" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "Case &sensitive" msgid "Case sensitive" msgstr "Kas Sensitief" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" @@ -729,6 +779,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "" @@ -737,130 +788,149 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 -#, fuzzy +#, fuzzy, kde-format #| msgid "String" msgid "Filtering" msgstr "String" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Access Grouping Properties" msgstr "Voetskrif Eienskappe" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Item Grouping properties" msgstr "Voetskrif Eienskappe" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 -#, fuzzy +#, fuzzy, kde-format #| msgid "Colors" msgid "Columns" msgstr "Kleure" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Statiese Woord Oorvloei" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 -#, fuzzy +#: dialogs/editconfigwidget.ui:26 +#, fuzzy, kde-format #| msgid "" #| "Automatically start a new line of text when the current line exceeds the " #| "length specified by the Wrap words at: option.

This option does " @@ -886,13 +956,14 @@ "blad." #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Aktiveer statiese woord oorvloei" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 -#, fuzzy +#: dialogs/editconfigwidget.ui:36 +#, fuzzy, kde-format #| msgid "" #| "

If this option is checked, a vertical line will be drawn at the word " #| "wrap column as defined in the Editing properties.

Note " @@ -908,21 +979,22 @@ "jy 'n vaste plek skriftipe gebruik." #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 -#, fuzzy +#: dialogs/editconfigwidget.ui:39 +#, fuzzy, kde-format #| msgid "&Show static word wrap marker (if applicable)" msgid "Show static word wra&p marker (if applicable)" msgstr "Wys statiese woord oorvloei merker (indien beskikbaar)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "Wrap words at:" msgid "Wra&p words at:" msgstr "Oorvloei woorde na:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -931,86 +1003,92 @@ "(in karakters) na wat die redigeerder sal automaties begin 'n nuwe lyn." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "&Indentation" msgid "Input Mode" msgstr "Inkeping" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "&Indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "Inkeping module:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "Outo hakkies" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "Kies na Ooreenstemmende Hakkie" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "Lêertipe:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 -#, fuzzy +#, fuzzy, kde-format #| msgid "

Select the marker type you want to change.

" msgid "Select the filetype you want to change." msgstr "

Kies die merker tipe wat jy wil verander.

" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Maak 'n nuwe lêer tipe." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 -#, fuzzy +#, fuzzy, kde-format #| msgid "&New..." msgid "&New" msgstr "Nuwe..." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Verwyder die huidige lêer tipe." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 -#, fuzzy +#, fuzzy, kde-format msgid "&Delete" msgstr "Gekose" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 -#, fuzzy +#, fuzzy, kde-format msgid "Properties" msgstr "Boks Eienskappe" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -1019,24 +1097,26 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "Seksie:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" "Die seksie naam is gebruik om die lêer tipes in kieslyste te organiseer." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 -#, fuzzy +#, fuzzy, kde-format msgid "&Variables:" msgstr "Veranderlikes:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

This string allows you to configure Kate's settings for the files " #| "selected by this mimetype using Kate variables. You can set almost any " @@ -1056,28 +1136,28 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Highlighting" msgid "&Highlighting:" msgstr "Verligting" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation" msgid "&Indentation Mode:" msgstr "Inkeping" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 -#, fuzzy +#, fuzzy, kde-format #| msgid "File e&xtensions:" msgid "File e&xtensions:" msgstr "Lêer uitbreidings:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "The wildcards mask allows you to select files by filename. A typical mask " #| "uses an asterisk and the file extension, for example *.txt; *.texttext/plain; " @@ -1115,19 +1196,20 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Vertone 'n assistent wat jou help om maklik mimetipes te kies." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 -#, fuzzy +#, fuzzy, kde-format #| msgid "Prio&rity:" msgid "P&riority:" msgstr "Prioriteit:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "Sets a priority for this file type. If more than one file type selects " #| "the same file, the one with the highest priority will be used." @@ -1140,20 +1222,21 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 -#, fuzzy +#, fuzzy, kde-format #| msgid "Highlighting Rules" msgid "Download Highlighting Files..." msgstr "Verligting Reëls" #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation mode:" msgid "Default indentation mode:" msgstr "Inkeping module:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1163,48 +1246,49 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "Inkeping" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "Tabelvormers" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Replace" msgid "&Spaces" msgstr "Vervang" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation with Spaces" msgid "&Indentation width:" msgstr "Inkeping met Spasies" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "Tabelvormers" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tab width:" msgid "Tab wi&dth:" msgstr "Oortjie wydte:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1214,13 +1298,14 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation Rules" msgid "Indentation Properties" msgstr "Inkeping Reëls" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1228,13 +1313,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Keep extra spaces" msgid "&Keep extra spaces" msgstr "Hou addisionele spasies" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1242,18 +1328,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indentation Actions" msgstr "Inkeping" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1262,13 +1350,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Backspace key indents" msgid "&Backspace key in leading blank space unindents" msgstr "Backspace sleutel doen inkeping" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~| "

Tab key action (if no selection exists) Tab to align the current line in the current code block like in emacs, " -#~| "make Tab a shortcut to the action Align.\">More ...

" -#~ msgid "" -#~ "\n" -#~ "

Data Recovery (Help)

Could " -#~ "not recover all data. The swap file was probably incomplete.

" -#~ msgstr "" -#~ "\n" -#~ "

إجراء مفتاح التبويب (إذا لم يحدد شيء) Tab " -#~ "لمحاذاة نص السطر الحالي في كتلة الشفرة الحالية كما في إيماكس، اجعل " -#~ "التبويب إختصار للإجراء Tab حاذ.\">للمزيد ...

" - -#~ msgid "Overwrite" -#~ msgstr "اطمس" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "

Tab key action (if no selection exists) Tab to align the current line in the current code block like in emacs, " -#~| "make Tab a shortcut to the action Align.\">More ...

" -#~ msgid "" -#~ "\n" -#~ "

Data Recovery (Help)

The file was not closed appropriately. Do you want to recover the " -#~ "data?

" -#~ msgstr "" -#~ "\n" -#~ "

إجراء مفتاح التبويب (إذا لم يحدد شيء) Tab " -#~ "لمحاذاة نص السطر الحالي في كتلة الشفرة الحالية كما في إيماكس، اجعل " -#~ "التبويب إختصار للإجراء Tab حاذ.\">للمزيد ...

" - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "المدى" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "الألوان" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "الألوان" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "ال&لون العادي..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "ال&لون العادي..." - -#~ msgid "Template Background" -#~ msgstr "خلفية القالب" - -#~ msgid "Collapse One Local Level" -#~ msgstr "طي مستوى محلّي واحد" - -#~ msgid "Expand One Local Level" -#~ msgstr "توسيع مستوى محلّي واحد" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "طي المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "توسيع المستوى الأعلى" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "طي المستوى الأعلى" - -#~ msgid "&Auto completion enabled" -#~ msgstr "الإ&تمام الآلي ممكن" - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "ال&تنسيق:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "تعذر العثور على مكون محرر النصوص لكيدي ؛\n" -#~ "المرجو فحص تثبيتك لكيدي." - -#~ msgid "Use this to close the current document" -#~ msgstr "استعمل هذا لغلق الوثيقة الحالية" - -#~ msgid "Use this command to create a new document" -#~ msgstr "استعمل هذا الأمر لإنشاء وثيقة جديدة" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "استعمل هذا الأمر لفتح ملف موجود لتحريره" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "يسرد هذا الملفاتَ التي فتحتها مؤخرا، ويسمح لك بفتحها بسهولة مرة أخرى." - -#~ msgid "&New Window" -#~ msgstr "نافذة &جديدة" - -#~ msgid "Create another view containing the current document" -#~ msgstr "أنشئ عرضا أخر يحوي الوثيقة الحالية." - -#~ msgid "Choose Editor..." -#~ msgstr "اختر المحرر..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "تجاوز الإعدادات العامة للنظام للمكون التحرير الإفتراضي" - -#~ msgid "Close the current document view" -#~ msgstr "أغلق عرض الوثيقة الحالية" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "استعمل هذا الأمر لإظهار أو إخفاء شريط حالة العرض" - -#~ msgid "Sho&w Path" -#~ msgstr "أ&ظهر المسار" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "أظهر المسار الكامل للوثيقة في عنوان النافذة" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "اضبط اسناد اختصارات لوحة المفاتيح للتطبيق." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "اضبط العناصر التي تريد أن تضعها في شريط أو شرائط الأدوات." - -#~ msgid "&About Editor Component" -#~ msgstr "&حول مكون التحرير" - -#~ msgid " INS " -#~ msgstr "يدرج" - -#~ msgid " LINE " -#~ msgstr "سطر " - -#~ msgid "Open File" -#~ msgstr "افتح ملف" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "تعذرت قراءة الملف المعطى، تأكد من وجوده وقابلية قراءته للمستخدم الحال." - -#~ msgid " BLOCK " -#~ msgstr "كتلة" - -#~ msgid "Read the contents of stdin" -#~ msgstr "اقرأ محتويات الدفق الداخل" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "حدد ترميز الملف المراد فتحه" - -#~ msgid "Navigate to this line" -#~ msgstr "تصفح إلى هذا السطر" - -#~ msgid "Navigate to this column" -#~ msgstr "تصفح إلى هذا العمود" - -#~ msgid "KWrite" -#~ msgstr "ك.رايت" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "ك.رايت - محرر النصوص" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 مؤلفو كيت" - -#~ msgid "Choose Editor Component" -#~ msgstr "اختر مكون التحرير" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "الدليل الذي يحوي الاختبارات والدليل الأساسي ودليل الخرج." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "قارن أخطاء اختبار التشغيل بلقطة . تُستعمل مبدئيا أحدث لقطة " -#~ "ملتقطة أو لا شيء إن لم توجد أية لقطة." - -#~ msgid "Do not suppress debug output" -#~ msgstr "لا تمح خرج التنقيح" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "أعد توليد السطر الأساسي (بدل الفحص)" - -#~ msgid "Keep output files even on success" -#~ msgstr "احتفظ بملفات الخرج ولو بعد النجاح" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "احفظ أخطاء هذا الاختبار كلقطة فشل " - -#~ msgid "Show the window while running tests" -#~ msgstr "أظهر النافذة خلال إجراء الاختبارات" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "أجر اختبارا واحدا فقط. يسمح بالخيارات المتعددة." - -#~ msgid "Put output in instead of /output" -#~ msgstr "ضع الخرج في بدلا من /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "شغل كل حالة اختبار في عملية منفصلة" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "الدليل الذي يحوي دلائل الاختبارات والدليل الأساسي والخرج. يؤخذ بعين " -#~ "الاعتبار فقط إذا لم يحدد -b." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "المسار النسبي إلى صندوق الاختبارات، أو دليل صناديق الاختبار المراد " -#~ "تشغيلها (مقابل ل -t)." - -#~ msgid "TestRegression" -#~ msgstr "اختبار التراجع" - -#~ msgid "Regression tester for kate" -#~ msgstr "مختبِر التراجع لكيت" - -#~ msgid "Error: " -#~ msgstr "خطأ: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "خطأ في مناداة '%1'. الرجاء التأكد من أخطاء بنية الجمل." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "إذا كان هذا فعالا، سيحسب المحرر عدد الفراغات التي قد توصل إلى التبويب " -#~ "التالي كما هو محدد في عرض التبويب، ويدرج هذا العدد من الفراغات عوضا عن " -#~ "محرف التبويب." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "أ&درج فراغات بدل التبويبات" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "ا&عرض الفرق" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "معطل" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "فُتح الملف %1 باعتباره مرمّزا ب‍ UTF-8، لكنه يحتوي على محارف غير صالحة. لذا " -#~ "فهو في وضع القراءة فقط، لأن حفظه قد يؤدي إلى إتلاف محتواه. إما أن تعيد " -#~ "فتحه باستعمال الترميز الصحيح ، أو أن تفعّل نمط القراءة والكتابة معا من " -#~ "القائمة للتمكن من تحريره." - -#~ msgid "Binary File Opened" -#~ msgstr "فُتح ملف ثنائي" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "فُتح ملف UTF-8 فاسد" - -#~ msgid "Universal" -#~ msgstr "عالمي" - -#~ msgid "&Word Wrap Document" -#~ msgstr "ل&فّ كلمات المستند" - -#~ msgid "Modify search behavior" -#~ msgstr "عدّل سلوك البحث" - -#~ msgid "&Options" -#~ msgstr "&خيارات" - -#~ msgid "From &cursor" -#~ msgstr "من ال&مؤشر" - -#~ msgid "Hi&ghlight all" -#~ msgstr "أبر&ز الكل " - -#~ msgid "Add &BOM" -#~ msgstr "أ&ضف BOM" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 مؤلفو كيت" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "المطور وصاحب بميزة الإبراز" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "تعذَرت قراءة الملف '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "فشل بدء المؤول للمخطوط %1, الأمر %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "هذا سينفذ المستند الحالي كجافاسكربت في داخل Kate." - -#~ msgid "Success" -#~ msgstr "نجاح" - -#~ msgid "Move Character Right" -#~ msgstr "انقل المحرف يمينا" - -#~ msgid "Move Character Left" -#~ msgstr "انقل المحرف يسارا" - -#~ msgid "&Overwrite" -#~ msgstr "ا&طمس" diff -Nru ktexteditor-5.28.0/po/ast/ktexteditor5.po ktexteditor-5.31.0/po/ast/ktexteditor5.po --- ktexteditor-5.28.0/po/ast/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ast/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -1,315 +1,360 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# enolp , 2015, 2016. +# enolp , 2016. msgid "" msgstr "" -"Project-Id-Version: katepart4\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-02-06 01:06+0100\n" -"Last-Translator: enolp \n" -"Language-Team: Asturian <>\n" -"Language: ast_ES\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2016-12-29 16:12+0100\n" +"Last-Translator: enolp \n" +"Language-Team: Asturian \n" +"Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Poedit-Language: asturian\n" "X-Generator: Lokalize 2.0\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" -msgstr "Configuración de completáu de códigu" +msgstr "Configración de completáu de códigu" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Siempres" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Clases" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Cadarmes" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Xuniones" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funciones" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variables" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Numberaciones" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Prefixu" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Iconu" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nome" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" -msgstr "Argumentos" +msgstr "Argumentu" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Clas" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Cadarma" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Xunión" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Función" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variable" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Numberación" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Plantía" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtual" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" -msgstr "" +msgstr "Propiedá desconocida" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Ficheru" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Editar" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" -msgstr "" +msgstr "Dir a" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Ver" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" -msgstr "" +msgstr "Berbesos" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Ferramientes" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 -#, fuzzy +#, kde-format msgid "Spelling" -msgstr "Comprobar ortografía" +msgstr "Ortografía" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Axustes" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" -msgstr "" +msgstr "Barra de ferramientes principal" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy -#| msgid "" -#| "If this option is checked, the text lines will be wrapped at the view " -#| "border on the screen." +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" -"Si seleiciones esta opción, les llinies de testu axustaránse al berbesu de " -"la vista na pantalla." #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy -#| msgid "Show Folding &Markers" +#, kde-format msgid "Show &folding markers" -msgstr "Amosar &marques de plegáu" +msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy -#| msgid "" -#| "If this option is checked, the text lines will be wrapped at the view " -#| "border on the screen." +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." msgstr "" -"Si seleiciones esta opción, les llinies de testu axustaránse al berbesu de " -"la vista na pantalla." #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy -#| msgid "Print the current document." +#, kde-format msgid "Show preview of folded code" -msgstr "Imprentar el documentu actual." +msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

If this option is checked, every new view will display an icon border on " "the left hand side.

The icon border shows bookmark signs, for instance." @@ -318,11 +363,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -330,11 +377,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -342,13 +391,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy -#| msgid "Show Folding &Markers" +#, kde-format msgid "Show line modification markers" -msgstr "Amosar &marques de plegáu" +msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

If this option is checked, every new view will show marks on the vertical " "scrollbar.

These marks will show bookmarks, for instance.

" @@ -356,109 +405,99 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy -#| msgid "" -#| "If this option is checked, the text lines will be wrapped at the view " -#| "border on the screen." +#, kde-format msgid "" "

If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

" msgstr "" -"Si seleiciones esta opción, les llinies de testu axustaránse al berbesu de " -"la vista na pantalla." #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 -#, fuzzy -#| msgid "" -#| "If this option is checked, the text lines will be wrapped at the view " -#| "border on the screen." +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." msgstr "" -"Si seleiciones esta opción, les llinies de testu axustaránse al berbesu de " -"la vista na pantalla." #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 -#, fuzzy -#| msgid "Show Scroll&bar Marks" +#, kde-format msgid "Show scrollbar mini-map" -msgstr "Amosar marques de &barres de desplazamientu" +msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 -#, fuzzy -#| msgid "" -#| "If this option is checked, the text lines will be wrapped at the view " -#| "border on the screen." +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." msgstr "" -"Si seleiciones esta opción, les llinies de testu axustaránse al berbesu de " -"la vista na pantalla." #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 -#, fuzzy -#| msgid "Save the current document" +#, kde-format msgid "Map the whole document" -msgstr "Guardar el documentu actual" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy -#| msgid "W&idth:" -msgid "Minim&ap Width" -msgstr "Anc&hura:" +#, fuzzy, kde-format +#| msgid "Minim&ap Width" +msgid "Minim&ap Width:" +msgstr "Anchor de mini-m&apa" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy -#| msgid "&Always On" +#, kde-format msgid "Always Off" -msgstr "&Siempre activu" +msgstr "" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -466,55 +505,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" -msgstr "" +msgstr "Comandu" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" -msgstr "" +msgstr "Descripción" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." -msgstr "" +msgstr "Editar entrada..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" -msgstr "" +msgstr "Desaniciar entrada" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." -msgstr "" +msgstr "Amestar entrada..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" -msgstr "" +msgstr "&Descripción:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" -msgstr "" +msgstr "&Estaya:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Xeneral" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy -#| msgid "Unable to open %1" +#, kde-format msgid "Enable &auto completion" -msgstr "Imposible abrir %1" +msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy -#| msgid "Invoke Code Completion" +#, kde-format msgid "A&uto Word Completion" -msgstr "Invocar la terminación de códigu" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy -#| msgid "Remove all bookmarks of the current document." +#, kde-format msgid "Remove tail on complete" -msgstr "Desaniciar tolos marcadores del documentu actual." +msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy -#| msgid "Invoke Code Completion" +#, kde-format msgid "&Keyword completion" -msgstr "Invocar la terminación de códigu" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -612,31 +667,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" @@ -645,6 +706,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -653,121 +715,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" -msgstr "" +msgstr "Métodu d'agrupación" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

This option does " @@ -778,12 +864,14 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

Note " @@ -791,117 +879,131 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy -#| msgid "Vi Input Mode" +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" -msgstr "Mou d'entrada de VI" +msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy -#| msgid "Move to Matching Bracket" +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" -msgstr "Mover al corchete pareya" +msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy -#| msgid "Select to Matching Bracket" +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" -msgstr "Esbillar fasta'l corchete pareya" +msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" -msgstr "Roland Pabel" +msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" -msgstr "" +msgstr "&Triba de ficheru:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" -msgstr "&Nuevu" +msgstr "" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Desaniciar" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" -msgstr "" +msgstr "Propiedaes" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Seición:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variables:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -911,21 +1013,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" -msgstr "" +msgstr "E&stensiones de ficheros:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -934,11 +1040,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" -msgstr "" +msgstr "&Tribes MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -947,16 +1055,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" -msgstr "" +msgstr "P&rioridá:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -964,16 +1075,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -983,36 +1097,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" -msgstr "" +msgstr "&Espacios" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1022,11 +1143,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1034,11 +1157,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1046,16 +1171,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1064,11 +1192,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

Data Recovery (Help)

Could " -#~ "not recover all data. The swap file was probably incomplete.

" -#~ msgstr "" -#~ "\n" -#~ "

Datagendannelse (Hjælp)

Kunne " -#~ "ikke gendanne alle data. Swap-filen var sandsynligvis ukomplet.

" - -#~ msgid "OK" -#~ msgstr "O.k." - -#~ msgid "Overwrite" -#~ msgstr "Overskriv" - -#~ msgid "" -#~ "\n" -#~ "

Data Recovery (Help)

The file was not closed appropriately. Do you want to recover the " -#~ "data?

" -#~ msgstr "" -#~ "\n" -#~ "

Datagendannelse (Hjælp)

Filen blev ikke lukket korrekt. Vil du gendanne data?

" - -#~ msgid "Cancel" -#~ msgstr "Annullér" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Farver" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Farver" - -#~ msgid "Export HlColors..." -#~ msgstr "Eksportér HlColors..." - -#~ msgid "Import HlColors..." -#~ msgstr "Importér HlColors..." - -#~ msgid "Template Background" -#~ msgstr "Skabelonbaggrund" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Fold et lokalt niveau sammen" - -#~ msgid "Expand One Local Level" -#~ msgstr "Udfold et lokalt niveau" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Fold topniveau sammen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Udfold topniveau" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Fold topniveau sammen" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Auto-fuldførelse aktiveret" - -#~ msgid "Sort the selected text or whole document in natural order.
" -#~ msgstr "" -#~ "Sortér den markerede tekst eller hele dokumentet i naturlig rækkefølge." -#~ "
" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "" -#~ "Med en JavaScript-funktion som argument, kaldes dette for listen af " -#~ "(markerede) linjer og" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "" -#~ "Med en JavaScript-funktion som argument, kaldes dette for listen af " -#~ "(markerede) linjer " - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "&Format:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "En tekst-editor-komponent til KDE kunne ikke findes;\n" -#~ "tjek venligst din KDE-installation." - -#~ msgid "Use this to close the current document" -#~ msgstr "Brug denne til at lukke aktive dokument" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Brug denne kommando til at oprette nyt dokument" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "" -#~ "Brug denne kommando til at åbne et eksisterende dokument til redigering" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Denne lister filer som du har åbnet for nylig, og lader dig åbne dem igen." - -#~ msgid "&New Window" -#~ msgstr "&Nyt vindue" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Opret et andet tekstvindue med det aktive dokument" - -#~ msgid "Choose Editor..." -#~ msgstr "Vælg editor..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Tilsidesæt systemets indstilling for standardredigeringskomponent" - -#~ msgid "Close the current document view" -#~ msgstr "Luk det aktive dokumentvindue" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Brug denne kommando til at vise eller skjule tekstvinduets statuslinje" - -#~ msgid "Sho&w Path" -#~ msgstr "&Vis sti" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Vis den fulde sti til dokumentet i vinduets titellinje" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Indstil programmets tildeling af tastaturgenveje." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Indstil hvilke elementer der skal vises i værktøjslinje(r)." - -#~ msgid "&About Editor Component" -#~ msgstr "&Om editor-komponent" - -#~ msgid " INS " -#~ msgstr " INS " - -#~ msgid " LINE " -#~ msgstr " LINJE " - -#~ msgid "Open File" -#~ msgstr "Åbn fil" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Den angivne fil kunne ikke læses, tjek om den eksisterer og om den er " -#~ "læsbar for den nuværende bruger." - -#~ msgid " BLOCK " -#~ msgstr " BLOK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Læs indeholdet af stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Vælg tegnsæt for filen der skal åbnes" - -#~ msgid "Navigate to this line" -#~ msgstr "Navigér til denne linje" - -#~ msgid "Navigate to this column" -#~ msgstr "Navigér til denne kolonne" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - Tekst-editor" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2004 Kate-udviklerne" - -#~ msgid "Choose Editor Component" -#~ msgstr "Vælg editor-komponent" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Mappe som indeholder tester, basismappe og outputmapper." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Sammenlign fejl i denne testkørsel med snapshot . Som standard " -#~ "bruges det nyligst optagede fejl-snapshot eller intet hvis intet findes." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Skjul ikke fejlsøgningsoutput" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Regenerér basislinje (i stedet for at tjekke)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Behold outputfiler selv ved succes" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Gem fejl i denne testkørsel som fejl-snapshot " - -#~ msgid "Show the window while running tests" -#~ msgstr "Vis vinduet mens testene køres" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Kør kun en enkelt test. Flere tilvalg er tilladt." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Gem output i i stedet for /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Kør hver testcase i en seperat proces." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Mappe som indeholder tests-, basedir- og output-mapper. Tages kun i " -#~ "betragtning hvis -b ikke er angivet." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Relativ sti til testcase, eller mappe for testcases som skal køres " -#~ "(svarer til -t)." - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for kate" -#~ msgstr "Regressionstest til Kate" - -#~ msgid "Error: " -#~ msgstr "Fejl: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Fejl ved kald af \"%1\". Kontrollér for syntaksfejl." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Hvis denne indstilling er aktiveret, vil editoren beregne antallet af " -#~ "mellemrum op til næste tabulatorposition som defineret af " -#~ "tabulatorbredden, og indsætte dette antal mellemrum i stedet for et " -#~ "tabulator-tegn." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "&Indsæt mellemrum i stedet for tabulatorer" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "&Vis forskel" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Deaktiveret" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "Filen %1 blev åbnet med tegnsættet UTF-8 men indeholdt ugyldige tegn. Den " -#~ "er sat i skrivebeskyttet tilstand da indholdet kan blive ødelagt hvis den " -#~ "gemmes. Åbn filen igen med det korrekte tegnsæt valgt eller aktivér læs/" -#~ "skriv-tilstand igen i menuen for at kunne redigere den." - -#~ msgid "Binary File Opened" -#~ msgstr "Binær fil åbnet" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Defekt UTF-8 fil åbnet" - -#~ msgid "Universal" -#~ msgstr "Universelt" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Tekstombryd dokument" - -#~ msgid "Modify search behavior" -#~ msgstr "Indstil søgeopførsel" - -#~ msgid "&Options" -#~ msgstr "&Indstillinger" - -#~ msgid "From &cursor" -#~ msgstr "Fra &markør" - -#~ msgid "Hi&ghlight all" -#~ msgstr "&Fremhæv alle" - -#~ msgid "Add &BOM" -#~ msgstr "Tilføj &BOM" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 Kate-udviklerne" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Udvikler og ekspert i syntaksfremhævning" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Kan ikke læse filen: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Kunne ikke starte fortolker til scriptet %1, kommando %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "Dette afvikler det aktive dokument som JavaScript indeni Kate." - -#~ msgid "Success" -#~ msgstr "Succes" - -#~ msgid "Move Character Right" -#~ msgstr "Flyt tegn til højre" - -#~ msgid "Move Character Left" -#~ msgstr "Flyt tegn til venstre" - -#~ msgid "&Overwrite" -#~ msgstr "&Overskriv" diff -Nru ktexteditor-5.28.0/po/de/ktexteditor5.po ktexteditor-5.31.0/po/de/ktexteditor5.po --- ktexteditor-5.28.0/po/de/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/de/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -3,7 +3,7 @@ # Stephan Johach , 2004, 2005, 2006, 2007. # Georg Schuster , 2005. # Thomas Reitelbach , 2005, 2006, 2007, 2008, 2009, 2010. -# Burkhard Lück , 2006, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016. +# Burkhard Lück , 2006, 2008, 2009, 2011, 2012, 2013, 2014, 2015, 2016, 2017. # Frederik Schwarzer , 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016. # Johannes Obermayr , 2010. # Panagiotis Papadopoulos , 2010. @@ -12,9 +12,9 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-16 21:55+0100\n" -"Last-Translator: Frederik Schwarzer \n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-08 21:27+0100\n" +"Last-Translator: Burkhard Lück \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -24,257 +24,316 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Einrichtung der Quelltextvervollständigung" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Immer" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Parameter-Kurzinfo" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Beste Übereinstimmung" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Namensräume" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Klassen" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Structs" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unions" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funktionen" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variablen" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Aufzählungen" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Präfix" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Symbol" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Gültigkeitsbereich" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Name" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumente" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Public" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protected" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Private" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Static" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Constant" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Namensraum" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Klasse" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struct" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Union" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funktion" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variable" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Aufzählung" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Template" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtual" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Überschreiben" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Im Text" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Friend" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Lokaler Gültigkeitsbereich" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Gültigkeitsbereich Namensraum" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Globaler Gültigkeitsbereich" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Unbekannte Eigenschaft" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Sprach-Schlüsselwörter" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Autovervollständigung" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Shell-Eingabevervollständigung" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Wort oben erneut verwenden" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Wort unten erneut verwenden" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Datei" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Bearbeiten" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Suchaktionen" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Gehe zu" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Ansicht" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Zeilenumbruch" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Randbereiche" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Quelltextausblendung" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "E&xtras" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Wortvervollständigung" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Rechtschreibung" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Einstellungen" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Haupt-Werkzeugleiste" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -283,12 +342,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "&Markierungen für Quelltextausblendungen anzeigen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

The icon border shows bookmark signs, for instance." @@ -321,11 +381,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "S&ymbolspalte anzeigen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -335,11 +397,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Zeilen&nummern anzeigen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -349,11 +413,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Markierungen für geänderte Zeilen anzeigen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

If this option is checked, every new view will show marks on the vertical " "scrollbar.

These marks will show bookmarks, for instance.

" @@ -364,12 +430,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "&Markierung auf Bildlaufleiste anzeigen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

" msgstr "

Dieses Symbol wird im Menü und in der Werkzeugleiste angezeigt.

" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Beschreibung:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategorie:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Allgemein" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "&Autovervollständigung aktivieren" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "A&utovervollständigung" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Minimale Wortlänge für Vervollständigung:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Bestehendes Wortende entfernen, wenn eine Vervollständigung aus der Liste " @@ -591,16 +694,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Bei Vervollständigung Wortende entfernen" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "&Schlüsselwortvervollständigung" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -610,31 +716,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Sortierung" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alphabetisch" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Umgekehrt" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Groß-/Kleinschreibung beachten" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Vererbungstiefe" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Sortierung der Gruppierungen (Wählen Sie eine Gruppierungsmethode):" @@ -643,6 +755,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -651,121 +764,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtern" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Nur im passenden Kontext" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Vervollständigungen mit den folgende Attributen ausblenden:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Maximale Vererbungstiefe:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Unendlich" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Gruppierung" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Gruppierungsmethode" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Typ des Gültigkeitsbereichs (lokal, Namensraum, global)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Gültigkeitsbereich (z. B. je Klasse)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Zugriffsart (public usw.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Elementtyp (Funktion usw.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Eigenschaften für Gruppierung nach Zugriffsart" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Const in Gruppierung einbeziehen" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Static in Gruppierung einbeziehen" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Signals und Slots in Gruppierung einbeziehen" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Eigenschaften für Gruppierung nach Element" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Templates in Gruppierung einbeziehen" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Spaltenzusammenführung" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Spalten" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Zusammengeführt" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Angezeigt" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Statischer Zeilenumbruch" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

This option does " @@ -784,12 +921,14 @@ "Konfigurationsseite.

" #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Statischen Zeilen&umbruch aktivieren" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

Note " @@ -801,17 +940,20 @@ "Schriftart mit fester Zeichenbreite verwenden.

" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Markierung für s&tatischen Zeilenumbruch anzeigen" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Zeilen&umbruch bei:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -820,73 +962,88 @@ "Zeichenposition fest, an der automatisch eine neue Zeile beginnt." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Eingabemodus" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format +#| msgid "Default input mode" +msgid "Default input mode:" msgstr "Standard-Eingabemodus" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Automatische Klammern" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Automatische Klammern aktivieren" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Kopieren und Einfügen" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" "Die aktuelle Zeile kopieren/ausschneiden, wenn keine Markierung vorliegt" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Dateityp:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Wählen Sie den Dateityp aus, den Sie bearbeiten möchten." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Einen neuen Dateityp erstellen." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Neu" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Den aktuellen Dateityp löschen." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Löschen" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Eigenschaften" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -894,11 +1051,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Abschnitt:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" "Der Name des Abschnitts wird zur Organisation der Dateitypen in Menüs " @@ -906,11 +1065,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variablen:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -925,21 +1086,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Hervorhebung:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "E&inrückungsmodus:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Datei-&Erweiterungen:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -952,11 +1117,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME-&Typen:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -968,16 +1135,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Zeigt einen Assistenten an, der bei der Auswahl von MIME-Typen hilft." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "&Priorität:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -988,16 +1158,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Hervorhebungsdateien herunterladen ..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Standard-Einrückungsmodus:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1011,36 +1184,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Einrücken mit" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulatoren" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Leerzeichen" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Einrückungstiefe:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabulatoren &und Leerzeichen" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Tabulator&weite:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1055,11 +1235,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Einrückungseigenschaften" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1069,11 +1251,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Zusätzliche Leerzeichen &behalten" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1084,6 +1268,7 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "" "Einrückung von &Quelltext vornehmen, der aus der Zwischenablage eingefügt " @@ -1091,11 +1276,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Einrückungs-Aktionen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1107,6 +1294,7 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "" "&Rücktaste verringert Einrückungsebene (im führenden Leerbereich einer " @@ -1114,6 +1302,7 @@ #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

Data Recovery (Help)

Could " -#~ "not recover all data. The swap file was probably incomplete.

" -#~ msgstr "" -#~ "\n" -#~ "

Daten-Wiederherstellung (Hilfe)

Es können nicht alle Daten " -#~ "wiederhergestellt werden. Die Sicherungsdatei ist wahrscheinlich nicht " -#~ "vollständig.

" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Überschreiben" - -#~ msgid "" -#~ "\n" -#~ "

Data Recovery (Help)

The file was not closed appropriately. Do you want to recover the " -#~ "data?

" -#~ msgstr "" -#~ "\n" -#~ "

Daten-Wiederherstellung (Hilfe)

Die Datei " -#~ "wurde nicht ordnungsgemäß geschlossen. Möchten Sie die Daten " -#~ "wiederherstellen?

" - -#~ msgid "Cancel" -#~ msgstr "Abbrechen" - -#~ msgid "Stop" -#~ msgstr "Anhalten" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Farben" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Farben" - -#~ msgid "Export HlColors..." -#~ msgstr "Hervorhebungsfarben exportieren ..." - -#~ msgid "Import HlColors..." -#~ msgstr "Hervorhebungsfarben importieren ..." - -#~ msgid "Template Background" -#~ msgstr "Hintergrund für Vorlagen" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Eine lokale Ebene einklappen" - -#~ msgid "Expand One Local Level" -#~ msgstr "Eine lokale Ebene ausklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Oberste Ebene einklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Oberste Ebene ausklappen" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Oberste Ebene einklappen" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Autovervollständigung aktivieren" - -#~ msgid "Form" -#~ msgstr "Formular" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Es kann keine Text-Editor-Komponente von KDE gefunden werden.\n" -#~ "Überprüfen Sie Ihre KDE-Installation. " - -#~ msgid "Use this to close the current document" -#~ msgstr "Das aktive Dokument schließen" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Ein neues Dokument erstellen" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Ein existierendes Dokument zur Bearbeitung öffnen" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Diese Liste zeigt kürzlich geöffnete Dateien an und erlaubt den schnellen " -#~ "Zugriff auf diese." - -#~ msgid "&New Window" -#~ msgstr "&Nächstes Fenster" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Erstellt eine neue Ansicht mit dem aktuellen Dokument." - -#~ msgid "Choose Editor..." -#~ msgstr "Editor auswählen ..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Überschreibt die Systemvorgabe für das Standard-Editormodul." - -#~ msgid "Close the current document view" -#~ msgstr "Schließt die aktuelle Dokument-Ansicht." - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Verwenden Sie diesen Befehl zum Anzeigen oder Ausblenden der Statuszeile " -#~ "der Ansicht." - -#~ msgid "Sho&w Path" -#~ msgstr "&Pfad anzeigen" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Zeigt den vollständigen Pfad des Dokuments im Fenstertitel." - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Richten Sie die Zuweisung der Kurzbefehle für die Anwendung ein." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "" -#~ "Legen Sie fest, welche Einträge in der oder den Werkzeugleisten " -#~ "erscheinen sollen." - -#~ msgid "&About Editor Component" -#~ msgstr "Ü&ber Eingebettete Editorkomponente" - -#~ msgid " INS " -#~ msgstr " EINF " - -#~ msgid " LINE " -#~ msgstr " ZEILE " - -#~ msgid "Open File" -#~ msgstr "Datei öffnen" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Die angegebene Datei kann nicht gelesen werden. Prüfen Sie, ob die Datei " -#~ "existiert oder für den aktuellen Benutzer lesbar ist." - -#~ msgid " BLOCK " -#~ msgstr " BLOCK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Liest Eingaben von der Standardeingabe (stdin)" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Festlegen der Kodierung für die zu öffnende Datei" - -#~ msgid "Navigate to this line" -#~ msgstr "Zu dieser Zeile springen" - -#~ msgid "Navigate to this column" -#~ msgstr "In diese Spalte springen" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite – Text-Editor" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "© 2000–2005 Die Kate-Autoren" - -#~ msgid "Choose Editor Component" -#~ msgstr "Editor-Modul auswählen" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Ordner, der Tests, den Basisordner und die Ausgabeordner enthält." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Vergleiche Fehler dieses Testlaufs mit Schnappschuss . Als " -#~ "Voreinstellung wird mit dem zuletzt gespeicherten Fehlerschnappschuss " -#~ "verglichen oder gar nicht, wenn keiner vorliegt." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Debug-Ausgaben anzeigen" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Grundlinie wiederherstellen (anstelle der Prüfung)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Ausgabedateien auch bei Erfolg nicht löschen" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "" -#~ "Fehlgeschlagene Testläufe dieses Durchgangs als Fehlerschnappschuss " -#~ " speichern" - -#~ msgid "Show the window while running tests" -#~ msgstr "Fenster während des Testdurchlaufs anzeigen" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Nur einzelne Prüfung durchführen. Mehrere Optionen sind erlaubt." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Ausgabe in ablegen anstelle von /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Jeden Test als eigenen Prozess starten." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Ordner, der Tests, den Basisordner und die Ausgabeordner enthält. Wird " -#~ "nur berücksichtigt, wenn -b nicht angegeben ist." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Relativer Pfad zum Testfall oder Ordner der auszuführenden Testfälle " -#~ "(entspricht -t)." - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for kate" -#~ msgstr "Regressionstester für Kate" - -#~ msgid "Error: " -#~ msgstr "Fehler: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "" -#~ "Fehler beim Aufruf von „%1“. Bitte prüfen Sie das Skript auf Syntax-" -#~ "Fehler." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Ist diese Einstellung markiert, berechnet der Editor die Anzahl " -#~ "Leerzeichen bis zur nächsten Tabulatorposition (nach der angegebenen " -#~ "Tabulatorbreite) und ersetzt den Tabulator durch die entsprechende Anzahl " -#~ "Leerzeichen." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "&Leerzeichen statt Tabulatoren für Einrückung verwenden" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "&Unterschiede anzeigen" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Deaktiviert" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "Die Datei %1 wurde als UTF-8 kodiert geöffnet, enthält aber ungültige " -#~ "Zeichen. Der Zugriff wurde auf Nur-Lesen gesetzt, da ein Speichern den " -#~ "Inhalt der Datei zerstören könnte. Öffnen Sie die Datei erneut mit der " -#~ "korrekten Kodierung oder deaktivieren Sie den Nur-Lesen-Modus über das " -#~ "Menü." - -#~ msgid "Binary File Opened" -#~ msgstr "Binärdatei geöffnet" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Fehlerhafte UTF-8-Datei geöffnet" - -#~ msgid "Universal" -#~ msgstr "Allgemein" - -#~ msgid "&Word Wrap Document" -#~ msgstr "Zeilenumbruch &für Dokument" - -#~ msgid "Modify search behavior" -#~ msgstr "Suchverhalten ändern" - -#~ msgid "&Options" -#~ msgstr "&Optionen" - -#~ msgid "From &cursor" -#~ msgstr "&Ab Cursorposition" - -#~ msgid "Hi&ghlight all" -#~ msgstr "&Alle hervorheben" - -#~ msgid "Add &BOM" -#~ msgstr "&Byte-Reihenfolge-Markierung (BOM) hinzufügen" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 Die Kate-Autoren" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Entwickler, ist für den Hervorhebungen-Assistent verantwortlich" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Die Datei „%1“ kann nicht gelesen werden." - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "" -#~ "Ausführung des Interpreters für Skript %1, Befehl %2 fehlgeschlagen." - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "" -#~ "Dies führt das aktive Dokument als JavaScript innerhalb von Kate aus." - -#~ msgid "Success" -#~ msgstr "Ergebnis" - -#~ msgid "Move Character Right" -#~ msgstr "Ein Zeichen nach rechts" - -#~ msgid "Move Character Left" -#~ msgstr "Ein Zeichen nach links" - -#~ msgid "&Overwrite" -#~ msgstr "Ü&berschreiben" - -#~ msgid "Plain text\t\t(Alt+1)" -#~ msgstr "Einfacher Text\t\t(Alt+1)" - -#~ msgid "Whole words\t(Alt+2)" -#~ msgstr "Ganze Wörter\t(Alt+2)" - -#~ msgid "Escape sequences\t(Alt+3)" -#~ msgstr "Escape-Sequenzen\t(Alt+3)" - -#~ msgid "Regular expression\t(Alt+4)" -#~ msgstr "Regulärer Ausdruck\t(Alt+4)" - -#~ msgid "Case Sensitive" -#~ msgstr "Groß-/Kleinschreibung beachten" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Dynamischer Zeilenumbruch" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2007 Die Kate-Autoren" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "Kurzbefehle einrichten" - -#~ msgid "Line must be at least 1" -#~ msgstr "Zeile muss mindestens 1 sein" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "So viele Zeilen gibt es in diesem Dokument nicht" - -#~ msgid "Add special item to search pattern" -#~ msgstr "Spezialelement zum Suchmuster hinzufügen" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "" -#~ "Platzhalter (\\0 bis \\9) und Escape-Zeichen (\\n, \\t, ...) auflösen" - -#~ msgid "Add special item to replacement text" -#~ msgstr "Spezialelement zum Ersetzungstext hinzufügen" - -#~ msgid "Highlight all matches" -#~ msgstr "Alle Treffer hervorheben" - -#~ msgid "Match case" -#~ msgstr "Groß-/Kleinschreibung beachten" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "Suche beginnt an der Cursorposition" - -#~ msgid "From cursor" -#~ msgstr "Ab Cursorposition" - -#~ msgid "Selection only " -#~ msgstr "Nur Auswahl" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "Sie versuchen, eine Python-Datei ohne Angabe einer korrekten Zeichensatz-" -#~ "Zeile „%1“ in einem anderen Format als ASCII zu speichern." - -#~ msgid "No encoding header" -#~ msgstr "Vorspann für Zeichensatz-Angabe fehlt" - -#~ msgid "VI: COMMAND LINE" -#~ msgstr "VI: COMMAND LINE" - -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "Das Rechtschreibprogramm lässt sich nicht starten. Bitte vergewissern Sie " -#~ "sich, dass das ausgewählte Rechtschreibprogramm korrekt eingerichtet ist " -#~ "und sich in Ihrem Pfad befindet." - -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "Das Rechtschreibprogramm scheint abgestürzt zu sein." - -#~ msgid "unknown" -#~ msgstr "Unbekannt" - -#~ msgid "Context '%1': Incorrect number of arguments in '%2'" -#~ msgstr "Kontext „%1“: Ungültige Anzahl Argumente in „%2“" - -#~ msgid "Exception, line %1: %2" -#~ msgstr "Ausnahme, Zeile %1: %2" - -#~ msgid "Could not access view." -#~ msgstr "Kein Zugriff auf Ansicht möglich." - -#~ msgid "Could not access lookup object." -#~ msgstr "Kein Zugriff auf Lookup-Objekt möglich." - -#~ msgid "Exception: Unable to find function '%1': %2" -#~ msgstr "Ausnahme: Funktion „%1“ kann nicht gefunden werden: %2" - -#~ msgid "Exception in line %1: %2" -#~ msgstr "Ausnahme in Zeile %1: %2" - -#~ msgid "Sort: None" -#~ msgstr "Sortierung: Keine" - -#~ msgid "Filter: None" -#~ msgstr "Filter: Keine" - -#~ msgid "Setup" -#~ msgstr "Einrichten" - -#~ msgid "&Maximum undo steps:" -#~ msgstr "&Maximale Anzahl Rückgängig-Schritte:" - -#~ msgid "" -#~ "The file %1 was opened with UTF-8 encoding but contained invalid " -#~ "characters. It is set to read-only mode, as saving might destroy it's " -#~ "content. Either reopen the file with the correct encoding chosen or " -#~ "enable the read-write mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "Die Datei %1 wurde als UTF-8 kodiert geöffnet, enthält aber ungültige " -#~ "Zeichen. Der Zugriff wurde auf Nur-Lesen gesetzt, da ein Speichern den " -#~ "Inhalt der Datei zerstören könnte. Öffnen Sie die Datei erneut mit der " -#~ "korrekten Kodierung oder deaktivieren Sie den Nur-Lesen-Modus über das " -#~ "Menü." - -#~ msgid " Static" -#~ msgstr " Static" - -#~ msgid "Print syntax &guide" -#~ msgstr "Syntax&anleitung drucken" - -#~ msgid "" -#~ "

Access " -#~ "Grouping properties

" -#~ msgstr "" -#~ "

Gruppierungen für Zugriffsattribute

" - -#~ msgid "" -#~ "

Item " -#~ "Grouping properties

" -#~ msgstr "" -#~ "

Gruppierungen für Elementattribute

" - -#~ msgid "Print &selected text only" -#~ msgstr "Nur &ausgewählten Text drucken" - -#~ msgid "" -#~ "

This option is only available if some text is selected in the document." -#~ "

If available and enabled, only the selected text is printed.

" -#~ msgstr "" -#~ "

Diese Option ist nur verfügbar, wenn im Dokument Text markiert ist.

Wenn sie verfügbar und aktiviert ist, wird nur der markierte Text " -#~ "gedruckt.

" - -#~ msgid "Print %1" -#~ msgstr "%1 drucken" - -#~ msgid "Nowhere" -#~ msgstr "Keine Vorbelegung" - -#~ msgid "Selection Only" -#~ msgstr "Nur Auswahl" - -#~ msgid "Selection, then Current Word" -#~ msgstr "Auswahl, dann aktuelles Wort" - -#~ msgid "Current Word Only" -#~ msgstr "Nur aktuelles Wort" - -#~ msgid "Current Word, then Selection" -#~ msgstr "Aktuelles Wort, dann Auswahl" - -#~ msgid "Smart search t&ext from:" -#~ msgstr "Intelligente S&uche vorbesetzen mit:" - -#~ msgid "" -#~ "

This determines where a view will get the search text from \n" -#~ "(this will be automatically entered into the Find Text dialog): \n" -#~ "

\n" -#~ "

\n" -#~ "

    \n" -#~ "
  • Nowhere: Don't guess the search text.\n" -#~ "
  • \n" -#~ "
  • Selection Only: Use the current text selection, \n" -#~ "if available.\n" -#~ "
  • \n" -#~ "
  • Selection, then Current Word: Use the current \n" -#~ "selection if available, otherwise use the current word.\n" -#~ "
  • \n" -#~ "
  • Current Word Only: Use the word that the cursor \n" -#~ "is currently resting on, if available.\n" -#~ "
  • \n" -#~ "
  • Current Word, then Selection: Use the current \n" -#~ "word if available, otherwise use the current selection.\n" -#~ "
  • \n" -#~ "
\n" -#~ "

\n" -#~ "

\n" -#~ "Note that, in all the above modes, if a search string has \n" -#~ "not been or cannot be determined, then the Find Text Dialog \n" -#~ "will fall back to the last search text.\n" -#~ "

" -#~ msgstr "" -#~ "

Hierüber wird festgelegt, woher eine Ansicht den Suchtext nimmt,\n" -#~ "der automatisch im Dialog Text suchen eingetragen wird: \n" -#~ "

\n" -#~ "

\n" -#~ "

    \n" -#~ "
  • Keiner:Der Suchtext wird nicht vorbelegt.\n" -#~ "
  • \n" -#~ "
  • Markierung:Die aktuelle Markierung wird verwendet,\n" -#~ "falls vorhanden.\n" -#~ "
  • \n" -#~ "
  • Markierung, sonst aktuelles Wort:Verwendet die aktuelle\n" -#~ "Markierung, falls vorhanden, sonst das aktuelle Wort.\n" -#~ "
  • \n" -#~ "
  • Aktuelles Wort: Verwendet das Wort, in dem sich gerade\n" -#~ "der Cursor befindet, falls vorhanden.\n" -#~ "
  • \n" -#~ "
  • Aktuelles Wort, sonst Markierung:Verwendet das aktuelle\n" -#~ "Wort, falls vorhanden, sonst die Markierung.\n" -#~ "
  • \n" -#~ "
\n" -#~ "

\n" -#~ "

\n" -#~ "Beachten Sie, dass für alle oben genannten Fälle gilt:\n" -#~ "Kann der Suchtext nicht bestimmt werden, greift der Dialog Textsuche\n" -#~ "auf den zuletzt gesuchten Text zurück.\n" -#~ "

" - -#~ msgid "Capture reference 1" -#~ msgstr "Referenz Unterausdruck 1" - -#~ msgid "Capture reference 2" -#~ msgstr "Referenz Unterausdruck 2" - -#~ msgid "Capture reference 3" -#~ msgstr "Referenz Unterausdruck 3" - -#~ msgid "Capture reference 4" -#~ msgstr "Referenz Unterausdruck 4" - -#~ msgid "Capture reference 5" -#~ msgstr "Referenz Unterausdruck 5" - -#~ msgid "Capture reference 6" -#~ msgstr "Referenz Unterausdruck 6" - -#~ msgid "Capture reference 7" -#~ msgstr "Referenz Unterausdruck 7" - -#~ msgid "Capture reference 8" -#~ msgstr "Referenz Unterausdruck 8" - -#~ msgid "Capture reference 9" -#~ msgstr "Referenz Unterausdruck 9" - -#~ msgid "NORM" -#~ msgstr "NORM" - -#~ msgid " NORM " -#~ msgstr " NORM " - -#~ msgid "&From cursor" -#~ msgstr "&Von Cursorposition" - -#~ msgid "&Highlight all" -#~ msgstr "&Alle hervorheben" - -#~ msgid "Unspecified Scope" -#~ msgstr "Fehlender Gültigkeitsbereich" - -#~ msgid "Unspecified Access" -#~ msgstr "Fehlender Zugriff" - -#~ msgid "Unspecified Item Type" -#~ msgstr "Fehlender Bezeichnertyp" - -#~ msgid "Pop Up Completion List" -#~ msgstr "Vervollständigungsliste als Aufklappfenster" - -#~ msgid "Automatically &show completion list" -#~ msgstr "Vervollständigungsli&ste automatisch anzeigen" - -#~ msgctxt "" -#~ "Translators: This is the first part of two strings which will comprise " -#~ "the sentence 'Show completions when a word is at least N characters'. The " -#~ "first part is on the right side of the N, which is represented by a " -#~ "spinbox widget, followed by the second part: 'characters long'. " -#~ "Characters is a ingeger number between and including 1 and 30. Feel free " -#~ "to leave the second part of the sentence blank if it suits your language " -#~ "better. " -#~ msgid "Show completions &when a word is at least" -#~ msgstr "Vervollständigungsliste anzeigen, &wenn ein Wort mindestens" - -#~ msgctxt "" -#~ "This is the second part of two strings that will comprise the sentence " -#~ "'Show completions when a word is at least N characters'" -#~ msgid "characters long." -#~ msgstr "Zeichen lang ist." - -#~ msgid "" -#~ "Enable the automatic completion list popup as default. The popup can be " -#~ "disabled on a view basis from the 'Tools' menu." -#~ msgstr "" -#~ "Das Aufklappfenster für die automatische Vervollständigungsliste als " -#~ "Standard festlegen. Dieses Fenster lässt sich über das Menü „Extras“ " -#~ "deaktivieren." - -#~ msgid "" -#~ "Define the length a word should have before the completion list is " -#~ "displayed." -#~ msgstr "" -#~ "Geben Sie die Mindestlänge der Wörter an, für die eine " -#~ "Vervollständigungsliste angezeigt werden soll." - -#~ msgid "Choose File to Insert" -#~ msgstr "Einzufügende Datei auswählen" - -#~ msgid "" -#~ "Failed to load file:\n" -#~ "\n" -#~ msgstr "" -#~ "Laden der Datei nicht möglich:\n" -#~ "\n" - -#~ msgid "Insert File Error" -#~ msgstr "Fehler beim Einfügen der Datei" - -#~ msgid "" -#~ "

The file %1 does not exist or is not readable, " -#~ "aborting." -#~ msgstr "" -#~ "

Die Datei %1 existiert nicht oder ist nicht lesbar. " -#~ "Abbruch." - -#~ msgid "

Unable to open file %1, aborting." -#~ msgstr "

Die Datei %1 lässt sich nicht öffnen. Abbruch." - -#~ msgid "

File %1 had no contents." -#~ msgstr "

Die Datei %1 ist leer." - -#~ msgid "Data Tools" -#~ msgstr "Daten-Programme" - -#~ msgid "(not available)" -#~ msgstr "(nicht verfügbar)" - -#~ msgid "" -#~ "Data tools are only available when text is selected, or when the right " -#~ "mouse button is clicked over a word. If no data tools are offered even " -#~ "when text is selected, you need to install them. Some data tools are part " -#~ "of the KOffice package." -#~ msgstr "" -#~ "Die Daten-Programme sind nur verfügbar, falls Text ausgewählt ist oder " -#~ "mit der rechten Maustaste auf ein Wort geklickt wurde. Sollten auch bei " -#~ "Erfüllung dieser Voraussetzungen keine Daten-Programme angezeigt werden, " -#~ "sind sie nicht installiert. Einige der Programme gehören zum Paket " -#~ "KOffice." - -#~ msgid "AutoBookmarks" -#~ msgstr "Automatische Lesezeichen" - -#~ msgid "Configure AutoBookmarks" -#~ msgstr "Automatische Lesezeichen einrichten" - -#~ msgid "&Pattern:" -#~ msgstr "&Muster:" - -#~ msgid "

A regular expression. Matching lines will be bookmarked.

" -#~ msgstr "" -#~ "

Regulärer Ausdruck. Passende Zeilen erhalten automatisch ein " -#~ "Lesezeichen.

" - -#~ msgid "" -#~ "

If enabled, the pattern matching will be case sensitive, otherwise not." -#~ "

" -#~ msgstr "" -#~ "

Ist diese Einstellung markiert, unterscheidet die Funktion zwischen " -#~ "Groß- und Kleinschreibung, sonst nicht.

" - -#~ msgid "" -#~ "

If enabled, the pattern matching will use minimal matching; if you do " -#~ "not know what that is, please read the appendix on regular expressions in " -#~ "the kate manual.

" -#~ msgstr "" -#~ "

Ist diese Einstellung markiert, wird minimale Übereinstimmung " -#~ "verwendet. Bei Unklarheiten dazu lesen Sie bitte den Anhang über reguläre " -#~ "Ausdrücke im Kate-Handbuch nach.

" - -#~ msgid "&File mask:" -#~ msgstr "&Dateifilter:" - -#~ msgid "" -#~ "

A list of filename masks, separated by semicolons. This can be used to " -#~ "limit the usage of this entity to files with matching names.

Use " -#~ "the wizard button to the right of the mimetype entry below to easily fill " -#~ "out both lists.

" -#~ msgstr "" -#~ "

Eine Liste von Dateinamenfiltern, die durch Semikolons unterteilt ist. " -#~ "Damit kann die Anwendung eines Elements auf Dateien mit übereinstimmenden " -#~ "Namen beschränkt werden.

Der Assistentenknopf auf der rechten " -#~ "Seite des MIME-Typ-Eintrags erleichtert das Ausfüllen beider Listen.

" - -#~ msgid "" -#~ "

A list of mime types, separated by semicolon. This can be used to " -#~ "limit the usage of this entity to files with matching mime types.

Use the wizard button on the right to get a list of existing file " -#~ "types to choose from, using it will fill in the file masks as well.

" -#~ msgstr "" -#~ "

Eine Liste von MIME-Typen, die durch Semikolons unterteilt ist. Damit " -#~ "kann die Anwendung eines Elements auf Dateien mit übereinstimmenden Namen " -#~ "beschränkt werden.

Der Assistentenknopf ermöglicht einen Überblick " -#~ "vorhandener Typen und das Ausfüllen der Dateifilterliste.

" - -#~ msgid "" -#~ "

Click this button to display a checkable list of mimetypes available " -#~ "on your system. When used, the file masks entry above will be filled in " -#~ "with the corresponding masks.

" -#~ msgstr "" -#~ "

Klicken Sie auf diesen Knopf, wenn Sie eine Liste der auf Ihrem System " -#~ "verfügbaren MIME-Typen sehen möchten. Dabei wird auch die obige " -#~ "Dateifilterliste ausgefüllt.

" - -#~ msgid "" -#~ "Select the MimeTypes for this pattern.\n" -#~ "Please note that this will automatically edit the associated file " -#~ "extensions as well." -#~ msgstr "" -#~ "Wählen Sie die MIME-Typen für diese Art von Dateien aus.\n" -#~ "Bitte beachten Sie, dass dabei auch automatisch die zugeordneten " -#~ "Dateierweiterungen angepasst werden." - -#~ msgid "&Patterns" -#~ msgstr "&Muster" - -#~ msgid "Pattern" -#~ msgstr "Muster" - -#~ msgid "Mime Types" -#~ msgstr "MIME-Typen" - -#~ msgid "" -#~ "

This list shows your configured autobookmark entities. When a document " -#~ "is opened, each entity is used in the following way:

  1. The entity " -#~ "is dismissed, if a mime and/or filename mask is defined, and neither " -#~ "matches the document.
  2. Otherwise each line of the document is " -#~ "tried against the pattern, and a bookmark is set on matching lines.
  3. Use the buttons below to manage your collection of entities.

    " -#~ msgstr "" -#~ "

    Diese Liste zeigt die eingerichteten automatischen Lesezeichen an. " -#~ "Sobald Sie ein Dokument öffnen, werden diese Elemente folgendermaßen " -#~ "benutzt:

    1. Ein Element wird übergangen, falls ein MIME-Typ oder ein " -#~ "Dateifilter definiert ist, der auf das Dokument nicht zutrifft.
    2. Ansonsten wird jede Zeile auf das angegebene Muster hin überprüft " -#~ "und bei Übereinstimmung ein Lesezeichen gesetzt.

    Mit den " -#~ "Knöpfen unten können Sie die Elemente verwalten.

    " - -#~ msgid "Press this button to create a new autobookmark entity." -#~ msgstr "" -#~ "Betätigen Sie diesen Knopf, wenn Sie ein neues Lesezeichen-Element " -#~ "erstellen möchten." - -#~ msgid "Press this button to delete the currently selected entity." -#~ msgstr "Betätigen Sie diesen Knopf, um das ausgewählte Element zu löschen." - -#~ msgid "&Edit..." -#~ msgstr "&Bearbeiten ..." - -#~ msgid "Press this button to edit the currently selected entity." -#~ msgstr "" -#~ "Betätigen Sie diesen Knopf, um das ausgewählte Element zu bearbeiten." - -#~ msgid "Word Completion Plugin" -#~ msgstr "Automatische Wortvervollständigung (Erweiterung)" - -#~ msgid "Configure the Word Completion Plugin" -#~ msgstr "Erweiterung für Wortvervollständigung einrichten" diff -Nru ktexteditor-5.28.0/po/el/ktexteditor5.po ktexteditor-5.31.0/po/el/ktexteditor5.po --- ktexteditor-5.28.0/po/el/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/el/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -18,7 +18,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2016-11-04 17:36+0200\n" "Last-Translator: Dimitris Kardarakos \n" "Language-Team: Greek \n" @@ -30,257 +30,316 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Διαμόρφωση συμπλήρωσης κώδικα" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Πάντα" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Βοήθειες παραμέτρων" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Καλύτερα ταιριάσματα" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Χώροι ονομάτων" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Κλάσεις" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Δομές" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Ενώσεις" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Συναρτήσεις" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Μεταβλητές" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Αριθμήσεις" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Πρόθεμα" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Εικονίδιο" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Εμβέλεια" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Όνομα" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Παράμετροι" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Επίθεμα" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Δημόσιο" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Προστατευμένο" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Ιδιωτικό" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Στατικό" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Σταθερά" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Χώρος ονομάτων" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Κλάση" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Δομή" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Ένωση" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Συνάρτηση" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Μεταβλητή" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Αρίθμηση" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Πρότυπο" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Εικονική" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Αντικατάσταση" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Εμβόλιμη" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Φίλος" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Σήμα" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Υποδοχή" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Τοπική εμβέλεια" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Εμβέλεια χώρου ονομάτων" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Καθολική εμβέλεια" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Άγνωστη ιδιότητα" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Λέξεις κλειδιά της γλώσσας" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Αυτόματη συμπλήρωση λέξεων" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Συμπλήρωση κελύφους" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Χρήση ξανά παραπάνω λέξης" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Χρήση ξανά παρακάτω λέξης" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Αρχείο" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Επεξεργασία" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Εύρεση παραλλαγών" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Μετάβαση στο" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "Π&ροβολή" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Αναδίπλωση λέξεων" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Περιγράμματα" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Τύλιγμα κώδικα" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "Ερ&γαλεία" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Συμπλήρωση λέξεων" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Ορθογραφία" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "Ρ&υθμίσεις" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Κύρια γραμμή εργαλείων" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -289,11 +348,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Εμφάνιση &δεικτών τυλίγματος κώδικα" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -303,11 +364,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Εμφάνιση προεπισκόπησης τυλιγμένου κώδικα" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -319,11 +382,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Εμφάνιση περιθωρίου &εικονιδίων" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -333,11 +398,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Εμφάνιση αριθμών &γραμμής" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -347,11 +414,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Εμφάνιση δεικτών τροποποίησης γραμμών" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -362,11 +431,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Εμφάνιση σημαδιών γραμμής κύ&λισης" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " @@ -376,11 +447,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Εμφάνιση κειμένου προεπισκόπησης στη γ&ραμμή κύλισης" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -390,11 +463,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Εμφάνιση μινι-χάρτη γραμμής κύ&λισης" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -404,36 +479,44 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Χαρτογράφηση όλου του εγγράφου" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" +#, fuzzy, kde-format +#| msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "Πλάτος μινι&χάρτη" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Ορατότητα &γραμμών κύλισης:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Πάντα ενεργοί" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Εμφάνιση όταν χρειάζεται" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Πάντα ανενεργό" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -441,11 +524,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Ταξινόμηση μενού σελιδοδεικτών" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -455,11 +540,13 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "Κατά &δημιουργία" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Οι σελιδοδείκτες θα ταξινομούνται σύμφωνα με τον αριθμό γραμμής που " @@ -467,45 +554,53 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "Κατά &θέση" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Εντολή" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Περιγραφή" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Επεξεργασία καταχώρησης..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Αφαίρεση καταχώρησης" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Προσθήκη καταχώρησης..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Επιπλέον σημειώσεις" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "" "

    Το εικονίδιο αυτό θα εμφανίζεται στο μενού και τη γραμμή εργαλείων.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Περιγραφή:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Κατηγορία:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Γενικά" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Ενεργοποίηση &αυτόματης συμπλήρωσης" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Α&υτόματη συμπλήρωση λέξεων" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Ελάχιστο μήκος λέξης για συμπλήρωση:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Διαγραφή της ουράς μιας προηγούμενης λέξης όταν το αντικείμενο συμπλήρωσης " @@ -584,16 +691,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Διαγραφή ουράς στη συμπλήρωση" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "&Συμπλήρωση λέξεων κλειδιών" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -603,31 +713,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Ταξινόμηση" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Αλφαβητικά" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Αντιστροφή" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Διάκριση πεζών/κεφαλαίων" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Βάθος κληρονομικότητας" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Σειρά ταξινομήσεων (επιλογή μεθόδου ομαδοποίησης για διαμόρφωση):" @@ -636,6 +752,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -644,121 +761,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Φιλτράρισμα" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Μόνο κατάλληλα ταιριάσματα περιεχομένου" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Απόκρυψη συμπληρώσεων με τις παρακάτω ιδιότητες:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Μέγιστο βάθος κληρονομικότητας:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Άπειρο" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Ομαδοποίηση" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Μέθοδος ομαδοποίησης" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Τύπος εμβέλειας (τοπική, χώρος ονομάτων, καθολική)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Εμβέλεια (π.χ. ανά κλάση)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Τύπος πρόσβασης (π.χ. δημόσια)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Τύπος αντικειμένου (π.χ. συνάρτηση)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Ιδιότητες ομαδοποίησης πρόσβασης" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Συμπερίληψη σταθερών στην ομαδοποίηση" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Συμπερίληψη στατικών στην ομαδοποίηση" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Συμπερίληψη σημάτων και υποδοχών στην ομαδοποίηση" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Ιδιότητες ομαδοποίησης αντικειμένων" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Συμπερίληψη προτύπων στην ομαδοποίηση" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Συγχώνευση στήλης" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Στήλες" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Συγχωνεύθηκαν" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Εμφανίζονται" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Στατική αναδίπλωση λέξεων" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -777,12 +918,14 @@ "για την Εμφάνιση.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Ενεργοποίηση στατικής αναδίπλωσης &λέξεων" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -794,17 +937,20 @@ "μόνο αν χρησιμοποιείτε μια σταθερού πλάτους γραμματοσειρά.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Εμφάνιση σημαδιού στατικής αναδίπλωσης &λέξεων (αν είναι εφαρμόσιμο)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Α&ναδίπλωση λέξεων στο:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -814,73 +960,88 @@ "αυτόματα μια νέα γραμμή." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Λειτουργία εισαγωγής" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format +#| msgid "Default input mode" +msgid "Default input mode:" msgstr "Προκαθορισμένη λειτουργία εισαγωγής" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Αυτόματες παρενθέσεις" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Ενεργοποίηση αυτόματων παρενθέσεων" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Αντιγραφή και Επικόλληση" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" "Αντιγραφή/Αποκοπή της τρέχουσας γραμμής, αν δεν υπάρχει επιλεγμένο κείμενο" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "Τύπος &αρχείου:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Επιλέξτε τον τύπο αρχείου που επιθυμείτε την τροποποίησή του." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Δημιουργία ενός νέου τύπου αρχείου." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Νέο" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Διαγραφή του τρέχοντος τύπου αρχείου." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Διαγραφή" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Ιδιότητες" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -889,11 +1050,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Τμήμα:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" "Το όνομα τμήματος χρησιμοποιείται για την οργάνωση των τύπων αρχείων στα " @@ -901,11 +1064,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Μεταβλητές:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -920,21 +1085,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Τονισμός:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Λειτουργία εσοχών:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "&Επεκτάσεις αρχείων:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -947,11 +1116,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Τύποι MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -963,17 +1134,20 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "Εμφανίζει ένα μάγο ο οποίος θα σας βοηθήσει να επιλέξετε εύκολα τύπους mime." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Προ&τεραιότητα:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -984,16 +1158,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Λήψη αρχείων τονισμού..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Προκαθορισμένη λειτουργία εσοχών:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1007,36 +1184,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Χρήση εσοχών" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Στηλοθέτες" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Κενά" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Πλάτος εσοχών:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Στηλοθέτες κ&αι Κενά" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Π&λάτος στηλοθέτη:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1050,11 +1234,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Ιδιότητες εσοχών" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1064,11 +1250,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Διατήρηση επιπλέον &κενών" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1079,16 +1267,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Προσαρμογή εσοχών στον κώδικα που ε&πικολλήθηκε από το πρόχειρο" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Ενέργειες εσοχών" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1099,11 +1290,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "Το πλήκτρο &Backspace στο αρχικό κενό αναιρεί την εσοχή" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Ανάκτηση δεδομένων (Βοήθεια)

    Αδυναμία ανάκτησης " -#~ "όλων των δεδομένων. Το αρχείο swap είναι προφανώς ημιτελές.

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Αντικατάσταση" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Ανάκτηση δεδομένων (Βοήθεια)

    Το αρχείο δεν " -#~ "έκλεισε καταλλήλως. Θέλετε να ανακτήσετε τα δεδομένα;

    " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "Εμβέλεια" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Χρώματα" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Χρώματα" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "Κανονικό &χρώμα..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "Κανονικό &χρώμα..." - -#~ msgid "Template Background" -#~ msgstr "Φόντο πρότυπου" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Σύμπτυξη ενός τοπικού επιπέδου" - -#~ msgid "Expand One Local Level" -#~ msgstr "Επέκταση ενός τοπικού επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Επέκταση άνω επιπέδου" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Σύμπτυξη άνω επιπέδου" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Αυτόματη συμπλήρωση ενεργή" - -#~ msgid "Sort the selected text or whole document in natural order.
    " -#~ msgstr "" -#~ "Ταξινόμηση επιλεγμένου κειμένου ή ολόκληρου εγγράφου σε φυσιολογική σειρά." -#~ "
    " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "" -#~ "Μια δεδομένη συνάρτηση της Javascript ως παράμετρος, κάλεσμα αυτής για " -#~ "την λίστα των (επιλεγμένων) γραμμών και" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "" -#~ "Μια δεδομένη συνάρτηση της Javascript ως παράμετρος, κάλεσμα αυτής για " -#~ "την λίστα των (επιλεγμένων) γραμμών " - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "&Μορφή:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Δεν μπορεί να βρεθεί συστατικό επεξεργαστή κειμένου του KDE:\n" -#~ "παρακαλώ έλεγξε την εγκατάσταση σας του KDE." - -#~ msgid "Use this to close the current document" -#~ msgstr "Χρησιμοποιήστε αυτό για το κλείσιμο του τρέχοντος εγγράφου" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Χρησιμοποιήστε αυτή την εντολή για τη δημιουργία ενός νέου εγγράφου" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "" -#~ "Χρησιμοποιήστε αυτή την εντολή για το άνοιγμα ενός υπάρχοντος εγγράφου " -#~ "για επεξεργασία" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Αυτό εμφανίζει αρχεία που ανοίξατε πρόσφατα και σας επιτρέπει να τα " -#~ "ανοίξετε ξανά εύκολα." - -#~ msgid "&New Window" -#~ msgstr "&Νέο παράθυρο" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Δημιουργία μιας νέας προβολής που να περιέχει το τρέχον έγγραφο" - -#~ msgid "Choose Editor..." -#~ msgstr "Επιλογή επεξεργαστή..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "" -#~ "Αντικατάσταση της καθολικής επιλογής συστατικού επεξεργαστή κειμένου" - -#~ msgid "Close the current document view" -#~ msgstr "Κλείσιμο της τρέχουσας προβολής εγγράφου" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Χρησιμοποιήστε αυτή την εντολή για να εμφανίσετε ή να αποκρύψετε τη " -#~ "γραμμή κατάστασης της προβολής" - -#~ msgid "Sho&w Path" -#~ msgstr "&Εμφάνιση διαδρομής" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "" -#~ "Εμφάνιση της πλήρους διαδρομής του εγγράφου στον τίτλο του παραθύρου" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Ρύθμιση των συντομεύσεων πλήκτρων της εφαρμογής." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Ρύθμιση των αντικειμένων που θα εμφανίζονται στη γραμμή εργαλείων." - -#~ msgid "&About Editor Component" -#~ msgstr "&Σχετικά με το συστατικό επεξεργαστή" - -#~ msgid " INS " -#~ msgstr " ΕΙΣ " - -#~ msgid " LINE " -#~ msgstr " ΓΡΜ " - -#~ msgid "Open File" -#~ msgstr "Άνοιγμα αρχείου" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Το δοσμένο αρχείο δεν μπορεί να διαβαστεί, ελέγξτε αν υπάρχει και είναι " -#~ "αναγνώσιμο για τον τρέχοντα χρήστη." - -#~ msgid " BLOCK " -#~ msgstr " ΤΜΗΜΑ " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Ανάγνωση των περιεχομένων του stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Ορισμός κωδικοποίησης για το αρχείο που θα ανοιχθεί" - -#~ msgid "Navigate to this line" -#~ msgstr "Πλοήγηση σε αυτήν τη γραμμή" - -#~ msgid "Navigate to this column" -#~ msgstr "Πλοήγηση σε αυτήν τη στήλη" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - Επεξεργαστής κειμένου" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 Οι συγγραφείς του Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "Επιλογή συστατικού επεξεργαστή" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "" -#~ "Ο κατάλογος που περιέχει ελέγχους, τον βασικό κατάλογο και τους " -#~ "καταλόγους εξόδου." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Σύγκριση αποτυχιών αυτής της εκτέλεσης ελέγχου με το στιγμιότυπο " -#~ ". Προκαθορισμένα στο πιο πρόσφατο στιγμιότυπο αποτυχίας ή σε " -#~ "κανένα αν αυτό δεν υπάρχει." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Μη καταστολή της εξόδου αποσφαλμάτωσης" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Αναδημιουργία γραμμής βάσης (αντί ελέγχου)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Διατήρηση αρχείων εξόδου και σε επιτυχία" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "" -#~ "Αποθήκευση αποτυχιών αυτής της εκτέλεσης ελέγχων ως στιγμιότυπο αποτυχίας " -#~ "" - -#~ msgid "Show the window while running tests" -#~ msgstr "Εμφάνιση του παραθύρου κατά την εκτέλεση των ελέγχων" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Εκτέλεση ενός μόνο ελέγχου. Επιτρέπονται πολλαπλές επιλογές." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Τοποθέτηση εξόδου στο αντί της εξόδου " - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Εκτέλεση κάθε περίπτωση ελέγχου σε ξεχωριστή διεργασία." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Ο κατάλογος που περιέχει ελέγχους, τον βασικό κατάλογο και τους " -#~ "καταλόγους εξόδου. Ελέγχεται μόνο αν δεν έχει ορισθεί η -b." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Σχετική διαδρομή με το σενάριο ελέγχου, ή κατάλογος σεναρίων ελέγχου προς " -#~ "εκτέλεση (ισοδύναμο με το -t)." - -#~ msgid "TestRegression" -#~ msgstr "Αναδρομή ελέγχου" - -#~ msgid "Regression tester for kate" -#~ msgstr "Αναδρομή ελέγχου για το kate" - -#~ msgid "Error: " -#~ msgstr "Σφάλμα: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Σφάλμα κλήσης του '%1'. Παρακαλώ ελέγξτε για συντακτικά λάθη." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Αν αυτό είναι ενεργοποιημένο, ο επεξεργαστής θα υπολογίσει τον αριθμό " -#~ "κενών χαρακτήρων μέχρι την επόμενη θέση στηλοθέτη όπως αυτή καθορίζεται " -#~ "από το πλάτος στηλοθέτη, και θα εισάγει αυτόν τον αριθμό των κενών " -#~ "χαρακτήρων αντί του χαρακτήρα TAB." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Χρήση &κενών αντί στηλοθετών" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "Προβολή &διαφορών" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Ανενεργό" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "Το αρχείο %1 ανοίχτηκε με κωδικοποίηση UTF-8 αλλά περιείχε μη έγκυρους " -#~ "χαρακτήρες. Έχει οριστεί σε λειτουργία μόνο ανάγνωσης, καθώς η αποθήκευσή " -#~ "του μπορεί να το καταστρέψει. Ανοίξτε το αρχείο με τη σωστή κωδικοποίηση " -#~ "ή ενεργοποιήστε τη λειτουργία ανάγνωσης-εγγραφής ξανά στο μενού για να " -#~ "μπορείτε να το επεξεργαστείτε." - -#~ msgid "Binary File Opened" -#~ msgstr "Άνοιξε δυαδικό αρχείο" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Άνοιγμα ελαττωματικού αρχείου UTF-8" - -#~ msgid "Universal" -#~ msgstr "Καθολικά" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Αναδίπλωση λέξεων εγγράφου" - -#~ msgid "KSqueezedTextLabel" -#~ msgstr "KSqueezedTextLabel" - -#~ msgid "Modify search behavior" -#~ msgstr "Τροποποίηση συμπεριφοράς αναζήτησης" - -#~ msgid "&Options" -#~ msgstr "&Επιλογές" - -#~ msgid "From &cursor" -#~ msgstr "&Από το δρομέα" - -#~ msgid "Hi&ghlight all" -#~ msgstr "&Τονισμός όλων" - -#~ msgid "Add &BOM" -#~ msgstr "Προσθήκη &BOM" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 Οι συγγραφείς του Kate" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Μάγος προγραμματιστή & Έμφασης" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Αδυναμία ανάγνωσης του αρχείου: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Αποτυχία εκκίνησης του μεταγλωττιστή για το σενάριο %1, εντολή %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "Αυτό εκτελεί το τρέχον έγγραφο ως JavaScript μέσα στο Kate." - -#~ msgid "Success" -#~ msgstr "Επιτυχία" - -#~ msgid "Move Character Right" -#~ msgstr "Μετακίνηση στον επόμενο χαρακτήρα" - -#~ msgid "Move Character Left" -#~ msgstr "Μετακίνηση στον επόμενο χαρακτήρα" - -#~ msgid "&Overwrite" -#~ msgstr "&Αντικατάσταση" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Δυναμική αναδίπλωση λέξεων" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2007 Οι συγγραφείς του Kate" - -#~ msgid "Line must be at least 1" -#~ msgstr "Η γραμμή πρέπει να είναι τουλάχιστον 1" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "Δεν υπάρχουν τόσες γραμμές σε αυτό το έγγραφο" - -#~ msgid "Add special item to search pattern" -#~ msgstr "Προσθήκη ειδικού αντικειμένου στο μοτίβο αναζήτησης" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "" -#~ "Επίλυση αντικαταστατών (\\0 to \\9) και ακολουθιών escape (\\n, \\t, ..)" - -#~ msgid "Add special item to replacement text" -#~ msgstr "Προσθήκη ειδικού αντικειμένου στο κείμενο αντικατάστασης" - -#~ msgid "Highlight all matches" -#~ msgstr "Τονισμών όλων των ταιριασμάτων" - -#~ msgid "Match case" -#~ msgstr "Ταίριασμα πεζών/κεφαλαίων" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "Έναρξη αναζήτησης από το δρομέα, όχι από την αρχή του εγγράφου" - -#~ msgid "From cursor" -#~ msgstr "Από το δρομέα" - -#~ msgctxt "Language" -#~ msgid "Ddoc" -#~ msgstr "Ddoc" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "" -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "

    When selected, vi " -#~ "commands will override Kate's built-in commands. For example: Ctrl+R will " -#~ "redo, and override the standard action (showing the search & replace " -#~ "dialog).

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    Ενέργεια πλήκτρου Tab (αν δεν υπάρχει επιλογή) Tab να εκτελεί στοίχιση στην τρέχουσα γραμμή στο τρέχον " -#~ "τμήμα κώδικα όπως στο emacs, ορίστε το Tab ως συντόμευση στην " -#~ "ενέργεια Στοίχιση.\">Περισσότερα ...

    " - -#~ msgid "-- VI: COMMAND LINE --" -#~ msgstr "-- VI: ΓΡΑΜΜΗ ΕΝΤΟΛΗΣ --" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "Ρύθμιση συντομεύσεων" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "Προσπαθείτε να αποθηκεύσετε ένα αρχείο python ως μη ASCII, χωρίς τον " -#~ "καθορισμό μιας σωστής γραμμής κωδικοποίησης για την \"%1\"" - -#~ msgid "No encoding header" -#~ msgstr "Χωρίς κεφαλίδα κωδικοποίησης" diff -Nru ktexteditor-5.28.0/po/en_GB/ktexteditor5.po ktexteditor-5.31.0/po/en_GB/ktexteditor5.po --- ktexteditor-5.28.0/po/en_GB/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/en_GB/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -5,13 +5,13 @@ # Andrew Coles , 2004, 2005, 2009, 2010, 2011. # Peter Murdoch , 2007. # Brendan Osborne , 2007. -# Steve Allewell , 2014, 2015, 2016. +# Steve Allewell , 2014, 2015, 2016, 2017. msgid "" msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-30 15:30+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-22 11:29+0000\n" "Last-Translator: Steve Allewell \n" "Language-Team: English \n" "Language: en_GB\n" @@ -22,257 +22,316 @@ "X-Generator: Lokalize 2.0\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Code Completion Configuration" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Always" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Argument-hints" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Best matches" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Namespaces" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Classes" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Structs" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unions" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Functions" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variables" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumerations" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Prefix" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Icon" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Scope" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Name" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Arguments" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Public" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protected" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Private" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Static" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Constant" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Namespace" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Class" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struct" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Union" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Function" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variable" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumeration" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Template" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtual" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Override" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Inline" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Friend" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Local Scope" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Namespace Scope" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Global Scope" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Unknown Property" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Language keywords" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Auto Word Completion" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Shell Completion" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Reuse Word Above" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Reuse Word Below" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&File" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Edit" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Find Variants" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Go To" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&View" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Word Wrap" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Borders" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Code Folding" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Tools" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Word Completion" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Spelling" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Settings" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Main Toolbar" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -280,11 +339,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Show &folding markers" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -294,11 +355,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Show preview of folded code" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -310,11 +373,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Show &icon border" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -324,11 +389,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Show &line numbers" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -338,11 +405,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Show line modification markers" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -352,11 +421,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Show &scrollbar marks" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " @@ -366,11 +437,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Show text &preview on scrollbar" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -380,11 +453,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Show scrollbar mini-map" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -394,36 +469,43 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Map the whole document" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" -msgstr "Minim&ap Width" +#, kde-format +msgid "Minim&ap Width:" +msgstr "Minim&ap Width:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Scro&llbars visibility:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Always On" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Show When Needed" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Always Off" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -431,11 +513,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Sort Bookmarks Menu" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -445,55 +529,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "B&y creation" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "The bookmarks will be ordered by the line numbers they are placed at." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "By posi&tion" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Command" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Description" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Edit Entry..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Remove Entry" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Add Entry..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Further Notes" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    This icon will be displayed in the menu and toolbar.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Description:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Category:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "General" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Enable &auto completion" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "A&uto Word Completion" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Minimal word length to complete:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "Remove tail of a previous word when completion item chosen from a list" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Remove tail on complete" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "&Keyword completion" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -587,31 +696,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Sorting" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alphabetical" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Reverse" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Case sensitive" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Inheritance depth" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Order of Groupings (select a grouping method to configure):" @@ -620,6 +735,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -628,121 +744,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtering" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Suitable context matches only" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Hide completions with the following attributes:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Maximum inheritance depth:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Infinity" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Grouping" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Grouping Method" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Scope type (local, namespace, global)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Scope (eg. per class)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Access type (public etc.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Item type (function etc.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Access Grouping Properties" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Include const in grouping" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Include static in grouping" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Include signals and slots in grouping" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Item Grouping properties" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Include templates in grouping" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Column Merging" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Columns" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Merged" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Shown" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Static Word Wrap" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -759,12 +899,14 @@ "enable Dynamic Word Wrap in the Appearance config page.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Enable static &word wrap" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -775,17 +917,20 @@ "that the word wrap marker is only drawn if you use a fixed pitch font.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Show static word wra&p marker (if applicable)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Wra&p words at:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -794,72 +939,86 @@ "characters) at which the editor will automatically start a new line." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Input Mode" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" -msgstr "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" +msgstr "Default input mode:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Auto Brackets" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Enable automatic brackets" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Copy and Paste" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Copy/Cut the current line if no selection" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Filetype:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Select the filetype you want to change." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Create a new file type." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&New" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Delete the current file type." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Delete" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Properties" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -867,21 +1026,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Section:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "The section name is used to organise the file types in menus." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variables:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -895,21 +1058,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Highlighting:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Indentation Mode:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "File e&xtensions:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -921,11 +1088,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME &types:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -937,16 +1106,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Displays a wizard that helps you easily select mimetypes." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "P&riority:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -956,16 +1128,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Download Highlighting Files..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Default indentation mode:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -979,36 +1154,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Indent using" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulators" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Spaces" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Indentation width:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabulators &and Spaces" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Tab wi&dth:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1022,11 +1204,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Indentation Properties" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1036,11 +1220,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Keep extra spaces" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1050,16 +1236,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Adjust indentation of code &pasted from the clipboard" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Indentation Actions" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1071,11 +1260,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "&Backspace key in leading blank space unindents" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Overwrite" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "Scope" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Colours" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Colours" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "Normal &Colour..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "Normal &Colour..." - -#~ msgid "Template Background" -#~ msgstr "Template Background" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Collapse One Local Level" - -#~ msgid "Expand One Local Level" -#~ msgstr "Expand One Local Level" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Collapse Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Expand Toplevel" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Collapse Toplevel" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Auto completion enabled" - -#~ msgid "Sort the selected text or whole document in natural order.
    " -#~ msgstr "Sort the selected text or whole document in natural order.
    " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " - -#~ msgid "Form" -#~ msgstr "Form" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." - -#~ msgid "Use this to close the current document" -#~ msgstr "Use this to close the current document" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Use this command to create a new document" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Use this command to open an existing document for editing" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." - -#~ msgid "&New Window" -#~ msgstr "&New Window" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Create another view containing the current document" - -#~ msgid "Choose Editor..." -#~ msgstr "Choose Editor..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Override the system-wide setting for the default editing component" - -#~ msgid "Close the current document view" -#~ msgstr "Close the current document view" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "Use this command to show or hide the view's statusbar" - -#~ msgid "Sho&w Path" -#~ msgstr "Sho&w Path" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Show the complete document path in the window caption" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Configure the application's keyboard shortcut assignments." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Configure which items should appear in the toolbar(s)." - -#~ msgid "&About Editor Component" -#~ msgstr "&About Editor Component" - -#~ msgid " INS " -#~ msgstr " INS " - -#~ msgid " LINE " -#~ msgstr " LINE " - -#~ msgid "Open File" -#~ msgstr "Open File" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." - -#~ msgid " BLOCK " -#~ msgstr " BLOCK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Read the contents of stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Set encoding for the file to open" - -#~ msgid "Navigate to this line" -#~ msgstr "Navigate to this line" - -#~ msgid "Navigate to this column" -#~ msgstr "Navigate to this column" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - Text Editor" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 The Kate Authors" - -#~ msgid "Choose Editor Component" -#~ msgstr "Choose Editor Component" - -#~ msgid "The swap file is broken. Recovery might be incomplete." -#~ msgstr "The swap file is broken. Recovery might be incomplete." - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Directory containing tests, basedir and output directories." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Compare failures of this test run against snapshot . Defaults " -#~ "to the most recently captured failure snapshot or none if none exist." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Do not suppress debug output" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Regenerate baseline (instead of checking)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Keep output files even on success" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Save failures of this test run as failure snapshot " - -#~ msgid "Show the window while running tests" -#~ msgstr "Show the window while running tests" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Only run a single test. Multiple options allowed." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Put output in instead of /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Run each test case in a separate process." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for kate" -#~ msgstr "Regression tester for Kate" - -#~ msgid "Error: " -#~ msgstr "Error: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Error calling '%1'. Please check for syntax errors." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "&Insert spaces instead of tabulators" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "&View Difference" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Disabled" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "The file %1 was opened with UTF-8 encoding but contained invalid " -#~ "characters. It is set to read-only mode, as saving might destroy its " -#~ "content. Either reopen the file with the correct encoding chosen or " -#~ "enable the read-write mode again in the menu to be able to edit it." - -#~ msgid "Binary File Opened" -#~ msgstr "Binary File Opened" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Broken UTF-8 File Opened" - -#~ msgid "Universal" -#~ msgstr "Universal" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Word Wrap Document" - -#~ msgid "Modify search behavior" -#~ msgstr "Modify search behaviour" - -#~ msgid "&Options" -#~ msgstr "&Options" - -#~ msgid "From &cursor" -#~ msgstr "From &cursor" - -#~ msgid "Hi&ghlight all" -#~ msgstr "Hi&ghlight all" - -#~ msgid "Add &BOM" -#~ msgstr "Add &BOM" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 The Kate Authors" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Developer & Highlight wizard" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Unable to read file: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Failed to start interpreter for script %1, command %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "This executes the current document as JavaScript within Kate." - -#~ msgid "Success" -#~ msgstr "Success" - -#~ msgid "Move Character Right" -#~ msgstr "Move Character Right" - -#~ msgid "Move Character Left" -#~ msgstr "Move Character Left" - -#~ msgid "&Overwrite" -#~ msgstr "&Overwrite" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Dynamic word wrap" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2007 The Kate Authors" - -#~ msgid "Line must be at least 1" -#~ msgstr "Line must be at least 1" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "There is not that many lines in this document" - -#~ msgid "Add special item to search pattern" -#~ msgstr "Add special item to search pattern" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" - -#~ msgid "Add special item to replacement text" -#~ msgstr "Add special item to replacement text" - -#~ msgid "Highlight all matches" -#~ msgstr "Highlight all matches" - -#~ msgid "Match case" -#~ msgstr "Match case" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "Start search from cursor, not document start" - -#~ msgid "From cursor" -#~ msgstr "From cursor" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "" -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "

    When selected, vi " -#~ "commands will override Kate's built-in commands. For example: Ctrl+R will " -#~ "redo, and override the standard action (showing the search & replace " -#~ "dialog).

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tab " -#~ "key action (if no selection exists) Tab to " -#~ "align the current line in the current code block like in emacs, make " -#~ "Tab a shortcut to the action Align.\">More ...

    " - -#~ msgid "Shortcuts Configuration" -#~ msgstr "Shortcuts Configuration" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" - -#~ msgid "No encoding header" -#~ msgstr "No encoding header" - -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." - -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "The spelling program seems to have crashed." - -#~ msgid "unknown" -#~ msgstr "unknown" - -#~ msgid "Context '%1': Incorrect number of arguments in '%2'" -#~ msgstr "Context '%1': Incorrect number of arguments in '%2'" - -#~ msgid "Exception, line %1: %2" -#~ msgstr "Exception, line %1: %2" - -#~ msgid "Could not access view." -#~ msgstr "Could not access view." - -#~ msgid "Could not access lookup object." -#~ msgstr "Could not access lookup object." - -#~ msgid "Exception: Unable to find function '%1': %2" -#~ msgstr "Exception: Unable to find function '%1': %2" - -#~ msgid "Exception in line %1: %2" -#~ msgstr "Exception in line %1: %2" - -#~ msgid "Sort: None" -#~ msgstr "Sort: None" - -#~ msgid "Filter: None" -#~ msgstr "Filter: None" - -#~ msgid "Setup" -#~ msgstr "Setup" - -#~ msgid "&Maximum undo steps:" -#~ msgstr "&Maximum undo steps:" - -#, fuzzy -#~ msgid "" -#~ "The file %1 was opened with UTF-8 encoding but contained invalid " -#~ "characters. It is set to read-only mode, as saving might destroy it's " -#~ "content. Either reopen the file with the correct encoding chosen or " -#~ "enable the read-write mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "The file %1 was opened with UTF-8 encoding but contained invalid " -#~ "characters. It is set to read-only mode, as saving might destroy it's " -#~ "content. Either reopen the file with the correct encoding chosen or " -#~ "enable the read-write mode again in the menu to be able to edit it." diff -Nru ktexteditor-5.28.0/po/eo/ktexteditor5.po ktexteditor-5.31.0/po/eo/ktexteditor5.po --- ktexteditor-5.28.0/po/eo/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/eo/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2008-01-03 15:40-0600\n" "Last-Translator: Cindy McKee \n" "Language-Team: Esperanto \n" @@ -21,263 +21,319 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Agordo de kodkompletigo" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Ĉiam" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Plej taŭgaj kongruaĵoj" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Nomspacoj" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Klasoj" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Strukturoj" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unioj" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funkcioj" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variabloj" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumeracioj" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Prefikso" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Piktogramo" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Regiono" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nomo" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumentoj" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postmeto" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Publika" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protektata" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Privata" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statika" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Konstanto" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Nomospaco" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Klaso" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Strukturo" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Unio" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funkcio" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variablo" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumeracio" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Ŝablono" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtuala" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Anstataŭigo" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Enlinia" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signalo" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Fako" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Loka regiono" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Nomspaca regiono" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Malloka regiono" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Nekonata trajto" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "Auto Word Completion" msgstr "Vortkompletigo" #: completion/katewordcompletion.cpp:341 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "Shell Completion" msgstr "Vortkompletigo" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Reuzi Supran Vorton" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Reuzi Suban Vorton" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Dosiero" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Redakti" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Montri" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "Statika linifaldo" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Randoj" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Kodfaldado" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Iloj" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Vortkompletigo" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Literumo" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Agordoj" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Ĉefa ilobreto" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -285,12 +341,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Montri &faldajn markojn" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -323,11 +381,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Montri p&iktogramrandon" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -337,11 +397,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Montri &lininombrojn" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -351,13 +413,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "Montri kodfaldajn &markojn" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -368,12 +431,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Montri rulum&skalajn markojn" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "Elekti la ordigadon de legosignoj en la Legosignoj menuo." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Menuo pri ordigado de legosignoj" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -478,66 +550,71 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "Laŭ k&reo" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "La ordigado de legosignoj estos laŭ lininombro de la legosigna pozicio." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "Laŭ &pozicio" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Komando" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Priskribo" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit entry..." msgid "Edit Entry..." msgstr "Redakti eron..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Remove entry" msgid "Remove Entry" msgstr "Forigi eron" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Add entry..." msgid "Add Entry..." msgstr "Aldoni eron..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Pluaj notoj" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    Ĉi tiu piktogramo montriĝos en la menu- kaj ilo-breto.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Priskribo:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategorio:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Ĝenerala" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "Enable &auto completion" msgstr "Vortkompletigo" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "A&uto Word Completion" msgstr "Vortkompletigo" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "&Forigi linifinajn spacojn" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "Vortkompletigo" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -637,36 +725,39 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Ordigado" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabeta" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Inversigi" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "Case Sensitive" msgid "Case sensitive" msgstr "Uskleco gravas" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Inheritance Depth" msgid "Inheritance depth" msgstr "Profundo de heredaĵo" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 -#, fuzzy +#, fuzzy, kde-format #| msgid "Order of groupings (select a grouping method to configure):" msgid "Order of Groupings (select a grouping method to configure):" msgstr "Ordigado de grupado (elektu grupadan metodon por agordi):" @@ -676,6 +767,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -684,127 +776,148 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtrado" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Nur taŭgaj kuntekstaj kongruaĵoj" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Kaŝi kompletigojn kun la sekvaj atribuoj:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 -#, fuzzy +#, fuzzy, kde-format #| msgid "Maximum inheritance depth" msgid "Maximum inheritance depth:" msgstr "Maksimuma profundo de heredaĵo" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Senlimo" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Grupado" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 -#, fuzzy +#, fuzzy, kde-format #| msgid "Grouping method" msgid "Grouping Method" msgstr "Metodo de grupado" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Tipo de regiono (loka, nomspaca, malloka)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Regiono (ekz. laŭ klaso)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Alira tipo (publika ktp.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Era tipo (funkcio ktp.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 -#, fuzzy +#, fuzzy, kde-format #| msgid "Access Grouping properties" msgid "Access Grouping Properties" msgstr "Ecoj de alira grupado" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Inkluzivi statikan en grupado" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Inkluzivi signalojn/fakojn en grupado" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Ecoj de erogrupado" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Inkluzivi ŝablonojn en grupado" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Kunfando de kolumnoj" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Kolumnoj" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Kunfandita" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Montrita" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Statika linifaldo" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -821,12 +934,14 @@ "ebligu Dinamika linifaldo en la Aspekto agorda paĝo.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Enŝal&ti statikan linifaldon" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -834,19 +949,21 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Montri marki&lojn pri statika linifaldo (se aplikebla)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "Lini&faldo ĉe:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -855,103 +972,116 @@ "linio estas komencata dum tajpado." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "&Indentation" msgid "Input Mode" msgstr "&Deŝovo" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "Defaŭlta deŝovreĝimo:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "&Aŭtomataj krampoj" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "Selekti ĝis koresponda krampo" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Dosiertipo:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Elektu la dosiertipon kiun vi volas ŝanĝi." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Krei novan dosiertipon." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nova" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Forigi la aktualan dosiertipon." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Forigi" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Trajtoj" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "La nomo de la dosiertipo samos al la koresponda menuero." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Sekcio:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "La sekcia nomo estas uzata por organizi la dosiertipojn en menuoj." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variabloj:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -961,23 +1091,26 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Emfazado:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation" msgid "&Indentation Mode:" msgstr "&Deŝovo" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Dosier&finaĵoj:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -986,11 +1119,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&MIME-tipoj:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1002,16 +1137,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Aperigas asistanton kiu helpas en la elekto de mimetipoj." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "&Prioritato:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1021,16 +1159,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Elŝuti Emfazadajn Regulojn..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Defaŭlta deŝovreĝimo:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1040,46 +1181,48 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "Deŝovo" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "Taboj" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "Replace" msgid "&Spaces" msgstr "Anstataŭigi" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation width:" msgid "&Indentation width:" msgstr "Larĝeco de deŝovo:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "Taboj" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Ta&ba larĝeco:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1089,11 +1232,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Deŝovtrajtoj" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1101,13 +1246,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "&Keep extra spaces" msgstr "Teni aldonajn spacojn" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1115,18 +1261,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 -#, fuzzy +#, fuzzy, kde-format #| msgid "Adjust indentation of code pasted from the clipboard" msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Agordi deŝovon de fontkodo regluita el la tondujo" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Deŝovaj Procedoj" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1135,13 +1283,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format #| msgid "Backspace key in leading blank space unindents" msgid "&Backspace key in leading blank space unindents" msgstr "Retrosigno en prefiksaj spacoj maldeŝovas" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Andmetaastus (Abi)

    Kõiki andmeid ei õnnestunud taastada. Saalefail oli nähtavasti " -#~ "ebatäielik.

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Kirjuta üle" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Andmetaastus (Abi)

    Faili ei suletud korrektselt. Kas soovid andmeid taastada?

    " - -#~ msgid "Cancel" -#~ msgstr "Loobu" - -#~ msgid "Stop" -#~ msgstr "Peata" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Värvid" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Värvid" - -#~ msgid "Export HlColors..." -#~ msgstr "Ekspordi esiletõstmisvärvid..." - -#~ msgid "Import HlColors..." -#~ msgstr "Impordi esiletõstmisvärvid..." - -#~ msgid "Template Background" -#~ msgstr "Malli taust" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Ahenda üks kohalik tase" - -#~ msgid "Expand One Local Level" -#~ msgstr "Laienda üks kohalik tase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Ahenda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Laienda tipptase" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Ahenda tipptase" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Automaatse lõpetamise lubamine" - -#~ msgid "Sort the selected text or whole document in natural order.
    " -#~ msgstr "" -#~ "Valitud teksti või kogu dokumendi sortimine loomulikus järjestuses.
    " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "" -#~ "Argumendina antud JavaScripti funktsiooni väljakutsumine (valitud) ridade " -#~ "loendile ja" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "" -#~ "Argumendina antud JavaScripti funktsiooni väljakutsumine (valitud) ridade " -#~ "loendile " - -#~ msgid "Form" -#~ msgstr "Vorm" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "KDE tekstiredaktori komponenti ei leitud.\n" -#~ "Palun kontrolli oma KDE paigaldust." - -#~ msgid "Use this to close the current document" -#~ msgstr "Sellega saab sulgeda aktiivse dokumendi" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Selle käsuga saab luua uue dokumendi" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Selle käsuga saab avada muutmiseks olemasoleva dokumendi" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Viimati avatud failide loend, mis võimaldab neid hõlpsasti taasavada." - -#~ msgid "&New Window" -#~ msgstr "&Uus aken" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Uue aktiivset dokumenti sisaldava akna loomine" - -#~ msgid "Choose Editor..." -#~ msgstr "Vali redaktor..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Süsteemse vaikimisi redaktorikomponendi seadistuse tühistamine" - -#~ msgid "Close the current document view" -#~ msgstr "Aktiivse dokumendi vaate sulgemine" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "Selle käsuga saab lasta vaate olekuriba näidata või selle peita" - -#~ msgid "Sho&w Path" -#~ msgstr "&Näita asukohta" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Dokumendi täieliku asukoha näitamine akna tiitliribal" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Rakenduse kiirklahvide seadistamine." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Tööriistaribadel nähtavate elementide seadistamine." - -#~ msgid "&About Editor Component" -#~ msgstr "Red&aktorikomponendi info" - -#~ msgid " INS " -#~ msgstr " LISAMINE " - -#~ msgid " LINE " -#~ msgstr " RIDA " - -#~ msgid "Open File" -#~ msgstr "Faili avamine" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Määratud faili ei saa lugeda. Kontrolli, kas see on olemas, ja kas " -#~ "praegusel kasutajal on õigus seda lugeda." - -#~ msgid " BLOCK " -#~ msgstr " PLK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Sisu lugemine standardsisendist stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Avatava faili kodeeringu määramine" - -#~ msgid "Navigate to this line" -#~ msgstr "Liikumine sellele reale" - -#~ msgid "Navigate to this column" -#~ msgstr "Liikumine sellesse veergu" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - tekstiredaktor" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005: Kate autorid" - -#~ msgid "Choose Editor Component" -#~ msgstr "Redaktorikomponendi valik" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Teste, baaskataloogi ja väljundkatalooge sisaldav kataloog." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Testi vigade võrdlemine hetktõmmisega . Vaikimisi kõige uuem " -#~ "vigade hetktõmmis või mitte midagi, kui seda pole." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Silumisväljund täies mahus" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Baseline'i regenereerimine (kontrollimise asemel)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Väljundfailid säilitatakse ka õnnestumise korral" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Testi vigade salvestamine vigade hetktõmmisena " - -#~ msgid "Show the window while running tests" -#~ msgstr "Akna näitamine testide ajal" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Ainult ühe testi sooritamine. Kasutada võib mitmeid valikuid." - -#~ msgid "Put output in instead of /output" -#~ msgstr "" -#~ "Väljundi salvestamine kataloogi , mitte /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Iga testi käivitamine eraldi protsessina." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Teste, baaskataloogi ja väljundkatalooge sisaldav kataloog. Arvestatakse " -#~ "ainult siis, kui ei ole määratud -b." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "Testi suhtelise asukoht või testide kataloog (sama, mis -t)." - -#~ msgid "TestRegression" -#~ msgstr "Regressioonitest" - -#~ msgid "Regression tester for kate" -#~ msgstr "Kate regressioonide testija" - -#~ msgid "Error: " -#~ msgstr "Viga: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Viga '%1' väljakutsumisel. Palun kontrolli süntaksit." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Sisselülitamisel arvutab redaktor tühikute arvu järgmise tabeldusmärgi " -#~ "asukohani, nagu selle määrab tabeldusmärgi suurus, ning lisab " -#~ "tabeldusmärgi asemel vajaliku hulga tühikuid." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Ta&beldusmärgid asendatakse tühikutega" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "&Vaata erinevust" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Keelatud" - -#~ msgid "Binary File Opened" -#~ msgstr "Binaarfail" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Avati vigane UTF-8 fail" - -#~ msgid "Universal" -#~ msgstr "Universaalne" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Reamurdmine dokumendis" - -#~ msgid "Modify search behavior" -#~ msgstr "Muuda otsingu käitumist" - -#~ msgid "&Options" -#~ msgstr "&Valikud" - -#~ msgid "From &cursor" -#~ msgstr "Alates &kursorist" - -#~ msgid "Hi&ghlight all" -#~ msgstr "Kõigi &esiletõstmine" - -#~ msgid "Add &BOM" -#~ msgstr "Lisa &BJT" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008: Kate autorid" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Arendaja, esiletõstu nõustaja" - -#~ msgid "Unable to find 'katepartapi.js'" -#~ msgstr "'katepartapi.js' ei leitud" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Faili lugemine nurjus : '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Interpretaatori käivitamine skripti %1, käsu %2 jaoks nurjus" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "Aktiivse dokumendi käivitamine JavaSriptina Kates." diff -Nru ktexteditor-5.28.0/po/eu/ktexteditor5.po ktexteditor-5.31.0/po/eu/ktexteditor5.po --- ktexteditor-5.28.0/po/eu/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/eu/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2011-11-11 20:33+0100\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" @@ -22,260 +22,317 @@ "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Kode osaketaren konfigurazioa" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Beti" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Argumentuen iradokizuna" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Egokien datozenak" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Izen-lekuak" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Klaseak" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Egiturak" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Bilketak" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funtzioak" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Aldagaiak" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Zenbakikuntzak" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Aurrizkia" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Ikonoa" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Esparrua" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Izena" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumentuak" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Publikoa" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Babestua" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Pribatua" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Estatikoa" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Konstantea" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Izen-lekua" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Klasea" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Egitura" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Bilketa" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funtzioa" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Aldagaia" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Zenbakikuntza" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Txantiloia" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Birtuala" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Gainidatzi" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Barnean" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Laguna" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Seinalea" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Erretena" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Esparru lokala" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Izen-lekuaren esparrua" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Esparru globala" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Propietate ezezaguna" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Hitz osaketa automatikoa" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Shell-eko hitz osaketa" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Berrerabili gaineko hitza" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Berrerabili azpiko hitza" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Fitxategia" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Editatu" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Ikusi" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "Itzulbiratze estatikoa" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Ertzak" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Kodea tolestea" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Tresnak" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Hitza osaketa" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Ortografia" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Ezarpenak" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Tresna-barra nagusia" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -287,14 +344,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "Erakutsi tolesturaren &markak" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -327,11 +385,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Erakutsi &ikono-ertza" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -341,12 +401,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Erakutsi &lerro-zenbakiak" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -359,13 +420,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "Erakutsi tolesturaren &markak" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -376,12 +438,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Erakutsi &korritze-barraren markak" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    Ikono hau menuan eta tresna-barran bistaratuko da.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Deskribapena:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategoria:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Orokorra" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Gaitu osaketa &automatikoa" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Word Completion" msgid "A&uto Word Completion" msgstr "Hitz osaketa automatikoa" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Hitzaren gutxieneko luzera osaketarako:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "Kendu &amaierako zuriuneak" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "Hitza osaketa" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -642,31 +732,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Ordenatzea" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabetikoki" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Alderantziz" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Maiuskula/minuskula" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Herentziaren sakonera" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Elkarketen ordena (hautatu elkartzeko metodoa konfiguratzeko):" @@ -675,6 +771,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -683,121 +780,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Iragazketa" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Testuinguruko bat datozen egokiak soilik" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Ezkutatu honako atributuak dituzten osaketak:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Gehienezko herentzia-sakonera:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Infinitua" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Elkartzea" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Elkartzeko metodoa" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Esparru mota (lokala, izen-lekua, globala)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Esparrua (adib. klaseko)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Atzitze mota (publikoa, e.a.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Elementu mota (funtzioa, e.a.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Atzipenaren elkartearen propietateak" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Sartu konstantea elkartean" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Sartu estatikoa elkartean" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Sartu seinaleak eta erretenak elkartean" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Elementu taldekatzearen propietateak" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Sartu txantiloiak elkartean" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Zutabeak batzea" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Zutabeak" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Batuta" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Erakutsita" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Itzulbiratze estatikoa" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -814,12 +935,14 @@ "Itzulbiratze dinamikoa gaitu Itxura konfigurazioko orrian.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Gaitu itzulbiratze estatikoa" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -831,19 +954,21 @@ "marka.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "&Erakutsi itzulbiratze estatikoaren marka (ahal bada)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "&Itzulbiratu hemen:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -852,103 +977,116 @@ "hasteko zelako luzera behar den (karakteretan neurturik) adierazten du." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Input Mode" msgstr "Vi sarrera modua" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "Koskatze-modu lehenetsia:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "&Parentesi automatikoak" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "Hautatu dagokion parentesiraino" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Kopiatu/ebaki uneko lerroa hautapenik ez badago" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Fitxategi mota:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Hautatu aldatu nahi duzun fitxategi mota." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Sortu fitxategi mota berria." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Berria" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Ezabatu uneko fitxategi mota." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Ezabatu" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Propietateak" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Fitxategi motaren izena dagokion menuko elementuaren testua da." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Atala:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Atalaren izena erabiliko da fitxategi motak menuetan antolatzeko." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Aldagaiak:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -962,21 +1100,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Nabarmentzea:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Koskatzeko modua:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Fitxategi-&luzapenak:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -988,11 +1130,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME &motak:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1004,16 +1148,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Mime motak erraz hautatzen lagunduko dizun morroia bistaratzen du." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Lehenta&suna:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1023,16 +1170,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Deskargatu nabarmentze-fitxategiak..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Koskatze-modu lehenetsia:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1045,36 +1195,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Erabilitako koska" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulazioak" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Zuriuneak" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Koskaren zabalera:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabulazio &eta zuriuneak" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Tabulazioaren &zabalera:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1088,11 +1245,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Koskaren propietateak" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1102,11 +1261,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Mantendu zuriune gehigarriak" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1116,16 +1277,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Doitu arbeletik &itsatsitako kodearen koska" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Koskaren ekintzak" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1136,11 +1300,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "&Atzera teklak hasierako zuriunetan koska kentzen du" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Datuen berreskuratzea (Laguntza)

    Datu guztiak " -#~ "ezin izan dira berreskuratu. Trukatzeko fitxategia ez zen osorik egongo." - -#~ msgid "OK" -#~ msgstr "Ados" - -#~ msgid "Overwrite" -#~ msgstr "Gainidatzi" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Datuen berreskuratzea (Laguntza)

    Fitxategia ez zen modu " -#~ "egokian itxi. Datuak berreskuratu nahi dituzu?

    " - -#~ msgid "Cancel" -#~ msgstr "Utzi" - -#~ msgid "Stop" -#~ msgstr "Gelditu" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Koloreak" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Koloreak" - -#~ msgid "Export HlColors..." -#~ msgstr "Esportatu HlColors..." - -#~ msgid "Import HlColors..." -#~ msgstr "Inportatu HlColors..." - -#~ msgid "Template Background" -#~ msgstr "Txantiloiaren atzeko planoa" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Tolestu maila lokal bat" - -#~ msgid "Expand One Local Level" -#~ msgstr "Zabaldu maila lokal bat" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Tolestu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Zabaldu goiko maila" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Tolestu goiko maila" - -#~ msgid "&Auto completion enabled" -#~ msgstr "Hitzak &automatikoki osatzea gaituta" - -#~ msgid "Sort the selected text or whole document in natural order.
    " -#~ msgstr "Ordenatu hautatutako testua edo dokumento osoa.
    " - -#~ msgid "Form" -#~ msgstr "Imprimakia" diff -Nru ktexteditor-5.28.0/po/fa/ktexteditor5.po ktexteditor-5.31.0/po/fa/ktexteditor5.po --- ktexteditor-5.28.0/po/fa/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/fa/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2011-12-15 14:55+0330\n" "Last-Translator: Mohammad Reza Mirdamadi \n" "Language-Team: Farsi (Persian) <>\n" @@ -21,262 +21,317 @@ "Plural-Forms: nplurals=1; plural=0;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "پیکربندی تکمیل کد" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "همیشه" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "نکات نشانوند" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "بهترین انطباق‌ها" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "فضاهای نام" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "رده‌ها" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "ساختارها" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "اجتماعها" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "تابعها" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "متغیرها" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "شمارشها" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "پیشوند" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "شمایل" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "دامنه" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "نام" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "نشانوندها" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "پسوند" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "عمومی" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "محافظت‌شده" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "خصوصی" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "ایستا" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "ثابت" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "فضای نام" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "رده" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "ساختار" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "اجتماع" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "تابع" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "متغیر" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "شمارش" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "قالب" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "مجازی" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "لغو" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "درون‌خط" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "دوست" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "نشانک" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "شکاف" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "دامنه محلی" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "دامنه فضای نام" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "دامنه سراسری" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "ویژگی ناشناخته" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 -#, fuzzy +#, fuzzy, kde-format msgid "Auto Word Completion" msgstr "تکمیل واژه" #: completion/katewordcompletion.cpp:341 -#, fuzzy +#, fuzzy, kde-format msgid "Shell Completion" msgstr "تکمیل واژه" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&پرونده‌" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&ویرایش‌" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&نما‌" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "سطربندی ایستای واژه" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "لبه‌ها" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "تازنی &کد‌" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&ابزارها‌" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "تکمیل واژه" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&تنظیمات‌" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "میله ابزار اصلی" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -288,14 +343,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "نمایش &نشانهای تازنی‌" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -305,13 +360,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show preview of folded code" msgstr "چاپ سند جاری." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -323,11 +379,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "نمایش لبه &شمایل‌" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -337,12 +395,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "نمایش شماره &خطوط‌" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -355,14 +414,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "نمایش &نشانهای تازنی‌" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 -#, fuzzy +#, fuzzy, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -372,12 +431,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "نمایش نشانهای &میله‌ لغزش‌" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " @@ -387,12 +447,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -405,14 +466,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgid "Show scrollbar mini-map" msgstr "نمایش نشانهای &میله‌ لغزش‌" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -425,42 +486,46 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save the current document" msgid "Map the whole document" msgstr "ذخیره سند جاری" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tab wi&dth:" -msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "&عرض تب‌:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "همیشه روشن" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy +#, fuzzy, kde-format #| msgid "Always" msgid "Always Off" msgstr "همیشه" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -468,11 +533,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "مرتب کردن گزینگان چوب الفها" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -482,65 +549,70 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "براساس &ایجاد‌" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "چوب الفها توسط شماره خطوطی که در آن قرار می‌گیرند، مرتب می‌شوند." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "بر اساس &موقعیت‌" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "فرمان" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "توصیف" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit entry..." msgid "Edit Entry..." msgstr "ویرایش مدخل..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Remove entry" msgid "Remove Entry" msgstr "حذف مدخل" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Add entry..." msgid "Add Entry..." msgstr "افزودن مدخل..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "نکات بیشتر" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    این شمایل در گزینگان و میله‌ابزار نمایش داده می‌شود.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&توصیف‌:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&دسته‌:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "عمومی" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format msgid "Enable &auto completion" msgstr "تکمیل واژه" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format msgid "A&uto Word Completion" msgstr "تکمیل واژه" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "&حذف فضاهای پشت‌بندی‌" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "تکمیل واژه" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -638,36 +721,39 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "مرتب‌سازی" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "الفبایی" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "معکوس" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "Case Sensitive" msgid "Case sensitive" msgstr "حساس به حالت" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Inheritance Depth" msgid "Inheritance depth" msgstr "عمق سلسله مراتب" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 -#, fuzzy +#, fuzzy, kde-format #| msgid "Order of groupings (select a grouping method to configure):" msgid "Order of Groupings (select a grouping method to configure):" msgstr "ترتیب گروه‌بندیها )یک روش گروه‌بندی را برای پیکربندی برگزینید(" @@ -677,6 +763,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -685,128 +772,148 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "/\\" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "پالایه" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "فقط تبیقهای متن مناسب" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "مخفی کردن تکمیلها با خصیصه‌های زیر:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 -#, fuzzy +#, fuzzy, kde-format #| msgid "Maximum inheritance depth" msgid "Maximum inheritance depth:" msgstr "بیشینه عمق سلسله مراتب" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "بی‌نهایت" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "گروه‌بندی" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 -#, fuzzy +#, fuzzy, kde-format #| msgid "Grouping method" msgid "Grouping Method" msgstr "روش گروه‌بندی" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "نوع دامنه )محلی، فضای نام، سراسری(" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "دامنه )مثلاً، هر رده(" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "نوع دستیابی )عمومی و غیره(" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "نوع فقره )تابع و غیره(" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 -#, fuzzy +#, fuzzy, kde-format #| msgid "Access Grouping properties" msgid "Access Grouping Properties" msgstr "ویژگی‌های گروه‌بندی دست‌رسی" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "شامل const در گروه‌بندی" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "شامل ایستا در گروه‌بندی" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "شامل نشانکها و شکافها در گروه‌بندی" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "ویژگی‌های گروه‌بندی موارد" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "شامل قالبها در گروه‌بندی" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "ادغام ستون" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "ستونها" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "ادغام‌شده" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "نمایش‌داده‌شده" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "سطربندی ایستای واژه" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 -#, fuzzy +#: dialogs/editconfigwidget.ui:26 +#, fuzzy, kde-format #| msgid "" #| "

    Automatically start a new line of text when the current line exceeds " #| "the length specified by the Wrap words at: option.

    This " @@ -831,12 +938,14 @@ "پیش‌گزیده‌های نما فعال کنید.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "فعال‌سازی سطربندی ایستای &واژه‌" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -848,19 +957,21 @@ "استفاده کنید.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "نمایش نشانگر &سطربندی ایستا‌ی واژه )اگر کاربردی است(" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "&سطربندی واژه‌ها در‌:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -869,103 +980,116 @@ "که در خط جدید یه صورت خودکار آغاز می‌شود، تععین می‌کند." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "&Indentation" msgid "Input Mode" msgstr "&تو‌رفتگی‌" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "حالت تو‌رفتگی پیش‌فرض:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "&کروشه های خودکار‌" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "برگزیدن کروشه مطابق" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&نوع پرونده‌:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "برگزیدن نوع پرونده‌ای که می‌خواهید تغییر دهید." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "ایجاد نوع پرونده جدیدی." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&جدید‌" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "حذف نوع پرونده جاری." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&حذف‌" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "ویژگیها" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "نام نوع پرونده که متن فقره گزینگان متناظر می‌باشد." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&بخش‌:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "نام بخش که برای سازمان‌دهی انواع پرونده در گزینگان، استفاده می‌شود." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&متغیرها‌:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -979,23 +1103,26 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&مشخص کردن‌‌:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation" msgid "&Indentation Mode:" msgstr "&تو‌رفتگی‌" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "&پسوندهای پرونده‌:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -1007,11 +1134,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&انواع مایم:‌" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1023,17 +1152,20 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "جادوگری را که شما را انتخاب انواع مایم به راحتی کمک می‌کند، را نمایش می‌دهد." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "&اولویت‌:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1043,16 +1175,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "بارگیری پرونده‌های مشخص..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "حالت تو‌رفتگی پیش‌فرض:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1065,46 +1200,48 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "تو‌رفتگی" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "جدول‌بندها" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "Replace" msgid "&Spaces" msgstr "جایگزینی" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation width:" msgid "&Indentation width:" msgstr "عرض تو‌رفتگی:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "جدول‌بندها" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "&عرض تب‌:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1117,11 +1254,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "ویژگیهای تو‌رفتگی" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1131,13 +1270,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "&Keep extra spaces" msgstr "حفظ فاصله‌های اضافی" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1147,18 +1287,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 -#, fuzzy +#, fuzzy, kde-format #| msgid "Adjust indentation of code pasted from the clipboard" msgid "Adjust indentation of code &pasted from the clipboard" msgstr "میزان کردن تورفتگی کد چسبانده‌شده از تخته یادداشت" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "کنشهای تو‌رفتگی" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1169,14 +1311,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format #| msgid "Backspace key in leading blank space unindents" msgid "&Backspace key in leading blank space unindents" msgstr "کلید پس‌بر در جلوی فاصله خالی بدون تورفتگی است" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    کنش " -#~ "کلید جهش )اگر گزینشی موجود نباشد( جهش با " -#~ "خط جاری در بلوک کد جاری مانند emacs، هم‌تراز شود، جهش را میان‌بری " -#~ "به کنش هم‌تراز کردن سازید.\">بیشتر...

    " - -#~ msgid "Overwrite" -#~ msgstr "جای‌نوشت" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    کنش " -#~ "کلید جهش )اگر گزینشی موجود نباشد( جهش با " -#~ "خط جاری در بلوک کد جاری مانند emacs، هم‌تراز شود، جهش را میان‌بری " -#~ "به کنش هم‌تراز کردن سازید.\">بیشتر...

    " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "دامنه" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "رنگها" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "رنگها" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "&رنگ عادی...‌" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "&رنگ عادی...‌" - -#~ msgid "Template Background" -#~ msgstr "زمینه قالب" - -#~ msgid "Collapse One Local Level" -#~ msgstr "فشردن یک سطح محلی" - -#~ msgid "Expand One Local Level" -#~ msgstr "بسط یک سطح محلی" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "بسط سطح بالا" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "فشردن سطح بالا" - -#, fuzzy -#~ msgid "&Auto completion enabled" -#~ msgstr "تکمیل واژه" - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "&قالب:‌" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "مولفه ویرایش متن KDE نتوانست پیدا شود؛\n" -#~ "لطفاً، نصب KDE خود را بررسی کنید." - -#~ msgid "Use this to close the current document" -#~ msgstr "استفاده از این برای بستن سند جاری" - -#~ msgid "Use this command to create a new document" -#~ msgstr "استفاده از این فرمان برای ایجاد یک سند جدید" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "استفاده از این فرمان برای باز کردن سند موجود جهت ویرایش" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "پرونده‌هایی که اخیراً باز کرده‌اید را فهرست می‌کند، و به شما اجازه می‌دهد آنها " -#~ "را به آسانی باز کنید." - -#~ msgid "&New Window" -#~ msgstr "پنجره &جدید‌" - -#~ msgid "Create another view containing the current document" -#~ msgstr "ایجاد نمای دیگر شامل سند جاری" - -#~ msgid "Choose Editor..." -#~ msgstr "انتخاب ویرایشگر..." - -#, fuzzy -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "لفو تنظیم کل سیستم برای مولفه ویرایش پیش‌فرض" - -#~ msgid "Close the current document view" -#~ msgstr "بستن نمای سند جاری" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "استفاده از این فرمان برای نمایش یا مخفی کردن میله وضعیت نما" - -#~ msgid "Sho&w Path" -#~ msgstr "&نمایش مسیر‌" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "نمایش مسیر کامل سند در عنوان پنجره" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "پیکربندی انتسلبهای میان‌بر صفحه کلید کاربرد." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "پیکربندی فقره‌هایی که باید در میله ابزار)ها( ظاهر شود." - -#~ msgid "&About Editor Component" -#~ msgstr "&درباره مؤلفه ویرایشگر‌" - -#~ msgid " INS " -#~ msgstr " درج" - -#~ msgid " LINE " -#~ msgstr " خط " - -#~ msgid "Open File" -#~ msgstr "باز کردن پرونده" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "پرونده داده‌شده نتوانست خوانده شود، در صورت وجود، یا اگر برای کاربر جاری " -#~ "خوانا است آن را بررسی کنید." - -#~ msgid " BLOCK " -#~ msgstr " بلوک " - -#~ msgid "Read the contents of stdin" -#~ msgstr "خواندن محتویات stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "تنظیم کدبندی برای پرونده جهت باز کردن" - -#~ msgid "Navigate to this line" -#~ msgstr "ناوش به این خط" - -#~ msgid "Navigate to this column" -#~ msgstr "ناوش به این ستون" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - ویرایشگر متن" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(ح) ۲۰۰۵ - ۲۰۰۰ سازندگان Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "انتخاب مؤلفه ویرایشگر" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "فهرست راهنمای شامل آزمونها، فهرست پایه و فهرستهای خروجی." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "مقایسه خرابیهای این اجرای آزمون در مقابل تصویر لحظه‌ای . " -#~ "اخیرترین تصویر لحظه‌ای خرابی گیرانداخته یا هیچ‌کدام، در صورتی که هیچ‌کدام " -#~ "موجود باشد را پیش‌فرض قرار می‌دهد." - -#~ msgid "Do not suppress debug output" -#~ msgstr "خروجی اشکال متوقف نشود" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "تولید مجدد خط کرسی )به جای بررسی(" - -#~ msgid "Keep output files even on success" -#~ msgstr "نگه داشتن پرونده‌های خروجی حتی هنگام موفقیت" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "" -#~ "ذخیره خرابیهای این اجرای آزمون به عنوان خرابی تصویر لحظه‌ای " - -#~ msgid "Show the window while running tests" -#~ msgstr "نمایش پنجره هنگام اجرای آزمونها" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "فقط اجرای یک آزمون تک. چند گزینه‌ای مجاز است." - -#~ msgid "Put output in instead of /output" -#~ msgstr "گذاشتن خروجی در به جای /output" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "فهرست راهنمای شامل آزمونها، فهرست پایه و فهرستهای خروجی. فقط در صورتی که -" -#~ "b مشخص نشده باشد ملاحظه شود." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "مسیر نسبی برای مورد آزمون، یا فهرست راهنمای موارد آزمونی که باید اجرا " -#~ "شود )معادل -t(" - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for kate" -#~ msgstr "آزمونگر برگشتی برای kate" - -#~ msgid "Error: " -#~ msgstr "خطا: " - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "اگر این فعال باشد، ویرایش‌گر، تعداد فاصله‌ها تا موقعیت جهش بعدی را، طبق " -#~ "تعریف عرض جهش محاسبه می‌کند و همان تعداد فاصله را به جای نویسهٔ جهش، درج " -#~ "می‌کند." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "&درج فاصله‌ها به جای جدول بندها‌" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "تفاوت &نما‌" - -#, fuzzy -#~| msgid "Disabled" -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "غیرفعال" - -#, fuzzy -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "پرونده %1 با کدبندی UTF-8 باز نمی‌شود، ولی شامل نویسه‌های نامعتبر است. به " -#~ "حالت فقط خواندنی تنظیم می شود، چرا که ذخیره ممکن است محتوای آن را خراب " -#~ "کند. یا پرونده را با انتخاب کدبندی درست مجدداً باز نموده یا حالت خواندنی " -#~ "نوشتنی را در گزینگان فعال سازید تا قادر به ویرایش آن باشید." - -#~ msgid "Binary File Opened" -#~ msgstr "پرونده دودویی باز شد" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "پرونده UTF-8 قطع‌شده باز شد" - -#, fuzzy -#~| msgid "General" -#~ msgid "Universal" -#~ msgstr "عمومی" - -#~ msgid "&Word Wrap Document" -#~ msgstr "سند سطربندی &واژه‌" - -#~ msgid "Modify search behavior" -#~ msgstr "تغییر رفتار جستجو" - -#, fuzzy -#~| msgid "Options" -#~ msgid "&Options" -#~ msgstr "گزینه‌ها" - -#~ msgid "From &cursor" -#~ msgstr "از &مکان‌نما‌" - -#~ msgid "Hi&ghlight all" -#~ msgstr "&مشخص کردن همه" - -#, fuzzy -#~| msgid "(c) 2000-2005 The Kate Authors" -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(ح) ۲۰۰۵ - ۲۰۰۰ سازندگان Kate" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "توسعه‌دهنده و مشخص کردن جادوگر" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "قادر به خواندن پرونده نیست: »%1«" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "خرابی در آغاز مفسر برای دست‌نوشته %1، فرمان %2" - -#~ msgid "Success" -#~ msgstr "موفقیت" - -#~ msgid "Move Character Right" -#~ msgstr "حرکت نویسه راست" - -#~ msgid "Move Character Left" -#~ msgstr "حرکت نویسه چپ" - -#~ msgid "&Overwrite" -#~ msgstr "&جای‌نوشت‌" - -#, fuzzy -#~| msgid "Plain Text" -#~ msgid "Plain text\t\t(Alt+1)" -#~ msgstr "متن ساده" - -#, fuzzy -#~| msgid "Whole Words" -#~ msgid "Whole words\t(Alt+2)" -#~ msgstr "کل واژه‌ها" - -#, fuzzy -#~| msgid "Escape Sequences" -#~ msgid "Escape sequences\t(Alt+3)" -#~ msgstr "دنباله‌های گریز" - -#, fuzzy -#~| msgid "Regular Expression" -#~ msgid "Regular expression\t(Alt+4)" -#~ msgstr "عبارت منظم" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "سطربندی &پویای واژه‌" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(ح) ۲۰۰۷ - ۲۰۰۰ سازندگان Kate" - -#~ msgid "Line must be at least 1" -#~ msgstr "خط حداقل باید ۱ باشد" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "خطوط زیادی در این سند وجود ندارد" - -#~ msgid "Add special item to search pattern" -#~ msgstr "افزودن عنصر ویژه به الگوی جستجو" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "" -#~ "مقرر کردن محفظه‌ها (‎\\0 تا ‎\\9) و دنباله‌های گریز (‎\n" -#~ "، \t‎، ...)" - -#~ msgid "Add special item to replacement text" -#~ msgstr "افزودن عنصر ویژه به متن جایگزین" - -#~ msgid "Highlight all matches" -#~ msgstr "مشخص کردن همه تطبیقها" - -#~ msgid "Match case" -#~ msgstr "انطباق کوچکی‌بزرگی" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "آغاز جستجو از مکان‌نما، نه ابتدای سند" - -#~ msgid "From cursor" -#~ msgstr "از مکان‌نما" - -#~ msgid "Selection only " -#~ msgstr "فقط گزینش " - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "

    When selected, vi " -#~ "commands will override Kate's built-in commands. For example: Ctrl+R will " -#~ "redo, and override the standard action (showing the search & replace " -#~ "dialog).

    " -#~ msgstr "" -#~ "\n" -#~ "

    کنش " -#~ "کلید جهش )اگر گزینشی موجود نباشد( جهش با " -#~ "خط جاری در بلوک کد جاری مانند emacs، هم‌تراز شود، جهش را میان‌بری " -#~ "به کنش هم‌تراز کردن سازید.\">بیشتر...

    " - -#~ msgid "Shortcuts Configuration" -#~ msgstr "پیکر‌بندی میان‌برها" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "سعی در ذخیره پرونده python به عنوان غیر اسکی دارید، بدون مشخص کردن خط " -#~ "کدبندی منبع درست برای کدبندی »%1«" - -#~ msgid "No encoding header" -#~ msgstr "بدون سرآیند کدبندی" - -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "برنامه غلط‌یاب را نمی‌توان آغاز کرد. لطفاً، مطمئن شوید که برنامه هجی صحیح را " -#~ "تنظیم کرده‌اید، و به درستی پیکربندی شده و در مسیرتان است." - -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "به نظر می‌رسد برنامه هجی فرو‌پاشی شده است." - -#~ msgid "" -#~ "Use this to clean the indentation of a selected block of text (only tabs/" -#~ "only spaces)

    You can configure whether tabs should be honored " -#~ "and used or replaced with spaces, in the configuration dialog." -#~ msgstr "" -#~ "استفاده از این برای پاک کردن تو‌رفتگی بلوک برگزیده متن )فقط تبها/فقط " -#~ "فاصله‌ها(

    در محاوره پیکربندی می‌توانید پیکربندی کنید، که آیا " -#~ "تبها باید پذیرفته و استفاده شوند، یا با فاصله جایگزین شوند." - -#~ msgid "" -#~ "Here you can choose which mode should be used for the current document. " -#~ "This will influence the used highlighting and folding for example." -#~ msgstr "" -#~ "در اینجا حالتی که که باید برای سند جاری استفاده شود را می‌توانید انتخاب " -#~ "کنید. برای مثال مشخص کردن و تا کردن استفاده‌شده را تحت تأثیر قرار می‌دهد." - -#~ msgid "" -#~ "Show/hide the marks on the vertical scrollbar.

    The marks, for " -#~ "instance, show bookmarks." -#~ msgstr "" -#~ "نمایش/مخفی کردن نشانها در میله لغزش عمودی.

    نشانها برای نمونه، " -#~ "چوب الفها را نمایش می‌دهند." - -#~ msgid "Override the system wide setting for the default editing component" -#~ msgstr "لفو تنظیم کل سیستم برای مولفه ویرایش پیش‌فرض" - -#~ msgid "Replace &all" -#~ msgstr "جایگزینی &همه‌" - -#~ msgid "" -#~ "

    If this option is checked, every new view will show marks on the " -#~ "vertical scrollbar.

    These marks will, for instance, show bookmarks." -#~ "

    " -#~ msgstr "" -#~ "

    اگر این گزینه علامت بخورد، هر نمای جدید نشانها را در میله لغزش عمودی " -#~ "نمایش می‌دهد.

    این نشانها برای نمونه، چوب الفها را نمایش می‌دهند.

    " - -#~ msgid "unknown" -#~ msgstr "ناشناخته" - -#~ msgid "Context '%1': Incorrect number of arguments in '%2'" -#~ msgstr "متن »%1«: تعداد نادرست نشانوندها در »%2«" - -#~ msgid "Exception, line %1: %2" -#~ msgstr "استثناء، خط %1: %2" - -#~ msgid "Could not access view." -#~ msgstr "نتوانست به نما دست یابد." - -#~ msgid "Could not access lookup object." -#~ msgstr "نتوانست به شیء مراجعه دست یابد." - -#~ msgid "Exception: Unable to find function '%1': %2" -#~ msgstr "استثناء: قادر به یافتن تابع »%1« نیست: %2" - -#~ msgid "Exception in line %1: %2" -#~ msgstr "استثناء در خط %1: %2" - -#~ msgid "Sort: None" -#~ msgstr "مرتب کردن: هیچ‌کدام" - -#~ msgid "Filter: None" -#~ msgstr "پالایه: هیچ‌کدام" - -#~ msgid "Setup" -#~ msgstr "برپایی" - -#~ msgid "&Maximum undo steps:" -#~ msgstr "&بیشینه گامهای واگرد‌:" - -#~ msgid "" -#~ "The file %1 was opened with UTF-8 encoding but contained invalid " -#~ "characters. It is set to read-only mode, as saving might destroy it's " -#~ "content. Either reopen the file with the correct encoding chosen or " -#~ "enable the read-write mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "پرونده %1 با کدبندی UTF-8 باز نمی‌شود، ولی شامل نویسه‌های نامعتبر است. به " -#~ "حالت فقط خواندنی تنظیم می شود، چرا که ذخیره ممکن است محتوای آن را خراب " -#~ "کند. یا پرونده را با انتخاب کدبندی درست مجدداً باز نموده یا حالت خواندنی " -#~ "نوشتنی را در گزینگان فعال سازید تا قادر به ویرایش آن باشید." - -#~ msgid " Static" -#~ msgstr " ایستا" - -#~ msgid "Print syntax &guide" -#~ msgstr "چاپ &راهنمای نحوی‌" - -#~ msgid "" -#~ "

    Access " -#~ "Grouping properties

    " -#~ msgstr "" -#~ "

    ویژگیهای " -#~ "گروه‌بندی دستیابی

    " - -#~ msgid "" -#~ "

    Item " -#~ "Grouping properties

    " -#~ msgstr "" -#~ "

    ویژگیهای " -#~ "گروه‌بندی فقره

    " - -#~ msgid "Print &selected text only" -#~ msgstr "فقط چاپ متن &برگزیده‌" - -#~ msgid "" -#~ "

    This option is only available if some text is selected in the document." -#~ "

    If available and enabled, only the selected text is printed.

    " -#~ msgstr "" -#~ "

    اگر مقداری از متن موجود در سند گزینش شود، فقط این گزینه در دسترس است. " -#~ "

    اگر در دسترس باشد و فعال شود، فقط متن برگزیده چاپ می‌شود.

    " - -#~ msgid "Print %1" -#~ msgstr "چاپ %1" - -#~ msgid "Nowhere" -#~ msgstr "هیچ‌جا" - -#~ msgid "Selection Only" -#~ msgstr "فقط گزینش" - -#~ msgid "Selection, then Current Word" -#~ msgstr "گزینش، سپس واژه جاری" - -#~ msgid "Current Word Only" -#~ msgstr "فقط واژه جاری" - -#~ msgid "Current Word, then Selection" -#~ msgstr "واژه جاری، سپس گزینش" - -#~ msgid "Smart search t&ext from:" -#~ msgstr "جستجوی هوشمند &متن از‌:" - -#~ msgid "NORM" -#~ msgstr "عادی" - -#~ msgid " NORM " -#~ msgstr " عادی" - -#~ msgid "&From cursor" -#~ msgstr "&از مکان‌نما‌" - -#~ msgid "&Highlight all" -#~ msgstr "&مشخص کردن همه" - -#~ msgid "Unspecified Scope" -#~ msgstr "دامنه مشخص‌نشده" - -#~ msgid "Unspecified Access" -#~ msgstr "دستیابی مشخص‌نشده" - -#~ msgid "Unspecified Item Type" -#~ msgstr "نوع فقره مشخص‌نشده" diff -Nru ktexteditor-5.28.0/po/fi/ktexteditor5.po ktexteditor-5.31.0/po/fi/ktexteditor5.po --- ktexteditor-5.28.0/po/fi/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/fi/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -10,7 +10,7 @@ # Teemu Rytilahti , 2008. # Teemu Rytilahti , 2008. # Teemu Rytilahti , 2008, 2012. -# Tommi Nieminen , 2009, 2010, 2011, 2012, 2014. +# Tommi Nieminen , 2009, 2010, 2011, 2012, 2014, 2016. # Jorma Karvonen , 2010, 2012. # Lasse Liehu , 2010, 2011, 2012, 2013, 2014, 2015, 2016. # Jiri Grönroos , 2012. @@ -24,9 +24,9 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-15 23:11+0200\n" -"Last-Translator: Lasse Liehu \n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2016-11-22 23:33+0200\n" +"Last-Translator: Tommi Nieminen \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" @@ -34,260 +34,319 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-POT-Import-Date: 2012-12-01 22:21:58+0000\n" -"X-Generator: Lokalize 2.0\n" +"X-Generator: Lokalize 1.5\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Koodin täydennyksen asetukset" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Aina " #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Parametrivihjeet" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Parhaat osumat" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Nimiavaruudet" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Luokat" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Struktit" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unionit" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funktiot" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Muuttujat" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumeraatiot" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Etuliite" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Kuvake" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Näkyvyysalue" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nimi" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Parametrit" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Jälkiliite" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Julkinen" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Suojattu" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Yksityinen" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Staattinen" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Vakio" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Nimiavaruus" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Luokka" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Strukti" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Unioni" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funktio" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Muuttuja" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumeraatio" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Luokkamalli" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtuaalinen" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Ohita" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Inline" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Ystävä" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signaali" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Paikallinen näkyvyysalue" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Nimiavaruuden näkyvyysalue" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Yleinen näkyvyysalue" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Tuntematon ominaisuus" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Kielen avainsanat" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Automaattinen sanantäydennys" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Komentoikkunan täydennys" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Käytä yllä olevaa sanaa uudelleen" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Käytä alla olevaa sanaa uudelleen" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Tiedosto" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Muokkaa" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Etsi toisin" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Siirry" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Näytä" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Rivitys" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Reunat" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Koodin laskostus" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Työkalut" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Sanantäydennys" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Oikoluku" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "A&setukset" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Työkalurivi" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -296,31 +355,29 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Näytä &laskostusmerkit" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy -#| msgid "" -#| "

    If this option is checked, every new view will show marks on the " -#| "vertical scrollbar.

    These marks will show bookmarks, for instance." +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." msgstr "" -"

    Jos tämä asetus on valittuna, jokaisessa uudessa näkymässä näytetään " -"kuvakereunus vasemmalla sivulla.

    Kuvakereunuksessa näkyvät " -"esimerkiksi kirjanmerkit.

    " +"Jos asetus on valittu, laskostetun alueen yllä leijuttaessa näytetään " +"laskostetun tekstin esikatselu ponnahdusikkunassa." #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Näytä laskostetun koodin esikatselu" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -332,11 +389,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Näytä &kuvakereunus" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -346,11 +405,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Näytä &rivinumerot" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -360,11 +421,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Näytä rivien muutosmerkit" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -375,31 +438,29 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Näytä &vierityspalkin merkit" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy -#| msgid "" -#| "

    If this option is checked, every new view will show marks on the " -#| "vertical scrollbar.

    These marks will show bookmarks, for instance." +#, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " msgstr "" -"

    Jos tämä asetus on valittuna, jokaisessa uudessa näkymässä näytetään " -"kuvakereunus vasemmalla sivulla.

    Kuvakereunuksessa näkyvät " -"esimerkiksi kirjanmerkit.

    " +"

    Jos tämä asetus on valittu, pystyvierityspalkin yllä leijuttaessa " +"näytetään tekstin esikatselu.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Näytä tek&stin esikatselu vierityspalkin päällä" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -409,11 +470,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Näytä vierityspalkin sijaintinäkymä" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -423,47 +486,57 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Tee kartta koko tiedostosta" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" +#, fuzzy, kde-format +#| msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "Sij&aintinäkymän leveys" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Vieri&tyspalkkien näkyvyys:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Aina näkyvissä" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Näytä tarvittaessa" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Aina piilossa" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "Valitse miten kirjanmerkit järjestetään Kirjanmerkit valikossa." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Järjestä kirjanmerkkivalikko" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -473,55 +546,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "L&uontiajan mukaan" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "Kirjanmerkit järjestetään niiden rivinumeroiden mukaan." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "&Paikan mukaan" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Komento" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Kuvaus" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Muokkaa tietuetta…" #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Poista tietue…" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Lisää tietue…" #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Lisää muistiinpanoja" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    Tämä kuvake näytetään valikossa ja työkalurivillä.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Kuvaus:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategoria:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Yleistä" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Käytä &automaattista täydennystä" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "A&utomaattinen sanantäydennys" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Lyhin täydennettävä sananpituus:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "Poista edellisen sanan häntä, kun täydennyskohde valitaan luettelosta" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Poista häntä täydennettäessä" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "A&vainsanojen täydennys" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -615,31 +713,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Järjestys" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Aakkosjärjestys" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Käänteinen" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Kirjainkoon erottava" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Perimissyvyys" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Ryhmittelyjen järjestys (valitse määritettävä ryhmittelymenetelmä):" @@ -648,6 +752,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -656,121 +761,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Suodatus" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Vain sopivat kontekstit täsmäävät" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Piilota täydentämiset seuraavilla attribuuteilla:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Enimmäisperimissyvyys:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Loputon" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Ryhmittely" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Ryhmittelytapa" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Näkyvyysalueen tyyppi (paikallinen, nimiavaruus, yleinen)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Näkyvyysalue (esim. luokkakohtainen)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Näkyväisyystyyppi (julkinen jne.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Alkiotyyppi (funktio jne.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Hakuryhmitysominaisuudet" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Sisällytä const-tyypit ryhmitykseen" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Sisällytä static-tyypit ryhmitykseen" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Sisällytä signals- ja slots-tyypit ryhmitykseen" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Alkioryhmitysominaisuudet" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Sisällytä mallinteet ryhmityksiin" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Sarakkeiden yhdistys" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Sarakkeet" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Yhdistetty" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Näytetty" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Kiinteä rivitys" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -787,12 +916,14 @@ "sivulta.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Käytä k&iinteää rivitystä" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -804,17 +935,20 @@ "fontti.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Näytä &pysyvän rivityksen merkki (jos käytössä)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "&Rivinvaihtokohta:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -824,72 +958,87 @@ "rivin." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Syöttötila" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format +#| msgid "Default input mode" +msgid "Default input mode:" msgstr "Oletusarvoinen syöttötila:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Automaattisulkeet" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Käytä automaattisia sulkeita" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Kopiointi ja liittäminen" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Kopioi tai leikkaa nykyinen rivi, ellei valintaa ole" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Tiedostotyyppi:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Valitse muutettava tiedostotyyppi." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Luo uusi tiedostotyyppi." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Uusi" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Poista nykyinen tiedostotyyppi." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Poista" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Ominaisuudet" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Tiedostotyypin nimi esiintyy myös valikon tekstinä." @@ -897,21 +1046,25 @@ # DEFINE section osasto #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Osa:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Osan nimeä käytetään valikon rakenteessa" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Muuttujat:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -925,21 +1078,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Korostus:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "S&isennystapa:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "&Tiedostopäätteet:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -951,11 +1108,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME-&tyypit:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -967,16 +1126,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "MIME-tyyppivalitsin." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "&Tärkeys:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -986,16 +1148,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Lataa korostussääntöjä…" #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Oletusarvoinen &sisennystapa:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1008,36 +1173,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Sisennä" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&sarkaimin" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&välilyönnein" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Sisennysleveys:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "sarkaimin &ja välilyönnein" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Sarkaimen leveys:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1051,11 +1223,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Sisennyksen ominaisuudet" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1065,11 +1239,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Säilytä &ylimääräiset välilyönnit" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1079,16 +1255,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Mukauta &leikepöydältä liitetyn koodin sisennys" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Sisennystoiminnot" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1099,11 +1278,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "&Palautusnäppäin vähentää sisennystä" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tiedon palautus (Opaste)

    Kaikkia " -#~ "tietoja ei voitu palauttaa. Sivutustiedosto oli todennäköisesti " -#~ "vaillinainen.

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Korvaa" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tiedon palautus (Opaste)

    Tiedostoa ei " -#~ "suljettu oikein. Haluatko palauttaa tiedot?

    " - -#~ msgid "Cancel" -#~ msgstr "Peruuta" - -#~ msgid "Stop" -#~ msgstr "Pysäytä" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Värit" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Värit" - -#~ msgid "Export HlColors..." -#~ msgstr "Vie korostukset..." - -#~ msgid "Import HlColors..." -#~ msgstr "Tuo korostukset..." - -#~ msgid "Template Background" -#~ msgstr "Mallin tausta" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Pienennä tämä taso" - -#~ msgid "Expand One Local Level" -#~ msgstr "Laajenna tämä taso" - -#~ msgid "Collapse Level 1" -#~ msgstr "Pienennä taso 1" - -#~ msgid "Collapse Level 2" -#~ msgstr "Pienennä taso 2" - -#~ msgid "Collapse Level 3" -#~ msgstr "Pienennä taso 3" - -#~ msgid "Collapse Level 4" -#~ msgstr "Pienennä taso 4" - -#~ msgid "Collapse Level 5" -#~ msgstr "Pienennä taso 5" - -#~ msgid "Collapse Level 6" -#~ msgstr "Pienennä taso 6" - -#~ msgid "Collapse Level 7" -#~ msgstr "Pienennä taso 7" - -#~ msgid "Collapse Level 8" -#~ msgstr "Pienennä taso 8" - -#~ msgid "Collapse Level 9" -#~ msgstr "Pienennä taso 9" - -#~ msgid "Expand Level 1" -#~ msgstr "Laajenna taso 1" - -#~ msgid "Expand Level 2" -#~ msgstr "Laajenna taso 2" - -#~ msgid "Expand Level 3" -#~ msgstr "Laajenna taso 3" - -#~ msgid "Expand Level 4" -#~ msgstr "Laajenna taso 4" - -#~ msgid "Expand Level 5" -#~ msgstr "Laajenna taso 5" - -#~ msgid "Expand Level 6" -#~ msgstr "Laajenna taso 6" - -#~ msgid "Expand Level 7" -#~ msgstr "Laajenna taso 7" - -#~ msgid "Expand Level 8" -#~ msgstr "Laajenna taso 8" - -#~ msgid "Expand Level 9" -#~ msgstr "Laajenna taso 9" - -#~ msgid "&Collapse" -#~ msgstr "&Pienennä" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Automaattinen täydennys käytössä" diff -Nru ktexteditor-5.28.0/po/fr/ktexteditor5.po ktexteditor-5.31.0/po/fr/ktexteditor5.po --- ktexteditor-5.28.0/po/fr/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/fr/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -21,7 +21,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2014-12-07 13:59+0100\n" "Last-Translator: Maxime Corteel \n" "Language-Team: French \n" @@ -36,261 +36,320 @@ "X-Text-Markup: kde4\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Configuration du complètement du code" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Toujours" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Suggestions d'arguments" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Meilleures concordances" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Espaces de noms" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Classes" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Structures" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unions" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Fonctions" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variables" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Énumérations" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Préfixe" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Icône" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Portée" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nom" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Arguments" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Suffixe" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Public" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protégé" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Privé" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statique" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Constante" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Espace de noms" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Classe" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Structure" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Union" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Fonction" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variable" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Énumération" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Modèle" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtuel" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Ignorer" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "En ligne" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Ami" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Emplacement" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Portée locale" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Portée de l'espace de noms" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Portée globale" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Propriété inconnue" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Mots clés du langage" # | msgid "Word Completion Plugin" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Complètement automatique des mots" # | msgid "Word Completion Plugin" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Complètement automatique de la ligne de commandes" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Réutiliser le mot ci-dessus" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Réutiliser le mot ci-dessous" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Fichier" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Édition" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Trouver des variantes" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Aller à" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "Afficha&ge" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Retour à la ligne dynamique" # | msgid "Borders" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Bordures" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Pliage du code" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "Ou&tils" # | msgid "Word Completion Plugin" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Complètement automatique" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Orthographe" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Configuration" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Barre principale d'outils" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -299,6 +358,7 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "A&fficher les indicateurs de pliage" @@ -307,7 +367,7 @@ # | "scrollbar.

    These marks will, for instance, show bookmarks." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -344,11 +405,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Afficher la bordure d'&icônes" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -358,11 +421,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Afficher &les numéros de lignes" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -372,6 +437,7 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Afficher les indicateurs de modification de lignes" @@ -380,6 +446,7 @@ # | "scrollbar.

    These marks will, for instance, show bookmarks." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -390,6 +457,7 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Afficher le&s repères sur les barres de défilement" @@ -398,7 +466,7 @@ # | "scrollbar.

    These marks will, for instance, show bookmarks." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "" @@ -482,11 +559,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Trier le menu des signets" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -496,13 +575,14 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "Par ordre de c&réation" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Les signets seront classés selon les numéros des lignes sur lesquelles ils " @@ -510,51 +590,58 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "Par &position" # | msgid "Comment" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Commande" # | msgid "Execution" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Description" # | msgid "Edit Entry" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Modifier un élément..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Supprimer un élément" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Ajouter un élément..." # | msgid "Footer Properties" #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Notes supplémentaires" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    Cette icône sera affichée dans le menu et la barre d'outils.

    " # | msgid "&Section:" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Description :" # | msgid "&Pattern:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Catégorie :" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Général" # | msgid "Word Completion Plugin" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Activer le complètement &automatique" # | msgid "Word Completion Plugin" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Complètement a&utomatique des mots" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Longueur minimale d'un mot à compléter :" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Supprimer la fin d'un mot précédent lorsque l'élément de complètement est " @@ -639,17 +738,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Supprimer la fin lors du complètement" # | msgid "Word Completion Plugin" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "Complètement automatique des &mots clés" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -660,31 +762,37 @@ # | msgid "String" #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Tri" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alphabétique" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Inverse" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Sensible à la casse" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Profondeur d'héritage" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" "Ordre des groupements (sélectionnez une méthode de groupement à configurer) :" @@ -694,6 +802,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -702,118 +811,141 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" # | msgid "String" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtrage" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Uniquement les correspondances pertinentes de contexte" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Cacher les complètements comportant les attributs suivants :" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Profondeur maximale d'héritage :" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Infinité" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Groupement" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Méthode de groupement" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Type de portée (locale, espace de noms, globale)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Portée (par exemple, par classe)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Type d'accès (public, etc.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Type d'élément (fonction, etc.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Propriétés du groupement d'accès" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Inclure « const » dans le groupement" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Inclure « static » dans le groupement" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Inclure des signaux et des emplacements dans le groupement" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Propriétés de groupement des éléments" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Inclure des modèles dans le groupement" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Fusion des colonnes" # | msgid "Colors" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Colonnes" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Fusionnées" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Affichées" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Retour statique à la ligne " @@ -825,7 +957,8 @@ # | "be visually wrapped instead, according to the width of the view, " # | "enable Dynamic Word Wrap in the View Defaults config page." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -844,7 +977,8 @@ "Apparence.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Activer le retour &statique à la ligne" @@ -853,7 +987,8 @@ # | "wrap column as defined in the Editing properties.

    Note " # | "that the word wrap marker is only drawn if you use a fixed pitch font." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -866,21 +1001,23 @@ # | msgid "&Show static word wrap marker (if applicable)" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "" "Afficher les indicateurs de retour statique à la ligne (si a&pplicable)" # | msgid "Wrap words at:" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "Coupe&r les mots à :" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -890,83 +1027,94 @@ "commencera une nouvelle ligne." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Input Modes" msgid "Input Mode" msgstr "Modes de saisie" # | msgid "&Indentation mode:" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format +#| msgid "Default input mode" +msgid "Default input mode:" msgstr "Mode de saisie par défaut" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "&Accolades automatiques" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Flash matching brackets" msgid "Enable automatic brackets" msgstr "Faire clignoter les accolades correspondantes" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Copier/Couper la ligne actuelle s'il n'existe aucune sélection" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "Type de &fichier :" # | msgid "

    Select the marker type you want to change.

    " #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Sélectionnez le type de fichier que vous voulez modifier." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Crée un nouveau type de fichier." # | msgid "&New..." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nouveau" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Supprime le type de fichier actuel." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Supprimer" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Propriétés" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -974,11 +1122,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Section :" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" "Le nom de la section est utilisé pour organiser les types de fichiers dans " @@ -986,6 +1136,7 @@ #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variables :" @@ -996,6 +1147,7 @@ # | "p>

    For a full list of known variables, see the manual.

    " #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -1012,17 +1164,20 @@ # | msgid "&Highlighting" #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Coloration syntaxique :" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Mode d'&indentation :" # | msgid "File e&xtensions:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "E&xtensions de fichiers :" @@ -1032,6 +1187,7 @@ # | "code>. The string is a semicolon-separated list of masks." #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -1044,6 +1200,7 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Types MIME :" @@ -1053,6 +1210,7 @@ # | "text/english." #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1064,6 +1222,7 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "Affiche un assistant pour vous aider à sélectionner facilement des types " @@ -1072,6 +1231,7 @@ # | msgid "Prio&rity:" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "P&riorité :" @@ -1080,6 +1240,7 @@ # | "the same file, the one with the highest priority will be used." #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1090,17 +1251,20 @@ # | msgid "Highlighting Rules" #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Télécharger des fichiers de coloration syntaxique..." # | msgid "&Indentation mode:" #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Mode d'indentation par défaut :" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1115,38 +1279,45 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Indenter avec" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulations" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Espaces" # | msgid "Indentation with Spaces" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Largeur d'&indentation :" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "T&abulations et espaces" # | msgid "Tab width:" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Largeur &des tabulations :" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1161,11 +1332,13 @@ # | msgid "Indentation Rules" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Propriétés d'indentation" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1177,11 +1350,13 @@ # | msgid "&Keep extra spaces" #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Conser&ver les espaces supplémentaires" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1191,17 +1366,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Ajuster l'indentation du texte collé depuis le &presse-papier" # | msgid "Indentation" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Actions d'indentation" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1214,12 +1392,14 @@ # | msgid "&Backspace key indents" #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "" "La touche « &Correction » dans l'espace vide de début supprime l'indentation" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Restauration de données (Aide)

    Impossible de restaurer toutes les données. Le fichier " -#~ "d'échange est probablement incomplet.

    " - -#~ msgid "OK" -#~ msgstr "Ok" - -#~ msgid "Overwrite" -#~ msgstr "Écraser" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Restauration de données (Aide)

    Le fichier n'a pas été fermé de manière " -#~ "appropriée. Voulez-vous restaurer les données ?

    " diff -Nru ktexteditor-5.28.0/po/fy/ktexteditor5.po ktexteditor-5.31.0/po/fy/ktexteditor5.po --- ktexteditor-5.28.0/po/fy/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/fy/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -6,11 +6,11 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2009-05-22 10:03+0100\n" "Last-Translator: Berend Ytsma \n" "Language-Team: Frysk \n" -"Language: \n" +"Language: fy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -18,264 +18,321 @@ "Plural-Forms: nplurals=2; plural=n != 1;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Koade-oanfolje ynstelle" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Altyd" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Argumint-hints" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Bêste oerienkomsten" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Nammeromtes" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Klassen" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Struktueren" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unies" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funksjes" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Fariabelen" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumeraties" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Foarheaksel" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Bykdkaike" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Berik" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Namme" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Arguminten" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Efterheaksel" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Publyk" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Beskermd" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Privee" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statysk" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Konstant" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Nammeromte" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Klasse" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Strukt" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Unie" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funksje" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Fariabele" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumeraasje" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Sjabloan" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Firtueel" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Oerwâldzje" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Inline" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Freon" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Sinjaal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "skoattel" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Lokaal berik" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Nammeromte-berik" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Globaal berik" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Unbekende eigenskip" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" # msgid "Word Completion Plugin" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Automatyske wurd oanfolling " # msgid "Word Completion Plugin" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Konsole oanfolling" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Wurd hjirboppe op'e nij brûke" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Wurd hjirûnder op'e nij brûke" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Triem" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "Be&wurkje" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "Byl&d" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "Statyske rigelôfbrekking" # msgid "Borders" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Rânen" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Code-ynfâlding" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "H&elpmiddels" # msgid "Word Completion Plugin" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Wurdoanfolling" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Ynstellings" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Haadbalke" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -287,14 +344,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "Fâld&markearings sjen litte" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -331,11 +389,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Byldka&ikerâne sjen litte" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -345,12 +405,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Rige&lnûmering sjen litte" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -363,13 +424,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "Fâld&markearings sjen litte" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -380,12 +442,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "&Skúfbalke markearrings sjen litte" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "Beskied hoe't de blêdwizers yn it blêdwizermenu oardere wurde." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Blêdwizermenu sortearje" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -495,13 +565,14 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "Neffens o&anmaakdatum" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "De blêdwijers sille oardere wurde neffens de rigelnûmers wêrop se pleatst " @@ -509,51 +580,58 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "Neffens &posysje" # msgid "Comment" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Kommando" # msgid "Execution" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Beskriuwing" # msgid "Edit Entry" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Ynfier bewurkje..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Ynfier wiskje" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Ynfier taheakje..." # msgid "Footer Properties" #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Foetteksteigenskippen" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    Dit byldkaike is te sjen yn it menu en arkbalke.

    " # msgid "&Section:" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Beskriuwing:" # msgid "&Pattern:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategory:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Algemien" # msgid "Word Completion Plugin" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Completion" msgid "Enable &auto completion" msgstr "Auto oanfolling" @@ -623,24 +709,26 @@ # msgid "Word Completion Plugin" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Word Completion" msgid "A&uto Word Completion" msgstr "Automatyske wurd oanfolling " #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "Spaasjes efte&roan fuortsmite" @@ -648,13 +736,14 @@ # msgid "Word Completion Plugin" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "Wurdoanfolling" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -663,31 +752,37 @@ # msgid "String" #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Sortearje " #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabetysk" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Omkeard" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Haadlettergefoelich" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Oernimdjipte" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Oarder fan groepen (selektearje in groepmetoade om yn te stellen):" @@ -696,6 +791,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -704,118 +800,141 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" # msgid "String" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filterje" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Geskikt ferbân komt allinne oerien" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Foltôgings ferstopje mei itfolgjende ark:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Maksimale oernimdjipte:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Uneinich" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Groepearje" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Groepmetoade" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Scope type (lokaal, nammeromte, algemien)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Scope (bgl. de klasse)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Tagongstype (publyk ensfh.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Itemtype (funskje ensfh.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Tagong groep eigenskippen" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Konst. yn groepearje ynfoegje" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Statysk yn groepearje ynfoegje" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Sinjalen en skoattels yn groepearje ynfoegje" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Item groep eigenskippen" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Sjabloanen fan groepearje ynfoegje" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Kolom gearfoegje" # msgid "Colors" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Kolommen" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Gearfoege" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Sjen litten" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Statyske rigelôfbrekking" @@ -827,8 +946,8 @@ # "be visually wrapped instead, according to the width of the view, " # "enable Dynamic Word Wrap in the View Defaults config page." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 -#, fuzzy +#: dialogs/editconfigwidget.ui:26 +#, fuzzy, kde-format #| msgid "" #| "

    Automatically start a new line of text when the current line exceeds " #| "the length specified by the Wrap words at: option.

    This " @@ -854,7 +973,8 @@ "yn de seksje werjeftestandert fan it konfiguraasjedialoochfinster.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Statyske rigelôfbrekking akti&vearje" @@ -863,7 +983,8 @@ # "wrap column as defined in the Editing properties.

    Note " # "that the word wrap marker is only drawn if you use a fixed pitch font." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -877,20 +998,22 @@ # msgid "&Show static word wrap marker (if applicable)" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Statyske-rigelôfbrekking-markearring sjen litte (as fan ta&passing is)" # msgid "Wrap words at:" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "&Rigels ôfbrekke op:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -900,85 +1023,94 @@ "wurdt en de bewurker op in nije rigel fierdergiet." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "&Indentation Mode:" msgid "Input Mode" msgstr "&Ynsprong modus:" # msgid "&Indentation mode:" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "Standert ynspringmetoade:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "Automatyske &blokheakjes" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "Selektearje oan byhearrend heakje ta" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Triemtype:" # msgid "

    Select the marker type you want to change.

    " #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "

    Selektearje it triemtype dy't jo wizigje wolle:

    " #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Meitsje in nij triemtype oan." # msgid "&New..." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nij" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "De hjoeddeiske triemtype wiskje." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Wiskje" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Eigenskippen" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -987,16 +1119,19 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Seksje:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "De seksjenamme wurdt brûkt om de triemtypen yn menu's te oarderjen." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Fariabelen:" @@ -1007,6 +1142,7 @@ # "p>

    For a full list of known variables, see the manual.

    " #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -1022,17 +1158,20 @@ # msgid "&Highlighting" #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "Markea&rring:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Ynsprong modus:" # msgid "File e&xtensions:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Triem tahea&ksels:" @@ -1042,6 +1181,7 @@ # "code>. The string is a semicolon-separated list of masks." #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -1054,6 +1194,7 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME-&triemtypen:" @@ -1063,6 +1204,7 @@ # "text/english." #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1074,12 +1216,14 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Iepent in assistint dy't jo helpt by it selektearje fan mimetypes." # msgid "Prio&rity:" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Prio&riteit:" @@ -1088,6 +1232,7 @@ # "the same file, the one with the highest priority will be used." #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1098,17 +1243,20 @@ # msgid "Highlighting Rules" #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Markearrinsregels ynlade..." # msgid "&Indentation mode:" #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Standert ynspringmetoade:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1122,21 +1270,21 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "Ynspringmetoade" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "Tabulators" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Replace" msgid "&Spaces" msgstr "Fe&rfange:" @@ -1144,14 +1292,14 @@ # msgid "Indentation with Spaces" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation width:" msgid "&Indentation width:" msgstr "Ynspringen breedte" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "Tabulators" @@ -1159,11 +1307,13 @@ # msgid "Tab width:" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Tabbree&dte:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1178,11 +1328,13 @@ # msgid "Indentation Rules" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Ynspring eigenskippen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1194,13 +1346,14 @@ # msgid "&Keep extra spaces" #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "&Keep extra spaces" msgstr "Ekstra spaasjes behâlde" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1211,7 +1364,7 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 -#, fuzzy +#, fuzzy, kde-format #| msgid "Adjust indentation of code pasted from the clipboard" msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Pas de koade dy't plakt wurdt fan it klamboerd oan mei de ynspringing." @@ -1219,11 +1372,13 @@ # msgid "Indentation" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Ynspringmetoade" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1235,14 +1390,14 @@ # msgid "&Backspace key indents" #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format #| msgid "Backspace key in leading blank space unindents" msgid "&Backspace key in leading blank space unindents" msgstr "Backspace-toets yn wytromtes makket ynspring ûngedien" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tab " -#~ "toets aksje (as der gjin seleksje bestiet) Tab de aktive rigel rjochtet yn deaktive koadeblok lykas yn emacs, " -#~ "meitsje Tab in fluchtoets foar de aksje Rjochtsje.\">More ...

    " - -#~ msgid "Overwrite" -#~ msgstr "Oerskriuwe" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tab " -#~ "toets aksje (as der gjin seleksje bestiet) Tab de aktive rigel rjochtet yn deaktive koadeblok lykas yn emacs, " -#~ "meitsje Tab in fluchtoets foar de aksje Rjochtsje.\">More ...

    " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "Berik" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Kleuren" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Kleuren" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "Normale &kleur..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "Normale &kleur..." - -#~ msgid "Template Background" -#~ msgstr "Sjabloaneftergrûn" - -#~ msgid "Collapse One Local Level" -#~ msgstr "In lokaal nivo ynfâldzje" - -#~ msgid "Expand One Local Level" -#~ msgstr "In lokaal nivo útfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Boppenste nivo ynfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Boppeste nivo útfâldzje" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Boppenste nivo ynfâldzje" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Automatysk oanfolling ynskeakele" - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "O&pmaak:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "In KDE tekstbewurker ûnderdiel koe net fûn wurde;\n" -#~ "kontrolearje jo KDE ynstallaasje." - -#~ msgid "Use this to close the current document" -#~ msgstr "Brûk dit om it aktive dokumint te sluten." - -#~ msgid "Use this command to create a new document" -#~ msgstr "Brûk dit kommando om in nij dokumint te meitsjen" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "" -#~ "Brûk dit kommando om in besteand dokumint te iepenjen om it te bewurkjen" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Dizze list lit triemmen sjen dy jo koartlyn iepene ha, en makket it " -#~ "mooglik om hja maklik wer te iepenjen." - -#~ msgid "&New Window" -#~ msgstr "&Nij finster" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Meitsje noch in skerm oan mei it aktive dokumint" - -#~ msgid "Choose Editor..." -#~ msgstr "Kies bewurker..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "" -#~ "Oerwâldzje de systeemwide ynstelling foar de standert bewurkings komponint" - -#~ msgid "Close the current document view" -#~ msgstr "Slút de aktive dokumint werjefte" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Brûk dit kommando om de tastânbalke fan de skermen sjen te litten of te " -#~ "ferstopjen" - -#~ msgid "Sho&w Path" -#~ msgstr "Paad &sjen litte" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Lit yn it finsterbyskrift it folsleine dokumint paad sjen" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "De fluchtoets tawizing fan de applikaasje ynstelle." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Ynstelle hokker items ferskine moatte yn de arkbalk(en)." - -#~ msgid "&About Editor Component" -#~ msgstr "Tekstinvoercomponent - &It hoe en het" - -#~ msgid " INS " -#~ msgstr "YNF" - -#~ msgid " LINE " -#~ msgstr " Line" - -#~ msgid "Open File" -#~ msgstr "Triem iepenje" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "De triem dy't jûn is koe net lêzen wurde, kontrolearje of it bestiet en " -#~ "lêsber is foar de aktive brûker." - -#~ msgid " BLOCK " -#~ msgstr " BLOK" - -#~ msgid "Read the contents of stdin" -#~ msgstr "Lês de ynhâld fan stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Stel de kodearring yn foar de te iepenjen triem" - -#~ msgid "Navigate to this line" -#~ msgstr "Gean nei dizze rigel" - -#~ msgid "Navigate to this column" -#~ msgstr "Gean nei dizze kolom" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - tekstbewurker" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 De Auteurs Fan Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "Bewurker komponint kieze" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Dizze triemtafel betettet tests, basedir- en útfiertafels" - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Ferlykje mislearrings fan dizze testrit mei it kykje . Standert " -#~ "wurdt de meast koatlyn opnommen mislearringskykje brûkt, of gjint as der " -#~ "gjint bestiet." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Debugútfier net ûnderdrukke" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Baseline regenerearje (ynstee fan kontrolearje)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Utfiertriemmen ek hâlde by sukses" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "" -#~ "Mislearrings fan dizze testrit bewarje as mislearringskykje " - -#~ msgid "Show the window while running tests" -#~ msgstr "Lit it finster sjen ûnder it útfieren fan de tests" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "" -#~ "Allinne in inkelfâldige test útfiere. Meardere opsjes binne tastien." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Set útfier yn ynstee fan in /output" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Triemtafel dy tests, basedir en útfier triemtafels befettet. Allinne " -#~ "brûkt as -b net oantsjutte is." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Relatyf paad nei test, of triemtafel mei testen om út te fieren (lyk oan -" -#~ "t)" - -#~ msgid "TestRegression" -#~ msgstr "Testregresje" - -#~ msgid "Regression tester for kate" -#~ msgstr "Regresjetester foar Kate" - -#~ msgid "Error: " -#~ msgstr "Flater: " - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Wannear ynskeakele is sil de bewurker it oantal spaasjes oant de " -#~ "neikommende tabposysje berekenje. Hjirby wurdt fan de ynstelde tabbreedte " -#~ "útgong. Ynstee fan it tabteken wurdt it berekende oantal spaasjes jûn" - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Spaasjes ynstee fan tabs &ynfoegje" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "It ferskil besjen" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Utskeakele" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "De triem %1 wie iepene mei de UTF-8 kodearring mar befette ûnjildige " -#~ "karkaters. It is setten nei de allinne-lêze modus , omdat bewarjen de " -#~ "ynhâld ferneatigje kin. Of iepenje de triem op 'e nij mei de juste " -#~ "kodearring of set de lês-skriuw modus wer oan yn it menu om it bewurkje " -#~ "te kinnen." - -#~ msgid "Binary File Opened" -#~ msgstr "Binêre triem iepene" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "brútsen UTF-8 triem iepene" - -#~ msgid "Universal" -#~ msgstr "Algemien" - -#~ msgid "&Word Wrap Document" -#~ msgstr "Dok&umint rigelôfbrekking" - -#~ msgid "Modify search behavior" -#~ msgstr "Syk gedrach oanpasse" - -#~ msgid "&Options" -#~ msgstr "&Opsjes" - -# msgid "Wrap c&ursor" -#~ msgid "From &cursor" -#~ msgstr "fanôf &rinnerke" - -#~ msgid "Hi&ghlight all" -#~ msgstr "Alles markearje" - -#~ msgid "Success" -#~ msgstr "Sukses" - -#~ msgid "Move Character Right" -#~ msgstr "Teken nei rjochts" - -#~ msgid "Move Character Left" -#~ msgstr "Teken nei lofts" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 De Auteurs Fan Kate" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Untwikkelder & Markear assistint" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Koe dizze triem net lêze: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Kon interpreter niet starten voor script %1, commando %2" - -#~ msgid "&Overwrite" -#~ msgstr "&Oerskriuwe" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Dynamyske rigelôfbrekking" diff -Nru ktexteditor-5.28.0/po/ga/ktexteditor5.po ktexteditor-5.31.0/po/ga/ktexteditor5.po --- ktexteditor-5.28.0/po/ga/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ga/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -19,273 +19,332 @@ "3 : 4\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Cumraíocht Comhlánaithe Cóid" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "I gcónaí" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Leideanna argóintí" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Torthaí is comhoiriúnaí" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Ainmspásanna" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Aicmí" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Struchtúir" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Aontas" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Feidhmeanna" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Athróga" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Cineál Ináirithe" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Réimír" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Deilbhín" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Scóip" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Ainm" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argóintí" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Iarshuite" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Poiblí" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Cosanta" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Príobháideach" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statach" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Tairiseach" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Ainmspás" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Aicme" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struchtúr" # OK --KPS #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Aontas" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Feidhm" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Athróg" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Liosta Áirithe" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Teimpléad" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Fíorúil" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Sáraigh" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Inlíne" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Cara" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Comhartha" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Sliotán" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Scóip Logánta" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Scóip an Ainmspáis" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Scóip Chomhchoiteann" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Airí Anaithnid" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Comhlánú Uathoibríoch" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Comhlánú Blaoisce" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Athúsáid an Focal Thuas" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Athúsáid an Focal Thíos" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Comhad" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Eagar" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Amharc" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "Timfhilleadh Focal Statach" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Teorainneacha" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Filleadh &Cóid" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Uirlisí" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Comhlánú Focal" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Litriú" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Socruithe" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Príomhbharra Uirlisí" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &line numbers" msgid "Show &folding markers" msgstr "Taispeáin Uimhreacha na &Línte" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -293,13 +352,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show preview of folded code" msgstr "Priontáil an cháipéis reatha" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -308,11 +368,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Taispeáin teora&inn an deilbhín" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -320,11 +382,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Taispeáin Uimhreacha na &Línte" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -332,11 +396,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -344,11 +410,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " @@ -356,11 +424,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -368,11 +438,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -380,51 +452,58 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tab wi&dth:" -msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "Leithea&d táb:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Ann i gCónaí" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy +#, fuzzy, kde-format #| msgid "Always" msgid "Always Off" msgstr "I gcónaí" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Sórtáil an Roghchlár Leabharmharcanna" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -432,55 +511,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Ordú" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Cur Síos" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Cuir Iontráil in Eagar..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Bain Iontráil" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Cuir Iontráil Leis..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Tuilleadh Nótaí" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "" "

    Taispeánfar an deilbhín seo sa roghchlár agus sa bharra uirlisí.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Cur Síos:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Catagóir:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Ginearálta" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Cum&asaigh comhlánú uathoibríoch" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Word Completion" msgid "A&uto Word Completion" msgstr "Comhlánú Uathoibríoch" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces:" msgid "Remove tail on complete" msgstr "&Bain spásanna breise:" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "Comhlánú Focal" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -580,31 +681,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Sórtáil" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Aibítreach" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Aisiompaithe" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Cásíogair" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" @@ -613,6 +720,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -621,121 +729,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Scagadh" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Grúpáil" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Modh Grúpála" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Colúin" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Cumaiscthe" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Timfhilleadh Focal Statach" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -746,12 +878,14 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Cumasaigh &timfhilleadh focal statach" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -759,124 +893,139 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "" "Taispeáin marcóir thimfhilleadh &focal statach (má bhaineann sé leis an gcás)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "&Timfhill focail ag:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Input Mode" msgstr "Mód Ionchurtha Vi" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "Mód eangaithe réamhshocraithe:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Move to Matching Bracket" msgid "Auto Brackets" msgstr "Téigh go dtí an Lúibín Comhoiriúnach" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "Roghnaigh téacs go dtí an Lúibín Comhoiriúnach" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "C&ineál Comhaid:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Roghnaigh an cineál comhad is mian leat a athrú." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Cruthaigh cineál nua comhaid." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nua" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Scrios an cineál reatha comhaid." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Scrios" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Airíonna" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Rannán:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" "Úsáidtear ainm an rannáin chun cineálacha comhaid a eagrú i roghchláir." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Athróga:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -886,21 +1035,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Aibhsiú:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Mód &Eangaithe:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "&Iarmhíreanna comhaid:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -909,11 +1062,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "C&ineálacha MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -922,16 +1077,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Taispeáin treoraí lenar féidir cineálacha MIME a roghnú go héasca." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "&Tosaíocht:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -942,16 +1100,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Íosluchtaigh Comhaid Aibhsithe..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Mód eangaithe réamhshocraithe:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -965,36 +1126,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Eangaigh le" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Táblóirí" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Spásanna" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Le&ithead eangaithe:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Táblóirí &agus Spásanna" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Leithea&d táb:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1004,11 +1172,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Airíonna an Eangaithe" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1016,11 +1186,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Coinnigh spásanna breise" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1030,16 +1202,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Coigeartaigh eangú cóid a &ghreamaítear ón ghearrthaisce" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Gníomhartha Eangaithe" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1048,11 +1223,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" "

    Acción da tecla tabulador (se non hai ren escollido) Tab aliñe a liña actual no bloque de código actual como en emacs, " -"faga a Tab un atallo para a acción Aliñar.\">Máis ...Tab un atallo para a acción Aliñar.\">Máis …

    " #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbTabAdvances) #: dialogs/indentationconfigwidget.ui:225 +#, kde-format msgid "" "If this option is selected, the Tab key always inserts white space so " "that the next tab position is reached. If the option Insert spaces " @@ -1139,17 +1325,19 @@ "are inserted; otherwise, a single tabulator is inserted." msgstr "" "Se escolle esta opción, a tecla Tab sempre insire espazos en branco " -"até acadar a seguinte posición de tabulación. Se activou a opción Inserir " +"ata acadar a seguinte posición de tabulación. Se activou a opción Inserir " "espazos no canto de tabuladores na sección Edición, inserirá " "espazos, se non, inserirá unha tabulación." #. i18n: ectx: property (text), widget (QRadioButton, rbTabAdvances) #: dialogs/indentationconfigwidget.ui:228 +#, kde-format msgid "Always advance to the &next tab position" -msgstr "Ava&nzar sempre até a seguinte posición de tabulación" +msgstr "Ava&nzar sempre ata a seguinte posición de tabulación" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbTabIndents) #: dialogs/indentationconfigwidget.ui:235 +#, kde-format msgid "" "If this option is selected, the Tab key always indents the current " "line by the number of character positions specified in Indentation widthTab key either indents the current " "line or advances to the next tab position.

    If the insertion point is at " @@ -1179,43 +1369,50 @@ "inserted." msgstr "" "Se escolle esta opción, a tecla Tab sangra a liña actual ou avanza " -"até a seguinte posición de tabulación.

    Se o punto de inserción está en ou " +"ata a seguinte posición de tabulación.

    Se o punto de inserción está en ou " "antes do primeiro carácter diferente de espazo na liña, ou se hai unha " "escolla feita, a liña sangra o número de posicións indicado en Largo do " "sangrado.

    Se o punto de inserción está tras o primeiro carácter non " -"espazo na liña e non hai escolla feita, insírense espazos en branco até " +"espazo na liña e non hai escolla feita, insírense espazos en branco ata " "acadar a seguinte posición de tabulación: se ten activada a opción " "Inserir espazos no canto de tabulacións na sección Edición, " "insírense espazos e se non insírese unha tabulación." #. i18n: ectx: property (text), widget (QRadioButton, rbTabSmart) #: dialogs/indentationconfigwidget.ui:248 +#, kde-format msgid "Increase indentation level if in l&eading blank space" msgstr "Aum&entar o sangrado se está no espazo en branco inicial" #: dialogs/katedialogs.cpp:198 dialogs/katedialogs.cpp:200 +#, kde-format msgid " character" msgid_plural " characters" msgstr[0] " carácter" msgstr[1] " caracteres" #: dialogs/katedialogs.cpp:227 +#, kde-format msgid "Indentation" msgstr "Sangrado" #: dialogs/katedialogs.cpp:300 +#, kde-format msgid "Auto Completion" msgstr "Completación automática" #: dialogs/katedialogs.cpp:364 +#, kde-format msgid "Spellcheck" msgstr "Corrección ortográfica" #: dialogs/katedialogs.cpp:440 +#, kde-format msgid "Text Navigation" msgstr "Navegación do texto" #: dialogs/katedialogs.cpp:508 +#, kde-format msgctxt "Wrap words at (value is at 20 or larger)" msgid " character" msgid_plural " characters" @@ -1223,31 +1420,38 @@ msgstr[1] " caracteres" #: dialogs/katedialogs.cpp:621 +#, kde-format msgid "Editing" msgstr "Edición" #: dialogs/katedialogs.cpp:626 +#, kde-format msgid "Editing Options" msgstr "Opcións de edición" #: dialogs/katedialogs.cpp:655 +#, kde-format msgid "Off" msgstr "Desactivado" #: dialogs/katedialogs.cpp:656 +#, kde-format msgid "Follow Line Numbers" msgstr "Seguir os números de liña" #: dialogs/katedialogs.cpp:775 dialogs/katedialogs.cpp:780 +#, kde-format msgid "Appearance" msgstr "Aparencia" #. i18n: ectx: property (title), widget (QGroupBox, groupBox) #: dialogs/katedialogs.cpp:846 dialogs/textareaappearanceconfigwidget.ui:102 +#, kde-format msgid "Advanced" msgstr "Avanzado" #: dialogs/katedialogs.cpp:901 +#, kde-format msgid "" "You did not provide a backup suffix or prefix. Using default suffix: '~'" msgstr "" @@ -1255,76 +1459,90 @@ "Usarase o sufixo predeterminado «~»" #: dialogs/katedialogs.cpp:902 +#, kde-format msgid "No Backup Suffix or Prefix" msgstr "Non hai prefixo nin sufixo para as copias de seguranza" #: dialogs/katedialogs.cpp:1031 +#, kde-format msgid "Open/Save" msgstr "Abrir/Gardar" #: dialogs/katedialogs.cpp:1036 +#, kde-format msgid "File Opening & Saving" msgstr "Abertura e gardado de ficheiros" #: dialogs/katedialogs.cpp:1050 +#, kde-format msgid "Highlight Download" msgstr "Descarga de realzados" #: dialogs/katedialogs.cpp:1057 +#, kde-format msgid "Select the syntax highlighting files you want to update:" -msgstr "Escolla os ficheiros de realzado de sintaxe que desexa actualizar:" +msgstr "Escolla os ficheiros de realzado de sintaxe que quere actualizar:" #: dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Installed" msgstr "Instalado" #: dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Latest" msgstr "Último" #: dialogs/katedialogs.cpp:1069 +#, kde-format msgid "Note: New versions are selected automatically." msgstr "Nota: As versións novas escóllense automaticamente." #: dialogs/katedialogs.cpp:1076 +#, kde-format msgid "&Install" msgstr "&Instalar" #: dialogs/katedialogs.cpp:1119 +#, kde-format msgid "" "The list of highlightings could not be found on / retrieved from the server" msgstr "Non foi posíbel atopar nin obter a lista de realces do servidor" #: dialogs/katedialogs.cpp:1223 +#, kde-format msgid "&Go to line:" msgstr "&Ir á liña:" #: dialogs/katedialogs.cpp:1229 +#, kde-format msgid "Go" msgstr "Ir" #: dialogs/katedialogs.cpp:1291 +#, kde-format msgid "Dictionary:" msgstr "Dicionario:" #: dialogs/katedialogs.cpp:1345 -#, fuzzy +#, fuzzy, kde-format #| msgid "&View Difference" msgid "View &Difference" msgstr "&Ver as diferenzas" #: dialogs/katedialogs.cpp:1346 +#, kde-format msgid "Shows a diff of the changes" msgstr "" #: dialogs/katedialogs.cpp:1351 -#, fuzzy +#, fuzzy, kde-format #| msgid "Reloa&d" msgid "&Reload" msgstr "Cargar &de novo" #: dialogs/katedialogs.cpp:1353 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "Reload the file from disk. If you have unsaved changes, they will be lost." msgid "Reload the file from disk. Unsaved changes will be lost." @@ -1333,28 +1551,31 @@ "teña gardadas." #: dialogs/katedialogs.cpp:1357 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Save File As..." msgid "&Save As..." -msgstr "Gardar o ficheiro &como..." +msgstr "Gardar o ficheiro &como…" #: dialogs/katedialogs.cpp:1359 +#, kde-format msgid "Lets you select a location and save the file again." msgstr "Permítelle escoller un lugar e gardar de novo o ficheiro." #. i18n: ectx: property (text), widget (QPushButton, m_skipBtn) #: dialogs/katedialogs.cpp:1364 spellcheck/spellcheckbar.ui:143 +#, kde-format msgid "&Ignore" msgstr "&Ignorar" #: dialogs/katedialogs.cpp:1365 -#, fuzzy +#, fuzzy, kde-format #| msgid "Ignore the changes. You will not be prompted again." msgid "Ignores the changes on disk without any action." msgstr "Ignorar as modificacións. Non se lle voltará a preguntar." # skip-rule: kde_path #: dialogs/katedialogs.cpp:1432 swapfile/kateswapdiffcreator.cpp:137 +#, kde-format msgid "" "The diff command failed. Please make sure that diff(1) is installed and in " "your PATH." @@ -1362,24 +1583,29 @@ "A orde diff fallou. Asegúrese de que diff(1) está instalado e na súa PATH." #: dialogs/katedialogs.cpp:1434 swapfile/kateswapdiffcreator.cpp:139 +#, kde-format msgid "Error Creating Diff" msgstr "Erro ao crear o Diff" #: dialogs/katedialogs.cpp:1442 swapfile/kateswapdiffcreator.cpp:147 +#, kde-format msgid "The files are identical." msgstr "Os ficheiros son idénticos." #: dialogs/katedialogs.cpp:1443 swapfile/kateswapdiffcreator.cpp:148 +#, kde-format msgid "Diff Output" msgstr "Saída de Diff" #. i18n: ectx: property (title), widget (QGroupBox, gbCursorMovement) #: dialogs/navigationconfigwidget.ui:12 +#, kde-format msgid "Text Cursor Movement" msgstr "Movemento do cursor polo texto" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkSmartHome) #: dialogs/navigationconfigwidget.ui:18 +#, kde-format msgid "" "When selected, pressing the home key will cause the cursor to skip " "whitespace and go to the start of a line's text. The same applies for the " @@ -1391,11 +1617,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkSmartHome) #: dialogs/navigationconfigwidget.ui:21 +#, kde-format msgid "Smart ho&me and smart end" msgstr "Teclas Inicio e Fin &intelixentes" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkPagingMovesCursor) #: dialogs/navigationconfigwidget.ui:28 +#, kde-format msgid "" "Selects whether the PageUp and PageDown keys should alter the vertical " "position of the cursor relative to the top of the view." @@ -1405,16 +1633,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkPagingMovesCursor) #: dialogs/navigationconfigwidget.ui:31 +#, kde-format msgid "&PageUp/PageDown moves cursor" msgstr "&AvPáx/RePáx moven o cursor" #. i18n: ectx: property (text), widget (QLabel, lblAutoCenterCursor) #: dialogs/navigationconfigwidget.ui:43 +#, kde-format msgid "&Autocenter cursor:" msgstr "Manter o cursor centrado:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbAutoCenterCursor) #: dialogs/navigationconfigwidget.ui:53 +#, kde-format msgid "" "Sets the number of lines to maintain visible above and below the cursor when " "possible." @@ -1427,41 +1658,49 @@ #. i18n: ectx: property (specialValueText), widget (QSpinBox, sbDynamicWordWrapDepth) #: dialogs/navigationconfigwidget.ui:56 dialogs/opensaveconfigadvwidget.ui:160 #: dialogs/textareaappearanceconfigwidget.ui:57 +#, kde-format msgid "Disabled" msgstr "Desactivado" #. i18n: ectx: property (suffix), widget (QSpinBox, sbAutoCenterCursor) #: dialogs/navigationconfigwidget.ui:59 +#, kde-format msgid " lines" msgstr " liñas" #. i18n: ectx: property (title), widget (QGroupBox, cbNavigationMisc) #: dialogs/navigationconfigwidget.ui:84 +#, kde-format msgid "Misc" msgstr "Diversos" #. i18n: ectx: property (text), widget (QLabel, lblTextSelectionMode) #: dialogs/navigationconfigwidget.ui:92 +#, kde-format msgid "Text selection mode:" msgstr "Modo de selección de texto:" #. i18n: ectx: property (text), item, widget (QComboBox, cbTextSelectionMode) #: dialogs/navigationconfigwidget.ui:103 inputmode/katenormalinputmode.cpp:82 +#, kde-format msgid "Normal" msgstr "Normal" #. i18n: ectx: property (text), item, widget (QComboBox, cbTextSelectionMode) #: dialogs/navigationconfigwidget.ui:108 +#, kde-format msgid "Persistent" msgstr "Persistente" #. i18n: ectx: property (text), widget (QCheckBox, chkScrollPastEnd) #: dialogs/navigationconfigwidget.ui:131 +#, kde-format msgid "Allow scrolling past the end of the document" msgstr "Permitir o desprazamento alén da fin do documento" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbBackup) #: dialogs/opensaveconfigadvwidget.ui:17 +#, kde-format msgid "" "

    Backing up on save will cause Kate to copy the disk file to '<" "prefix><filename><suffix>' before saving changes.

    The " @@ -1474,11 +1713,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbBackup) #: dialogs/opensaveconfigadvwidget.ui:20 +#, kde-format msgid "Backup on Save" msgstr "Facer unha copia de seguranza ao gardar" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackupLocalFiles) #: dialogs/opensaveconfigadvwidget.ui:29 +#, kde-format msgid "" "If this option is enabled, backups for local files will be created when " "saving." @@ -1488,11 +1729,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackupLocalFiles) #: dialogs/opensaveconfigadvwidget.ui:32 +#, kde-format msgid "&Local files" msgstr "Ficheiros &locais" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackupRemoteFiles) #: dialogs/opensaveconfigadvwidget.ui:39 +#, kde-format msgid "" "If this option is enabled, backups for remote files will be created when " "saving." @@ -1502,77 +1745,93 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackupRemoteFiles) #: dialogs/opensaveconfigadvwidget.ui:42 +#, kde-format msgid "&Remote files" msgstr "Ficheiros &remotos" #. i18n: ectx: property (text), widget (QLabel, label_5) #: dialogs/opensaveconfigadvwidget.ui:49 +#, kde-format msgid "&Prefix:" msgstr "&Prefixo:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtBackupPrefix) #: dialogs/opensaveconfigadvwidget.ui:59 +#, kde-format msgid "Enter the prefix to prepend to the backup file names." msgstr "" "Introduza o prefixo que desexa engadir aos nomes dos ficheiros de seguranza." #. i18n: ectx: property (text), widget (QLabel, label_6) #: dialogs/opensaveconfigadvwidget.ui:66 +#, kde-format msgid "&Suffix:" msgstr "&Sufixo:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtBackupSuffix) #: dialogs/opensaveconfigadvwidget.ui:76 +#, kde-format msgid "Enter the suffix to append to the backup file names." msgstr "Introduza o sufixo a engadirlle aos nomes dos ficheiros de seguranza." #. i18n: ectx: property (title), widget (QGroupBox, gpSwapFileOptions) #: dialogs/opensaveconfigadvwidget.ui:92 +#, kde-format msgid "Swap File Options" msgstr "Opcións do ficheiro de intercambio" #. i18n: ectx: property (text), widget (QLabel, lblSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:98 +#, kde-format msgid "Swap file:" msgstr "Ficheiro de intercambio:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:109 +#, kde-format msgid "Disable" msgstr "Desactivar" #. i18n: ectx: property (text), item, widget (QComboBox, cmbSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:114 +#, kde-format msgid "Enable" msgstr "Activar" #. i18n: ectx: property (text), item, widget (QComboBox, cmbSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:119 +#, kde-format msgid "Alternative Directory" -msgstr "Cartafol alternativo" +msgstr "Directorio alternativo" #. i18n: ectx: property (text), widget (QLabel, lblSwapDirectory) #: dialogs/opensaveconfigadvwidget.ui:127 -msgid "Directory" -msgstr "Cartafol" +#, fuzzy, kde-format +#| msgid "Directory" +msgid "Directory:" +msgstr "Directorio" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kurlSwapDirectory) #: dialogs/opensaveconfigadvwidget.ui:143 +#, kde-format msgid "Directory for swp files" -msgstr "Cartafol de ficheiros de intercambio" +msgstr "Directorio de ficheiros de intercambio" #. i18n: ectx: property (text), widget (QLabel, lblSwapFileSync) #: dialogs/opensaveconfigadvwidget.ui:150 +#, kde-format msgid "Sync every:" msgstr "Sincronizar cada:" #. i18n: ectx: property (suffix), widget (QSpinBox, spbSwapFileSync) #: dialogs/opensaveconfigadvwidget.ui:163 +#, kde-format msgid "s" msgstr "s" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/opensaveconfigadvwidget.ui:182 +#, kde-format msgid "" "Be aware, that disabling the swap file synchronization may lead to data loss " "in case of a system crash." @@ -1582,56 +1841,72 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbFileFormat) #: dialogs/opensaveconfigwidget.ui:12 +#, kde-format msgid "File Format" msgstr "Formato do ficheiro" #. i18n: ectx: property (text), widget (QLabel, lblEncoding) #: dialogs/opensaveconfigwidget.ui:23 +#, kde-format msgid "&Encoding:" msgstr "&Codificación:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbEncoding) #: dialogs/opensaveconfigwidget.ui:33 +#, kde-format msgid "" "This defines the standard encoding to use to open/save files, if not changed " "in the open/save dialog or by using a command line option." msgstr "" -"Isto define a codificación predefinida que se use ao abrir e gravar os " -"ficheiros, a non ser que se mude no diálogo de abrir/gravar ou mediante unha " -"opción da liña de ordes." +"Isto define a codificación predefinida que se use ao abrir e gardar os " +"ficheiros, a non ser que se cambie no diálogo de abrir ou gardar ou mediante " +"unha opción da liña de ordes." #. i18n: ectx: property (text), widget (QLabel, lblEncodingDetection) #: dialogs/opensaveconfigwidget.ui:40 +#, kde-format msgid "&Encoding Detection:" msgstr "&Detección da codificación:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbEncodingDetection) #: dialogs/opensaveconfigwidget.ui:50 +#, kde-format msgid "" "if neither the encoding chosen as standard above, nor the encoding specified " "in the open/save dialog, nor the encoding specified on command line match " "the content of the file, this detection will be run." msgstr "" "Se o contido do ficheiro non coincide coa codificación escollida como " -"predefinida aquí arriba nen coa codificación indicada no diálogo de abrir/" -"gravar nen coa codificación indicada na liña de ordes, execútase esta " +"predefinida aquí arriba nin coa codificación indicada no diálogo de abrir/" +"gardar nin coa codificación indicada na liña de ordes, execútase esta " "detección." #. i18n: ectx: property (text), widget (QLabel, lblEncodingDetection2) #: dialogs/opensaveconfigwidget.ui:57 +#, kde-format msgid "&Fallback Encoding:" msgstr "&Codificación de reserva:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbEncodingFallback) #: dialogs/opensaveconfigwidget.ui:67 +#, fuzzy, kde-format +#| msgid "" +#| "This defines the fallback encoding to try for opening files if neither " +#| "the encoding chosen as standard above, nor the encoding specified in the " +#| "open/save dialog, nor the encoding specified on command line match the " +#| "content of the file. Before this is used, an attempt will be made to " +#| "determine the encoding to use by looking for a byte order marker at start " +#| "of file: if one is found, the right unicode encoding will be chosen; " +#| "otherwise encoding detection will run, if both fail fallback encoding " +#| "will be tried." msgid "" "This defines the fallback encoding to try for opening files if neither the " "encoding chosen as standard above, nor the encoding specified in the open/" "save dialog, nor the encoding specified on command line match the content of " "the file. Before this is used, an attempt will be made to determine the " -"encoding to use by looking for a byte order marker at start of file: if one " -"is found, the right unicode encoding will be chosen; otherwise encoding " -"detection will run, if both fail fallback encoding will be tried." +"encoding to use by looking for a byte order mark at start of file: if one is " +"found, the right Unicode encoding will be chosen; otherwise encoding " +"detection will run, if both fail the fallback encoding will be tried." msgstr "" "Isto define a codificación de reserva para tentar abrir os ficheiros se o " "contido do ficheiro non coincide nin coa codificación predefinida escollida " @@ -1644,27 +1919,32 @@ #. i18n: ectx: property (text), widget (QLabel, lblEOL) #: dialogs/opensaveconfigwidget.ui:74 +#, kde-format msgid "E&nd of line:" msgstr "Final de li&ña:" #. i18n: ectx: property (text), item, widget (KComboBox, cmbEOL) #: dialogs/opensaveconfigwidget.ui:85 +#, kde-format msgid "UNIX" msgstr "UNIX" # skip-rule: PT-2010-window #. i18n: ectx: property (text), item, widget (KComboBox, cmbEOL) #: dialogs/opensaveconfigwidget.ui:90 +#, kde-format msgid "DOS/Windows" msgstr "DOS/Windows" #. i18n: ectx: property (text), item, widget (KComboBox, cmbEOL) #: dialogs/opensaveconfigwidget.ui:95 +#, kde-format msgid "Macintosh" msgstr "Macintosh" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkDetectEOL) #: dialogs/opensaveconfigwidget.ui:105 +#, kde-format msgid "" "If this option is enabled the editor will autodetect the end of line type. " "The first found end of line type will be used for the whole file." @@ -1674,15 +1954,22 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkDetectEOL) #: dialogs/opensaveconfigwidget.ui:108 +#, kde-format msgid "A&utomatic end of line detection" msgstr "Detección &automática da fin de liña" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkEnableBOM) #: dialogs/opensaveconfigwidget.ui:115 +#, fuzzy, kde-format +#| msgid "" +#| "The byte order mark is a special sequence at the beginning of unicode " +#| "encoded documents. It helps editors to open text documents with the " +#| "correct unicode encoding. The byte order mark is not visible in the " +#| "displayed document." msgid "" -"The byte order mark is a special sequence at the beginning of unicode " +"The byte order mark is a special sequence at the beginning of Unicode " "encoded documents. It helps editors to open text documents with the correct " -"unicode encoding. The byte order mark is not visible in the displayed " +"Unicode encoding. The byte order mark is not visible in the displayed " "document." msgstr "" "A marca de orde de bytes é unha secuencia especial que hai no comezo dos " @@ -1692,27 +1979,33 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkEnableBOM) #: dialogs/opensaveconfigwidget.ui:118 -msgid "Enable byte order marker" +#, fuzzy, kde-format +#| msgid "Enable byte order marker" +msgid "Enable byte order mark (BOM)" msgstr "Activar o marcador da orde de bytes" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/opensaveconfigwidget.ui:125 +#, kde-format msgid "Line Length Limit:" msgstr "Lonxitude máxima das liñas:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, lineLengthLimit) #: dialogs/opensaveconfigwidget.ui:135 +#, kde-format msgid "Unlimited" msgstr "Sen límite" #. i18n: ectx: property (title), widget (QGroupBox, gbCleanups) #: dialogs/opensaveconfigwidget.ui:151 +#, kde-format msgid "Automatic Cleanups on Save" msgstr "Limpeza automática ao gardar" #. i18n: ectx: property (whatsThis), widget (QLabel, lblRemoveTrailingSpaces) #. i18n: ectx: property (whatsThis), widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:159 dialogs/opensaveconfigwidget.ui:172 +#, kde-format msgid "" "Depending on the choice, trailing spaces are removed when saving a document, " "either in the entire document or only of modified lines." @@ -1722,26 +2015,31 @@ #. i18n: ectx: property (text), widget (QLabel, lblRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:162 +#, kde-format msgid "Re&move trailing spaces:" msgstr "Eli&minar os espazos ao final:" #. i18n: ectx: property (text), item, widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:176 +#, kde-format msgid "Never" msgstr "Nunca" #. i18n: ectx: property (text), item, widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:181 +#, kde-format msgid "On Modified Lines" msgstr "Nas liñas modificadas" #. i18n: ectx: property (text), item, widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:186 +#, kde-format msgid "In Entire Document" msgstr "En todo o documento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkNewLineAtEof) #: dialogs/opensaveconfigwidget.ui:209 +#, kde-format msgid "" "On save, a line break is appended to the document if not already present. " "The line break is visible after reloading the file." @@ -1751,11 +2049,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkNewLineAtEof) #: dialogs/opensaveconfigwidget.ui:212 +#, kde-format msgid "Append newline at end of file on save" msgstr "Engadir unha liña ao final do ficheiro ao gardar" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbWordWrap) #: dialogs/textareaappearanceconfigwidget.ui:9 view/kateview.cpp:693 +#, kde-format msgid "" "If this option is checked, the text lines will be wrapped at the view border " "on the screen." @@ -1765,16 +2065,19 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbWordWrap) #: dialogs/textareaappearanceconfigwidget.ui:12 view/kateview.cpp:690 +#, kde-format msgid "&Dynamic Word Wrap" msgstr "División &visual das liñas" #. i18n: ectx: property (text), widget (QLabel, lblDynamicWordWrapIndicators) #: dialogs/textareaappearanceconfigwidget.ui:21 +#, kde-format msgid "Dynamic &word wrap indicators (if applicable):" msgstr "Indicadores de división &visual das liñas (de ser aplicábel):" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbDynamicWordWrapIndicator) #: dialogs/textareaappearanceconfigwidget.ui:31 +#, kde-format msgid "Choose when the Dynamic Word Wrap Indicators should be displayed." msgstr "" "Escolle cando deben ser mostrados os indicadores de división visual das " @@ -1782,12 +2085,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblDynamicWordWrapIndicators_2) #: dialogs/textareaappearanceconfigwidget.ui:38 +#, kde-format msgid "Align dynamically wrapped lines to indentation depth:" msgstr "Aliñar as liñas divididas visualmente no nivel de sangrado:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbDynamicWordWrapDepth) #: dialogs/textareaappearanceconfigwidget.ui:54 -#, no-c-format +#, no-c-format, kde-format msgid "" "

    Enables the start of dynamically wrapped lines to be aligned vertically " "to the indentation level of the first line. This can help to make code and " @@ -1808,17 +2112,19 @@ #. i18n: ectx: property (suffix), widget (QSpinBox, sbDynamicWordWrapDepth) #: dialogs/textareaappearanceconfigwidget.ui:60 -#, no-c-format +#, no-c-format, kde-format msgid "% of View Width" msgstr "% do ancho da vista" #. i18n: ectx: property (title), widget (QGroupBox, gbWhitespaceHighlighting) #: dialogs/textareaappearanceconfigwidget.ui:76 +#, kde-format msgid "Whitespace Highlighting" msgstr "&Realzado do espazo en branco" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowTabs) #: dialogs/textareaappearanceconfigwidget.ui:82 +#, kde-format msgid "" "The editor will display a symbol to indicate the presence of a tab in the " "text." @@ -1827,16 +2133,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowTabs) #: dialogs/textareaappearanceconfigwidget.ui:85 +#, kde-format msgid "&Highlight tabulators" msgstr "Real&zar as tabulacións" #. i18n: ectx: property (text), widget (QCheckBox, chkShowSpaces) #: dialogs/textareaappearanceconfigwidget.ui:92 +#, kde-format msgid "Highlight trailing &spaces" msgstr "Realzar os e&spazos en branco ao final da liña" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowIndentationLines) #: dialogs/textareaappearanceconfigwidget.ui:108 +#, kde-format msgid "" "If this is enabled, the editor will display vertical lines to help identify " "indent lines." @@ -1846,11 +2155,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowIndentationLines) #: dialogs/textareaappearanceconfigwidget.ui:111 +#, kde-format msgid "Show i&ndentation lines" msgstr "Mostrar liñas de &sangrado" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowWholeBracketExpression) #: dialogs/textareaappearanceconfigwidget.ui:118 +#, kde-format msgid "" "If this is enabled, the range between the selected matching brackets will be " "highlighted." @@ -1860,16 +2171,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowWholeBracketExpression) #: dialogs/textareaappearanceconfigwidget.ui:121 +#, kde-format msgid "Highlight range between selected brackets" msgstr "Realzar o contido entre os corchetes escollidos" #. i18n: ectx: property (toolTip), widget (QCheckBox, chkAnimateBracketMatching) #: dialogs/textareaappearanceconfigwidget.ui:128 +#, kde-format msgid "Flash matching brackets" msgstr "Destellar as parella dos parénteses" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkAnimateBracketMatching) #: dialogs/textareaappearanceconfigwidget.ui:131 +#, kde-format msgid "" "If this is enabled, matching brackets are animated for better visibility." msgstr "" @@ -1878,11 +2192,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkAnimateBracketMatching) #: dialogs/textareaappearanceconfigwidget.ui:134 +#, kde-format msgid "Animate bracket matching" msgstr "Animar as parellas dos parénteses" #. i18n: ectx: property (toolTip), widget (QCheckBox, chkFoldFirstLine) #: dialogs/textareaappearanceconfigwidget.ui:144 +#, kde-format msgid "" "When this setting is enabled, the editor view automatically folds\n" "comment blocks that start on the first line of the document. This is\n" @@ -1896,10 +2212,12 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkFoldFirstLine) #: dialogs/textareaappearanceconfigwidget.ui:147 +#, kde-format msgid "Fold First Line" msgstr "Pregar a primeira liña." #: document/katebuffer.cpp:179 +#, kde-format msgctxt "short translation, user created new file" msgid "New file" msgstr "Novo ficheiro" @@ -1919,15 +2237,18 @@ ">Comprobe que ten permiso de lectura deste ficheiro." #: document/katedocument.cpp:2153 +#, kde-format msgctxt "translators: you can also translate 'Try Again' with 'Reload'" msgid "Try Again" -msgstr "Tentalo de novo" +msgstr "Intentalo de novo" #: document/katedocument.cpp:2156 document/katedocument.cpp:5928 +#, kde-format msgid "&Close" msgstr "&Pechar" #: document/katedocument.cpp:2157 document/katedocument.cpp:5929 +#, kde-format msgid "Close message" msgstr "Pechar a mensaxe" @@ -1985,10 +2306,12 @@ "o contido." #: document/katedocument.cpp:2311 +#, kde-format msgid "Temporarily raise limit and reload file" msgstr "Aumentar temporalmente o límite e cargar o ficheiro de novo" #: document/katedocument.cpp:2314 +#, kde-format msgid "Close" msgstr "Pechar" @@ -2007,42 +2330,51 @@ "o contido." #: document/katedocument.cpp:2343 +#, kde-format msgid "" "Do you really want to save this unmodified file? You could overwrite changed " "data in the file on disk." msgstr "" -"Desexa realmente gardar este ficheiro non modificado? Podería sobrescribir " -"datos modificados no ficheiro do disco." +"Está seguro de que quere gardar este ficheiro non modificado? Podería " +"sobrescribir datos modificados no ficheiro do disco." #: document/katedocument.cpp:2343 +#, kde-format msgid "Trying to Save Unmodified File" msgstr "Intento de gardar un ficheiro non modificado" #: document/katedocument.cpp:2343 document/katedocument.cpp:2348 #: document/katedocument.cpp:2360 +#, kde-format msgid "Save Nevertheless" msgstr "Gardar aínda así" #: document/katedocument.cpp:2348 +#, kde-format msgid "" "Do you really want to save this file? Both your open file and the file on " "disk were changed. There could be some data lost." msgstr "" -"Desexa realmente gardar este ficheiro? Tanto o ficheiro aberto como o do " -"disco foron modificados. Podería producirse unha perda de datos." +"Está seguro de que quere gardar este ficheiro? Tanto o ficheiro aberto como " +"o do disco foron modificados. Podería producirse unha perda de datos." #: document/katedocument.cpp:2348 document/katedocument.cpp:2360 #: document/katedocument.cpp:2644 +#, kde-format msgid "Possible Data Loss" msgstr "Posíbel perda de datos" #: document/katedocument.cpp:2360 +#, fuzzy, kde-format +#| msgid "" +#| "The selected encoding cannot encode every unicode character in this " +#| "document. Do you really want to save it? There could be some data lost." msgid "" -"The selected encoding cannot encode every unicode character in this " +"The selected encoding cannot encode every Unicode character in this " "document. Do you really want to save it? There could be some data lost." msgstr "" "A codificación escollida non pode codificar todos o caracteres unicode deste " -"documento. Desexa realmente gardalo? Podería haber perda de datos." +"documento. Está seguro de que quere gardalo? Podería haber perda de datos." #: document/katedocument.cpp:2403 document/katedocument.cpp:4321 #, kde-format @@ -2068,58 +2400,72 @@ "Non foi posíbel crear unha copia de seguranza do ficheiro %1 antes de " "gardalo. Se acontece un erro ao gardar, poderá perder os datos deste " "ficheiro. O motivo pode ser que o medio onde estea a escribir estea completo " -"ou que só poida ler no cartafol no que estea o ficheiro." +"ou que só poida ler no directorio no que estea o ficheiro." #: document/katedocument.cpp:2532 +#, kde-format msgid "Failed to create backup copy." msgstr "Non foi posíbel crear a copia de seguranza." #: document/katedocument.cpp:2533 +#, kde-format msgid "Try to Save Nevertheless" -msgstr "Tentar gardar aínda así" +msgstr "Intentar gardar aínda así" #: document/katedocument.cpp:2643 +#, kde-format msgid "Do you really want to continue to close this file? Data loss may occur." -msgstr "Desexa realmente continuar a pechar este ficheiro? Pode perder datos." +msgstr "" +"Está seguro de que quere continuar a pechar este ficheiro? Pode perder datos." #: document/katedocument.cpp:2644 +#, kde-format msgid "Close Nevertheless" msgstr "Pechar aínda así" #: document/katedocument.cpp:4091 +#, kde-format msgid "Untitled" msgstr "Sen título" #: document/katedocument.cpp:4132 document/katedocument.cpp:4286 #: document/katedocument.cpp:4297 document/katedocument.cpp:4991 +#, kde-format msgid "Save File" msgstr "Gardar o ficheiro" #: document/katedocument.cpp:4136 +#, kde-format msgid "Save failed" msgstr "Fallou o gardado" #: document/katedocument.cpp:4196 +#, kde-format msgid "What do you want to do?" -msgstr "Que desexa facer?" +msgstr "Que quere facer?" #: document/katedocument.cpp:4197 +#, kde-format msgid "File Was Changed on Disk" msgstr "O ficheiro foi modificado no disco" #: document/katedocument.cpp:4198 +#, kde-format msgid "&Reload File" msgstr "Ca&rgar de novo o ficheiro" #: document/katedocument.cpp:4199 +#, kde-format msgid "&Ignore Changes" -msgstr "&Ignorar as mudanzas" +msgstr "&Ignorar os cambios" #: document/katedocument.cpp:4309 +#, kde-format msgid "Save Copy of File" msgstr "Gardar unha copia do ficheiro" #: document/katedocument.cpp:4535 +#, kde-format msgid "" "Using deprecated modeline 'remove-trailing-space'. Please replace with " "'remove-trailing-spaces modified;', see http://docs.kde.org/stable/en/" @@ -2131,6 +2477,7 @@ "spaces" #: document/katedocument.cpp:4540 +#, kde-format msgid "" "Using deprecated modeline 'replace-trailing-space-save'. Please replace with " "'remove-trailing-spaces all;', see http://docs.kde.org/stable/en/" @@ -2160,9 +2507,11 @@ #, kde-format msgid "" "A file named \"%1\" already exists. Are you sure you want to overwrite it?" -msgstr "Xa existe un ficheiro chamado «%1». Desexa realmente substituílo?" +msgstr "" +"Xa existe un ficheiro chamado «%1». Está seguro de que quere substituílo?" #: document/katedocument.cpp:5020 +#, kde-format msgid "Overwrite File?" msgstr "Desexa substituír este ficheiro?" @@ -2173,9 +2522,10 @@ "Do you want to save your changes or discard them?" msgstr "" "O documento «%1» foi modificado.\n" -"Desexa gardar as súas modificacións ou esquecelas?" +"Quere gardar as súas modificacións ou descartalas?" #: document/katedocument.cpp:5234 +#, kde-format msgid "Close Document" msgstr "Pechar o documento" @@ -2185,67 +2535,83 @@ msgstr "O ficheiro %2 está aínda a ser cargado." #: document/katedocument.cpp:5374 +#, kde-format msgid "&Abort Loading" msgstr "&Interromper a carga" #: inputmode/katenormalinputmode.cpp:92 +#, kde-format msgid "OVERWRITE" msgstr "Sobrescribir" #: inputmode/katenormalinputmode.cpp:92 +#, kde-format msgid "INSERT" msgstr "Inserir" #: inputmode/katenormalinputmodefactory.cpp:52 +#, kde-format msgid "Normal Mode" msgstr "Modo normal" #: inputmode/kateviinputmode.cpp:40 +#, kde-format msgid "VI: INSERT MODE" msgstr "VI: MODO INSERCIÓN" #: inputmode/kateviinputmode.cpp:43 +#, kde-format msgid "VI: NORMAL MODE" msgstr "VI: MODO NORMAL" #: inputmode/kateviinputmode.cpp:46 +#, kde-format msgid "VI: VISUAL" msgstr "VI: VISUAL" #: inputmode/kateviinputmode.cpp:49 +#, kde-format msgid "VI: VISUAL BLOCK" msgstr "VI: BLOQUE VISUAL" #: inputmode/kateviinputmode.cpp:52 +#, kde-format msgid "VI: VISUAL LINE" msgstr "VI: LIÑA VISUAL" #: inputmode/kateviinputmode.cpp:55 +#, kde-format msgid "VI: REPLACE" msgstr "VI: SUBSTITUÍR" #: inputmode/kateviinputmode.cpp:160 +#, kde-format msgid "vi-mode" msgstr "Modo Vi" #: inputmode/kateviinputmode.cpp:173 +#, kde-format msgid "recording" msgstr "estase a gravar" #: inputmode/kateviinputmodefactory.cpp:55 utils/kateglobal.cpp:121 #: vimode/config/configtab.cpp:249 +#, kde-format msgid "Vi Input Mode" msgstr "Modo de entrada de Vi" #: mode/katemodeconfigpage.cpp:60 +#, kde-format msgid "" msgstr "" #: mode/katemodeconfigpage.cpp:71 +#, kde-format msgid "Use Default" msgstr "Empregar o predefinido" #: mode/katemodeconfigpage.cpp:184 +#, kde-format msgid "New Filetype" msgstr "Novo tipo de ficheiro" @@ -2255,6 +2621,7 @@ msgstr "Propiedades de %1" #: mode/katemodeconfigpage.cpp:288 +#, kde-format msgid "" "Select the MimeTypes you want for this file type.\n" "Please note that this will automatically edit the associated file extensions " @@ -2265,26 +2632,32 @@ "asociadas." #: mode/katemodeconfigpage.cpp:290 +#, kde-format msgid "Select Mime Types" msgstr "Escoller os tipos mime" #: mode/katemodeconfigpage.cpp:307 +#, kde-format msgid "Modes && Filetypes" msgstr "Modos e tipos de ficheiro" #: printing/printconfigwidgets.cpp:49 +#, kde-format msgid "Te&xt Settings" msgstr "Configuración do te&xto" #: printing/printconfigwidgets.cpp:53 +#, kde-format msgid "Print line &numbers" msgstr "Imprimir os números de &liña" #: printing/printconfigwidgets.cpp:56 +#, kde-format msgid "Print &legend" msgstr "Imprimir a &lenda" #: printing/printconfigwidgets.cpp:65 +#, kde-format msgid "" "

    If enabled, line numbers will be printed on the left side of the page(s)." "

    " @@ -2293,6 +2666,7 @@ "páxina(s).

    " #: printing/printconfigwidgets.cpp:67 +#, kde-format msgid "" "

    Print a box displaying typographical conventions for the document type, " "as defined by the syntax highlighting being used.

    " @@ -2301,62 +2675,77 @@ "defina o realce de sintaxe en uso.

    " #: printing/printconfigwidgets.cpp:119 +#, kde-format msgid "Hea&der && Footer" msgstr "Cabezallo e ro&dapé" #: printing/printconfigwidgets.cpp:126 +#, kde-format msgid "Pr&int header" msgstr "Imprimir un &cabezallo" #: printing/printconfigwidgets.cpp:128 +#, kde-format msgid "Pri&nt footer" msgstr "Imprimir un &rodapé" #: printing/printconfigwidgets.cpp:134 +#, kde-format msgid "Header/footer font:" msgstr "Tipo de letra do cabezallo/rodapé:" #: printing/printconfigwidgets.cpp:139 +#, kde-format msgid "Choo&se Font..." -msgstr "E&scoller a fonte tipográfica..." +msgstr "E&scoller a fonte tipográfica…" #: printing/printconfigwidgets.cpp:145 +#, kde-format msgid "Header Properties" msgstr "Propiedades do cabezallo" #: printing/printconfigwidgets.cpp:149 +#, kde-format msgid "&Format:" msgstr "&Formato:" #: printing/printconfigwidgets.cpp:171 printing/printconfigwidgets.cpp:217 +#, kde-format msgid "Colors:" msgstr "Cores:" #: printing/printconfigwidgets.cpp:178 printing/printconfigwidgets.cpp:224 +#, kde-format msgid "Foreground:" msgstr "Primeiro plano:" #: printing/printconfigwidgets.cpp:183 +#, kde-format msgid "Bac&kground" msgstr "Fon&do" #: printing/printconfigwidgets.cpp:189 +#, kde-format msgid "Footer Properties" msgstr "Propiedades do rodapé" #: printing/printconfigwidgets.cpp:194 +#, kde-format msgid "For&mat:" msgstr "For&mato:" #: printing/printconfigwidgets.cpp:229 +#, kde-format msgid "&Background" msgstr "&Fondo" #: printing/printconfigwidgets.cpp:258 +#, kde-format msgid "

    Format of the page header. The following tags are supported:

    " msgstr "

    Formato do cabezallo. Permítense as etiquetas seguintes:

    " #: printing/printconfigwidgets.cpp:260 +#, kde-format msgid "" "
    • %u: current user name
    • %d: complete date/" "time in short format
    • %D: complete date/time in long format

    " #: printing/printconfigwidgets.cpp:274 +#, kde-format msgid "

    Format of the page footer. The following tags are supported:

    " msgstr "

    Formato do rodapé. Permítense as etiquetas seguintes:

    " @@ -2383,86 +2773,107 @@ msgstr "%1, %2pt" #: printing/printconfigwidgets.cpp:372 +#, kde-format msgid "Add Placeholder..." -msgstr "Inserir unha marca de substitución..." +msgstr "Inserir unha marca de substitución…" #: printing/printconfigwidgets.cpp:374 +#, kde-format msgid "Current User Name" msgstr "Nome do usuario actual" #: printing/printconfigwidgets.cpp:376 +#, kde-format msgid "Complete Date/Time (short format)" msgstr "Data/Hora completas (formato curto)" #: printing/printconfigwidgets.cpp:378 +#, kde-format msgid "Complete Date/Time (long format)" msgstr "Data/Hora completa (formato longo)" #: printing/printconfigwidgets.cpp:380 +#, kde-format msgid "Current Time" msgstr "Hora actual" #: printing/printconfigwidgets.cpp:382 +#, kde-format msgid "Current Date (short format)" msgstr "Data actual (formato curto)" #: printing/printconfigwidgets.cpp:384 +#, kde-format msgid "Current Date (long format)" msgstr "Data actual (formato longo)" #: printing/printconfigwidgets.cpp:386 +#, kde-format msgid "File Name" msgstr "Nome do ficheiro" #: printing/printconfigwidgets.cpp:388 +#, kde-format msgid "Full document URL" msgstr "URL completo do documento" #: printing/printconfigwidgets.cpp:390 +#, kde-format msgid "Page Number" msgstr "Número de páxina" #: printing/printconfigwidgets.cpp:392 +#, kde-format msgid "Total Amount of Pages" msgstr "Número total de páxinas" #: printing/printconfigwidgets.cpp:501 +#, kde-format msgid "L&ayout" msgstr "D&isposición" #: printing/printconfigwidgets.cpp:507 schema/kateschemaconfig.cpp:910 +#, kde-format msgid "&Schema:" msgstr "&Esquema:" #: printing/printconfigwidgets.cpp:514 +#, kde-format msgid "Draw bac&kground color" msgstr "Debuxar a cor de &fondo" #: printing/printconfigwidgets.cpp:517 +#, kde-format msgid "Draw &boxes" msgstr "Debuxar &cadros" #: printing/printconfigwidgets.cpp:521 +#, kde-format msgid "Box Properties" msgstr "Propiedades do cadro" #: printing/printconfigwidgets.cpp:525 +#, kde-format msgid "W&idth:" msgstr "A&ncho:" #: printing/printconfigwidgets.cpp:533 +#, kde-format msgid "&Margin:" msgstr "&Marxe:" #: printing/printconfigwidgets.cpp:541 +#, kde-format msgid "Co&lor:" msgstr "Co&r:" #: printing/printconfigwidgets.cpp:563 +#, kde-format msgid "Select the color scheme to use for the print." msgstr "Escoller o esquema de cores a usar para imprimir." #: printing/printconfigwidgets.cpp:565 +#, kde-format msgid "" "

    If enabled, the background color of the editor will be used.

    This " "may be useful if your color scheme is designed for a dark background.

    " @@ -2471,6 +2882,7 @@ "ser útil se o seu esquema de cores é para fondo escuro.

    " #: printing/printconfigwidgets.cpp:568 +#, kde-format msgid "" "

    If enabled, a box as defined in the properties below will be drawn around " "the contents of each page. The Header and Footer will be separated from the " @@ -2481,18 +2893,22 @@ "do contido mediante unha liña.

    " #: printing/printconfigwidgets.cpp:572 +#, kde-format msgid "The width of the box outline" msgstr "O ancho da moldura do cadro" #: printing/printconfigwidgets.cpp:574 +#, kde-format msgid "The margin inside boxes, in pixels" msgstr "As marxes internas dos cadros, en píxeles" #: printing/printconfigwidgets.cpp:576 +#, kde-format msgid "The line color to use for boxes" msgstr "A cor da moldura do cadro" #: printing/printpainter.cpp:284 +#, kde-format msgid "(Selection of) " msgstr "(Selección de) " @@ -2502,16 +2918,19 @@ msgstr "Convenios tipográficos para %1" #: printing/printpainter.cpp:571 +#, kde-format msgid "text" msgstr "texto" #. i18n: ectx: property (text), widget (QLabel, label) #: schema/howtoimportschema.ui:17 +#, kde-format msgid "How do you want to import the schema?" -msgstr "Como desexa importar o esquema?" +msgstr "Como quere importar o esquema?" #. i18n: ectx: property (text), widget (QRadioButton, radioReplaceCurrent) #: schema/howtoimportschema.ui:24 +#, kde-format msgid "Replace current schema?" msgstr "Desexa substituír o esquema actual?" @@ -2523,34 +2942,42 @@ #. i18n: ectx: property (text), widget (QRadioButton, radioAsNew) #: schema/howtoimportschema.ui:43 +#, kde-format msgid "Import as new schema:" msgstr "Importar como novo esquema:" #: schema/katecolortreewidget.cpp:51 schema/katecolortreewidget.cpp:78 +#, kde-format msgid "Use default color from the KDE color scheme" msgstr "Usar a cor predeterminada do esquema de cores de KDE" #: schema/kateschemaconfig.cpp:59 +#, kde-format msgid "Use KDE Color Scheme" msgstr "Usar o esquema de cores de KDE" #: schema/kateschemaconfig.cpp:86 +#, kde-format msgid "Editor Background Colors" msgstr "Cores de fondo do editor" #: schema/kateschemaconfig.cpp:88 +#, kde-format msgid "Text Area" msgstr "Área de texto" #: schema/kateschemaconfig.cpp:90 +#, kde-format msgid "

    Sets the background color of the editing area.

    " msgstr "

    Axusta a cor de fondo da área de edición.

    " #: schema/kateschemaconfig.cpp:94 +#, kde-format msgid "Selected Text" msgstr "Texto escollido" #: schema/kateschemaconfig.cpp:96 +#, kde-format msgid "" "

    Sets the background color of the selection.

    To set the text color " "for selected text, use the "Configure Highlighting" dialog." @@ -2560,10 +2987,12 @@ "escollido, use o diálogo «Configuración do realzado».

    " #: schema/kateschemaconfig.cpp:100 +#, kde-format msgid "Current Line" msgstr "Liña actual" #: schema/kateschemaconfig.cpp:102 +#, kde-format msgid "" "

    Sets the background color of the currently active line, which means the " "line where your cursor is positioned.

    " @@ -2572,48 +3001,59 @@ "p>" #: schema/kateschemaconfig.cpp:106 +#, kde-format msgid "Search Highlight" msgstr "Realzado da busca" #: schema/kateschemaconfig.cpp:108 +#, kde-format msgid "

    Sets the background color of search results.

    " msgstr "

    Axusta a cor de fondo dos resultados da busca.

    " #: schema/kateschemaconfig.cpp:112 +#, kde-format msgid "Replace Highlight" msgstr "Realzado do substituído" #: schema/kateschemaconfig.cpp:114 +#, kde-format msgid "

    Sets the background color of replaced text.

    " msgstr "

    Axusta a cor de fondo do texto substituído.

    " #: schema/kateschemaconfig.cpp:121 +#, kde-format msgid "Icon Border" msgstr "Bordo das iconas" #: schema/kateschemaconfig.cpp:123 +#, kde-format msgid "Background Area" msgstr "Área de fondo" #: schema/kateschemaconfig.cpp:125 +#, kde-format msgid "

    Sets the background color of the icon border.

    " msgstr "

    Axusta a cor de fondo do bordo da icona.

    " #: schema/kateschemaconfig.cpp:129 +#, kde-format msgid "Line Numbers" msgstr "Números de liña" # skip-rule: expression_when/if enabled #: schema/kateschemaconfig.cpp:131 +#, kde-format msgid "

    This color will be used to draw the line numbers (if enabled).

    " msgstr "

    Esta cor usarase para os números de liña (se está activada).

    " #: schema/kateschemaconfig.cpp:135 +#, kde-format msgid "Current Line Number" msgstr "Número da liña actual" # skip-rule: expression_when/if enabled #: schema/kateschemaconfig.cpp:137 +#, kde-format msgid "" "

    This color will be used to draw the number of the current line (if " "enabled).

    " @@ -2621,11 +3061,13 @@ "

    Esta cor usarase para o número da liña actual (se está activada).

    " #: schema/kateschemaconfig.cpp:141 +#, kde-format msgid "Separator" msgstr "Separador" # skip-rule: expression_when/if enabled #: schema/kateschemaconfig.cpp:143 +#, kde-format msgid "" "

    This color will be used to draw the line between line numbers and the " "icon borders, if both are enabled.

    " @@ -2634,10 +3076,12 @@ "iconas, se ambas as dúas están activadas.

    " #: schema/kateschemaconfig.cpp:147 +#, kde-format msgid "Word Wrap Marker" msgstr "Marcas de división de liña" #: schema/kateschemaconfig.cpp:149 +#, kde-format msgid "" "

    Sets the color of Word Wrap-related markers:

    Static Word Wrap
    A vertical line which shows the column where text is going to be " @@ -2650,64 +3094,79 @@ "liñas divididas
    " #: schema/kateschemaconfig.cpp:153 +#, kde-format msgid "Code Folding" msgstr "Pregado do código" #: schema/kateschemaconfig.cpp:155 +#, kde-format msgid "

    Sets the color of the code folding bar.

    " msgstr "

    Axusta a cor da barra de pregado de código.

    " #: schema/kateschemaconfig.cpp:159 +#, kde-format msgid "Modified Lines" msgstr "Liñas modificadas" #: schema/kateschemaconfig.cpp:161 +#, kde-format msgid "" "

    Sets the color of the line modification marker for modified lines.

    " msgstr "

    Axusta a cor do marcador de modificación das liñas.

    " #: schema/kateschemaconfig.cpp:165 +#, kde-format msgid "Saved Lines" msgstr "Liñas gardadas" #: schema/kateschemaconfig.cpp:167 +#, kde-format msgid "

    Sets the color of the line modification marker for saved lines.

    " msgstr "

    Axusta a cor do marcador de modificación das liñas gardadas.

    " #: schema/kateschemaconfig.cpp:174 +#, kde-format msgid "Text Decorations" msgstr "Decoracións do texto" #: schema/kateschemaconfig.cpp:176 +#, kde-format msgid "Spelling Mistake Line" msgstr "Liña con erro ortográfico" #: schema/kateschemaconfig.cpp:178 +#, kde-format msgid "" "

    Sets the color of the line that is used to indicate spelling mistakes.

    " msgstr "

    Axusta a cor da liña empregada para indicar erros ortográficos.

    " #: schema/kateschemaconfig.cpp:182 +#, kde-format msgid "Tab and Space Markers" msgstr "Marcas de tabulación e espazos" #: schema/kateschemaconfig.cpp:184 +#, kde-format msgid "

    Sets the color of the tabulator marks.

    " msgstr "

    Axusta a cor das marcar de tabulación.

    " #: schema/kateschemaconfig.cpp:188 +#, kde-format msgid "Indentation Line" msgstr "Liña de sangrado" #: schema/kateschemaconfig.cpp:190 +#, kde-format msgid "

    Sets the color of the vertical indentation lines.

    " msgstr "

    Axusta a cor das liñas de sangrado vertical.

    " #: schema/kateschemaconfig.cpp:194 +#, kde-format msgid "Bracket Highlight" msgstr "Realzado de parénteses" #: schema/kateschemaconfig.cpp:196 +#, kde-format msgid "" "

    Sets the bracket matching color. This means, if you place the cursor e.g. " "at a (, the matching ) will be highlighted with this color.

    " @@ -2717,38 +3176,47 @@ "cor.

    " #: schema/kateschemaconfig.cpp:203 +#, kde-format msgid "Marker Colors" msgstr "Cores dos marcadores" -#: schema/kateschemaconfig.cpp:206 view/kateviewhelpers.cpp:1337 +#: schema/kateschemaconfig.cpp:206 view/kateviewhelpers.cpp:1342 +#, kde-format msgid "Bookmark" msgstr "Marcador" #: schema/kateschemaconfig.cpp:207 +#, kde-format msgid "Active Breakpoint" msgstr "Punto de interrupción activo" #: schema/kateschemaconfig.cpp:208 +#, kde-format msgid "Reached Breakpoint" msgstr "Punto de interrupción acadado" #: schema/kateschemaconfig.cpp:209 +#, kde-format msgid "Disabled Breakpoint" msgstr "Punto de interrupción desactivado" #: schema/kateschemaconfig.cpp:210 +#, kde-format msgid "Execution" msgstr "Execución" #: schema/kateschemaconfig.cpp:211 +#, kde-format msgid "Warning" msgstr "Aviso" #: schema/kateschemaconfig.cpp:212 +#, kde-format msgid "Error" msgstr "Erro" #: schema/kateschemaconfig.cpp:215 +#, kde-format msgid "" "

    Sets the background color of mark type.

    Note: The marker " "color is displayed lightly because of transparency.

    " @@ -2757,26 +3225,32 @@ "móstrase suavizada debido á transparencia.

    " #: schema/kateschemaconfig.cpp:226 +#, kde-format msgid "Text Templates & Snippets" msgstr "Modelos e fragmentos de texto" #: schema/kateschemaconfig.cpp:230 +#, kde-format msgid "Background" msgstr "Fondo" #: schema/kateschemaconfig.cpp:235 +#, kde-format msgid "Editable Placeholder" msgstr "Marcador de substitución editábel" #: schema/kateschemaconfig.cpp:240 +#, kde-format msgid "Focused Editable Placeholder" msgstr "Marca editábel de substitución focalizado" #: schema/kateschemaconfig.cpp:245 +#, kde-format msgid "Not Editable Placeholder" msgstr "Marca non editábel de substitución" #: schema/kateschemaconfig.cpp:470 +#, kde-format msgid "" "

    This list displays the default styles for the current schema and offers " "the means to edit them. The style name reflects the current style settings." #: schema/kateschemaconfig.cpp:505 +#, kde-format msgctxt "@item:intable" msgid "Normal Text & Source Code" msgstr "Texto normal e código fonte" #: schema/kateschemaconfig.cpp:514 +#, kde-format msgctxt "@item:intable" msgid "Numbers, Types & Constants" msgstr "Números, tipos e constantes" #: schema/kateschemaconfig.cpp:523 +#, kde-format msgctxt "@item:intable" msgid "Strings & Characters" msgstr "Cadeas e caracteres" #: schema/kateschemaconfig.cpp:532 +#, kde-format msgctxt "@item:intable" msgid "Comments & Documentation" msgstr "Comentarios e documentación" #: schema/kateschemaconfig.cpp:541 +#, kde-format msgctxt "@item:intable" msgid "Miscellaneous" msgstr "Diversos" #: schema/kateschemaconfig.cpp:614 +#, kde-format msgid "H&ighlight:" msgstr "Re&alzado:" #: schema/kateschemaconfig.cpp:624 schema/kateschemaconfig.cpp:927 +#, kde-format msgid "Export..." -msgstr "Exportar..." +msgstr "Exportar…" #: schema/kateschemaconfig.cpp:628 schema/kateschemaconfig.cpp:931 +#, kde-format msgid "Import..." -msgstr "Importar..." +msgstr "Importar…" #: schema/kateschemaconfig.cpp:661 +#, kde-format msgid "" "

    This list displays the contexts of the current syntax highlight mode and " "offers the means to edit them. The context name reflects the current style " @@ -2846,23 +3329,28 @@ "da selección no menú contextual cando sexa apropiado.

    " #: schema/kateschemaconfig.cpp:682 +#, kde-format msgid "Loading all highlightings for schema" msgstr "Estanse a cargar todos os realces do esquema" #: schema/kateschemaconfig.cpp:793 +#, kde-format msgid "Importing colors for single highlighting" msgstr "Estanse a importar as cores do realce" #: schema/kateschemaconfig.cpp:795 schema/kateschemaconfig.cpp:865 #: schema/kateschemaconfig.cpp:984 schema/kateschemaconfig.cpp:1115 +#, kde-format msgid "Kate color schema" msgstr "Esquema de cores de Kate" #: schema/kateschemaconfig.cpp:809 +#, kde-format msgid "File is not a single highlighting color file" msgstr "Este non é un ficheiro de cores dun único realzado" #: schema/kateschemaconfig.cpp:810 schema/kateschemaconfig.cpp:1126 +#, kde-format msgid "Fileformat error" msgstr "Erro de formato do ficheiro" @@ -2872,6 +3360,7 @@ msgstr "O ficheiro escollido contén cores dun realce non existente: %1" #: schema/kateschemaconfig.cpp:820 +#, kde-format msgid "Import failure" msgstr "Fallo na importación" @@ -2881,6 +3370,7 @@ msgstr "Importáronse as cores do realce: %1" #: schema/kateschemaconfig.cpp:844 +#, kde-format msgid "Import has finished" msgstr "Rematou a importación" @@ -2890,22 +3380,27 @@ msgstr "Estanse a exportar as cores do realce: %1" #: schema/kateschemaconfig.cpp:919 +#, kde-format msgid "&New..." -msgstr "&Novo..." +msgstr "&Novo…" #: schema/kateschemaconfig.cpp:942 +#, kde-format msgid "Colors" msgstr "Cores" #: schema/kateschemaconfig.cpp:946 +#, kde-format msgid "Font" msgstr "Tipo de letra" #: schema/kateschemaconfig.cpp:950 +#, kde-format msgid "Default Text Styles" msgstr "Estilos predeterminados de texto" #: schema/kateschemaconfig.cpp:954 +#, kde-format msgid "Highlighting Text Styles" msgstr "Estilos de realzado de texto" @@ -2920,34 +3415,42 @@ msgstr "Estase a exportar o esquema de cores: %1" #: schema/kateschemaconfig.cpp:1014 +#, kde-format msgid "Exporting schema" msgstr "Exportación do esquema" #: schema/kateschemaconfig.cpp:1113 +#, kde-format msgid "Importing Color Schema" msgstr "Estase a importar o esquema de cores" #: schema/kateschemaconfig.cpp:1125 +#, kde-format msgid "The file does not contain a full color schema." msgstr "O ficheiro non contén un esquema completo de cores." #: schema/kateschemaconfig.cpp:1132 +#, kde-format msgid "Name unspecified" msgstr "Nome non especificado" #: schema/kateschemaconfig.cpp:1181 +#, kde-format msgid "Importing schema" msgstr "Estase a importar un esquema" #: schema/kateschemaconfig.cpp:1323 +#, kde-format msgid "Name for New Schema" msgstr "Nome do novo esquema" #: schema/kateschemaconfig.cpp:1323 +#, kde-format msgid "Name:" msgstr "Nome:" #: schema/kateschemaconfig.cpp:1323 schema/kateschemaconfig.cpp:1331 +#, kde-format msgid "New Schema" msgstr "Novo esquema" @@ -2959,100 +3462,123 @@ msgstr "

    Xa existe o esquema %1.

    Escolla outro nome.

    " #: schema/kateschemaconfig.cpp:1366 +#, kde-format msgid "Fonts & Colors" msgstr "Tipos de letra e cores" #: schema/kateschemaconfig.cpp:1371 +#, kde-format msgid "Font & Color Schemas" msgstr "Esquemas de tipos de letra e cores" #: schema/katestyletreewidget.cpp:138 +#, kde-format msgctxt "@title:column Meaning of text in editor" msgid "Context" msgstr "Contexto" #: schema/katestyletreewidget.cpp:138 +#, kde-format msgctxt "@title:column Text style" msgid "Normal" msgstr "Normal" #: schema/katestyletreewidget.cpp:138 +#, kde-format msgctxt "@title:column Text style" msgid "Selected" msgstr "Escollido" #: schema/katestyletreewidget.cpp:138 +#, kde-format msgctxt "@title:column Text style" msgid "Background" msgstr "Fondo" #: schema/katestyletreewidget.cpp:138 +#, kde-format msgctxt "@title:column Text style" msgid "Background Selected" msgstr "Fondo da selección" #: schema/katestyletreewidget.cpp:140 +#, kde-format msgid "Use Default Style" msgstr "Usar o estilo predeterminado" #: schema/katestyletreewidget.cpp:235 +#, kde-format msgid "&Bold" msgstr "&Negriña" #: schema/katestyletreewidget.cpp:240 +#, kde-format msgid "&Italic" msgstr "&Itálica" #: schema/katestyletreewidget.cpp:245 +#, kde-format msgid "&Underline" msgstr "&Subliñado" #: schema/katestyletreewidget.cpp:250 +#, kde-format msgid "S&trikeout" msgstr "&Riscado" #: schema/katestyletreewidget.cpp:257 +#, kde-format msgid "Normal &Color..." -msgstr "&Cor normal..." +msgstr "&Cor normal…" #: schema/katestyletreewidget.cpp:260 +#, kde-format msgid "&Selected Color..." -msgstr "Cor da &selección..." +msgstr "Cor da &selección…" #: schema/katestyletreewidget.cpp:263 +#, kde-format msgid "&Background Color..." -msgstr "Cor do &fondo..." +msgstr "Cor do &fondo…" #: schema/katestyletreewidget.cpp:266 +#, kde-format msgid "S&elected Background Color..." -msgstr "Cor do fondo da se&lección..." +msgstr "Cor do fondo da se&lección…" #: schema/katestyletreewidget.cpp:272 +#, kde-format msgid "Unset Normal Color" msgstr "Anular a cor normal" #: schema/katestyletreewidget.cpp:275 +#, kde-format msgid "Unset Selected Color" msgstr "Anular a cor seleccionada" #: schema/katestyletreewidget.cpp:281 +#, kde-format msgid "Unset Background Color" msgstr "Anular a cor de fondo" #: schema/katestyletreewidget.cpp:286 +#, kde-format msgid "Unset Selected Background Color" msgstr "Anular a cor de fondo da selección" #: schema/katestyletreewidget.cpp:292 +#, kde-format msgid "Use &Default Style" msgstr "Usar o estilo &predeterminado" #: schema/katestyletreewidget.cpp:403 +#, kde-format msgctxt "No text or background color set" msgid "None set" msgstr "Nada escollido" #: schema/katestyletreewidget.cpp:636 +#, kde-format msgid "" "\"Use Default Style\" will be automatically unset when you change any style " "properties." @@ -3061,10 +3587,12 @@ "propiedade do estilo." #: schema/katestyletreewidget.cpp:637 +#, kde-format msgid "Kate Styles" msgstr "Estilos de Kate" #: script/data/commands/emmet.js:9 +#, kde-format msgctxt "Script command name" msgid "Expand abbreviation" msgstr "Expandir a abreviatura" @@ -3079,101 +3607,121 @@ #: script/data/commands/emmet.js:67 script/data/commands/emmet.js:71 #: script/data/commands/emmet.js:75 script/data/commands/emmet.js:79 #: script/data/commands/emmet.js:83 +#, kde-format msgctxt "Script command category" msgid "Emmet" msgstr "Emmet" #: script/data/commands/emmet.js:13 +#, kde-format msgctxt "Script command name" msgid "Wrap with tag" msgstr "Embrullar nunha etiqueta" #: script/data/commands/emmet.js:18 +#, kde-format msgctxt "Script command name" msgid "Move cursor to matching tag" msgstr "Desprazar o cursor ata a parella desta etiqueta" #: script/data/commands/emmet.js:22 +#, kde-format msgctxt "Script command name" msgid "Select HTML/XML tag contents inwards" msgstr "Escoller o contido da etiqueta HTML/XML cara dentro" #: script/data/commands/emmet.js:26 +#, kde-format msgctxt "Script command name" msgid "Select HTML/XML tag contents outwards" msgstr "Escoller o contido da etiqueta HTML/XML cara fóra" #: script/data/commands/emmet.js:30 +#, kde-format msgctxt "Script command name" msgid "Toggle comment" msgstr "Conmutar o comentario" #: script/data/commands/emmet.js:34 +#, kde-format msgctxt "Script command name" msgid "Go to next edit point" msgstr "Ir ao seguinte punto de edición" #: script/data/commands/emmet.js:38 +#, kde-format msgctxt "Script command name" msgid "Go to previous edit point" msgstr "Ir ao anterior punto de edición" #: script/data/commands/emmet.js:42 +#, kde-format msgctxt "Script command name" msgid "Select next edit point" msgstr "Escoller o seguinte punto de edición" #: script/data/commands/emmet.js:46 +#, kde-format msgctxt "Script command name" msgid "Select previous edit point" msgstr "Escoller o anterior punto de edición" #: script/data/commands/emmet.js:50 +#, kde-format msgctxt "Script command name" msgid "Delete tag under cursor" msgstr "Eliminar a etiqueta baixo o cursor" #: script/data/commands/emmet.js:54 +#, kde-format msgctxt "Script command name" msgid "Split or join a tag" msgstr "Dividir ou xuntar unha etiqueta" #: script/data/commands/emmet.js:58 +#, kde-format msgctxt "Script command name" msgid "Evaluate a simple math expression" msgstr "Avaliar unha expresión matemática simple" #: script/data/commands/emmet.js:62 +#, kde-format msgctxt "Script command name" msgid "Decrement number by 1" msgstr "Diminuír 1 un número" #: script/data/commands/emmet.js:66 +#, kde-format msgctxt "Script command name" msgid "Decrement number by 10" msgstr "Diminuír 10 un número" #: script/data/commands/emmet.js:70 +#, kde-format msgctxt "Script command name" msgid "Decrement number by 0.1" msgstr "Diminuír 0,1 un número" #: script/data/commands/emmet.js:74 +#, kde-format msgctxt "Script command name" msgid "Increment number by 1" msgstr "Aumentar 1 un número" #: script/data/commands/emmet.js:78 +#, kde-format msgctxt "Script command name" msgid "Increment number by 10" msgstr "Aumentar 10 un número" #: script/data/commands/emmet.js:82 +#, kde-format msgctxt "Script command name" msgid "Increment number by 0.1" msgstr "Aumentar 0,1 un número" #: script/data/commands/emmet.js:96 +#, kde-format msgid "" "Expands the abbreviation using Emmet expressions; see http://code.google.com/" "p/zen-coding/wiki/ZenHTMLSelectorsEn" @@ -3182,6 +3730,7 @@ "code.google.com/p/zen-coding/wiki/ZenHTMLSelectorsEn" #: script/data/commands/emmet.js:97 +#, kde-format msgid "" "Wraps the selected text in XML tags constructed from the provided Emmet " "expression (defaults to div)." @@ -3190,10 +3739,12 @@ "expresión de Emmet fornecida (por omisión, div)." #: script/data/commands/emmet.js:98 +#, kde-format msgid "Moves the caret to the current tag's pair" msgstr "Move o «caret» para a parella da etiqueta actual" #: script/data/commands/emmet.js:99 +#, kde-format msgid "" "Select contents of HTML/XML tag, moving inward on continuous invocations" msgstr "" @@ -3201,6 +3752,7 @@ "invocacións continuas" #: script/data/commands/emmet.js:100 +#, kde-format msgid "" "Select contents of HTML/XML tag, moving outwards on continuous invocations" msgstr "" @@ -3208,100 +3760,123 @@ "invocacións continuas" #: script/data/commands/emmet.js:101 +#, kde-format msgid "Move to the next edit point (tag or empty attribute)." msgstr "Mover para o punto de edición seguinte (etiqueta ou atributo baleiro)." #: script/data/commands/emmet.js:102 +#, kde-format msgid "Move to the previous edit point (tag or empty attribute)." msgstr "Mover para o punto de edición anterior (etiqueta ou atributo baleiro)." #: script/data/commands/emmet.js:103 +#, kde-format msgid "Select next edit point (tag or empty attribute)." msgstr "Escoller o punto de edición seguinte (etiqueta ou atributo baleiro)." #: script/data/commands/emmet.js:104 +#, kde-format msgid "Select previous edit point (tag or empty attribute)." msgstr "Escoller o punto de edición anterior (etiqueta ou atributo baleiro)." #: script/data/commands/emmet.js:105 +#, kde-format msgid "Toggle comment of current tag or CSS selector" msgstr "Alternar os comentarios da etiqueta ou selector de CSS actual" #: script/data/commands/emmet.js:106 +#, kde-format msgid "Deletes tag under cursor" msgstr "Elimina a etiqueta baixo o cursor" #: script/data/commands/emmet.js:107 +#, kde-format msgid "Splits or joins a tag" msgstr "Divide ou xunta unha etiqueta" #: script/data/commands/emmet.js:108 +#, kde-format msgid "Evaluates a simple math expression" msgstr "Avalía unha expresión matemática simple" #: script/data/commands/emmet.js:109 +#, kde-format msgid "Decrement number under cursor by 1" msgstr "Diminuír en 1 o número baixo o cursor" #: script/data/commands/emmet.js:110 +#, kde-format msgid "Decrement number under cursor by 10" msgstr "Diminuír en 10 o número baixo o cursor" #: script/data/commands/emmet.js:111 +#, kde-format msgid "Decrement number under cursor by 0.1" msgstr "Diminuír en 0,1 o número baixo o cursor" #: script/data/commands/emmet.js:112 +#, kde-format msgid "Increment number under cursor by 1" msgstr "Aumentar en 1 o número baixo o cursor" #: script/data/commands/emmet.js:113 +#, kde-format msgid "Increment number under cursor by 10" msgstr "Aumentar en 10 o número baixo o cursor" #: script/data/commands/emmet.js:114 +#, kde-format msgid "Increment number under cursor by 0.1" msgstr "Aumentar en 0,1 o número baixo o cursor" #: script/data/commands/jumpMatchingIndent.js:9 +#, kde-format msgctxt "Script command name" msgid "Move cursor to previous matching indent" msgstr "Desprazar o cursor ata o anterior sangrado igual" #: script/data/commands/jumpMatchingIndent.js:11 #: script/data/commands/jumpMatchingIndent.js:16 +#, kde-format msgctxt "Script command category" msgid "Navigation" msgstr "Navegación" #: script/data/commands/jumpMatchingIndent.js:14 +#, kde-format msgctxt "Script command name" msgid "Move cursor to next matching indent" -msgstr "Desprazar o cursor até o seguinte sangrado igual" +msgstr "Desprazar o cursor ata o seguinte sangrado igual" #: script/data/commands/jumpMatchingIndent.js:44 +#, kde-format msgid "Move cursor to previous matching indent" -msgstr "Desprazar o cursor até o anterior sangrado igual" +msgstr "Desprazar o cursor ata o anterior sangrado igual" #: script/data/commands/jumpMatchingIndent.js:47 +#, kde-format msgid "Move cursor to next matching indent" -msgstr "Desprazar o cursor até o seguinte sangrado igual" +msgstr "Desprazar o cursor ata o seguinte sangrado igual" #: script/data/commands/quickcoding.js:9 +#, kde-format msgctxt "Script command name" msgid "Expand Abbreviation" msgstr "Expandir a abreviatura" #: script/data/commands/quickcoding.js:11 +#, kde-format msgctxt "Script command category" msgid "Quick Coding" msgstr "Programación rápida" #: script/data/commands/quickcoding.js:27 +#, kde-format msgid "Expand Quick Coding Abbreviation" msgstr "Expandir a abreviatura de código rápido" #: script/data/commands/utils.js:9 +#, kde-format msgctxt "Script command name" msgid "Sort Selected Text" msgstr "Ordenar o texto escollido" @@ -3310,84 +3885,100 @@ #: script/data/commands/utils.js:20 script/data/commands/utils.js:25 #: script/data/commands/utils.js:30 script/data/commands/utils.js:34 #: script/data/commands/utils.js:38 +#, kde-format msgctxt "Script command category" msgid "Editing" msgstr "Edición" #: script/data/commands/utils.js:13 +#, kde-format msgctxt "Script command name" msgid "Move Lines Down" msgstr "Baixar as liñas" #: script/data/commands/utils.js:18 +#, kde-format msgctxt "Script command name" msgid "Move Lines Up" msgstr "Subir as liñas" #: script/data/commands/utils.js:23 +#, kde-format msgctxt "Script command name" msgid "Duplicate Selected Lines Down" msgstr "Duplicar as liñas escollidas abaixo" #: script/data/commands/utils.js:28 +#, kde-format msgctxt "Script command name" msgid "Duplicate Selected Lines Up" msgstr "Duplicar as liñas escollidas arriba" #: script/data/commands/utils.js:33 +#, kde-format msgctxt "Script command name" msgid "URI-encode Selected Text" msgstr "Codificar como un URI o texto escollido" #: script/data/commands/utils.js:37 +#, kde-format msgctxt "Script command name" msgid "URI-decode Selected Text" msgstr "Descodificar como URI o texto escollido" #: script/data/commands/utils.js:363 +#, kde-format msgid "Sort the selected text or whole document." msgstr "Ordenar o texto escollido ou o documento completo." #: script/data/commands/utils.js:365 +#, kde-format msgid "Move selected lines down." msgstr "Baixar as liñas escollidas." #: script/data/commands/utils.js:367 +#, kde-format msgid "Move selected lines up." msgstr "Subir as liñas escollidas." #: script/data/commands/utils.js:369 +#, kde-format msgid "Remove duplicate lines from the selected text or whole document." msgstr "" "Eliminar as liñas duplicadas do texto escollido ou do documento completo." #: script/data/commands/utils.js:371 +#, kde-format msgid "" "Sort the selected text or whole document in natural order.
    Here is an " "example to show the difference to the normal sort method:
    sort(a10, a1, " "a2) => a1, a10, a2
    natsort(a10, a1, a2) => a1, a2, a10" msgstr "" "Ordena o texto escollido ou todo o documento segundo a orde natural.
    Un " -"exemplo para mostrar a diferenza co método normal de ordenación:
    sort" -"(a10, a1, a2) => a1, a10, a2
    natsort(a10, a1, a2) => a1, a2, a10" +"exemplo para mostrar a diferenza co método normal de ordenación:
    " +"sort(a10, a1, a2) => a1, a10, a2
    natsort(a10, a1, a2) => a1, a2, a10" #: script/data/commands/utils.js:373 +#, kde-format msgid "Trims trailing whitespace from selection or whole document." msgstr "" "Recortar o espazo en branco final da selección ou do documento completo." #: script/data/commands/utils.js:375 +#, kde-format msgid "Trims leading whitespace from selection or whole document." msgstr "" "Recortar o espazo en branco inicial da selección ou do documento completo." #: script/data/commands/utils.js:377 +#, kde-format msgid "Trims leading and trailing whitespace from selection or whole document." msgstr "" "Recortar o espazo en branco inicial e final da selección ou do documento " "completo." #: script/data/commands/utils.js:379 +#, kde-format msgid "" "Joins selected lines or whole document. Optionally pass a separator to put " "between each line:
    join ', ' will e.g. join lines and " @@ -3395,13 +3986,15 @@ msgstr "" "Xunta as liñas escollidas ou o documento completo. Como opción, indíquelle " "un separador para que o coloque entre cada liña:
    join ', ' " -"xuntará as liñas separándoas mediante unha vírgula." +"xuntará as liñas separándoas mediante unha coma." #: script/data/commands/utils.js:381 +#, kde-format msgid "Removes empty lines from selection or whole document." msgstr "Elimina as liñas en branco da selección ou do documento completo." #: script/data/commands/utils.js:385 +#, kde-format msgid "" "Given a JavaScript function as argument, call that for the list of " "(selected) lines and replace them with the return value of that callback." @@ -3411,11 +4004,12 @@ msgstr "" "Dada unha función JavaScript como argumento, chámaa coa lista de liñas " "(escollidas) e substitúeas co valor devolvido por esa chamada.
    Exemplo " -"(xunta as liñas escollidas):
    each 'function(lines){return lines.join" -"(\", \");}'
    Para aforrarlle escribir tanto pode facer iso mesmo " -"así:
    each 'lines.join(\", \")' " +"(xunta as liñas escollidas):
    each 'function(lines){return lines." +"join(\", \");}'
    Para aforrarlle escribir tanto pode facer iso " +"mesmo así:
    each 'lines.join(\", \")' " #: script/data/commands/utils.js:387 +#, kde-format msgid "" "Given a JavaScript function as argument, call that for the list of " "(selected) lines and remove those where the callback returns false." @@ -3430,6 +4024,14 @@ "así:
    filter 'line.length > 0'" #: script/data/commands/utils.js:389 +#, fuzzy, kde-format +#| msgid "" +#| "Given a JavaScript function as argument, call that for the list of " +#| "(selected) lines and replace the line with the return value of the " +#| "callback.
    Example (see also ltrim):
    map " +#| "'function(line){return line.replace(/^\\s+/, \"\");}'
    To save " +#| "you some typing, you can also do this to achieve the same:
    map " +#| "'line.replace(/^\\s+/, \"\")'" msgid "" "Given a JavaScript function as argument, call that for the list of " "(selected) lines and replace the line with the return value of the callback." @@ -3446,91 +4048,109 @@ "code>" #: script/data/commands/utils.js:391 +#, kde-format msgid "Duplicates the selected lines up." msgstr "Duplica as liñas escollidas arriba." #: script/data/commands/utils.js:393 +#, kde-format msgid "Duplicates the selected lines down." msgstr "Duplica as liñas escollidas abaixo." #: script/data/commands/utils.js:395 +#, kde-format msgid "" "Encode special chars in a single line selection, so the result text can be " "used as URI." msgstr "" "Codifica os caracteres especiais nunha selección dunha única liña, de " -"maneira que se poda usar o texto resultante como URI." +"maneira que se poida usar o texto resultante como URI." #: script/data/commands/utils.js:397 +#, kde-format msgid "Reverse action of URI encode." msgstr "Inverter a acción de codificación do URI." #: script/data/indentation/ada.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "ada" msgstr "Ada" #: script/data/indentation/cmake.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "CMake" msgstr "CMake" #: script/data/indentation/cppstyle.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "C++/boost Style" msgstr "Estilo de Boost e C++" #: script/data/indentation/cstyle.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "C Style" msgstr "Estilo de C" #: script/data/indentation/haskell.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "Haskell" msgstr "Haskell" #: script/data/indentation/latex.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "Latex" msgstr "LaTeX" #: script/data/indentation/lilypond.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "LilyPond" msgstr "LilyPond" #: script/data/indentation/lisp.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "LISP" msgstr "Common Lisp" #: script/data/indentation/lua.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "Lua" msgstr "Lua" #: script/data/indentation/pascal.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "Pascal" msgstr "Pascal" #: script/data/indentation/python.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "Python" msgstr "Python" #: script/data/indentation/replicode.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "Replicode" msgstr "Replicode" #: script/data/indentation/ruby.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "Ruby" msgstr "Ruby" #: script/data/indentation/xml.js:2 +#, kde-format msgctxt "Autoindent mode" msgid "XML Style" msgstr "Estilo de XML" @@ -3554,6 +4174,7 @@ #: script/katecommandlinescript.cpp:93 script/katescriptmanager.cpp:316 #: utils/katecmds.cpp:203 vimode/cmds.cpp:56 +#, kde-format msgid "Could not access view" msgstr "Non foi posíbel acceder á vista" @@ -3583,44 +4204,54 @@ msgstr "Non se atopou a orde: %1" #: script/katescriptmanager.cpp:334 +#, kde-format msgid "Reload all JavaScript files (indenters, command line scripts, etc)." msgstr "" "Cargar de novo todos os ficheiros de JavaScript (sangradores, scripts da " "liña de ordes etc)." #: search/katesearchbar.cpp:84 +#, kde-format msgid "Add..." -msgstr "Engadir..." +msgstr "Engadir…" #: search/katesearchbar.cpp:352 +#, kde-format msgid "Reached top, continued from bottom" msgstr "Acadouse o principio; continúase polo final" #: search/katesearchbar.cpp:354 +#, kde-format msgid "Reached bottom, continued from top" msgstr "Acadouse o final; continúase polo principio" #: search/katesearchbar.cpp:359 +#, kde-format msgid "Not found" msgstr "Non se atopou" #: search/katesearchbar.cpp:609 +#, kde-format msgid "Bottom of file reached. Continue from top?" msgstr "Atinxiuse a fin do ficheiro. Desexa continuar desde o inicio?" #: search/katesearchbar.cpp:610 +#, kde-format msgid "Top of file reached. Continue from bottom?" msgstr "Atinxiuse o inicio do ficheiro. Desexa continuar desde o fin?" #: search/katesearchbar.cpp:611 +#, kde-format msgid "Continue search?" msgstr "Desexa continuar a busca?" #: search/katesearchbar.cpp:618 +#, kde-format msgid "Continuing search from top" msgstr "Continuar a busca desde o principio" #: search/katesearchbar.cpp:626 +#, kde-format msgid "Continuing search from bottom" msgstr "Continuar a busca desde o final" @@ -3641,274 +4272,335 @@ msgstr[1] "Fixéronse %1 substitucións" #: search/katesearchbar.cpp:1107 +#, kde-format msgid "Beginning of line" msgstr "Comezo da liña" #: search/katesearchbar.cpp:1108 +#, kde-format msgid "End of line" msgstr "Final da liña" #: search/katesearchbar.cpp:1110 +#, kde-format msgid "Any single character (excluding line breaks)" msgstr "Calquera carácter só (excluíndo os saltos de liña)" #: search/katesearchbar.cpp:1112 +#, kde-format msgid "One or more occurrences" msgstr "Unha ou máis aparicións" #: search/katesearchbar.cpp:1113 +#, kde-format msgid "Zero or more occurrences" msgstr "Cero ou máis aparicións" #: search/katesearchbar.cpp:1114 +#, kde-format msgid "Zero or one occurrences" msgstr "Cero ou unha aparicións" #: search/katesearchbar.cpp:1115 +#, kde-format msgid " through occurrences" msgstr " a través das aparicións" #: search/katesearchbar.cpp:1117 +#, kde-format msgid "Group, capturing" msgstr "Agrupamento, capturando" #: search/katesearchbar.cpp:1118 +#, kde-format msgid "Or" msgstr "Ou" #: search/katesearchbar.cpp:1119 +#, kde-format msgid "Set of characters" msgstr "Conxunto de caracteres" #: search/katesearchbar.cpp:1120 +#, kde-format msgid "Negative set of characters" msgstr "Negación do conxunto de caracteres" #: search/katesearchbar.cpp:1124 +#, kde-format msgid "Whole match reference" msgstr "Referencia a concordancia completa" #: search/katesearchbar.cpp:1137 +#, kde-format msgid "Reference" msgstr "Referencia" #: search/katesearchbar.cpp:1144 +#, kde-format msgid "Line break" msgstr "Salto de liña" #: search/katesearchbar.cpp:1145 +#, kde-format msgid "Tab" msgstr "Tabulación" #: search/katesearchbar.cpp:1148 +#, kde-format msgid "Word boundary" msgstr "Limiar de palabra" #: search/katesearchbar.cpp:1149 +#, kde-format msgid "Not word boundary" msgstr "Non limiar de palabra" #: search/katesearchbar.cpp:1150 +#, kde-format msgid "Digit" msgstr "Díxito" #: search/katesearchbar.cpp:1151 +#, kde-format msgid "Non-digit" msgstr "Non díxito" #: search/katesearchbar.cpp:1152 +#, kde-format msgid "Whitespace (excluding line breaks)" msgstr "Espazo en branco (excluíndo os saltos de liña)" #: search/katesearchbar.cpp:1153 +#, kde-format msgid "Non-whitespace (excluding line breaks)" msgstr "Non espazo en branco (excluíndo os saltos de liña)" #: search/katesearchbar.cpp:1154 +#, kde-format msgid "Word character (alphanumerics plus '_')" msgstr "Caracteres de palabra (alfanuméricos máis o «_»)" #: search/katesearchbar.cpp:1155 +#, kde-format msgid "Non-word character" msgstr "Caracteres que non sexan de palabra" #: search/katesearchbar.cpp:1158 +#, kde-format msgid "Octal character 000 to 377 (2^8-1)" msgstr "Carácter octal do 000 ao 377 (2^8-1)" #: search/katesearchbar.cpp:1159 +#, kde-format msgid "Hex character 0000 to FFFF (2^16-1)" msgstr "Carácter hexadecimal do 0000 ao FFFF (2^16-1)" #: search/katesearchbar.cpp:1160 +#, kde-format msgid "Backslash" msgstr "Barra invertida" #: search/katesearchbar.cpp:1164 +#, kde-format msgid "Group, non-capturing" msgstr "Agrupamento, non capturando" #: search/katesearchbar.cpp:1165 +#, kde-format msgid "Lookahead" -msgstr "Procura cara diante" +msgstr "Busca cara diante" #: search/katesearchbar.cpp:1166 +#, kde-format msgid "Negative lookahead" -msgstr "Negación de procura cara diante" +msgstr "Negación de busca cara diante" #: search/katesearchbar.cpp:1171 +#, kde-format msgid "Begin lowercase conversion" msgstr "Comezar a conversión en minúsculas" #: search/katesearchbar.cpp:1172 +#, kde-format msgid "Begin uppercase conversion" msgstr "Comezar a conversión en maiúsculas" #: search/katesearchbar.cpp:1173 +#, kde-format msgid "End case conversion" msgstr "Fin da conversión en maiúsculas/minúsculas" #: search/katesearchbar.cpp:1174 +#, kde-format msgid "Lowercase first character conversion" msgstr "Conversión do primeiro carácter en minúscula" #: search/katesearchbar.cpp:1175 +#, kde-format msgid "Uppercase first character conversion" msgstr "Conversión do primeiro carácter en maiúscula" #: search/katesearchbar.cpp:1176 +#, kde-format msgid "Replacement counter (for Replace All)" msgstr "Contador de substitucións (para Substituílas todas)" #. i18n: ectx: property (text), widget (QLabel, label) #: search/searchbarincremental.ui:50 search/searchbarpower.ui:125 +#, kde-format msgid "F&ind:" msgstr "&Atopar:" #. i18n: ectx: property (toolTip), widget (QComboBox, pattern) #: search/searchbarincremental.ui:78 search/searchbarpower.ui:59 +#, kde-format msgid "Text to search for" msgstr "O texto que se ha buscar" #. i18n: ectx: property (toolTip), widget (QToolButton, findNext) #. i18n: ectx: property (toolTip), widget (QToolButton, next) #: search/searchbarincremental.ui:91 search/searchbarpower.ui:74 +#, kde-format msgid "Jump to next match" msgstr "Ir á aparición seguinte" #. i18n: ectx: property (toolTip), widget (QToolButton, findPrev) #. i18n: ectx: property (toolTip), widget (QToolButton, prev) #: search/searchbarincremental.ui:106 search/searchbarpower.ui:89 +#, kde-format msgid "Jump to previous match" msgstr "Ir á aparición anterior" #. i18n: ectx: property (toolTip), widget (QToolButton, matchCase) #: search/searchbarincremental.ui:121 search/searchbarpower.ui:166 +#, kde-format msgid "Match case sensitive" msgstr "Buscar coincidencias distinguindo as maiúsculas." #. i18n: ectx: property (toolTip), widget (QToolButton, mutate) #: search/searchbarincremental.ui:161 +#, kde-format msgid "Switch to power search and replace bar" msgstr "Conmutar á barra de busca e substitución avanzadas" #. i18n: ectx: property (toolTip), widget (QComboBox, replacement) #: search/searchbarpower.ui:112 +#, kde-format msgid "Text to replace with" msgstr "O texto substituto" #. i18n: ectx: property (text), widget (QLabel, label_3) #: search/searchbarpower.ui:138 +#, kde-format msgid "Rep&lace:" msgstr "&Substituír por:" #. i18n: ectx: property (text), widget (QLabel, label_2) #: search/searchbarpower.ui:151 +#, kde-format msgid "&Mode:" msgstr "&Modo:" #. i18n: ectx: property (toolTip), widget (QToolButton, selectionOnly) #: search/searchbarpower.ui:184 +#, kde-format msgid "Search in the selection only" msgstr "Buscar só no texto seleccionado." #. i18n: ectx: property (toolTip), widget (QComboBox, searchMode) #: search/searchbarpower.ui:218 +#, kde-format msgid "Search mode" msgstr "Modo de busca" #. i18n: ectx: property (text), item, widget (QComboBox, searchMode) #: search/searchbarpower.ui:228 +#, kde-format msgid "Plain text" msgstr "Texto simple" #. i18n: ectx: property (text), item, widget (QComboBox, searchMode) #: search/searchbarpower.ui:233 +#, kde-format msgid "Whole words" msgstr "Palabras completas" #. i18n: ectx: property (text), item, widget (QComboBox, searchMode) #: search/searchbarpower.ui:238 +#, kde-format msgid "Escape sequences" msgstr "Secuencias de escape" #. i18n: ectx: property (text), item, widget (QComboBox, searchMode) #: search/searchbarpower.ui:243 +#, kde-format msgid "Regular expression" msgstr "Expresión regular" #. i18n: ectx: property (toolTip), widget (QPushButton, replaceNext) #: search/searchbarpower.ui:264 +#, kde-format msgid "Replace next match" msgstr "Substituír a aparición seguinte" -#. i18n: ectx: property (text), widget (QPushButton, m_replaceBtn) #. i18n: ectx: property (text), widget (QPushButton, replaceNext) +#. i18n: ectx: property (text), widget (QPushButton, m_replaceBtn) #: search/searchbarpower.ui:267 spellcheck/spellcheckbar.ui:130 +#, kde-format msgid "&Replace" msgstr "&Substituír" #. i18n: ectx: property (toolTip), widget (QPushButton, replaceAll) #: search/searchbarpower.ui:274 +#, kde-format msgid "Replace all matches" msgstr "Substituír todas as aparicións" #. i18n: ectx: property (text), widget (QPushButton, replaceAll) #: search/searchbarpower.ui:277 +#, kde-format msgid "Replace &All" msgstr "Substituílas &todas" #. i18n: ectx: property (text), widget (QPushButton, findAll) #: search/searchbarpower.ui:284 +#, kde-format msgid "&Find All" msgstr "&Atopalo todo" #. i18n: ectx: property (toolTip), widget (QToolButton, mutate) #: search/searchbarpower.ui:297 +#, kde-format msgid "Switch to incremental search bar" msgstr "Conmutar para a barra de buscas incrementais" #: spellcheck/spellcheckbar.cpp:148 +#, kde-format msgid "Spell check canceled." msgstr "Cancelouse a corrección de ortografía." #: spellcheck/spellcheckbar.cpp:256 +#, kde-format msgctxt "progress label" msgid "Spell checking in progress..." -msgstr "Estase a corrixir a ortografía..." +msgstr "Estase a corrixir a ortografía…" #: spellcheck/spellcheckbar.cpp:257 spellcheck/spellcheckbar.cpp:445 +#, kde-format msgctxt "@title:window" msgid "Check Spelling" msgstr "Verificar a ortografía" #: spellcheck/spellcheckbar.cpp:442 spellcheck/spellcheckbar.cpp:445 +#, kde-format msgid "Spell check complete." msgstr "Completouse a corrección de ortografía." #. i18n: ectx: property (whatsThis), widget (QLabel, textLabel2) #. i18n: ectx: property (whatsThis), widget (QLabel, m_unknownWord) #: spellcheck/spellcheckbar.ui:30 spellcheck/spellcheckbar.ui:46 +#, kde-format msgid "" "

    This word was considered to be an \"unknown word\" because it does " "not match any entry in the dictionary currently in use. It may also be a " @@ -3937,21 +4629,25 @@ #. i18n: ectx: property (text), widget (QLabel, textLabel2) #: spellcheck/spellcheckbar.ui:33 +#, kde-format msgid "Unknown word:" msgstr "Palabra descoñecida:" #. i18n: ectx: property (toolTip), widget (QLabel, m_unknownWord) #: spellcheck/spellcheckbar.ui:40 +#, kde-format msgid "Unknown word" msgstr "Palabra descoñecida" #. i18n: ectx: property (text), widget (QLabel, m_unknownWord) #: spellcheck/spellcheckbar.ui:49 +#, kde-format msgid "misspelled" msgstr "incorrecta" #. i18n: ectx: property (whatsThis), widget (QPushButton, m_addBtn) #: spellcheck/spellcheckbar.ui:72 +#, kde-format msgid "" "\n" "

    The unknown word was detected and considered unknown because it is not " @@ -3966,18 +4662,20 @@ "

    A palabra descoñecida foi detectada e considerada como descoñecida porque " "non está no dicionario.
    \n" "Prema aquí se considera que a palabra descoñecida non é incorrecta e quere " -"evitar que volte ser considerada como errada. Se quere que fique como está, " +"evitar que volte ser considerada como errada. Se quere que quede como está, " "pero non quere engadila ao dicionario, prema Ignorar ou Ignoralas " "todas no seu canto.

    \n" "
    " #. i18n: ectx: property (text), widget (QPushButton, m_addBtn) #: spellcheck/spellcheckbar.ui:75 +#, kde-format msgid "<< Add to Dictionary" msgstr "← Engadir ao dicionario" #. i18n: ectx: property (whatsThis), widget (QLabel, textLabel4) #: spellcheck/spellcheckbar.ui:89 +#, kde-format msgid "" "\n" "

    If the unknown word is misspelled, you should type the correction for " @@ -3997,16 +4695,19 @@ #. i18n: ectx: property (text), widget (QLabel, textLabel4) #: spellcheck/spellcheckbar.ui:92 +#, kde-format msgid "Replace with:" msgstr "Substituír por:" #. i18n: ectx: property (text), widget (QPushButton, m_suggestBtn) #: spellcheck/spellcheckbar.ui:118 +#, kde-format msgid "S&uggest" msgstr "S&uxestión" #. i18n: ectx: property (whatsThis), widget (QPushButton, m_replaceBtn) #: spellcheck/spellcheckbar.ui:127 +#, kde-format msgid "" "\n" "

    Click here to replace this occurrence of the unknown text with the text " @@ -4020,6 +4721,7 @@ #. i18n: ectx: property (whatsThis), widget (QPushButton, m_skipBtn) #: spellcheck/spellcheckbar.ui:140 +#, kde-format msgid "" "\n" "

    Click here to let this occurrence of the unknown word remain as is.

    \n" @@ -4038,28 +4740,32 @@ #. i18n: ectx: property (whatsThis), widget (QLabel, textLabel5) #. i18n: ectx: property (whatsThis), widget (QComboBox, m_language) #: spellcheck/spellcheckbar.ui:156 spellcheck/spellcheckbar.ui:174 +#, kde-format msgid "" "\n" "

    Select the language of the document you are proofing here.

    \n" "
    " msgstr "" "\n" -"

    Escolla aquí a lingua do documento que está a corrixir.

    \n" +"

    Seleccione o idioma do documento que está a corrixir.

    \n" "
    " #. i18n: ectx: property (text), widget (QLabel, textLabel5) #: spellcheck/spellcheckbar.ui:159 +#, kde-format msgid "&Language:" -msgstr "&Lingua:" +msgstr "&Idioma:" #. i18n: ectx: property (toolTip), widget (QComboBox, m_language) #: spellcheck/spellcheckbar.ui:169 +#, kde-format msgid "Language Selection" -msgstr "Escolla de lingua" +msgstr "Selección de idioma" #. i18n: ectx: property (whatsThis), widget (QPushButton, m_autoCorrect) #. i18n: ectx: property (whatsThis), widget (QPushButton, m_skipAllBtn) #: spellcheck/spellcheckbar.ui:197 spellcheck/spellcheckbar.ui:222 +#, kde-format msgid "" "\n" "

    Click here to let all occurrences of the unknown word remain as they are." @@ -4078,11 +4784,13 @@ #. i18n: ectx: property (text), widget (QPushButton, m_autoCorrect) #: spellcheck/spellcheckbar.ui:200 +#, kde-format msgid "Autocorrect" msgstr "Corrixir automaticamente" #. i18n: ectx: property (whatsThis), widget (QPushButton, m_replaceAllBtn) #: spellcheck/spellcheckbar.ui:209 +#, kde-format msgid "" "\n" "

    Click here to replace all occurrences of the unknown text with the text " @@ -4096,1992 +4804,74 @@ #. i18n: ectx: property (text), widget (QPushButton, m_replaceAllBtn) #: spellcheck/spellcheckbar.ui:212 +#, kde-format msgid "R&eplace All" msgstr "Substituílas &todas" #. i18n: ectx: property (text), widget (QPushButton, m_skipAllBtn) #: spellcheck/spellcheckbar.ui:225 +#, kde-format msgid "I&gnore All" msgstr "I&gnoralas todas" #: spellcheck/spellcheckdialog.cpp:66 +#, kde-format msgid "Spelling (from cursor)..." -msgstr "Corrección ortográfica (desde o cursor)..." +msgstr "Corrección ortográfica (desde o cursor)…" #: spellcheck/spellcheckdialog.cpp:69 +#, kde-format msgid "Check the document's spelling from the cursor and forward" msgstr "Comprobar a ortografía do documento desde o cursor cara adiante" #: spellcheck/spellcheckdialog.cpp:72 +#, kde-format msgid "Spellcheck Selection..." -msgstr "Selección de corrección ortográfica..." +msgstr "Selección de corrección ortográfica…" #: spellcheck/spellcheckdialog.cpp:75 +#, kde-format msgid "Check spelling of the selected text" msgstr "Comprobar a ortografía do texto escollido" #: spellcheck/spellingmenu.cpp:102 +#, kde-format msgid "Ignore Word" msgstr "Ignorar esta palabra" #: spellcheck/spellingmenu.cpp:105 +#, kde-format msgid "Add to Dictionary" msgstr "Engadir ao dicionario" #: swapfile/kateswapfile.cpp:641 +#, kde-format msgid "The file was not closed properly." msgstr "O ficheiro non se pechou correctamente." #: swapfile/kateswapfile.cpp:645 +#, kde-format msgid "View Changes" msgstr "Ver as alteracións" #: swapfile/kateswapfile.cpp:646 +#, kde-format msgid "Recover Data" msgstr "Recuperar os datos" #: swapfile/kateswapfile.cpp:647 +#, kde-format msgid "Discard" -msgstr "Rexeitar" - -#. i18n: tag language attribute name -#: syntax/data/4dos.xml:9 -msgctxt "Language" -msgid "4DOS BatchToMemory" -msgstr "4DOS BatchToMemory" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/4dos.xml:9 syntax/data/ahk.xml:3 syntax/data/ample.xml:3 -#: syntax/data/awk.xml:3 syntax/data/bash.xml:11 syntax/data/cubescript.xml:10 -#: syntax/data/dosbat.xml:11 syntax/data/erlang.xml:39 -#: syntax/data/euphoria.xml:32 syntax/data/ferite.xml:3 -#: syntax/data/idconsole.xml:3 syntax/data/javascript.xml:6 -#: syntax/data/k.xml:3 syntax/data/ld.xml:4 syntax/data/lsl.xml:14 -#: syntax/data/lua.xml:38 syntax/data/mason.xml:3 syntax/data/mel.xml:23 -#: syntax/data/perl.xml:42 syntax/data/php.xml:73 syntax/data/pig.xml:4 -#: syntax/data/pike.xml:4 syntax/data/praat.xml:24 syntax/data/puppet.xml:30 -#: syntax/data/python.xml:17 syntax/data/q.xml:3 syntax/data/qml.xml:4 -#: syntax/data/rexx.xml:3 syntax/data/ruby.xml:33 syntax/data/scheme.xml:43 -#: syntax/data/sed.xml:3 syntax/data/sieve.xml:4 -#: syntax/data/taskjuggler.xml:14 syntax/data/tcl.xml:31 -#: syntax/data/tcsh.xml:11 syntax/data/uscript.xml:3 -#: syntax/data/velocity.xml:3 syntax/data/xonotic-console.xml:3 -#: syntax/data/zsh.xml:11 -msgctxt "Language Section" -msgid "Scripts" -msgstr "Scripts" - -#. i18n: tag language attribute name -#: syntax/data/abap.xml:3 -msgctxt "Language" -msgid "ABAP" -msgstr "ABAP" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/abap.xml:3 syntax/data/actionscript.xml:3 -#: syntax/data/agda.xml:6 syntax/data/ansforth94.xml:37 -#: syntax/data/ansic89.xml:27 syntax/data/bitbake.xml:11 syntax/data/boo.xml:5 -#: syntax/data/c.xml:3 syntax/data/cg.xml:23 syntax/data/cgis.xml:3 -#: syntax/data/clipper.xml:3 syntax/data/clojure.xml:25 -#: syntax/data/commonlisp.xml:26 syntax/data/component-pascal.xml:13 -#: syntax/data/crk.xml:2 syntax/data/cs.xml:2 syntax/data/d.xml:104 -#: syntax/data/e.xml:3 syntax/data/eiffel.xml:13 syntax/data/fortran.xml:3 -#: syntax/data/freebasic.xml:3 syntax/data/fsharp.xml:12 syntax/data/go.xml:29 -#: syntax/data/grammar.xml:6 syntax/data/groovy.xml:6 -#: syntax/data/haskell.xml:3 syntax/data/haxe.xml:15 syntax/data/idl.xml:3 -#: syntax/data/ilerpg.xml:48 syntax/data/inform.xml:5 syntax/data/java.xml:3 -#: syntax/data/julia.xml:32 syntax/data/kbasic.xml:3 syntax/data/kotlin.xml:4 -#: syntax/data/lex.xml:23 syntax/data/literate-haskell.xml:3 -#: syntax/data/logtalk.xml:4 syntax/data/lpc.xml:19 syntax/data/m4.xml:41 -#: syntax/data/modelica.xml:19 syntax/data/modula-2.xml:3 -#: syntax/data/monobasic.xml:13 syntax/data/nemerle.xml:4 -#: syntax/data/nesc.xml:3 syntax/data/noweb.xml:3 syntax/data/objectivec.xml:3 -#: syntax/data/objectivecpp.xml:3 syntax/data/oors.xml:3 -#: syntax/data/opal.xml:3 syntax/data/opencl.xml:3 syntax/data/protobuf.xml:3 -#: syntax/data/purebasic.xml:2 syntax/data/rapidq.xml:3 -#: syntax/data/rsiidl.xml:3 syntax/data/rust.xml:37 syntax/data/sather.xml:3 -#: syntax/data/scala.xml:3 syntax/data/sml.xml:3 syntax/data/tads3.xml:5 -#: syntax/data/vala.xml:25 syntax/data/varnishcc.xml:3 -#: syntax/data/varnishcc4.xml:3 syntax/data/xharbour.xml:3 -#: syntax/data/yacc.xml:28 syntax/data/zonnon.xml:3 -msgctxt "Language Section" -msgid "Sources" -msgstr "Fontes" - -#. i18n: tag language attribute name -#: syntax/data/abc.xml:5 -msgctxt "Language" -msgid "ABC" -msgstr "ABC" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/abc.xml:5 syntax/data/alert.xml:33 -#: syntax/data/alert_indent.xml:29 syntax/data/changelog.xml:3 -#: syntax/data/cue.xml:3 syntax/data/debianchangelog.xml:3 -#: syntax/data/debiancontrol.xml:3 syntax/data/diff.xml:18 -#: syntax/data/dockerfile.xml:4 syntax/data/email.xml:6 syntax/data/gdb.xml:4 -#: syntax/data/git-rebase.xml:3 syntax/data/hunspell-aff.xml:3 -#: syntax/data/hunspell-dat.xml:3 syntax/data/hunspell-dic.xml:3 -#: syntax/data/jam.xml:24 syntax/data/lilypond.xml:57 syntax/data/m3u.xml:17 -#: syntax/data/makefile.xml:10 syntax/data/meson.xml:3 syntax/data/mup.xml:3 -#: syntax/data/qmake.xml:3 syntax/data/rpmspec.xml:11 -#: syntax/data/valgrind-suppression.xml:3 -msgctxt "Language Section" -msgid "Other" -msgstr "Outra" - -#. i18n: tag language attribute name -#: syntax/data/actionscript.xml:3 -msgctxt "Language" -msgid "ActionScript 2.0" -msgstr "ActionScript 2.0" - -#. i18n: tag language attribute name -#: syntax/data/ada.xml:3 -msgctxt "Language" -msgid "Ada" -msgstr "Ada" - -#. i18n: tag language attribute name -#: syntax/data/agda.xml:6 -msgctxt "Language" -msgid "Agda" -msgstr "Agda" - -#. i18n: tag language attribute name -#: syntax/data/ahdl.xml:3 -msgctxt "Language" -msgid "AHDL" -msgstr "AHDL" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/ahdl.xml:3 syntax/data/spice.xml:4 syntax/data/systemc.xml:10 -#: syntax/data/systemverilog.xml:42 syntax/data/vera.xml:42 -#: syntax/data/verilog.xml:3 syntax/data/vhdl.xml:11 -msgctxt "Language Section" -msgid "Hardware" -msgstr "Hardware" - -#. i18n: tag language attribute name -#: syntax/data/ahk.xml:3 -msgctxt "Language" -msgid "AutoHotKey" -msgstr "AutoHotKey" - -#. i18n: tag language attribute name -#: syntax/data/alert.xml:33 -msgctxt "Language" -msgid "Alerts" -msgstr "Alerts" - -#. i18n: tag language attribute name -#: syntax/data/alert_indent.xml:29 -msgctxt "Language" -msgid "Alerts_indent" -msgstr "Alerts_indent" - -#. i18n: tag language attribute name -#: syntax/data/ample.xml:3 -msgctxt "Language" -msgid "AMPLE" -msgstr "AMPLE" - -#. i18n: tag language attribute name -#: syntax/data/ansforth94.xml:37 -msgctxt "Language" -msgid "ANS-Forth94" -msgstr "ANS-Forth94" - -#. i18n: tag language attribute name -#: syntax/data/ansic89.xml:27 -msgctxt "Language" -msgid "ANSI C89" -msgstr "ANSI C89" - -#. i18n: tag language attribute name -#: syntax/data/ansys.xml:3 -msgctxt "Language" -msgid "Ansys" -msgstr "Ansys" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/ansys.xml:3 syntax/data/bmethod.xml:3 syntax/data/dot.xml:4 -#: syntax/data/fastq.xml:3 syntax/data/gap.xml:17 syntax/data/gdl.xml:3 -#: syntax/data/gnuplot.xml:3 syntax/data/magma.xml:3 -#: syntax/data/mathematica.xml:3 syntax/data/matlab.xml:60 -#: syntax/data/maxima.xml:24 syntax/data/octave.xml:18 syntax/data/r.xml:11 -#: syntax/data/replicode.xml:14 syntax/data/sci.xml:3 syntax/data/stata.xml:3 -#: syntax/data/tibasic.xml:3 syntax/data/yacas.xml:3 -msgctxt "Language Section" -msgid "Scientific" -msgstr "Científicas" - -#. i18n: tag language attribute name -#: syntax/data/apache.xml:15 -msgctxt "Language" -msgid "Apache Configuration" -msgstr "Configuración de Apache" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/apache.xml:15 syntax/data/asterisk.xml:19 -#: syntax/data/cisco.xml:3 syntax/data/fstab.xml:4 -#: syntax/data/git-ignore.xml:3 syntax/data/gitolite.xml:3 -#: syntax/data/ini.xml:3 syntax/data/kconfig.xml:71 -#: syntax/data/mergetagtext.xml:28 syntax/data/nagios.xml:3 -#: syntax/data/toml.xml:14 syntax/data/varnish.xml:3 -#: syntax/data/varnish4.xml:3 syntax/data/varnishtest.xml:3 -#: syntax/data/varnishtest4.xml:3 syntax/data/winehq.xml:3 -#: syntax/data/xorg.xml:3 -msgctxt "Language Section" -msgid "Configuration" -msgstr "Configuracións" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/asm-avr.xml:36 syntax/data/asm-dsp56k.xml:4 -#: syntax/data/asm-m68k.xml:4 syntax/data/asm6502.xml:3 -#: syntax/data/fasm.xml:16 syntax/data/gnuassembler.xml:46 -#: syntax/data/mips.xml:3 syntax/data/nasm.xml:43 syntax/data/picsrc.xml:11 -msgctxt "Language Section" -msgid "Assembler" -msgstr "Ensamblaxe" - -#. i18n: tag language attribute name -#: syntax/data/asm-avr.xml:36 -msgctxt "Language" -msgid "AVR Assembler" -msgstr "Ensamblaxe AVR" - -#. i18n: tag language attribute name -#: syntax/data/asm-dsp56k.xml:4 -msgctxt "Language" -msgid "Motorola DSP56k" -msgstr "Motorola DSP56k" - -#. i18n: tag language attribute name -#: syntax/data/asm-m68k.xml:4 -msgctxt "Language" -msgid "Motorola 68k (VASM/Devpac)" -msgstr "Motorola 68k (VASM/Devpac)" - -#. i18n: tag language attribute name -#: syntax/data/asm6502.xml:3 -msgctxt "Language" -msgid "Asm6502" -msgstr "Asm6502" - -#. i18n: tag language attribute name -#: syntax/data/asn1.xml:16 -msgctxt "Language" -msgid "ASN.1" -msgstr "ASN.1" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/asn1.xml:16 syntax/data/asp.xml:3 syntax/data/bibtex.xml:9 -#: syntax/data/ccss.xml:9 syntax/data/coldfusion.xml:3 -#: syntax/data/context.xml:3 syntax/data/css.xml:29 -#: syntax/data/djangotemplate.xml:7 syntax/data/doxygenlua.xml:30 -#: syntax/data/dtd.xml:6 syntax/data/ftl.xml:3 syntax/data/gettext.xml:24 -#: syntax/data/glosstex.xml:3 syntax/data/haml.xml:3 syntax/data/hamlet.xml:8 -#: syntax/data/html.xml:7 syntax/data/javadoc.xml:3 syntax/data/jira.xml:31 -#: syntax/data/json.xml:15 syntax/data/jsp.xml:3 syntax/data/latex.xml:3 -#: syntax/data/less.xml:3 syntax/data/mab.xml:3 syntax/data/mako.xml:7 -#: syntax/data/mandoc.xml:3 syntax/data/markdown.xml:38 -#: syntax/data/mediawiki.xml:9 syntax/data/metafont.xml:9 -#: syntax/data/pango.xml:3 syntax/data/postscript.xml:3 -#: syntax/data/relaxngcompact.xml:3 syntax/data/rest.xml:14 -#: syntax/data/rhtml.xml:47 syntax/data/roff.xml:10 syntax/data/rtf.xml:3 -#: syntax/data/scss.xml:31 syntax/data/sgml.xml:3 syntax/data/sisu.xml:3 -#: syntax/data/texinfo.xml:3 syntax/data/textile.xml:18 -#: syntax/data/txt2tags.xml:6 syntax/data/vcard.xml:5 syntax/data/wml.xml:57 -#: syntax/data/xml.xml:9 syntax/data/xmldebug.xml:3 syntax/data/xslt.xml:55 -#: syntax/data/xul.xml:7 syntax/data/yaml.xml:4 -msgctxt "Language Section" -msgid "Markup" -msgstr "Etiquetas" - -#. i18n: tag language attribute name -#: syntax/data/asp.xml:3 -msgctxt "Language" -msgid "ASP" -msgstr "ASP" - -#. i18n: tag language attribute name -#: syntax/data/asterisk.xml:19 -msgctxt "Language" -msgid "Asterisk" -msgstr "Asterisk" - -#. i18n: tag language attribute name -#: syntax/data/awk.xml:3 -msgctxt "Language" -msgid "AWK" -msgstr "AWK" - -#. i18n: tag language attribute name -#: syntax/data/bash.xml:11 -msgctxt "Language" -msgid "Bash" -msgstr "Bash" - -#. i18n: tag language attribute name -#: syntax/data/bibtex.xml:9 -msgctxt "Language" -msgid "BibTeX" -msgstr "BibTeX" - -#. i18n: tag language attribute name -#: syntax/data/bitbake.xml:11 -msgctxt "Language" -msgid "Bitbake" -msgstr "" - -#. i18n: tag language attribute name -#: syntax/data/bmethod.xml:3 -msgctxt "Language" -msgid "B-Method" -msgstr "B-Method" - -#. i18n: tag language attribute name -#: syntax/data/boo.xml:5 -msgctxt "Language" -msgid "Boo" -msgstr "Boo" - -#. i18n: tag language attribute name -#: syntax/data/c.xml:3 -msgctxt "Language" -msgid "C" -msgstr "C" - -#. i18n: tag language attribute name -#: syntax/data/ccss.xml:9 -msgctxt "Language" -msgid "CleanCSS" -msgstr "CleanCSS" - -#. i18n: tag language attribute name -#: syntax/data/cg.xml:23 -msgctxt "Language" -msgid "Cg" -msgstr "Cg" - -#. i18n: tag language attribute name -#: syntax/data/cgis.xml:3 -msgctxt "Language" -msgid "CGiS" -msgstr "CGiS" - -#. i18n: tag language attribute name -#: syntax/data/changelog.xml:3 -msgctxt "Language" -msgid "ChangeLog" -msgstr "ChangeLog" - -#. i18n: tag language attribute name -#: syntax/data/cisco.xml:3 -msgctxt "Language" -msgid "Cisco" -msgstr "Cisco" - -#. i18n: tag language attribute name -#: syntax/data/clipper.xml:3 -msgctxt "Language" -msgid "Clipper" -msgstr "Clipper" - -#. i18n: tag language attribute name -#: syntax/data/clojure.xml:25 -msgctxt "Language" -msgid "Clojure" -msgstr "Clojure" - -#. i18n: tag language attribute name -#: syntax/data/coffee.xml:4 -msgctxt "Language" -msgid "CoffeeScript" -msgstr "CoffeeScript" - -#. i18n: tag language attribute name -#: syntax/data/coldfusion.xml:3 -msgctxt "Language" -msgid "ColdFusion" -msgstr "ColdFusion" - -#. i18n: tag language attribute name -#: syntax/data/commonlisp.xml:26 -msgctxt "Language" -msgid "Common Lisp" -msgstr "Common Lisp" - -#. i18n: tag language attribute name -#: syntax/data/component-pascal.xml:13 -msgctxt "Language" -msgid "Component-Pascal" -msgstr "Component-Pascal" - -#. i18n: tag language attribute name -#: syntax/data/context.xml:3 -msgctxt "Language" -msgid "ConTeXt" -msgstr "ConTeXt" - -#. i18n: tag language attribute name -#: syntax/data/crk.xml:2 -msgctxt "Language" -msgid "Crack" -msgstr "Crack" - -#. i18n: tag language attribute name -#: syntax/data/cs.xml:2 -msgctxt "Language" -msgid "C#" -msgstr "C#" - -#. i18n: tag language attribute name -#: syntax/data/css.xml:29 -msgctxt "Language" -msgid "CSS" -msgstr "CSS" - -#. i18n: tag language attribute name -#: syntax/data/cubescript.xml:10 -msgctxt "Language" -msgid "CubeScript" -msgstr "CubeScript" - -#. i18n: tag language attribute name -#: syntax/data/cue.xml:3 -msgctxt "Language" -msgid "CUE Sheet" -msgstr "Folla CUE" - -#. i18n: tag language attribute name -#: syntax/data/curry.xml:33 -msgctxt "Language" -msgid "Curry" -msgstr "Curry" - -#. i18n: tag language attribute name -#: syntax/data/d.xml:104 -msgctxt "Language" -msgid "D" -msgstr "D" - -#. i18n: tag language attribute name -#: syntax/data/debianchangelog.xml:3 -msgctxt "Language" -msgid "Debian Changelog" -msgstr "Rexistro de cambios de Debian" - -#. i18n: tag language attribute name -#: syntax/data/debiancontrol.xml:3 -msgctxt "Language" -msgid "Debian Control" -msgstr "Control de Debian" - -#. i18n: tag language attribute name -#: syntax/data/desktop.xml:3 -msgctxt "Language" -msgid ".desktop" -msgstr ".desktop" - -#. i18n: tag language attribute name -#: syntax/data/diff.xml:18 -msgctxt "Language" -msgid "Diff" -msgstr "Diff" - -#. i18n: tag language attribute name -#: syntax/data/djangotemplate.xml:7 -msgctxt "Language" -msgid "Django HTML Template" -msgstr "Modelo HTML de Django" - -#. i18n: tag language attribute name -#: syntax/data/dockerfile.xml:4 -msgctxt "Language" -msgid "Dockerfile" -msgstr "Dockerfile" - -#. i18n: tag language attribute name -#: syntax/data/dosbat.xml:11 -msgctxt "Language" -msgid "MS-DOS Batch" -msgstr "Lotes MS-DOS" - -#. i18n: tag language attribute name -#: syntax/data/dot.xml:4 -msgctxt "Language" -msgid "dot" -msgstr "dot" - -#. i18n: tag language attribute name -#: syntax/data/doxygen.xml:31 -msgctxt "Language" -msgid "Doxygen" -msgstr "Doxygen" - -#. i18n: tag language attribute name -#: syntax/data/doxygenlua.xml:30 -msgctxt "Language" -msgid "DoxygenLua" -msgstr "DoxygenLua" - -#. i18n: tag language attribute name -#: syntax/data/dtd.xml:6 -msgctxt "Language" -msgid "DTD" -msgstr "DTD" - -#. i18n: tag language attribute name -#: syntax/data/e.xml:3 -msgctxt "Language" -msgid "E Language" -msgstr "Linguaxe E" - -#. i18n: tag language attribute name -#: syntax/data/eiffel.xml:13 -msgctxt "Language" -msgid "Eiffel" -msgstr "Eiffel" - -#. i18n: tag language attribute name -#: syntax/data/email.xml:6 -msgctxt "Language" -msgid "Email" -msgstr "Email" - -#. i18n: tag language attribute name -#: syntax/data/erlang.xml:39 -msgctxt "Language" -msgid "Erlang" -msgstr "Erlang" - -#. i18n: tag language attribute name -#: syntax/data/euphoria.xml:32 -msgctxt "Language" -msgid "Euphoria" -msgstr "Euphoria" - -#. i18n: tag language attribute name -#: syntax/data/fasm.xml:16 -msgctxt "Language" -msgid "Intel x86 (FASM)" -msgstr "Intel x86 (FASM)" - -#. i18n: tag language attribute name -#: syntax/data/fastq.xml:3 -msgctxt "Language" -msgid "FASTQ" -msgstr "" - -#. i18n: tag language attribute name -#: syntax/data/ferite.xml:3 -msgctxt "Language" -msgid "ferite" -msgstr "ferite" - -#. i18n: tag language attribute name -#: syntax/data/fgl-4gl.xml:3 -msgctxt "Language" -msgid "4GL" -msgstr "4GL" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/fgl-4gl.xml:3 syntax/data/fgl-per.xml:3 syntax/data/ldif.xml:3 -#: syntax/data/progress.xml:3 syntax/data/sql-mysql.xml:8 -#: syntax/data/sql-oracle.xml:4 syntax/data/sql-postgresql.xml:4 -#: syntax/data/sql.xml:6 -msgctxt "Language Section" -msgid "Database" -msgstr "Bases de datos" - -#. i18n: tag language attribute name -#: syntax/data/fgl-per.xml:3 -msgctxt "Language" -msgid "4GL-PER" -msgstr "4GL-PER" - -#. i18n: tag language attribute name -#: syntax/data/fortran.xml:3 -msgctxt "Language" -msgid "Fortran" -msgstr "Fortran" - -#. i18n: tag language attribute name -#: syntax/data/freebasic.xml:3 -msgctxt "Language" -msgid "FreeBASIC" -msgstr "FreeBASIC" - -#. i18n: tag language attribute name -#: syntax/data/fsharp.xml:12 -msgctxt "Language" -msgid "FSharp" -msgstr "FSharp" - -#. i18n: tag language attribute name -#: syntax/data/fstab.xml:4 -msgctxt "Language" -msgid "fstab" -msgstr "fstab" - -#. i18n: tag language attribute name -#: syntax/data/ftl.xml:3 -msgctxt "Language" -msgid "FTL" -msgstr "FTL" - -#. i18n: tag language attribute name -#: syntax/data/gap.xml:17 -msgctxt "Language" -msgid "GAP" -msgstr "GAP" - -#. i18n: tag language attribute name -#: syntax/data/gcode.xml:28 -msgctxt "Language" -msgid "G-Code" -msgstr "G-Code" - -#. i18n: tag language attribute name -#: syntax/data/gdb.xml:4 -msgctxt "Language" -msgid "GDB Backtrace" -msgstr "Trazado inverso GDB" - -#. i18n: tag language attribute name -#: syntax/data/gdl.xml:3 -msgctxt "Language" -msgid "GDL" -msgstr "GDL" - -#. i18n: tag language attribute name -#: syntax/data/gettext.xml:24 -msgctxt "Language" -msgid "GNU Gettext" -msgstr "Gettext de GNU" - -#. i18n: tag language attribute name -#: syntax/data/git-ignore.xml:3 -msgctxt "Language" -msgid "Git Ignore" -msgstr "Git Ignore" - -#. i18n: tag language attribute name -#: syntax/data/git-rebase.xml:3 -msgctxt "Language" -msgid "Git Rebase" -msgstr "Git Rebase" - -#. i18n: tag language attribute name -#: syntax/data/gitolite.xml:3 -msgctxt "Language" -msgid "Gitolite" -msgstr "Gitolite" - -#. i18n: tag language attribute name -#: syntax/data/glosstex.xml:3 -msgctxt "Language" -msgid "GlossTex" -msgstr "GlossTex" - -#. i18n: tag language attribute name -#: syntax/data/glsl.xml:3 -msgctxt "Language" -msgid "GLSL" -msgstr "GLSL" - -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#. i18n: tag language attribute section -#: syntax/data/glsl.xml:3 syntax/data/ply.xml:3 syntax/data/povray.xml:8 -#: syntax/data/rib.xml:8 syntax/data/stl.xml:3 syntax/data/vrml.xml:3 -#: syntax/data/wavefront-obj.xml:3 -#, fuzzy -#| msgctxt "Language" -#| msgid "D" -msgctxt "Language Section" -msgid "3D" -msgstr "D" - -#. i18n: tag language attribute name -#: syntax/data/gnuassembler.xml:46 -msgctxt "Language" -msgid "GNU Assembler" -msgstr "Ensamblaxe de GNU" - -#. i18n: tag language attribute name -#: syntax/data/gnuplot.xml:3 -msgctxt "Language" -msgid "Gnuplot" -msgstr "Gnuplot" - -#. i18n: tag language attribute name -#: syntax/data/go.xml:29 -msgctxt "Language" -msgid "Go" -msgstr "Go" - -#. i18n: tag language attribute name -#: syntax/data/grammar.xml:6 -msgctxt "Language" -msgid "KDev-PG[-Qt] Grammar" -msgstr "Gramática KDev-PG[-Qt]" - -#. i18n: tag language attribute name -#: syntax/data/groovy.xml:6 -msgctxt "Language" -msgid "Groovy" -msgstr "Groovy" - -#. i18n: tag language attribute name -#: syntax/data/haml.xml:3 -msgctxt "Language" -msgid "Haml" -msgstr "Haml" - -#. i18n: tag language attribute name -#: syntax/data/hamlet.xml:8 -msgctxt "Language" -msgid "Hamlet" -msgstr "Hamlet" - -#. i18n: tag language attribute name -#: syntax/data/haskell.xml:3 -msgctxt "Language" -msgid "Haskell" -msgstr "Haskell" - -#. i18n: tag language attribute name -#: syntax/data/haxe.xml:15 -msgctxt "Language" -msgid "Haxe" -msgstr "Haxe" - -#. i18n: tag language attribute name -#: syntax/data/html.xml:7 -msgctxt "Language" -msgid "HTML" -msgstr "HTML" - -#. i18n: tag language attribute name -#: syntax/data/hunspell-aff.xml:3 -msgctxt "Language" -msgid "Hunspell Affix File" -msgstr "Ficheiro de afixos de Hunspell" - -#. i18n: tag language attribute name -#: syntax/data/hunspell-dat.xml:3 -msgctxt "Language" -msgid "Hunspell Thesaurus File" -msgstr "Ficheiro de tesauro de Hunspell" - -#. i18n: tag language attribute name -#: syntax/data/hunspell-dic.xml:3 -msgctxt "Language" -msgid "Hunspell Dictionary File" -msgstr "Ficheiro de dicionario de Hunspell" - -#. i18n: tag language attribute name -#: syntax/data/idconsole.xml:3 -msgctxt "Language" -msgid "Quake Script" -msgstr "Script de Quake" - -#. i18n: tag language attribute name -#: syntax/data/idl.xml:3 -msgctxt "Language" -msgid "IDL" -msgstr "IDL" - -#. i18n: tag language attribute name -#: syntax/data/ilerpg.xml:48 -msgctxt "Language" -msgid "ILERPG" -msgstr "ILERPG" - -#. i18n: tag language attribute name -#: syntax/data/inform.xml:5 -msgctxt "Language" -msgid "Inform" -msgstr "Inform" - -#. i18n: tag language attribute name -#: syntax/data/ini.xml:3 -msgctxt "Language" -msgid "INI Files" -msgstr "Ficheiros INI" - -#. i18n: tag language attribute name -#: syntax/data/j.xml:63 -msgctxt "Language" -msgid "J" -msgstr "J" - -#. i18n: tag language attribute name -#: syntax/data/jam.xml:24 -msgctxt "Language" -msgid "Jam" -msgstr "Jam" - -#. i18n: tag language attribute name -#: syntax/data/java.xml:3 -msgctxt "Language" -msgid "Java" -msgstr "Java" - -#. i18n: tag language attribute name -#: syntax/data/javadoc.xml:3 -msgctxt "Language" -msgid "Javadoc" -msgstr "Javadoc" - -#. i18n: tag language attribute name -#: syntax/data/javascript.xml:6 -msgctxt "Language" -msgid "JavaScript" -msgstr "JavaScript" - -#. i18n: tag language attribute name -#: syntax/data/jira.xml:31 -msgctxt "Language" -msgid "Jira" -msgstr "Jira" - -#. i18n: tag language attribute name -#: syntax/data/json.xml:15 -msgctxt "Language" -msgid "JSON" -msgstr "JSON" - -#. i18n: tag language attribute name -#: syntax/data/jsp.xml:3 -msgctxt "Language" -msgid "JSP" -msgstr "JSP" - -#. i18n: tag language attribute name -#: syntax/data/julia.xml:32 -msgctxt "Language" -msgid "Julia" -msgstr "Julia" - -#. i18n: tag language attribute name -#: syntax/data/k.xml:3 -msgctxt "Language" -msgid "k" -msgstr "k" - -#. i18n: tag language attribute name -#: syntax/data/kbasic.xml:3 -msgctxt "Language" -msgid "KBasic" -msgstr "KBasic" - -#. i18n: tag language attribute name -#: syntax/data/kconfig.xml:71 -msgctxt "Language" -msgid "Kconfig" -msgstr "Kconfig" - -#. i18n: tag language attribute name -#: syntax/data/kotlin.xml:4 -msgctxt "Language" -msgid "Kotlin" -msgstr "" - -#. i18n: tag language attribute name -#: syntax/data/latex.xml:3 -msgctxt "Language" -msgid "LaTeX" -msgstr "LaTeX" - -#. i18n: tag language attribute name -#: syntax/data/ld.xml:4 -msgctxt "Language" -msgid "GNU Linker Script" -msgstr "Script do enlazador de GNU" - -#. i18n: tag language attribute name -#: syntax/data/ldif.xml:3 -msgctxt "Language" -msgid "LDIF" -msgstr "LDIF" - -#. i18n: tag language attribute name -#: syntax/data/less.xml:3 -msgctxt "Language" -msgid "LESSCSS" -msgstr "LESSCSS" - -#. i18n: tag language attribute name -#: syntax/data/lex.xml:23 -msgctxt "Language" -msgid "Lex/Flex" -msgstr "Lex/Flex" - -#. i18n: tag language attribute name -#: syntax/data/lilypond.xml:57 -msgctxt "Language" -msgid "LilyPond" -msgstr "LilyPond" - -#. i18n: tag language attribute name -#: syntax/data/literate-curry.xml:3 -msgctxt "Language" -msgid "Literate Curry" -msgstr "Literate Curry" - -#. i18n: tag language attribute name -#: syntax/data/literate-haskell.xml:3 -msgctxt "Language" -msgid "Literate Haskell" -msgstr "Literate Haskell" - -#. i18n: tag language attribute name -#: syntax/data/logtalk.xml:4 -msgctxt "Language" -msgid "Logtalk" -msgstr "Logtalk" - -#. i18n: tag language attribute name -#: syntax/data/lpc.xml:19 -msgctxt "Language" -msgid "LPC" -msgstr "LPC" - -#. i18n: tag language attribute name -#: syntax/data/lsl.xml:14 -msgctxt "Language" -msgid "LSL" -msgstr "LSL" - -#. i18n: tag language attribute name -#: syntax/data/lua.xml:38 -msgctxt "Language" -msgid "Lua" -msgstr "Lua" - -#. i18n: tag language attribute name -#: syntax/data/m3u.xml:17 -msgctxt "Language" -msgid "M3U" -msgstr "M3U" - -#. i18n: tag language attribute name -#: syntax/data/m4.xml:41 -msgctxt "Language" -msgid "GNU M4" -msgstr "GNU M4" - -#. i18n: tag language attribute name -#: syntax/data/mab.xml:3 -msgctxt "Language" -msgid "MAB-DB" -msgstr "MAB-DB" - -#. i18n: tag language attribute name -#: syntax/data/magma.xml:3 -msgctxt "Language" -msgid "Magma" -msgstr "" - -#. i18n: tag language attribute name -#: syntax/data/makefile.xml:10 -msgctxt "Language" -msgid "Makefile" -msgstr "Makefile" - -#. i18n: tag language attribute name -#: syntax/data/mako.xml:7 -msgctxt "Language" -msgid "Mako" -msgstr "Mako" - -#. i18n: tag language attribute name -#: syntax/data/mandoc.xml:3 -msgctxt "Language" -msgid "Troff Mandoc" -msgstr "Páxina de manual en Troff" - -#. i18n: tag language attribute name -#: syntax/data/markdown.xml:38 -msgctxt "Language" -msgid "Markdown" -msgstr "Markdown" - -#. i18n: tag language attribute name -#: syntax/data/mason.xml:3 -msgctxt "Language" -msgid "Mason" -msgstr "Mason" - -#. i18n: tag language attribute name -#: syntax/data/mathematica.xml:3 -msgctxt "Language" -msgid "Mathematica" -msgstr "Mathematica" - -#. i18n: tag language attribute name -#: syntax/data/matlab.xml:60 -msgctxt "Language" -msgid "Matlab" -msgstr "Matlab" - -#. i18n: tag language attribute name -#: syntax/data/maxima.xml:24 -msgctxt "Language" -msgid "Maxima" -msgstr "Maxima" - -#. i18n: tag language attribute name -#: syntax/data/mediawiki.xml:9 -msgctxt "Language" -msgid "MediaWiki" -msgstr "MediaWiki" - -#. i18n: tag language attribute name -#: syntax/data/mel.xml:23 -msgctxt "Language" -msgid "MEL" -msgstr "MEL" - -#. i18n: tag language attribute name -#: syntax/data/mergetagtext.xml:28 -msgctxt "Language" -msgid "mergetag text" -msgstr "texto mergetag" - -#. i18n: tag language attribute name -#: syntax/data/meson.xml:3 -msgctxt "Language" -msgid "Meson" -msgstr "Meson" - -#. i18n: tag language attribute name -#: syntax/data/metafont.xml:9 -msgctxt "Language" -msgid "Metapost/Metafont" -msgstr "Metapost/Metafont" - -#. i18n: tag language attribute name -#: syntax/data/mips.xml:3 -msgctxt "Language" -msgid "MIPS Assembler" -msgstr "Ensamblaxe de MIPS" - -#. i18n: tag language attribute name -#: syntax/data/modelica.xml:19 -msgctxt "Language" -msgid "Modelica" -msgstr "Modelica" - -#. i18n: tag language attribute name -#: syntax/data/modelines.xml:10 -msgctxt "Language" -msgid "Modelines" -msgstr "Modelines" - -#. i18n: tag language attribute name -#: syntax/data/modula-2.xml:3 -msgctxt "Language" -msgid "Modula-2" -msgstr "Modula-2" - -#. i18n: tag language attribute name -#: syntax/data/monobasic.xml:13 -msgctxt "Language" -msgid "MonoBasic" -msgstr "MonoBasic" - -#. i18n: tag language attribute name -#: syntax/data/mup.xml:3 -msgctxt "Language" -msgid "Music Publisher" -msgstr "Music Publisher" - -#. i18n: tag language attribute name -#: syntax/data/nagios.xml:3 -msgctxt "Language" -msgid "Nagios" -msgstr "Nagios" - -#. i18n: tag language attribute name -#: syntax/data/nasm.xml:43 -msgctxt "Language" -msgid "Intel x86 (NASM)" -msgstr "Intel x86 (NASM)" - -#. i18n: tag language attribute name -#: syntax/data/nemerle.xml:4 -msgctxt "Language" -msgid "Nemerle" -msgstr "Nemerle" - -#. i18n: tag language attribute name -#: syntax/data/nesc.xml:3 -msgctxt "Language" -msgid "nesC" -msgstr "nesC" - -#. i18n: tag language attribute name -#: syntax/data/noweb.xml:3 -msgctxt "Language" -msgid "noweb" -msgstr "noweb" - -#. i18n: tag language attribute name -#: syntax/data/objectivec.xml:3 -msgctxt "Language" -msgid "Objective-C" -msgstr "Objective-C" - -#. i18n: tag language attribute name -#: syntax/data/objectivecpp.xml:3 -msgctxt "Language" -msgid "Objective-C++" -msgstr "Objective-C++" - -#. i18n: tag language attribute name -#: syntax/data/ocaml.xml:16 -msgctxt "Language" -msgid "Objective Caml" -msgstr "Objective Caml" - -#. i18n: tag language attribute name -#: syntax/data/ocamllex.xml:10 -msgctxt "Language" -msgid "Objective Caml Ocamllex" -msgstr "Objective Caml Ocamllex" - -#. i18n: tag language attribute name -#: syntax/data/ocamlyacc.xml:13 -msgctxt "Language" -msgid "Objective Caml Ocamlyacc" -msgstr "Objective Caml Ocamlyacc" - -#. i18n: tag language attribute name -#: syntax/data/octave.xml:18 -msgctxt "Language" -msgid "Octave" -msgstr "Octave" - -#. i18n: tag language attribute name -#: syntax/data/oors.xml:3 -msgctxt "Language" -msgid "OORS" -msgstr "OORS" - -#. i18n: tag language attribute name -#: syntax/data/opal.xml:3 -msgctxt "Language" -msgid "OPAL" -msgstr "OPAL" - -#. i18n: tag language attribute name -#: syntax/data/opencl.xml:3 -msgctxt "Language" -msgid "OpenCL" -msgstr "OpenCL" - -#. i18n: tag language attribute name -#: syntax/data/pango.xml:3 -msgctxt "Language" -msgid "Pango" -msgstr "Pango" - -#. i18n: tag language attribute name -#: syntax/data/pascal.xml:3 -msgctxt "Language" -msgid "Pascal" -msgstr "Pascal" - -#. i18n: tag language attribute name -#: syntax/data/perl.xml:42 -msgctxt "Language" -msgid "Perl" -msgstr "Perl" - -#. i18n: tag language attribute name -#: syntax/data/php.xml:73 -msgctxt "Language" -msgid "PHP/PHP" -msgstr "PHP/PHP" - -#. i18n: tag language attribute name -#: syntax/data/picsrc.xml:11 -msgctxt "Language" -msgid "PicAsm" -msgstr "PicAsm" - -#. i18n: tag language attribute name -#: syntax/data/pig.xml:4 -msgctxt "Language" -msgid "Pig" -msgstr "Pig" - -#. i18n: tag language attribute name -#: syntax/data/pike.xml:4 -msgctxt "Language" -msgid "Pike" -msgstr "Pike" - -#. i18n: tag language attribute name -#: syntax/data/pli.xml:3 -msgctxt "Language" -msgid "PL/I" -msgstr "PL/I" - -#. i18n: tag language attribute name -#: syntax/data/ply.xml:3 -msgctxt "Language" -msgid "PLY" -msgstr "" - -#. i18n: tag language attribute name -#: syntax/data/postscript.xml:3 -msgctxt "Language" -msgid "PostScript" -msgstr "PostScript" - -#. i18n: tag language attribute name -#: syntax/data/povray.xml:8 -msgctxt "Language" -msgid "POV-Ray" -msgstr "POV-Ray" - -#. i18n: tag language attribute name -#: syntax/data/praat.xml:24 -msgctxt "Language" -msgid "Praat" -msgstr "" - -#. i18n: tag language attribute name -#: syntax/data/progress.xml:3 -msgctxt "Language" -msgid "progress" -msgstr "progress" - -#. i18n: tag language attribute name -#: syntax/data/protobuf.xml:3 -msgctxt "Language" -msgid "Protobuf" -msgstr "Protobuf" - -#. i18n: tag language attribute name -#: syntax/data/puppet.xml:30 -msgctxt "Language" -msgid "Puppet" -msgstr "Puppet" - -#. i18n: tag language attribute name -#: syntax/data/purebasic.xml:2 -msgctxt "Language" -msgid "PureBasic" -msgstr "PureBasic" - -#. i18n: tag language attribute name -#: syntax/data/python.xml:17 -msgctxt "Language" -msgid "Python" -msgstr "Python" - -#. i18n: tag language attribute name -#: syntax/data/q.xml:3 -msgctxt "Language" -msgid "q" -msgstr "q" - -#. i18n: tag language attribute name -#: syntax/data/qmake.xml:3 -msgctxt "Language" -msgid "QMake" -msgstr "QMake" - -#. i18n: tag language attribute name -#: syntax/data/qml.xml:4 -msgctxt "Language" -msgid "QML" -msgstr "QML" - -#. i18n: tag language attribute name -#: syntax/data/r.xml:11 -msgctxt "Language" -msgid "R Script" -msgstr "Script de R" - -#. i18n: tag language attribute name -#: syntax/data/rapidq.xml:3 -msgctxt "Language" -msgid "RapidQ" -msgstr "RapidQ" - -#. i18n: tag language attribute name -#: syntax/data/relaxngcompact.xml:3 -msgctxt "Language" -msgid "RelaxNG-Compact" -msgstr "RelaxNG-Compact" - -#. i18n: tag language attribute name -#: syntax/data/replicode.xml:14 -msgctxt "Language" -msgid "Replicode" -msgstr "Replicode" - -#. i18n: tag language attribute name -#: syntax/data/rest.xml:14 -msgctxt "Language" -msgid "reStructuredText" -msgstr "reStructuredText" - -#. i18n: tag language attribute name -#: syntax/data/rexx.xml:3 -msgctxt "Language" -msgid "REXX" -msgstr "REXX" - -#. i18n: tag language attribute name -#: syntax/data/rhtml.xml:47 -msgctxt "Language" -msgid "Ruby/Rails/RHTML" -msgstr "Ruby/Rails/RHTML" - -#. i18n: tag language attribute name -#: syntax/data/rib.xml:8 -msgctxt "Language" -msgid "RenderMan RIB" -msgstr "RenderMan RIB" - -#. i18n: tag language attribute name -#: syntax/data/rmarkdown.xml:14 -msgctxt "Language" -msgid "R Markdown" -msgstr "Markdown de R" - -#. i18n: tag language attribute name -#: syntax/data/roff.xml:10 -msgctxt "Language" -msgid "Roff" -msgstr "Roff" - -#. i18n: tag language attribute name -#: syntax/data/rpmspec.xml:11 -msgctxt "Language" -msgid "RPM Spec" -msgstr "Especificación de RPM" - -#. i18n: tag language attribute name -#: syntax/data/rsiidl.xml:3 -msgctxt "Language" -msgid "RSI IDL" -msgstr "RSI IDL" - -#. i18n: tag language attribute name -#: syntax/data/rtf.xml:3 -msgctxt "Language" -msgid "Rich Text Format" -msgstr "RTF" - -#. i18n: tag language attribute name -#: syntax/data/ruby.xml:33 -msgctxt "Language" -msgid "Ruby" -msgstr "Ruby" - -#. i18n: tag language attribute name -#: syntax/data/rust.xml:37 -msgctxt "Language" -msgid "Rust" -msgstr "Rust" - -#. i18n: tag language attribute name -#: syntax/data/sather.xml:3 -msgctxt "Language" -msgid "Sather" -msgstr "Sather" - -#. i18n: tag language attribute name -#: syntax/data/scala.xml:3 -msgctxt "Language" -msgid "Scala" -msgstr "Scala" - -#. i18n: tag language attribute name -#: syntax/data/scheme.xml:43 -msgctxt "Language" -msgid "Scheme" -msgstr "Scheme" - -#. i18n: tag language attribute name -#: syntax/data/sci.xml:3 -msgctxt "Language" -msgid "scilab" -msgstr "scilab" - -#. i18n: tag language attribute name -#: syntax/data/scss.xml:31 -msgctxt "Language" -msgid "SCSS" -msgstr "SCSS" - -#. i18n: tag language attribute name -#: syntax/data/sed.xml:3 -msgctxt "Language" -msgid "sed" -msgstr "sed" - -#. i18n: tag language attribute name -#: syntax/data/sgml.xml:3 -msgctxt "Language" -msgid "SGML" -msgstr "SGML" - -#. i18n: tag language attribute name -#: syntax/data/sieve.xml:4 -msgctxt "Language" -msgid "Sieve" -msgstr "Sieve" - -#. i18n: tag language attribute name -#: syntax/data/sisu.xml:3 -msgctxt "Language" -msgid "SiSU" -msgstr "SiSU" - -#. i18n: tag language attribute name -#: syntax/data/sml.xml:3 -msgctxt "Language" -msgid "SML" -msgstr "SML" - -#. i18n: tag language attribute name -#: syntax/data/spice.xml:4 -msgctxt "Language" -msgid "Spice" -msgstr "Spice" - -#. i18n: tag language attribute name -#: syntax/data/sql-mysql.xml:8 -msgctxt "Language" -msgid "SQL (MySQL)" -msgstr "SQL (MySQL)" - -#. i18n: tag language attribute name -#: syntax/data/sql-oracle.xml:4 -msgctxt "Language" -msgid "SQL (Oracle)" -msgstr "SQL (Oracle)" - -#. i18n: tag language attribute name -#: syntax/data/sql-postgresql.xml:4 -msgctxt "Language" -msgid "SQL (PostgreSQL)" -msgstr "SQL (PostgreSQL)" - -#. i18n: tag language attribute name -#: syntax/data/sql.xml:6 -msgctxt "Language" -msgid "SQL" -msgstr "SQL" - -#. i18n: tag language attribute name -#: syntax/data/stata.xml:3 -msgctxt "Language" -msgid "Stata" -msgstr "Stata" - -#. i18n: tag language attribute name -#: syntax/data/stl.xml:3 -#, fuzzy -#| msgctxt "Language" -#| msgid "FTL" -msgctxt "Language" -msgid "STL" -msgstr "FTL" - -#. i18n: tag language attribute name -#: syntax/data/systemc.xml:10 -msgctxt "Language" -msgid "SystemC" -msgstr "SystemC" - -#. i18n: tag language attribute name -#: syntax/data/systemverilog.xml:42 -msgctxt "Language" -msgid "SystemVerilog" -msgstr "SystemVerilog" - -#. i18n: tag language attribute name -#: syntax/data/tads3.xml:5 -msgctxt "Language" -msgid "TADS 3" -msgstr "TADS 3" - -#. i18n: tag language attribute name -#: syntax/data/taskjuggler.xml:14 -msgctxt "Language" -msgid "TaskJuggler" -msgstr "TaskJuggler" - -#. i18n: tag language attribute name -#: syntax/data/tcl.xml:31 -msgctxt "Language" -msgid "Tcl/Tk" -msgstr "Tcl/Tk" - -#. i18n: tag language attribute name -#: syntax/data/tcsh.xml:11 -msgctxt "Language" -msgid "Tcsh" -msgstr "Tcsh" - -#. i18n: tag language attribute name -#: syntax/data/texinfo.xml:3 -msgctxt "Language" -msgid "Texinfo" -msgstr "Texinfo" - -#. i18n: tag language attribute name -#: syntax/data/textile.xml:18 -msgctxt "Language" -msgid "Textile" -msgstr "Textile" - -#. i18n: tag language attribute name -#: syntax/data/tibasic.xml:3 -msgctxt "Language" -msgid "TI Basic" -msgstr "TI Basic" - -#. i18n: tag language attribute name -#: syntax/data/toml.xml:14 -msgctxt "Language" -msgid "TOML" -msgstr "TOML" - -#. i18n: tag language attribute name -#: syntax/data/txt2tags.xml:6 -msgctxt "Language" -msgid "txt2tags" -msgstr "txt2tags" - -#. i18n: tag language attribute name -#: syntax/data/uscript.xml:3 -msgctxt "Language" -msgid "UnrealScript" -msgstr "UnrealScript" - -#. i18n: tag language attribute name -#: syntax/data/vala.xml:25 -msgctxt "Language" -msgid "Vala" -msgstr "Vala" - -#. i18n: tag language attribute name -#: syntax/data/valgrind-suppression.xml:3 -msgctxt "Language" -msgid "Valgrind Suppression" -msgstr "Valgrind Suppression" - -#. i18n: tag language attribute name -#: syntax/data/varnish.xml:3 -msgctxt "Language" -msgid "Varnish Configuration Language" -msgstr "Linguaxe de configuración de Varnish" - -#. i18n: tag language attribute name -#: syntax/data/varnish4.xml:3 -msgctxt "Language" -msgid "Varnish 4 Configuration Language" -msgstr "Linguaxe de configuración de Varnish 4" - -#. i18n: tag language attribute name -#: syntax/data/varnishcc.xml:3 -msgctxt "Language" -msgid "Varnish 3 module spec file" -msgstr "Ficheiro de especificación de módulos de Varnish 3" - -#. i18n: tag language attribute name -#: syntax/data/varnishcc4.xml:3 -msgctxt "Language" -msgid "Varnish 4 module spec file" -msgstr "Ficheiro de especificación de módulos de Varnish 4" - -#. i18n: tag language attribute name -#: syntax/data/varnishtest.xml:3 -msgctxt "Language" -msgid "Varnish Test Case language" -msgstr "Linguaxe da casos de proba de Varnish" - -#. i18n: tag language attribute name -#: syntax/data/varnishtest4.xml:3 -msgctxt "Language" -msgid "Varnish 4 Test Case language" -msgstr "Linguaxe da casos de proba de Varnish 4" - -#. i18n: tag language attribute name -#: syntax/data/vcard.xml:5 -msgctxt "Language" -msgid "vCard, vCalendar, iCalendar" -msgstr "vCard, vCalendar, iCalendar" - -#. i18n: tag language attribute name -#: syntax/data/velocity.xml:3 -msgctxt "Language" -msgid "Velocity" -msgstr "Velocity" - -#. i18n: tag language attribute name -#: syntax/data/vera.xml:42 -msgctxt "Language" -msgid "Vera" -msgstr "Vera" - -#. i18n: tag language attribute name -#: syntax/data/verilog.xml:3 -msgctxt "Language" -msgid "Verilog" -msgstr "Verilog" - -#. i18n: tag language attribute name -#: syntax/data/vhdl.xml:11 -msgctxt "Language" -msgid "VHDL" -msgstr "VHDL" - -#. i18n: tag language attribute name -#: syntax/data/vrml.xml:3 -msgctxt "Language" -msgid "VRML" -msgstr "VRML" - -#. i18n: tag language attribute name -#: syntax/data/wavefront-obj.xml:3 -msgctxt "Language" -msgid "Wavefront OBJ" -msgstr "" - -#. i18n: tag language attribute name -#: syntax/data/winehq.xml:3 -msgctxt "Language" -msgid "WINE Config" -msgstr "Configuración de WINE" - -#. i18n: tag language attribute name -#: syntax/data/wml.xml:57 -msgctxt "Language" -msgid "Wesnoth Markup Language" -msgstr "Linguaxe de etiquetas de Wesnoth" - -#. i18n: tag language attribute name -#: syntax/data/xharbour.xml:3 -msgctxt "Language" -msgid "xHarbour" -msgstr "xHarbour" - -#. i18n: tag language attribute name -#: syntax/data/xml.xml:9 -msgctxt "Language" -msgid "XML" -msgstr "XML" - -#. i18n: tag language attribute name -#: syntax/data/xmldebug.xml:3 -msgctxt "Language" -msgid "XML (Debug)" -msgstr "XML (Depuración)" - -#. i18n: tag language attribute name -#: syntax/data/xonotic-console.xml:3 -msgctxt "Language" -msgid "Xonotic Script" -msgstr "Script de Xonotic" - -#. i18n: tag language attribute name -#: syntax/data/xorg.xml:3 -msgctxt "Language" -msgid "x.org Configuration" -msgstr "Configuración de x.org" - -#. i18n: tag language attribute name -#: syntax/data/xslt.xml:55 -msgctxt "Language" -msgid "xslt" -msgstr "xslt" - -#. i18n: tag language attribute name -#: syntax/data/xul.xml:7 -msgctxt "Language" -msgid "XUL" -msgstr "XUL" - -#. i18n: tag language attribute name -#: syntax/data/yacas.xml:3 -msgctxt "Language" -msgid "yacas" -msgstr "yacas" - -#. i18n: tag language attribute name -#: syntax/data/yacc.xml:28 -msgctxt "Language" -msgid "Yacc/Bison" -msgstr "Yacc/Bison" - -#. i18n: tag language attribute name -#: syntax/data/yaml.xml:4 -msgctxt "Language" -msgid "YAML" -msgstr "YAML" - -#. i18n: tag language attribute name -#: syntax/data/zonnon.xml:3 -msgctxt "Language" -msgid "Zonnon" -msgstr "Zonnon" - -#. i18n: tag language attribute name -#: syntax/data/zsh.xml:11 -msgctxt "Language" -msgid "Zsh" -msgstr "Zsh" +msgstr "Descartar" #: syntax/katehighlight.cpp:82 +#, kde-format msgctxt "Syntax highlighting" msgid "None" msgstr "Ningún" #: syntax/katehighlight.cpp:799 +#, kde-format msgid "Normal Text" msgstr "Texto normal" @@ -6094,14 +4884,14 @@ "%1: Sintaxe obsoleta. O atributo (%2) non está asociado por ningún " "nome simbólico.
    " -#: syntax/katehighlight.cpp:1524 +#: syntax/katehighlight.cpp:1522 #, kde-format msgid "%1: Deprecated syntax. Context %2 has no symbolic name
    " msgstr "" "%1: Sintaxe obsoleta. O contexto %2 non ten ningún nome simbólico
    " -#: syntax/katehighlight.cpp:1607 +#: syntax/katehighlight.cpp:1605 #, kde-format msgid "" "%1:Deprecated syntax. Context %2 not addressed by a symbolic name" @@ -6109,7 +4899,8 @@ "%1:Sintaxe obsoleta. O contexto %2 non está asociado a ningún nome " "simbólico" -#: syntax/katehighlight.cpp:1751 +#: syntax/katehighlight.cpp:1749 +#, kde-format msgid "" "There were warning(s) and/or error(s) while parsing the syntax highlighting " "configuration." @@ -6117,11 +4908,13 @@ "Apareceron aviso(s) e/ou erro(s) ao procesar a configuración do realzado da " "sintaxe." -#: syntax/katehighlight.cpp:1753 +#: syntax/katehighlight.cpp:1751 +#, kde-format msgid "Kate Syntax Highlighting Parser" msgstr "Procesador do realzado de sintaxe de Kate" -#: syntax/katehighlight.cpp:1919 +#: syntax/katehighlight.cpp:1917 +#, kde-format msgid "" "Since there has been an error parsing the highlighting description, this " "highlighting will be disabled" @@ -6129,7 +4922,7 @@ "Xa que apareceron erros ao procesar a descrición do realzado, este non " "estará dispoñíbel" -#: syntax/katehighlight.cpp:2143 +#: syntax/katehighlight.cpp:2141 #, kde-format msgid "" "%1: Specified multiline comment region (%2) could not be resolved
    The error %4
    has been detected in the file %1 at %2/%3" msgstr "Detectouse o erro %4
    no ficheiro %1 en %2/%3
    " -#: syntax/katesyntaxmanager.cpp:306 +#: syntax/katesyntaxmanager.cpp:168 +#, kde-format msgctxt "@item:intable Text context" msgid "Normal" msgstr "Normal" -#: syntax/katesyntaxmanager.cpp:307 +#: syntax/katesyntaxmanager.cpp:169 +#, kde-format msgctxt "@item:intable Text context" msgid "Keyword" msgstr "Palabra chave" -#: syntax/katesyntaxmanager.cpp:308 +#: syntax/katesyntaxmanager.cpp:170 +#, kde-format msgctxt "@item:intable Text context" msgid "Function" msgstr "Función" -#: syntax/katesyntaxmanager.cpp:309 +#: syntax/katesyntaxmanager.cpp:171 +#, kde-format msgctxt "@item:intable Text context" msgid "Variable" msgstr "Variábel" -#: syntax/katesyntaxmanager.cpp:310 +#: syntax/katesyntaxmanager.cpp:172 +#, kde-format msgctxt "@item:intable Text context" msgid "Control Flow" msgstr "Fluxo de control" -#: syntax/katesyntaxmanager.cpp:311 +#: syntax/katesyntaxmanager.cpp:173 +#, kde-format msgctxt "@item:intable Text context" msgid "Operator" msgstr "Operador" -#: syntax/katesyntaxmanager.cpp:312 +#: syntax/katesyntaxmanager.cpp:174 +#, kde-format msgctxt "@item:intable Text context" msgid "Built-in" msgstr "Incorporado" -#: syntax/katesyntaxmanager.cpp:313 +#: syntax/katesyntaxmanager.cpp:175 +#, kde-format msgctxt "@item:intable Text context" msgid "Extension" msgstr "Extensión" -#: syntax/katesyntaxmanager.cpp:314 +#: syntax/katesyntaxmanager.cpp:176 +#, kde-format msgctxt "@item:intable Text context" msgid "Preprocessor" msgstr "Preprocesador" -#: syntax/katesyntaxmanager.cpp:315 +#: syntax/katesyntaxmanager.cpp:177 +#, kde-format msgctxt "@item:intable Text context" msgid "Attribute" msgstr "Atributo" -#: syntax/katesyntaxmanager.cpp:317 +#: syntax/katesyntaxmanager.cpp:179 +#, kde-format msgctxt "@item:intable Text context" msgid "Character" msgstr "Carácter" -#: syntax/katesyntaxmanager.cpp:318 +#: syntax/katesyntaxmanager.cpp:180 +#, kde-format msgctxt "@item:intable Text context" msgid "Special Character" msgstr "Carácter especial" -#: syntax/katesyntaxmanager.cpp:319 +#: syntax/katesyntaxmanager.cpp:181 +#, kde-format msgctxt "@item:intable Text context" msgid "String" msgstr "Cadea" -#: syntax/katesyntaxmanager.cpp:320 +#: syntax/katesyntaxmanager.cpp:182 +#, kde-format msgctxt "@item:intable Text context" msgid "Verbatim String" msgstr "Cadena literal" -#: syntax/katesyntaxmanager.cpp:321 +#: syntax/katesyntaxmanager.cpp:183 +#, kde-format msgctxt "@item:intable Text context" msgid "Special String" msgstr "Cadena especial" -#: syntax/katesyntaxmanager.cpp:322 +#: syntax/katesyntaxmanager.cpp:184 +#, kde-format msgctxt "@item:intable Text context" msgid "Imports, Modules, Includes" msgstr "Inclusións" -#: syntax/katesyntaxmanager.cpp:324 +#: syntax/katesyntaxmanager.cpp:186 +#, kde-format msgctxt "@item:intable Text context" msgid "Data Type" msgstr "Tipo de dato" -#: syntax/katesyntaxmanager.cpp:325 +#: syntax/katesyntaxmanager.cpp:187 +#, kde-format msgctxt "@item:intable Text context" msgid "Decimal/Value" msgstr "Valor/Decimal" -#: syntax/katesyntaxmanager.cpp:326 +#: syntax/katesyntaxmanager.cpp:188 +#, kde-format msgctxt "@item:intable Text context" msgid "Base-N Integer" msgstr "Enteiro en base-N" -#: syntax/katesyntaxmanager.cpp:327 +#: syntax/katesyntaxmanager.cpp:189 +#, kde-format msgctxt "@item:intable Text context" msgid "Floating Point" -msgstr "Vírgula flutuante" +msgstr "Coma flutuante" -#: syntax/katesyntaxmanager.cpp:328 +#: syntax/katesyntaxmanager.cpp:190 +#, kde-format msgctxt "@item:intable Text context" msgid "Constant" msgstr "Constante" -#: syntax/katesyntaxmanager.cpp:330 +#: syntax/katesyntaxmanager.cpp:192 +#, kde-format msgctxt "@item:intable Text context" msgid "Comment" msgstr "Comentario" -#: syntax/katesyntaxmanager.cpp:331 +#: syntax/katesyntaxmanager.cpp:193 +#, kde-format msgctxt "@item:intable Text context" msgid "Documentation" msgstr "Documentación" -#: syntax/katesyntaxmanager.cpp:332 +#: syntax/katesyntaxmanager.cpp:194 +#, kde-format msgctxt "@item:intable Text context" msgid "Annotation" msgstr "Anotación" -#: syntax/katesyntaxmanager.cpp:333 +#: syntax/katesyntaxmanager.cpp:195 +#, kde-format msgctxt "@item:intable Text context" msgid "Comment Variable" msgstr "Variábel de comentario" -#: syntax/katesyntaxmanager.cpp:335 +#: syntax/katesyntaxmanager.cpp:197 +#, kde-format msgctxt "@item:intable Text context" msgid "Region Marker" msgstr "Marca de rexión" -#: syntax/katesyntaxmanager.cpp:336 +#: syntax/katesyntaxmanager.cpp:198 +#, kde-format msgctxt "@item:intable Text context" msgid "Information" msgstr "Información" -#: syntax/katesyntaxmanager.cpp:337 +#: syntax/katesyntaxmanager.cpp:199 +#, kde-format msgctxt "@item:intable Text context" msgid "Warning" msgstr "Aviso" -#: syntax/katesyntaxmanager.cpp:338 +#: syntax/katesyntaxmanager.cpp:200 +#, kde-format msgctxt "@item:intable Text context" msgid "Alert" msgstr "Alerta" -#: syntax/katesyntaxmanager.cpp:340 +#: syntax/katesyntaxmanager.cpp:202 +#, kde-format msgctxt "@item:intable Text context" msgid "Others" msgstr "Outros" -#: syntax/katesyntaxmanager.cpp:342 +#: syntax/katesyntaxmanager.cpp:204 +#, kde-format msgctxt "@item:intable Text context" msgid "Error" msgstr "Erro" #: utils/kateautoindent.cpp:94 +#, kde-format msgctxt "Autoindent mode" msgid "None" msgstr "Ningún" #: utils/kateautoindent.cpp:98 +#, kde-format msgctxt "Autoindent mode" msgid "Normal" msgstr "Normal" #: utils/katebookmarks.cpp:62 +#, kde-format msgid "Set &Bookmark" msgstr "&Engadir un marcador" #: utils/katebookmarks.cpp:66 +#, kde-format msgid "If a line has no bookmark then add one, otherwise remove it." msgstr "Se unha liña non ten marcador, engádello; se o ten, elimínallo." #: utils/katebookmarks.cpp:69 +#, kde-format msgid "Clear &All Bookmarks" msgstr "Eliminar &todos os marcadores" #: utils/katebookmarks.cpp:71 +#, kde-format msgid "Remove all bookmarks of the current document." msgstr "Elimina todos os marcadores deste documento." #: utils/katebookmarks.cpp:74 utils/katebookmarks.cpp:245 +#, kde-format msgid "Next Bookmark" msgstr "Marcador seguinte" #: utils/katebookmarks.cpp:78 +#, kde-format msgid "Go to the next bookmark." msgstr "Vai ao seguinte marcador." #: utils/katebookmarks.cpp:81 utils/katebookmarks.cpp:246 +#, kde-format msgid "Previous Bookmark" msgstr "Marcador anterior" #: utils/katebookmarks.cpp:85 +#, kde-format msgid "Go to the previous bookmark." msgstr "Vai ao marcador anterior." #: utils/katebookmarks.cpp:88 +#, kde-format msgid "&Bookmarks" msgstr "&Marcadores" @@ -6361,16 +5196,19 @@ msgstr "&Anterior: %1 - «%2»" #: utils/katecmds.cpp:65 +#, kde-format msgid "

    indent

    Indents the selected lines or the current line

    " msgstr "

    sangrar

    Sangra as liñas escollidas ou a liña actual

    " #: utils/katecmds.cpp:69 +#, kde-format msgid "

    unindent

    Unindents the selected lines or current line.

    " msgstr "" "

    quitar sangrado

    Quita sangrado das liñas escollidas ou da liña " "actual.

    " #: utils/katecmds.cpp:73 +#, kde-format msgid "" "

    cleanindent

    Cleans up the indentation of the selected lines or " "current line according to the indentation settings in the document.

    " @@ -6379,6 +5217,7 @@ "liña actual, segundo a configuración do sangrado no documento.

    " #: utils/katecmds.cpp:77 +#, kde-format msgid "" "

    comment

    Inserts comment markers to make the selection or selected " "lines or current line a comment according to the text format as defined by " @@ -6389,6 +5228,7 @@ "realzado de sintaxe do documento.

    " #: utils/katecmds.cpp:81 +#, kde-format msgid "" "

    uncomment

    Removes comment markers from the selection or selected " "lines or current line according to the text format as defined by the syntax " @@ -6399,6 +5239,7 @@ "de sintaxe do documento.

    " #: utils/katecmds.cpp:85 +#, kde-format msgid "" "

    goto line number

    This command navigates to the specified " "line number.

    " @@ -6407,6 +5248,7 @@ "especificado.

    " #: utils/katecmds.cpp:89 +#, kde-format msgid "" "

    set-indent-pasted-text enable

    If enabled, indentation of " "text pasted from the clipboard is adjusted using the current indenter." #: utils/katecmds.cpp:95 +#, kde-format msgid "Deletes the current line." msgstr "Elimina a liña actual." #: utils/katecmds.cpp:98 +#, kde-format msgid "" "

    set-tab-width width

    Sets the tab width to the number " "width

    " @@ -6431,6 +5275,7 @@ "valor largura

    " #: utils/katecmds.cpp:102 +#, kde-format msgid "" "

    set-replace-tab enable

    If enabled, tabs are replaced with " "spaces as you type.

    Possible true values: 1 on true
    possible false " @@ -6442,6 +5287,7 @@ "off false

    " #: utils/katecmds.cpp:108 +#, kde-format msgid "" "

    set-show-tabs enable

    If enabled, TAB characters and trailing " "whitespace will be visualized by a small dot.

    Possible true values: 1 " @@ -6453,6 +5299,7 @@ "desactivar son: 0 off false

    " #: utils/katecmds.cpp:114 +#, kde-format msgid "" "

    set-remove-trailing-spaces mode

    Removes the trailing spaces " "in the document depending on the mode.

    Possible values:" @@ -6468,6 +5315,7 @@ "ul>

    " #: utils/katecmds.cpp:124 +#, kde-format msgid "" "

    set-indent-width width

    Sets the indentation width to the " "number width. Used only if you are indenting with spaces.

    " @@ -6476,6 +5324,7 @@ "valor largura. Só se usa se está a sangrar con espazos.

    " #: utils/katecmds.cpp:128 +#, kde-format msgid "" "

    set-indent-mode mode

    The mode parameter is a value as seen " "in the Tools - Indentation menu

    " @@ -6484,6 +5333,7 @@ "mostran no menú Utilidades - Sangrado

    " #: utils/katecmds.cpp:132 +#, kde-format msgid "" "

    set-auto-indent enable

    Enable or disable autoindentation.

    possible true values: 1 on true
    possible false values: 0 off false " #: utils/katecmds.cpp:138 +#, kde-format msgid "" "

    set-line-numbers enable

    Sets the visibility of the line " "numbers pane.

    possible true values: 1 on true
    possible false " @@ -6504,6 +5355,7 @@ "valores para desactivalo son: 0 off false

    " #: utils/katecmds.cpp:144 +#, kde-format msgid "" "

    set-folding-markers enable

    Sets the visibility of the " "folding markers pane.

    possible true values: 1 on true
    possible " @@ -6514,6 +5366,7 @@ "true
    Os valores para desactivalo son: 0 off false

    " #: utils/katecmds.cpp:150 +#, kde-format msgid "" "

    set-icon-border enable

    Sets the visibility of the icon " "border.

    possible true values: 1 on true
    possible false values: 0 " @@ -6524,6 +5377,7 @@ "desactivalo son: 0 off false

    " #: utils/katecmds.cpp:156 +#, kde-format msgid "" "

    set-word-wrap enable

    Enables dynamic word wrap according to " "enable

    possible true values: 1 on true
    possible false " @@ -6534,6 +5388,7 @@ "true
    Os valores para desactivalo son: 0 off false

    " #: utils/katecmds.cpp:162 +#, kde-format msgid "" "

    set-word-wrap-column width

    Sets the line width for hard " "wrapping to width. This is used if you are having your text wrapped " @@ -6544,6 +5399,7 @@ "dividir automaticamente as liñas.

    " #: utils/katecmds.cpp:166 +#, kde-format msgid "" "

    set-replace-tabs-save enable

    When enabled, tabs will be " "replaced with whitespace whenever the document is saved.

    possible " @@ -6555,6 +5411,7 @@ "desactivalo son: 0 off false

    " #: utils/katecmds.cpp:172 +#, kde-format msgid "" "

    set-highlight highlight

    Sets the syntax highlighting system " "for the document. The argument must be a valid highlight name, as seen in " @@ -6567,12 +5424,14 @@ "completado automático do argumento.

    " #: utils/katecmds.cpp:176 +#, kde-format msgid "

    set-mode mode

    Sets the mode as seen in Tools - Mode

    " msgstr "" "

    set-mode modo

    Estabelece o modo para un valor como os de " "Utilidades → Modo

    " #: utils/katecmds.cpp:180 +#, kde-format msgid "" "

    set-show-indent enable

    If enabled, indentation will be " "visualized by a vertical dotted line.

    possible true values: 1 on " @@ -6583,6 +5442,7 @@ "son: 1 on true
    Os valores para desactivalo son: 0 off false

    " #: utils/katecmds.cpp:186 +#, kde-format msgid "

    Open the Print dialog to print the current document.

    " msgstr "

    Abre o diálogo de impresión para imprimir o documento actual.

    " @@ -6607,10 +5467,12 @@ msgstr "Non foi posíbel converter o argumento «%1» en enteiro." #: utils/katecmds.cpp:340 utils/katecmds.cpp:345 +#, kde-format msgid "Width must be at least 1." msgstr "O ancho debe ser como mínimo 1." #: utils/katecmds.cpp:350 +#, kde-format msgid "Column must be at least 1." msgstr "A columna debe ser como mínimo 1." @@ -6625,6 +5487,7 @@ msgstr "Argumento incorrecto «%1». Uso: %2 on|off|1|0|true|false" #: utils/katecmds.cpp:418 +#, kde-format msgid "" "Usage: set-remove-trailing-spaces 0|-|none or 1|+|mod|modified or 2|*|all" msgstr "" @@ -6636,6 +5499,7 @@ msgstr "Orde «%1» descoñecida" #: utils/katecmds.cpp:486 +#, kde-format msgid "" "

    char identifier

    This command allows you to insert literal " "characters by their numerical identifier, in decimal, octal or hexadecimal " @@ -6648,6 +5512,7 @@ "p>" #: utils/katecmds.cpp:548 +#, kde-format msgid "" "

    date or date format

    Inserts a date/time string as defined by " "the specified format, or the format yyyy-MM-dd hh:mm:ss if none is specified." @@ -6699,303 +5564,379 @@ "ou «pm».

    " #: utils/kateglobal.cpp:89 +#, kde-format msgid "Kate Part" msgstr "Compoñente Kate" #: utils/kateglobal.cpp:90 +#, kde-format msgid "Embeddable editor component" msgstr "Compoñente integrábel de edición de textos" #: utils/kateglobal.cpp:91 -msgid "(c) 2000-2016 The Kate Authors" +#, fuzzy, kde-format +#| msgid "(c) 2000-2016 The Kate Authors" +msgid "(c) 2000-2017 The Kate Authors" msgstr "© 2000-2016 Autores de Kate" #: utils/kateglobal.cpp:117 +#, kde-format msgid "Christoph Cullmann" msgstr "Christoph Cullmann" #: utils/kateglobal.cpp:117 +#, kde-format msgid "Maintainer" msgstr "Mantedor" #: utils/kateglobal.cpp:118 +#, kde-format msgid "Dominik Haumann" msgstr "Dominik Haumann" #: utils/kateglobal.cpp:118 utils/kateglobal.cpp:119 utils/kateglobal.cpp:120 #: utils/kateglobal.cpp:123 utils/kateglobal.cpp:126 utils/kateglobal.cpp:131 +#, kde-format msgid "Core Developer" msgstr "Programador principal" #: utils/kateglobal.cpp:119 +#, kde-format msgid "Milian Wolff" msgstr "Milian Wolff" #: utils/kateglobal.cpp:120 +#, kde-format msgid "Joseph Wenninger" msgstr "Joseph Wenninger" #: utils/kateglobal.cpp:121 +#, kde-format msgid "Erlend Hamberg" msgstr "Erlend Hamberg" #: utils/kateglobal.cpp:122 +#, kde-format msgid "Bernhard Beschow" msgstr "Bernhard Beschow" #: utils/kateglobal.cpp:122 utils/kateglobal.cpp:138 +#, kde-format msgid "Developer" msgstr "Desenvolvente" #: utils/kateglobal.cpp:123 +#, kde-format msgid "Anders Lund" msgstr "Anders Lund" #: utils/kateglobal.cpp:124 +#, kde-format msgid "Michel Ludwig" msgstr "Michel Ludwig" #: utils/kateglobal.cpp:124 +#, kde-format msgid "On-the-fly spell checking" msgstr "Corrección ortográfica ao voo" #: utils/kateglobal.cpp:125 +#, kde-format msgid "Pascal Létourneau" msgstr "Pascal Létourneau" #: utils/kateglobal.cpp:125 +#, kde-format msgid "Large scale bug fixing" msgstr "Corrección de erros a grande escala" #: utils/kateglobal.cpp:126 +#, kde-format msgid "Hamish Rodda" msgstr "Hamish Rodda" #: utils/kateglobal.cpp:127 +#, kde-format msgid "Waldo Bastian" msgstr "Waldo Bastian" #: utils/kateglobal.cpp:127 +#, kde-format msgid "The cool buffersystem" msgstr "O sistema de buffer" #: utils/kateglobal.cpp:128 +#, kde-format msgid "Charles Samuels" msgstr "Charles Samuels" #: utils/kateglobal.cpp:128 +#, kde-format msgid "The Editing Commands" msgstr "As ordes de edición" #: utils/kateglobal.cpp:129 +#, kde-format msgid "Matt Newell" msgstr "Matt Newell" #: utils/kateglobal.cpp:129 +#, kde-format msgid "Testing, ..." -msgstr "Probas, ..." +msgstr "Probas, …" #: utils/kateglobal.cpp:130 +#, kde-format msgid "Michael Bartl" msgstr "Michael Bartl" #: utils/kateglobal.cpp:130 +#, kde-format msgid "Former Core Developer" msgstr "Antigo desenvolvente principal" #: utils/kateglobal.cpp:131 +#, kde-format msgid "Michael McCallum" msgstr "Michael McCallum" #: utils/kateglobal.cpp:132 +#, kde-format msgid "Michael Koch" msgstr "Michael Koch" #: utils/kateglobal.cpp:132 +#, kde-format msgid "KWrite port to KParts" msgstr "Portou KWrite para KParts" #: utils/kateglobal.cpp:133 +#, kde-format msgid "Christian Gebauer" msgstr "Christian Gebauer" #: utils/kateglobal.cpp:134 +#, kde-format msgid "Simon Hausmann" msgstr "Simon Hausmann" #: utils/kateglobal.cpp:135 +#, kde-format msgid "Glen Parker" msgstr "Glen Parker" #: utils/kateglobal.cpp:135 +#, kde-format msgid "KWrite Undo History, Kspell integration" msgstr "Historial de anulacións de KWrite, integración de Kspell" #: utils/kateglobal.cpp:136 +#, kde-format msgid "Scott Manson" msgstr "Scott Manson" #: utils/kateglobal.cpp:136 +#, kde-format msgid "KWrite XML Syntax highlighting support" msgstr "Soporte para realzado da sintaxe XML en KWrite" #: utils/kateglobal.cpp:137 +#, kde-format msgid "John Firebaugh" msgstr "John Firebaugh" #: utils/kateglobal.cpp:137 +#, kde-format msgid "Patches and more" msgstr "Parches e máis" #: utils/kateglobal.cpp:138 +#, kde-format msgid "Andreas Kling" msgstr "Andreas Kling" #: utils/kateglobal.cpp:139 +#, kde-format msgid "Mirko Stocker" msgstr "Mirko Stocker" #: utils/kateglobal.cpp:139 +#, kde-format msgid "Various bugfixes" msgstr "Varias correccións" #: utils/kateglobal.cpp:140 +#, kde-format msgid "Matthew Woehlke" msgstr "Matthew Woehlke" #: utils/kateglobal.cpp:140 +#, kde-format msgid "Selection, KColorScheme integration" msgstr "Selección, integración con KColorScheme" #: utils/kateglobal.cpp:141 +#, kde-format msgid "Sebastian Pipping" msgstr "Sebastian Pipping" #: utils/kateglobal.cpp:141 +#, kde-format msgid "Search bar back- and front-end" msgstr "Infraestrutura e interface da barra de buscas" #: utils/kateglobal.cpp:142 +#, kde-format msgid "Jochen Wilhelmy" msgstr "Jochen Wilhelmy" #: utils/kateglobal.cpp:142 +#, kde-format msgid "Original KWrite Author" msgstr "Autor orixinal de KWrite" #: utils/kateglobal.cpp:143 +#, kde-format msgid "Gerald Senarclens de Grancy" msgstr "Gerald Senarclens de Grancy" #: utils/kateglobal.cpp:143 +#, kde-format msgid "QA and Scripting" msgstr "QA e scripting" #: utils/kateglobal.cpp:145 +#, kde-format msgid "Matteo Merli" msgstr "Matteo Merli" #: utils/kateglobal.cpp:145 +#, kde-format msgid "Highlighting for RPM Spec-Files, Perl, Diff and more" msgstr "Realzado de ficheiros de especificación de RPM, Perl, Diff e máis" #: utils/kateglobal.cpp:146 +#, kde-format msgid "Rocky Scaletta" msgstr "Rocky Scaletta" #: utils/kateglobal.cpp:146 +#, kde-format msgid "Highlighting for VHDL" msgstr "Realzado de VHDL" #: utils/kateglobal.cpp:147 +#, kde-format msgid "Yury Lebedev" msgstr "Yury Lebedev" #: utils/kateglobal.cpp:147 +#, kde-format msgid "Highlighting for SQL" msgstr "Realzado de SQL" #: utils/kateglobal.cpp:148 +#, kde-format msgid "Chris Ross" msgstr "Chris Ross" #: utils/kateglobal.cpp:148 +#, kde-format msgid "Highlighting for Ferite" msgstr "Realzado de Ferite" #: utils/kateglobal.cpp:149 +#, kde-format msgid "Nick Roux" msgstr "Nick Roux" #: utils/kateglobal.cpp:149 +#, kde-format msgid "Highlighting for ILERPG" msgstr "Realzado de ILERPG" #: utils/kateglobal.cpp:150 +#, kde-format msgid "Carsten Niehaus" msgstr "Carsten Niehaus" #: utils/kateglobal.cpp:150 +#, kde-format msgid "Highlighting for LaTeX" msgstr "Realzado de LaTeX" #: utils/kateglobal.cpp:151 +#, kde-format msgid "Per Wigren" msgstr "Per Wigren" #: utils/kateglobal.cpp:151 +#, kde-format msgid "Highlighting for Makefiles, Python" msgstr "Realzado de Makefiles, Python" #: utils/kateglobal.cpp:152 +#, kde-format msgid "Jan Fritz" msgstr "Jan Fritz" #: utils/kateglobal.cpp:152 +#, kde-format msgid "Highlighting for Python" msgstr "Realzado de Python" #: utils/kateglobal.cpp:153 +#, kde-format msgid "Daniel Naber" msgstr "Daniel Naber" #: utils/kateglobal.cpp:154 +#, kde-format msgid "Roland Pabel" msgstr "Roland Pabel" #: utils/kateglobal.cpp:154 +#, kde-format msgid "Highlighting for Scheme" msgstr "Realzado de Scheme" #: utils/kateglobal.cpp:155 +#, kde-format msgid "Cristi Dumitrescu" msgstr "Cristi Dumitrescu" #: utils/kateglobal.cpp:155 +#, kde-format msgid "PHP Keyword/Datatype list" msgstr "Lista de Palabras chave/Tipos de dato de PHP" #: utils/kateglobal.cpp:156 +#, kde-format msgid "Carsten Pfeiffer" msgstr "Carsten Pfeiffer" #: utils/kateglobal.cpp:156 +#, kde-format msgid "Very nice help" msgstr "Axuda moi agradábel" #: utils/kateglobal.cpp:157 +#, kde-format msgid "Bruno Massa" msgstr "Bruno Massa" #: utils/kateglobal.cpp:157 +#, kde-format msgid "Highlighting for Lua" msgstr "Realzado de Lua" #: utils/kateglobal.cpp:159 +#, kde-format msgid "All people who have contributed and I have forgotten to mention" msgstr "Toda a xente que contribuíu e esquecín nomear" #: utils/kateglobal.cpp:161 +#, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "" @@ -7004,6 +5945,7 @@ "Xosé Calvo" #: utils/kateglobal.cpp:161 +#, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" @@ -7012,6 +5954,7 @@ "xosecalvo@gmail.com" #: utils/kateglobal.cpp:286 +#, kde-format msgid "Configure" msgstr "Configurar" @@ -7037,100 +5980,120 @@ msgstr[1] "%1 liñas" #: variableeditor/katehelpbutton.cpp:34 +#, kde-format msgid "Kate Handbook." msgstr "Manual de Kate." #: variableeditor/variableeditor.cpp:188 +#, kde-format msgid "true" msgstr "verdadeiro" #: variableeditor/variableeditor.cpp:189 +#, kde-format msgid "false" msgstr "falso" #: variableeditor/variableeditor.cpp:325 +#, kde-format msgctxt "value for variable remove-trailing-spaces" msgid "none" msgstr "ningún" #: variableeditor/variableeditor.cpp:326 +#, kde-format msgctxt "value for variable remove-trailing-spaces" msgid "modified" msgstr "modificado" #: variableeditor/variableeditor.cpp:327 +#, kde-format msgctxt "value for variale remove-trailing-spaces" msgid "all" msgstr "todo" #: variableeditor/variablelineedit.cpp:59 +#, kde-format msgid "Show list of valid variables." msgstr "Mostra a lista de variábeis válidas." #: variableeditor/variablelineedit.cpp:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Enable automatic brackets" msgctxt "short translation please" msgid "Enable automatic insertion of brackets." msgstr "Activar os parénteses automáticos." #: variableeditor/variablelineedit.cpp:141 +#, kde-format msgctxt "short translation please" msgid "Set the number of autocenter lines." msgstr "Define o número de liñas autocentradas." #: variableeditor/variablelineedit.cpp:146 +#, kde-format msgctxt "short translation please" msgid "Set the document background color." msgstr "Define a cor do fondo do documento." #: variableeditor/variablelineedit.cpp:151 +#, kde-format msgctxt "short translation please" msgid "Pressing backspace in leading whitespace unindents." msgstr "A tecla de retroceso no espazo en branco inicial quita o sangrado" #: variableeditor/variablelineedit.cpp:159 +#, kde-format msgctxt "short translation please" msgid "Enable block selection mode." msgstr "Activar a selección por bloques." #: variableeditor/variablelineedit.cpp:164 +#, fuzzy, kde-format +#| msgctxt "short translation please" +#| msgid "Enable the byte order marker when saving unicode files." msgctxt "short translation please" -msgid "Enable the byte order marker when saving unicode files." +msgid "Enable the byte order mark (BOM) when saving Unicode files." msgstr "Activar o marcador da orde dos bits ao gardar ficheiros unicode." #: variableeditor/variablelineedit.cpp:169 +#, kde-format msgctxt "short translation please" msgid "Set the color for the bracket highlight." msgstr "Escoller a cor do realzado de parénteses." #: variableeditor/variablelineedit.cpp:174 +#, kde-format msgctxt "short translation please" msgid "Set the background color for the current line." msgstr "Definir a cor de fondo da liña actual." #: variableeditor/variablelineedit.cpp:180 +#, kde-format msgctxt "short translation please" msgid "Set the default dictionary used for spell checking." msgstr "Definir o dicionario predeterminado da corrección ortográfica." #: variableeditor/variablelineedit.cpp:185 +#, kde-format msgctxt "short translation please" msgid "Enable dynamic word wrap of long lines." msgstr "Activar a división visual das liñas longas." #: variableeditor/variablelineedit.cpp:190 +#, kde-format msgctxt "short translation please" msgid "Sets the end of line mode." msgstr "Escolle o modo do final da liña." #: variableeditor/variablelineedit.cpp:195 +#, kde-format msgctxt "short translation please" msgid "Enable folding markers in the editor border." msgstr "Activar as marcas de contracción da beira do editor." #: variableeditor/variablelineedit.cpp:200 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "short translation please" #| msgid "Enable folding markers in the editor border." msgctxt "short translation please" @@ -7138,161 +6101,190 @@ msgstr "Activar as marcas de contracción da beira do editor." #: variableeditor/variablelineedit.cpp:206 +#, kde-format msgctxt "short translation please" msgid "Set the point size of the document font." msgstr "Escolle o tamaño do punto do tipo de letra." #: variableeditor/variablelineedit.cpp:211 +#, kde-format msgctxt "short translation please" msgid "Set the font of the document." msgstr "Escolle o tipo de letra do documento." #: variableeditor/variablelineedit.cpp:226 +#, kde-format msgctxt "short translation please" msgid "Set the syntax highlighting." msgstr "Escolle o realzado de sintaxe." #: variableeditor/variablelineedit.cpp:231 +#, kde-format msgctxt "short translation please" msgid "Set the icon bar color." msgstr "Escolle a cor da barra de iconas." #: variableeditor/variablelineedit.cpp:236 +#, kde-format msgctxt "short translation please" msgid "Enable the icon border in the editor view." msgstr "Activar a beira con iconas na vista do editor." #: variableeditor/variablelineedit.cpp:241 +#, kde-format msgctxt "short translation please" msgid "Set the auto indentation style." msgstr "Define o estilo de sangrado automático." #: variableeditor/variablelineedit.cpp:246 +#, kde-format msgctxt "short translation please" msgid "Adjust indentation of text pasted from the clipboard." msgstr "Axustar o sangrado do texto apegado do portarretallos" #: variableeditor/variablelineedit.cpp:252 +#, kde-format msgctxt "short translation please" msgid "Set the indentation depth for each indent level." msgstr "Define a distancia de sangrado de cada nivel." #: variableeditor/variablelineedit.cpp:257 +#, kde-format msgctxt "short translation please" msgid "Allow odd indentation level (no multiple of indent width)." msgstr "Permitir niveis estraños de sangrado (non multiplos do sangrado)" #: variableeditor/variablelineedit.cpp:262 +#, kde-format msgctxt "short translation please" msgid "Show line numbers." msgstr "Mostrar os números de liña." #: variableeditor/variablelineedit.cpp:267 +#, kde-format msgctxt "short translation please" msgid "Insert newline at end of file on save." msgstr "Inserir un salto de liña ao final do ficheiro ao gardar." #: variableeditor/variablelineedit.cpp:272 +#, kde-format msgctxt "short translation please" msgid "Enable overwrite mode in the document." msgstr "Activar no documento o modo sobrescribir." #: variableeditor/variablelineedit.cpp:277 +#, kde-format msgctxt "short translation please" msgid "Enable persistent text selection." msgstr "Activar a escolla persistente de texto." #: variableeditor/variablelineedit.cpp:282 +#, kde-format msgctxt "short translation please" msgid "Replace tabs with spaces when saving the document." msgstr "Substituír as tabulacións por espazos ao gardar." #: variableeditor/variablelineedit.cpp:287 +#, kde-format msgctxt "short translation please" msgid "Replace tabs with spaces." msgstr "Substituír as tabulacións por espazos." #: variableeditor/variablelineedit.cpp:292 +#, kde-format msgctxt "short translation please" msgid "Remove trailing spaces when saving the document." msgstr "Eliminar os espazos finais ao gardar o documento." #: variableeditor/variablelineedit.cpp:297 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show scrollbar mini-map" msgctxt "short translation please" msgid "Show scrollbar minimap." msgstr "Mostrar o minimapa da barra de desprazamento" #: variableeditor/variablelineedit.cpp:302 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgctxt "short translation please" msgid "Show scrollbar preview." msgstr "Mostrar marcas na &barra de desprazamento" #: variableeditor/variablelineedit.cpp:311 +#, kde-format msgctxt "short translation please" msgid "Set the color scheme." msgstr "Escoller o esquema de cores." #: variableeditor/variablelineedit.cpp:316 +#, kde-format msgctxt "short translation please" msgid "Set the text selection color." msgstr "Definir a cor do texto escollido." #: variableeditor/variablelineedit.cpp:321 +#, kde-format msgctxt "short translation please" msgid "Visualize tabs and trailing spaces." msgstr "Ver as tabulacións e os espazos finais." #: variableeditor/variablelineedit.cpp:326 +#, kde-format msgctxt "short translation please" msgid "Enable smart home navigation." msgstr "Activar a navegación intelixente." #: variableeditor/variablelineedit.cpp:331 +#, kde-format msgctxt "short translation please" msgid "Pressing TAB key indents." msgstr "Premer a tecla TAB sangra." #: variableeditor/variablelineedit.cpp:337 +#, kde-format msgctxt "short translation please" msgid "Set the tab display width." msgstr "Definir a largura da tabulación." #: variableeditor/variablelineedit.cpp:343 +#, kde-format msgctxt "short translation please" msgid "Set the number of undo steps to remember (0 equals infinity)." msgstr "" "Definir a cantidade de pasos de desfacer que se lembrar (0 é infinitos)." #: variableeditor/variablelineedit.cpp:349 +#, kde-format msgctxt "short translation please" msgid "Set the word wrap column." msgstr "Escoller a columna de división das liñas." #: variableeditor/variablelineedit.cpp:354 +#, kde-format msgctxt "short translation please" msgid "Set the word wrap marker color." msgstr "Escoller a co do marcador de división da liña." #: variableeditor/variablelineedit.cpp:359 +#, kde-format msgctxt "short translation please" msgid "Enable word wrap while typing text." msgstr "Activar a división das liñas ao escribir." #: view/katestatusbar.cpp:86 +#, kde-format msgid "Current cursor position. Doubleclick to go to specific line." msgstr "" "Posición actual do cursor. Prema dúas veces seguidas para ir á liña " "específica." #: view/katestatusbar.cpp:95 +#, kde-format msgid "Words and Chars count in document/selection." msgstr "Número de palabras e caracteres no documento ou na selección." #: view/katestatusbar.cpp:106 +#, kde-format msgid "Insert mode and VI input mode indicator" msgstr "Indicador do modo de inserir ou do modo de entrada de Vi." @@ -7317,34 +6309,42 @@ msgstr "Sangrado ou tabulación: %1/%2" #: view/katestatusbar.cpp:126 view/katestatusbar.cpp:382 +#, kde-format msgid "Tab Width" msgstr "Ancho da tabulación" #: view/katestatusbar.cpp:131 view/katestatusbar.cpp:393 +#, kde-format msgid "Indentation Width" msgstr "Ancho do sangrado" #: view/katestatusbar.cpp:137 +#, kde-format msgid "Indentation Mode" msgstr "Modo de sangrado" #: view/katestatusbar.cpp:139 +#, kde-format msgid "Tabulators && Spaces" msgstr "Tabulacións e espazos" #: view/katestatusbar.cpp:143 +#, kde-format msgid "Tabulators" msgstr "Tabulacións" #: view/katestatusbar.cpp:147 +#, kde-format msgid "Spaces" msgstr "Espazos" #: view/katestatusbar.cpp:163 +#, kde-format msgid "Encoding" msgstr "Codificación" #: view/katestatusbar.cpp:174 +#, kde-format msgid "Syntax highlighting" msgstr "Realce da sintaxe" @@ -7359,12 +6359,14 @@ msgstr "Liña %1, columna %2" #: view/katestatusbar.cpp:284 +#, kde-format msgid "Meaning of current icon: Document was modified since it was loaded" msgstr "" "Significado da icona actual: o documento modificouse desde a última vez que " "se gardou." #: view/katestatusbar.cpp:289 +#, kde-format msgid "" "Meaning of current icon: Document was modified or deleted by another program" msgstr "" @@ -7372,12 +6374,14 @@ "documento." #: view/katestatusbar.cpp:300 +#, kde-format msgid "Meaning of current icon: Document was not modified since it was loaded" msgstr "" "Significado da icona actual: o documento non se modificou desde a última vez " "que se gardou." #: view/katestatusbar.cpp:350 view/katestatusbar.cpp:370 +#, kde-format msgid "Other..." msgstr "Outro…" @@ -7389,10 +6393,12 @@ msgstr[1] "Outros (%1)" #: view/katestatusbar.cpp:382 +#, kde-format msgid "Please specify the wanted tab width:" msgstr "Indique un ancho para as tabulacións:" #: view/katestatusbar.cpp:393 +#, kde-format msgid "Please specify the wanted indentation width:" msgstr "Indique un ancho para o sangrado:" @@ -7402,43 +6408,53 @@ msgstr "Palabras: %1/%2, caracteres: %3/%4" #: view/kateview.cpp:472 +#, kde-format msgid "Cut the selected text and move it to the clipboard" msgstr "Cortar o texto escollido e movelo para o portarretallos" #: view/kateview.cpp:475 +#, kde-format msgid "Paste previously copied or cut clipboard contents" msgstr "Apegar os contidos copiados ou cortados ao portarretallos" #: view/kateview.cpp:478 +#, kde-format msgid "" "Use this command to copy the currently selected text to the system clipboard." msgstr "Use esta orde para copiar o texto escollido ao portarretallos." #: view/kateview.cpp:480 +#, kde-format msgid "Clipboard &History" msgstr "&Historial do portarretallos" #: view/kateview.cpp:485 +#, kde-format msgid "Save the current document" msgstr "Gardar o documento actual" #: view/kateview.cpp:488 +#, kde-format msgid "Revert the most recent editing actions" msgstr "Desfacer os cambios de edición máis recentes" #: view/kateview.cpp:491 +#, kde-format msgid "Revert the most recent undo operation" msgstr "Desfacer as operacións de desfacer máis recentes" #: view/kateview.cpp:494 +#, kde-format msgid "&Scripts" msgstr "&Scripts" #: view/kateview.cpp:498 +#, kde-format msgid "Apply &Word Wrap" msgstr "División &visual das liñas" #: view/kateview.cpp:499 +#, kde-format msgid "" "Use this command to wrap all lines of the current document which are longer " "than the width of the current view, to fit into this view.

    This " @@ -7446,13 +6462,15 @@ msgstr "" "Use esta orde para dividir as liñas do documento que sexan maiores que a " "vista actual para así axustalas á vista.

    Esta é unha división fixa, " -"o que significa que non se actualiza cando se muda a dimensión da vista." +"o que significa que non se actualiza cando se cambia a dimensión da vista." #: view/kateview.cpp:505 +#, kde-format msgid "&Clean Indentation" msgstr "&Anular o sangrado" #: view/kateview.cpp:506 +#, kde-format msgid "" "Use this to clean the indentation of a selected block of text (only tabs/" "only spaces).

    You can configure whether tabs should be honored " @@ -7463,10 +6481,12 @@ "se desexa usar tabuladores ou substituílos con espazos." #: view/kateview.cpp:511 +#, kde-format msgid "&Align" msgstr "&Aliñar" #: view/kateview.cpp:512 +#, kde-format msgid "" "Use this to align the current line or block of text to its proper indent " "level." @@ -7475,10 +6495,12 @@ "apropiado." #: view/kateview.cpp:516 +#, kde-format msgid "C&omment" msgstr "C&omentario" #: view/kateview.cpp:518 +#, kde-format msgid "" "This command comments out the current line or a selected block of text.

    The characters for single/multiple line comments are defined within " @@ -7489,18 +6511,22 @@ "realzado sintáctico da linguaxe que se use." #: view/kateview.cpp:523 +#, kde-format msgid "Go to previous editing line" msgstr "Ir á liña de edición anterior" #: view/kateview.cpp:528 +#, kde-format msgid "Go to next editing line" msgstr "Ir á seguinte liña de edición" #: view/kateview.cpp:533 +#, kde-format msgid "Unco&mment" msgstr "Desco&mentar" #: view/kateview.cpp:535 +#, kde-format msgid "" "This command removes comments from the current line or a selected block of " "text.

    The characters for single/multiple line comments are " @@ -7511,22 +6537,27 @@ "regras de realzado sintáctico da linguaxe que se use." #: view/kateview.cpp:540 +#, kde-format msgid "Toggle Comment" msgstr "Conmutar o comentario" #: view/kateview.cpp:543 +#, kde-format msgid "&Read Only Mode" msgstr "Modo de só &lectura" #: view/kateview.cpp:544 +#, kde-format msgid "Lock/unlock the document for writing" msgstr "Pecha/Abre o documento á escritura" #: view/kateview.cpp:550 +#, kde-format msgid "Uppercase" msgstr "Maiúsculas" #: view/kateview.cpp:552 +#, kde-format msgid "" "Convert the selection to uppercase, or the character to the right of the " "cursor if no text is selected." @@ -7535,10 +6566,12 @@ "hai texto escollido." #: view/kateview.cpp:557 +#, kde-format msgid "Lowercase" msgstr "Minúsculas" #: view/kateview.cpp:559 +#, kde-format msgid "" "Convert the selection to lowercase, or the character to the right of the " "cursor if no text is selected." @@ -7547,10 +6580,12 @@ "hai texto escollido." #: view/kateview.cpp:564 +#, kde-format msgid "Capitalize" msgstr "Pór en maiúsculas" #: view/kateview.cpp:566 +#, kde-format msgid "" "Capitalize the selection, or the word under the cursor if no text is " "selected." @@ -7559,14 +6594,17 @@ "escollido." #: view/kateview.cpp:571 +#, kde-format msgid "Join Lines" msgstr "Unir as liñas" #: view/kateview.cpp:576 +#, kde-format msgid "Invoke Code Completion" msgstr "Invocar a completación de código" #: view/kateview.cpp:577 +#, kde-format msgid "" "Manually invoke command completion, usually by using a shortcut bound to " "this action." @@ -7575,40 +6613,48 @@ "asociado a esta acción." #: view/kateview.cpp:589 +#, kde-format msgid "Print the current document." msgstr "Imprimir o documento actual." #: view/kateview.cpp:592 +#, kde-format msgid "Show print preview of current document" msgstr "Mostra a vista de impresión do documento actual" #: view/kateview.cpp:596 +#, kde-format msgid "Reloa&d" msgstr "Cargar &de novo" #: view/kateview.cpp:598 +#, kde-format msgid "Reload the current document from disk." msgstr "Cargar de novo o documento actual desde o disco." #: view/kateview.cpp:602 +#, kde-format msgid "Save the current document to disk, with a name of your choice." msgstr "Gardar o documento actual ao disco, cun nome da súa escolla." #: view/kateview.cpp:604 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save As with &Encoding..." msgid "Save As with Encoding..." msgstr "Gardar como con &codificación" #: view/kateview.cpp:610 +#, kde-format msgid "Save &Copy As..." -msgstr "Gardar unha &copia como..." +msgstr "Gardar unha &copia como…" #: view/kateview.cpp:611 +#, kde-format msgid "Save a copy of the current document to disk." msgstr "Gardar unha copia do documento actual no disco." #: view/kateview.cpp:615 +#, kde-format msgid "" "This command opens a dialog and lets you choose a line that you want the " "cursor to move to." @@ -7616,34 +6662,42 @@ "Esta orde abre un diálogo e permite escoller unha liña á que mover o cursor." #: view/kateview.cpp:618 +#, kde-format msgid "Move to Previous Modified Line" msgstr "Desprazarse ata a liña modificada anterior" #: view/kateview.cpp:619 +#, kde-format msgid "Move upwards to the previous modified line." msgstr "Desprazarse ata a liña modificada anterior." #: view/kateview.cpp:623 +#, kde-format msgid "Move to Next Modified Line" msgstr "Desprazarse ata a seguinte liña modificada" #: view/kateview.cpp:624 +#, kde-format msgid "Move downwards to the next modified line." msgstr "Desprazarse ata a seguinte liña modificada." #: view/kateview.cpp:628 +#, kde-format msgid "&Configure Editor..." -msgstr "&Configurar o editor..." +msgstr "&Configurar o editor…" #: view/kateview.cpp:630 +#, kde-format msgid "Configure various aspects of this editor." msgstr "Configurar varios aspectos deste editor." #: view/kateview.cpp:633 +#, kde-format msgid "&Mode" msgstr "&Modo" #: view/kateview.cpp:635 +#, kde-format msgid "" "Here you can choose which mode should be used for the current document. This " "will influence the highlighting and folding being used, for example." @@ -7652,52 +6706,64 @@ "inflúe, por exemplo, no realce e o pregado empregados." #: view/kateview.cpp:638 +#, kde-format msgid "&Highlighting" msgstr "&Realzado" #: view/kateview.cpp:640 +#, kde-format msgid "Here you can choose how the current document should be highlighted." msgstr "Aquí pode escoller o realzado que se lle aplique ao documento." #: view/kateview.cpp:643 +#, kde-format msgid "&Schema" msgstr "E&squemas" #: view/kateview.cpp:648 +#, kde-format msgid "&Indentation" msgstr "&Sangrado" #: view/kateview.cpp:652 +#, kde-format msgid "Select the entire text of the current document." msgstr "Escolle todo o texto deste documento." #: view/kateview.cpp:655 +#, kde-format msgid "" "If you have selected something within the current document, this will no " "longer be selected." msgstr "Se escolleu algo neste documento, deixará de estar escollido." #: view/kateview.cpp:659 +#, kde-format msgid "Enlarge Font" msgstr "Aumentar a letra" #: view/kateview.cpp:661 +#, kde-format msgid "This increases the display font size." msgstr "Isto aumenta o tamaño do tipo de letra." #: view/kateview.cpp:666 +#, kde-format msgid "Shrink Font" msgstr "Reducir a letra" #: view/kateview.cpp:668 +#, kde-format msgid "This decreases the display font size." msgstr "Isto diminúe o tamaño do tipo de letra." #: view/kateview.cpp:671 +#, kde-format msgid "Bl&ock Selection Mode" msgstr "Modo de selección por bl&oques" #: view/kateview.cpp:674 +#, kde-format msgid "" "This command allows switching between the normal (line based) selection mode " "and the block selection mode." @@ -7706,50 +6772,61 @@ "liñas) e o modo de selección por bloques." #: view/kateview.cpp:678 +#, kde-format msgid "Switch to Next Input Mode" msgstr "Cambiar ao seguinte modo de entrada" #: view/kateview.cpp:680 +#, kde-format msgid "Switch to the next input mode." msgstr "Cambiar ao seguinte modo de entrada." #: view/kateview.cpp:683 +#, kde-format msgid "Overwr&ite Mode" msgstr "Modo sobrescr&ibir" #: view/kateview.cpp:686 +#, kde-format msgid "" "Choose whether you want the text you type to be inserted or to overwrite " "existing text." msgstr "" -"Escolla se desexa que o texto que escriba se insira antes do xa existente ou " +"Escolla se quere que o texto que escriba se insira antes do xa existente ou " "que o substitúa." #: view/kateview.cpp:696 +#, kde-format msgid "Dynamic Word Wrap Indicators" msgstr "Indicadores de división visual de liñas" #: view/kateview.cpp:698 +#, kde-format msgid "Choose when the Dynamic Word Wrap Indicators should be displayed" msgstr "Escolle cando mostrar os indicadores de división visual" #: view/kateview.cpp:702 +#, kde-format msgid "&Off" msgstr "&Desactivado" #: view/kateview.cpp:703 +#, kde-format msgid "Follow &Line Numbers" msgstr "Segue os números de &liña" #: view/kateview.cpp:704 +#, kde-format msgid "&Always On" msgstr "Sempre a&ctivado" #: view/kateview.cpp:708 +#, kde-format msgid "Show Folding &Markers" msgstr "Mostrar as marcas de &pregado" #: view/kateview.cpp:711 +#, kde-format msgid "" "You can choose if the codefolding marks should be shown, if codefolding is " "possible." @@ -7758,10 +6835,12 @@ "posíbel." #: view/kateview.cpp:714 +#, kde-format msgid "Show &Icon Border" msgstr "Mostrar o &bordo das iconas" #: view/kateview.cpp:717 +#, kde-format msgid "" "Show/hide the icon border.

    The icon border shows bookmark " "symbols, for instance." @@ -7770,18 +6849,22 @@ "símbolos de marcadores, por exemplo." #: view/kateview.cpp:720 +#, kde-format msgid "Show &Line Numbers" msgstr "Mostrar os números de &liña" #: view/kateview.cpp:723 +#, kde-format msgid "Show/hide the line numbers on the left hand side of the view." msgstr "Mostra/Agocha os números de liña á esquerda da vista." #: view/kateview.cpp:726 +#, kde-format msgid "Show Scroll&bar Marks" msgstr "Mostrar as marcas da &barra de desprazamento" #: view/kateview.cpp:728 +#, kde-format msgid "" "Show/hide the marks on the vertical scrollbar.

    The marks show " "bookmarks, for instance." @@ -7790,10 +6873,12 @@ "marcas mostran, p. ex., marcadores." #: view/kateview.cpp:731 +#, kde-format msgid "Show Scrollbar Mini-Map" msgstr "Mostrar o minimapa da barra de desprazamento" #: view/kateview.cpp:733 +#, kde-format msgid "" "Show/hide the mini-map on the vertical scrollbar.

    The mini-map " "shows an overview of the whole document." @@ -7801,11 +6886,18 @@ "Mostra/Agocha o minimapa da barra de desprazamento vertical.

    O " "minimapa mostra un resumo de todo o documento." +#. i18n("Show the whole document in the Mini-Map"), this); +#. ac->addAction(QLatin1String("view_scrollbar_minimap_all"), a); +#. a->setWhatsThis(i18n("Display the whole document in the mini-map.

    With this option set the whole document will be visible in the mini-map.")); +#. connect(a, SIGNAL(triggered(bool)), SLOT(toggleScrollBarMiniMapAll())); +#. connect(m_toggleScrollBarMiniMap, SIGNAL(triggered(bool)), m_toggleScrollBarMiniMapAll, SLOT(setEnabled(bool))); #: view/kateview.cpp:742 +#, kde-format msgid "Show Static &Word Wrap Marker" msgstr "Mostrar o limiar de división &fixa de liñas" #: view/kateview.cpp:745 +#, kde-format msgid "" "Show/hide the Word Wrap Marker, a vertical line drawn at the word wrap " "column as defined in the editing properties" @@ -7814,30 +6906,37 @@ "columna onde se produce a división, como se define nas propiedades de edición" #: view/kateview.cpp:749 +#, kde-format msgid "Show Non-Printable Spaces" msgstr "Mostrar espazos non imprimíbeis" #: view/kateview.cpp:751 +#, kde-format msgid "Show/hide bounding box around non-printable spaces" msgstr "Mostrar ou ocultar unha caixa arredor dos espazos non imprimíbeis." #: view/kateview.cpp:754 +#, kde-format msgid "Show Word Count" msgstr "Mostrar o número de palabras" #: view/kateview.cpp:757 +#, kde-format msgid "Show/hide word count in status bar" msgstr "Mostrar ou ocultar o número de palabras na barra de estado." #: view/kateview.cpp:761 +#, kde-format msgid "Switch to Command Line" msgstr "Cambiar á liña de ordes" #: view/kateview.cpp:763 +#, kde-format msgid "Show/hide the command line on the bottom of the view." msgstr "Mostra/Agocha a liña de ordes no fondo da vista." #: view/kateview.cpp:766 +#, kde-format msgid "Input Modes" msgstr "Modos de entrada" @@ -7847,102 +6946,127 @@ msgstr "Activar ou desactivar %1" #: view/kateview.cpp:778 +#, kde-format msgid "&End of Line" msgstr "&Fin de liña" #: view/kateview.cpp:780 +#, kde-format msgid "Choose which line endings should be used, when you save the document" msgstr "Escolla os remates de liña que queira empregar ao gardar o documento" #: view/kateview.cpp:782 +#, kde-format msgctxt "@item:inmenu End of Line" msgid "&UNIX" msgstr "&UNIX" # skip-rule: PT-2010-window #: view/kateview.cpp:783 +#, kde-format msgctxt "@item:inmenu End of Line" msgid "&Windows/DOS" msgstr "&Windows/DOS" #: view/kateview.cpp:784 +#, kde-format msgctxt "@item:inmenu End of Line" msgid "&Macintosh" msgstr "&Macintosh" #: view/kateview.cpp:789 +#, kde-format msgid "Add &Byte Order Mark (BOM)" msgstr "Engadir a Marca da orde de &bytes (BOM)" #: view/kateview.cpp:792 +#, fuzzy, kde-format +#| msgid "" +#| "Enable/disable adding of byte order markers for UTF-8/UTF-16 encoded " +#| "files while saving" msgid "" -"Enable/disable adding of byte order markers for UTF-8/UTF-16 encoded files " +"Enable/disable adding of byte order marks for UTF-8/UTF-16 encoded files " "while saving" msgstr "" "Conmuta a adición de marcas da orde dos bytes nos ficheiros codificados en " "UTF-8 ou UTF-16 ao gardar" #: view/kateview.cpp:796 +#, kde-format msgid "E&ncoding" msgstr "Codificació&n" #: view/kateview.cpp:800 +#, kde-format msgid "Look up the first occurrence of a piece of text or regular expression." -msgstr "Procura a primeira aparición dun texto ou expresión regular." +msgstr "Busca a primeira aparición dun texto ou expresión regular." #: view/kateview.cpp:804 +#, kde-format msgid "Find Selected" msgstr "Buscar o escollido" #: view/kateview.cpp:806 +#, kde-format msgid "Finds next occurrence of selected text." msgstr "Atopa a aparición seguinte do texto escollido." #: view/kateview.cpp:810 +#, kde-format msgid "Find Selected Backwards" msgstr "Buscar o escollido cara tras" #: view/kateview.cpp:812 +#, kde-format msgid "Finds previous occurrence of selected text." msgstr "Busca a aparición anterior do texto escollido." #: view/kateview.cpp:816 +#, kde-format msgid "Look up the next occurrence of the search phrase." msgstr "Busca a aparición seguinte da frase buscada." #: view/kateview.cpp:820 +#, kde-format msgid "Look up the previous occurrence of the search phrase." msgstr "Busca a aparición anterior da frase buscada." #: view/kateview.cpp:824 +#, kde-format msgid "" "Look up a piece of text or regular expression and replace the result with " "some given text." msgstr "" -"Procura unha peza de texto ou expresión regular e substitúe o resultado polo " +"Busca unha peza de texto ou expresión regular e substitúe o resultado polo " "texto dado." #: view/kateview.cpp:827 +#, kde-format msgid "Automatic Spell Checking" msgstr "Corrixir automaticamente a ortografía" #: view/kateview.cpp:828 +#, kde-format msgid "Enable/disable automatic spell checking" msgstr "Conmuta a corrección ortográfica automática" #: view/kateview.cpp:834 +#, kde-format msgid "Change Dictionary..." -msgstr "Trocar de dicionario..." +msgstr "Trocar de dicionario…" #: view/kateview.cpp:835 +#, kde-format msgid "Change the dictionary that is used for spell checking." msgstr "Troca o dicionario empregado para a corrección ortográfica." #: view/kateview.cpp:839 +#, kde-format msgid "Clear Dictionary Ranges" msgstr "Limpar os intervalos do dicionario" #: view/kateview.cpp:841 +#, kde-format msgid "" "Remove all the separate dictionary ranges that were set for spell checking." msgstr "" @@ -7950,10 +7074,12 @@ "a corrección ortográfica." #: view/kateview.cpp:847 +#, kde-format msgid "Copy as &HTML" msgstr "Copiar como &HTML" #: view/kateview.cpp:848 +#, kde-format msgid "" "Use this command to copy the currently selected text as HTML to the system " "clipboard." @@ -7961,10 +7087,12 @@ "Use esta orde para copiar o texto escollido para o portapapeis como HTML." #: view/kateview.cpp:851 +#, kde-format msgid "E&xport as HTML..." -msgstr "E&xportar como HTML..." +msgstr "E&xportar como HTML…" #: view/kateview.cpp:852 +#, kde-format msgid "" "This command allows you to export the current document with all highlighting " "information into a HTML document." @@ -7973,166 +7101,207 @@ "un documento HTML." #: view/kateview.cpp:890 +#, kde-format msgid "Move Word Left" msgstr "Moverse unha palabra á esquerda" #: view/kateview.cpp:896 +#, kde-format msgid "Select Character Left" msgstr "Escoller un carácter á esquerda" #: view/kateview.cpp:902 +#, kde-format msgid "Select Word Left" msgstr "Escoller unha palabra á esquerda" #: view/kateview.cpp:908 +#, kde-format msgid "Move Word Right" msgstr "Moverse unha palabra á dereita" #: view/kateview.cpp:914 +#, kde-format msgid "Select Character Right" msgstr "Escoller un carácter á dereita" #: view/kateview.cpp:920 +#, kde-format msgid "Select Word Right" msgstr "Escoller unha palabra á dereita" #: view/kateview.cpp:926 +#, kde-format msgid "Move to Beginning of Line" msgstr "Desprazarse ao comezo da liña" #: view/kateview.cpp:932 +#, kde-format msgid "Move to Beginning of Document" msgstr "Desprazarse ao comezo do documento" #: view/kateview.cpp:938 +#, kde-format msgid "Select to Beginning of Line" -msgstr "Escoller até o comezo da liña" +msgstr "Escoller ata o comezo da liña" #: view/kateview.cpp:944 +#, kde-format msgid "Select to Beginning of Document" -msgstr "Escoller até o comezo do documento" +msgstr "Escoller ata o comezo do documento" #: view/kateview.cpp:950 +#, kde-format msgid "Move to End of Line" -msgstr "Desprazarse até o final da liña" +msgstr "Desprazarse ata o final da liña" #: view/kateview.cpp:956 +#, kde-format msgid "Move to End of Document" -msgstr "Desprazarse até o final do documento" +msgstr "Desprazarse ata o final do documento" #: view/kateview.cpp:962 +#, kde-format msgid "Select to End of Line" -msgstr "Escoller até o final da liña" +msgstr "Escoller ata o final da liña" #: view/kateview.cpp:968 +#, kde-format msgid "Select to End of Document" -msgstr "Escoller até o final do documento" +msgstr "Escoller ata o final do documento" #: view/kateview.cpp:974 +#, kde-format msgid "Select to Previous Line" -msgstr "Escoller até a liña anterior" +msgstr "Escoller ata a liña anterior" #: view/kateview.cpp:980 +#, kde-format msgid "Scroll Line Up" msgstr "Desprazarse unha liña cara riba" #: view/kateview.cpp:986 +#, kde-format msgid "Move to Next Line" -msgstr "Desprazarse até a liña seguinte" +msgstr "Desprazarse ata a liña seguinte" #: view/kateview.cpp:992 +#, kde-format msgid "Move to Previous Line" -msgstr "Desprazarse até a liña anterior" +msgstr "Desprazarse ata a liña anterior" #: view/kateview.cpp:998 +#, kde-format msgid "Move Cursor Right" msgstr "Mover o cursor á dereita" #: view/kateview.cpp:1004 +#, kde-format msgid "Move Cursor Left" msgstr "Mover o cursor á esquerda" #: view/kateview.cpp:1010 +#, kde-format msgid "Select to Next Line" -msgstr "Escoller até a seguinte liña" +msgstr "Escoller ata a seguinte liña" #: view/kateview.cpp:1016 +#, kde-format msgid "Scroll Line Down" msgstr "Desprazarse unha liña cara baixo" #: view/kateview.cpp:1022 +#, kde-format msgid "Scroll Page Up" msgstr "Desprazarse unha páxina cara riba" #: view/kateview.cpp:1028 +#, kde-format msgid "Select Page Up" msgstr "Escoller unha páxina cara riba" #: view/kateview.cpp:1034 +#, kde-format msgid "Move to Top of View" -msgstr "Desprazarse até o comezo da vista" +msgstr "Desprazarse ata o comezo da vista" #: view/kateview.cpp:1040 +#, kde-format msgid "Select to Top of View" -msgstr "Escoller até o comezo da vista" +msgstr "Escoller ata o comezo da vista" #: view/kateview.cpp:1046 +#, kde-format msgid "Scroll Page Down" msgstr "Desprazarse unha páxina cara baixo" #: view/kateview.cpp:1052 +#, kde-format msgid "Select Page Down" msgstr "Escoller unha páxina cara baixo" #: view/kateview.cpp:1058 +#, kde-format msgid "Move to Bottom of View" -msgstr "Desprazarse até o fondo da vista" +msgstr "Desprazarse ata o fondo da vista" #: view/kateview.cpp:1064 +#, kde-format msgid "Select to Bottom of View" -msgstr "Escoller até o fondo da vista" +msgstr "Escoller ata o fondo da vista" #: view/kateview.cpp:1070 +#, kde-format msgid "Move to Matching Bracket" -msgstr "Desprazarse até a parella deste paréntese" +msgstr "Desprazarse ata a parella deste paréntese" #: view/kateview.cpp:1076 +#, kde-format msgid "Select to Matching Bracket" -msgstr "Escoller até a parella deste paréntese" +msgstr "Escoller ata a parella deste paréntese" #: view/kateview.cpp:1084 +#, kde-format msgid "Transpose Characters" msgstr "Traspor os caracteres" #: view/kateview.cpp:1090 +#, kde-format msgid "Delete Line" msgstr "Borrar a liña" #: view/kateview.cpp:1096 +#, kde-format msgid "Delete Word Left" msgstr "Borrar unha palabra á esquerda" #: view/kateview.cpp:1102 +#, kde-format msgid "Delete Word Right" msgstr "Borrar unha palabra á dereita" #: view/kateview.cpp:1108 +#, kde-format msgid "Delete Next Character" msgstr "Borrar o carácter seguinte" #: view/kateview.cpp:1114 +#, kde-format msgid "Backspace" msgstr "Retroceso" #: view/kateview.cpp:1123 +#, kde-format msgid "Insert Tab" msgstr "Inserir un tabulador" #: view/kateview.cpp:1128 +#, kde-format msgid "Insert Smart Newline" msgstr "Inserir unha nova liña intelixente" #: view/kateview.cpp:1129 +#, kde-format msgid "" "Insert newline including leading characters of the current line which are " "not letters or numbers." @@ -8141,10 +7310,12 @@ "letras nin números." #: view/kateview.cpp:1139 +#, kde-format msgid "&Indent" msgstr "&Sangrar" #: view/kateview.cpp:1140 +#, kde-format msgid "" "Use this to indent a selected block of text.

    You can configure " "whether tabs should be honored and used or replaced with spaces, in the " @@ -8155,26 +7326,32 @@ "no diálogo de configuración." #: view/kateview.cpp:1147 +#, kde-format msgid "&Unindent" msgstr "&Borrar a sangría" #: view/kateview.cpp:1148 +#, kde-format msgid "Use this to unindent a selected block of text." msgstr "Use isto para reducir a sangría do bloque de texto escollido." #: view/kateview.cpp:1166 +#, kde-format msgid "Fold Toplevel Nodes" msgstr "Contraer os nodos no nivel superior" #: view/kateview.cpp:1171 +#, kde-format msgid "Unfold Toplevel Nodes" msgstr "Expandir os nodos do nivel superior" #: view/kateview.cpp:1184 +#, kde-format msgid "Fold Current Node" msgstr "Contraer o nodo actual" #: view/kateview.cpp:1188 +#, kde-format msgid "Unfold Current Node" msgstr "Contraer o nodo actual" @@ -8184,21 +7361,24 @@ msgstr "(S/L) %1" #: view/kateview.cpp:3475 +#, kde-format msgid "Export File as HTML" msgstr "Exportar o ficheiro como HTML" #: view/kateviewhelpers.cpp:213 view/kateviewhelpers.cpp:260 -#: view/kateviewhelpers.cpp:836 +#: view/kateviewhelpers.cpp:841 #, kde-format msgctxt "from line - to line" msgid "
    %1

    %2
    " msgstr "
    %1

    %2
    " -#: view/kateviewhelpers.cpp:1010 +#: view/kateviewhelpers.cpp:1015 +#, kde-format msgid "Available Commands" msgstr "Ordes dispoñíbeis" -#: view/kateviewhelpers.cpp:1012 +#: view/kateviewhelpers.cpp:1017 +#, kde-format msgid "" "

    For help on individual commands, do 'help <command>'" @@ -8206,17 +7386,18 @@ "

    Para obter axuda acerca das ordes, escriba «help <orde>»

    " -#: view/kateviewhelpers.cpp:1020 +#: view/kateviewhelpers.cpp:1025 #, kde-format msgid "No help for '%1'" msgstr "Non hai axuda para «%1»" -#: view/kateviewhelpers.cpp:1023 +#: view/kateviewhelpers.cpp:1028 #, kde-format msgid "No such command %1" msgstr "Non hai tal orde %1" -#: view/kateviewhelpers.cpp:1029 +#: view/kateviewhelpers.cpp:1034 +#, kde-format msgid "" "

    This is the Katepart command line.
    Syntax: command " "[ arguments ]
    For a list of available commands, enter " @@ -8228,47 +7409,53 @@ "escriba help list
    Para obter axuda acerca dunha " "orde, escriba help <orde>

    " -#: view/kateviewhelpers.cpp:1115 vimode/emulatedcommandbar/commandmode.cpp:222 +#: view/kateviewhelpers.cpp:1120 vimode/emulatedcommandbar/commandmode.cpp:222 #, kde-format msgid "No such command: \"%1\"" msgstr "Non hai tal orde: «%1»" -#: view/kateviewhelpers.cpp:1119 vimode/emulatedcommandbar/commandmode.cpp:203 +#: view/kateviewhelpers.cpp:1124 vimode/emulatedcommandbar/commandmode.cpp:203 #, kde-format msgid "Error: No range allowed for command \"%1\"." msgstr "Erro: Non se permiten intervalos na orde «%1»." -#: view/kateviewhelpers.cpp:1130 vimode/emulatedcommandbar/commandmode.cpp:208 +#: view/kateviewhelpers.cpp:1135 vimode/emulatedcommandbar/commandmode.cpp:208 +#, kde-format msgid "Success: " msgstr "Éxito: " -#: view/kateviewhelpers.cpp:1144 vimode/emulatedcommandbar/commandmode.cpp:217 +#: view/kateviewhelpers.cpp:1149 vimode/emulatedcommandbar/commandmode.cpp:217 #, kde-format msgid "Command \"%1\" failed." msgstr "A orde «%1» fallou." -#: view/kateviewhelpers.cpp:2227 view/kateviewhelpers.cpp:2228 +#: view/kateviewhelpers.cpp:2232 view/kateviewhelpers.cpp:2233 #, kde-format msgid "Mark Type %1" msgstr "Tipo de marca %1" -#: view/kateviewhelpers.cpp:2250 +#: view/kateviewhelpers.cpp:2255 +#, kde-format msgid "Set Default Mark Type" msgstr "Escoller o tipo de marca predeterminada" -#: view/kateviewhelpers.cpp:2309 +#: view/kateviewhelpers.cpp:2314 +#, kde-format msgid "Disable Annotation Bar" msgstr "Desactivar a barra de anotacións" #: vimode/appcommands.cpp:75 +#, kde-format msgid "All documents written to disk" msgstr "Todos os documentos escritos no disco" #: vimode/appcommands.cpp:78 +#, kde-format msgid "Document written to disk" msgstr "Escribiuse o documento no disco" #: vimode/appcommands.cpp:193 +#, kde-format msgid "" "

    w/wa — write document(s) to disk

    Usage: w[a]

    Writes the current document(s) to disk. It can be called in " @@ -8283,6 +7470,7 @@ "nome hase mostrar o diálogo de ficheiros.

    " #: vimode/appcommands.cpp:203 +#, kde-format msgid "" "

    q/qa/wq/wqa — [write and] quit

    Usage: [w]q[a]

    Quits the application. If w is prepended, it also " @@ -8296,16 +7484,17 @@ "disk, a file dialog will be shown.

    " msgstr "" "

    q/qa/wq/wqa : [escribir e] saír

    Uso: [w]q[a]

    Sae do programa. Se engade w ao comezo, tamén escribe no " -"disco os documentos. Esta orde pode chamarse de varios xeitos:
    q: pecha a vista actual.
    qa: pecha todas as vista, saíndo " -"na práctica do programa.
    wq: escribe o documento actual no " -"disco e pecha a vista.
    wqa: escribe no disco todos os " -"documentos e sae.

    En calquera dos casos, se a vista que se pecha é a " -"última sáese do programa. Se o documento non ten nome e debe escribirse hase " -"mostrar un diálogo de ficheiros.

    " +"tt>

    Sae do aplicativo. Se engade w ao comezo, tamén escribe " +"no disco os documentos. Esta orde pode chamarse de varios xeitos:
    " +"q: pecha a vista actual.
    qa: pecha todas as vista, " +"saíndo na práctica do aplicativo.
    wq: escribe o documento " +"actual no disco e pecha a vista.
    wqa: escribe no disco todos " +"os documentos e sae.

    En calquera dos casos, se a vista que se pecha é " +"a última sáese do aplicativo. Se o documento non ten nome e debe escribirse " +"hase mostrar un diálogo de ficheiros.

    " #: vimode/appcommands.cpp:217 +#, kde-format msgid "" "

    x/xa — write and quit

    Usage: x[a]

    Saves document(s) and quits (exits). This command can be called " @@ -8319,12 +7508,13 @@ "

    x/xa : escribir e saír

    Uso: x[a]

    Garda " "documento(s) e sae (exits). Esta orde pode chamarse de dous xeitos:" "
    x: pecha a vista actual.
    xa: pecha todas as " -"vistas, saíndo do programa.

    En calquera dos casos se a vista que se " -"pecha é a última o programa sae. Se o documento non ten nome se debe " +"vistas, saíndo do aplicativo.

    En calquera dos casos se a vista que se " +"pecha é a última o aplicativo sae. Se o documento non ten nome se debe " "escribirse no disco hase mostrar un diálogo de ficheiros.

    A diferenza " "das ordes «w», esta só escribe o documento fose modificado.

    " #: vimode/appcommands.cpp:230 +#, kde-format msgid "" "

    sp,split— Split horizontally the current view into two

    Usage: sp[lit]

    The result is two views on the " @@ -8335,6 +7525,7 @@ "

    " #: vimode/appcommands.cpp:235 +#, kde-format msgid "" "

    vs,vsplit— Split vertically the current view into two

    Usage: vs[plit]

    The result is two views on the " @@ -8345,6 +7536,7 @@ "documento.

    " #: vimode/appcommands.cpp:240 +#, kde-format msgid "" "

    clo[se]— Close the current view

    Usage: clo[se]

    After executing it, the current view will be closed.

    " @@ -8353,6 +7545,7 @@ "p>" #: vimode/appcommands.cpp:245 +#, kde-format msgid "" "

    [v]new — split view and create new document

    Usage: " "[v]new

    Splits the current view and opens a new " @@ -8361,13 +7554,14 @@ "
    vnew — splits the view vertically and opens a new " "document.

    " msgstr "" -"

    [v]new: divide a vista e crea un documento novo

    Uso: " -"[v]new

    Divide a vista actual e abre un documento novo na nova " -"vista. Esta orde pode chamarse de dous xeitos:
    new: divide a " -"vista en horizontal e abre un documento novo.
    vnew: divide a " -"vista en vertical e abre un documento novo.

    " +"

    [v]new: divide a vista e crea un documento novo

    Uso: " +"[v]new

    Divide a vista actual e abre un documento novo " +"na nova vista. Esta orde pode chamarse de dous xeitos:
    new: " +"divide a vista en horizontal e abre un documento novo.
    vnew: " +"divide a vista en vertical e abre un documento novo.

    " #: vimode/appcommands.cpp:254 +#, kde-format msgid "" "

    e[dit] — reload current document

    Usage: e[dit]

    Starts editing the current document again. This is " @@ -8379,14 +7573,16 @@ "para editar de novo o ficheiro se foi modificado por outro programa.

    " #: vimode/appcommands.cpp:465 +#, kde-format msgid "" "

    b,buffer — Edit document N from the document list

    Usage: b[uffer] [N]

    " msgstr "" -"

    b,buffer: Editar o enésimo documento da lista

    Uso: b" -"[uffer] [N]

    " +"

    b,buffer: Editar o enésimo documento da lista

    Uso: " +"b[uffer] [N]

    " #: vimode/appcommands.cpp:470 +#, kde-format msgid "" "

    bp,bprev — previous buffer

    Usage: bp[revious] " "[N]

    Goes to [N]th previous document (\"buffer" @@ -8399,11 +7595,12 @@ "comezar polo fin se sobrepasa o comezo da lista.

    " #: vimode/appcommands.cpp:478 +#, kde-format msgid "" -"

    bn,bnext — switch to next document

    Usage: bn" -"[ext] [N]

    Goes to [N]th next document (\"buffer" -"\") in document list.[N] defaults to one.

    Wraps around the end " -"of the document list.

    " +"

    bn,bnext — switch to next document

    Usage: " +"bn[ext] [N]

    Goes to [N]th next document " +"(\"buffer\") in document list.[N] defaults to one.

    Wraps around the end of the document list.

    " msgstr "" "

    bn,bnext: ir ao seguinte documento

    Uso: bn[ext] [N]

    Vai ao [N]-ésimo seguinte documento («búfer») na " @@ -8411,6 +7608,7 @@ "da lista de documentos.

    " #: vimode/appcommands.cpp:486 +#, kde-format msgid "" "

    bf,bfirst — first document

    Usage: bf[irst]

    Goes to the first document (\"buffer\") in document " @@ -8421,6 +7619,7 @@ "documentos.

    " #: vimode/appcommands.cpp:492 +#, kde-format msgid "" "

    bl,blast — last document

    Usage: bl[ast]

    Goes to the last document (\"buffer\") in document " @@ -8431,6 +7630,7 @@ "documentos.

    " #: vimode/appcommands.cpp:497 +#, kde-format msgid "

    ls

    list current buffers

    " msgstr "

    ls

    Lista os búfers actuais.

    " @@ -8452,22 +7652,26 @@ #: vimode/cmds.cpp:87 #, kde-format msgid "Missing argument(s). Usage: %1 []" -msgstr "Faltan argumentos. Uso: %1 []" +msgstr "Faltan argumentos. Uso: %1 []" #: vimode/cmds.cpp:155 vimode/cmds.cpp:172 +#, kde-format msgid "Wrong arguments" msgstr "Argumentos incorrectos" #: vimode/config/configtab.cpp:216 +#, kde-format msgid "Unable to open the config file for reading." msgstr "Non foi posíbel abrir o ficheiro de configuración para lelo." #: vimode/config/configtab.cpp:216 +#, kde-format msgid "Unable to open file" msgstr "Non foi posíbel abrir o ficheiro" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkViCommandsOverride) #: vimode/config/configwidget.ui:35 +#, kde-format msgid "" "When selected, vi commands will override Kate's built-in commands. For " "example: Ctrl+R will redo, and override the standard action (showing the " @@ -8479,11 +7683,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkViCommandsOverride) #: vimode/config/configwidget.ui:38 +#, kde-format msgid "Let Vi commands override Kate shortcuts" msgstr "Deixar que as ordes de Vi se sobrepoñan ás de Kate" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkViRelLineNumbers) #: vimode/config/configwidget.ui:45 +#, kde-format msgid "" "Show the line number relative to the line with the cursor in front of each " "line." @@ -8493,11 +7699,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkViRelLineNumbers) #: vimode/config/configwidget.ui:48 +#, kde-format msgid "Display relative line numbers" msgstr "Mostrar números de liña relativos." #. i18n: ectx: property (whatsThis), widget (QGroupBox, groupBox) #: vimode/config/configwidget.ui:63 +#, kde-format msgid "" "Key mapping is used to change the meaning of typed keys. This allows you to " "move commands to other keys or make special keypresses for doing a series of " @@ -8508,8 +7716,8 @@ "\n" "This will prepend \"-- \" to a line when pressing F2." msgstr "" -"A asignación de teclas emprégase para mudar o significado das teclas que se " -"premen. Isto permite mover ordes a outras teclas ou facer pulsacións " +"A asignación de teclas emprégase para cambiar o significado das teclas que " +"se premen. Isto permite mover ordes a outras teclas ou facer pulsacións " "especiais para ordes especiais.\n" "\n" "Exemplo:\n" @@ -8519,11 +7727,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, groupBox) #: vimode/config/configwidget.ui:66 +#, kde-format msgid "Key Mapping" msgstr "Mapas de teclas" #. i18n: ectx: attribute (title), widget (QWidget, normalTab) #: vimode/config/configwidget.ui:76 +#, kde-format msgid "Normal mode" msgstr "Modo normal" @@ -8532,6 +7742,7 @@ #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) #: vimode/config/configwidget.ui:100 vimode/config/configwidget.ui:138 #: vimode/config/configwidget.ui:176 +#, kde-format msgid "Replacement" msgstr "Substituto" @@ -8540,40 +7751,47 @@ #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) #: vimode/config/configwidget.ui:105 vimode/config/configwidget.ui:143 #: vimode/config/configwidget.ui:181 +#, kde-format msgid "Recursive?" msgstr "Recursivo?" #. i18n: ectx: attribute (title), widget (QWidget, insertTab) #: vimode/config/configwidget.ui:114 +#, kde-format msgid "Insert mode" msgstr "Modo de inserción" #. i18n: ectx: attribute (title), widget (QWidget, visualTab) #: vimode/config/configwidget.ui:152 +#, kde-format msgid "Visual mode" msgstr "Modo visual" #. i18n: ectx: property (text), widget (QPushButton, btnRemoveSelectedRows) #: vimode/config/configwidget.ui:195 +#, kde-format msgid "Remove selected" msgstr "Eliminar o escollido" #. i18n: ectx: property (text), widget (QPushButton, btnAddNewRow) #: vimode/config/configwidget.ui:202 +#, kde-format msgid "Add new mapping" msgstr "Engadir un mapa novo" #. i18n: ectx: property (toolTip), widget (QPushButton, btnImportNormal) #: vimode/config/configwidget.ui:209 +#, kde-format msgid "" -"Read a vimrc file and attempt to import mappings specified with the \"[n]" -"noremap\" command." +"Read a vimrc file and attempt to import mappings specified with the " +"\"[n]noremap\" command." msgstr "" -"Le un ficheiro vimrc e tenta importar os mapas especificados coa orde «[n] " +"Le un ficheiro vimrc e intenta importar os mapas especificados coa orde «[n] " "noremap»." #. i18n: ectx: property (text), widget (QPushButton, btnImportNormal) #: vimode/config/configwidget.ui:212 +#, kde-format msgid "Import from vimrc file" msgstr "Importar dun ficheiro vimrc" @@ -8583,6 +7801,7 @@ msgstr "Marca definida: %1" #: vimode/marks.cpp:168 +#, kde-format msgid "There are no more chars for the next bookmark." msgstr "Non hai máis caracteres para o marcador seguinte." @@ -8601,867 +7820,3 @@ #, kde-format msgid "Mark not set: %1" msgstr "Marca non definida: %1" - -#~ msgctxt "short translation please" -#~ msgid "Auto insert asterisk in doxygen comments." -#~ msgstr "Ocúpase dos asteriscos nos comentarios de doxygen." - -#~ msgid "File Was Deleted on Disk" -#~ msgstr "Borrouse o ficheiro no disco" - -#~ msgid "File Changed on Disk" -#~ msgstr "Ficheiro modificado no disco" - -#~ msgid "" -#~ "Do nothing. Next time you focus the file, or try to save it or close it, " -#~ "you will be prompted again." -#~ msgstr "" -#~ "Non facer nada. A vindeira vez que focalice, tente gardar ou pechar o " -#~ "ficheiro, preguntaráselle outra vez." - -#~ msgid "Overwrite the disk file with the editor content." -#~ msgstr "Sobrescribe o ficheiro do disco cos contidos do editor." - -#~ msgid "Close the document." -#~ msgstr "Pechar o documento." - -#~ msgid "Ignoring amount of white space changed, the files are identical." -#~ msgstr "" -#~ "Excepto por modificacións nos espazos en branco, os ficheiros son " -#~ "idénticos." - -#~ msgid "" -#~ "Ignoring means that you will not be warned again (unless the disk file " -#~ "changes once more): if you save the document, you will overwrite the file " -#~ "on disk; if you do not save then the disk file (if present) is what you " -#~ "have." -#~ msgstr "" -#~ "Se ignora non voltará a ser avisado (a non ser que o ficheiro no disco " -#~ "volte a cambiar): se garda o documento, sobrescribirá o ficheiro do " -#~ "disco; se non garda entón o ficheiro no disco (se estiver presente) é o " -#~ "que terá." - -#~ msgid "You Are on Your Own" -#~ msgstr "É a súa escolla" - -#~ msgid "Ignore white space changes" -#~ msgstr "Ignorar as modificacións de espazos en branco" - -#~ msgid "" -#~ "Calculates the difference between the editor contents and the disk file " -#~ "using diff(1)." -#~ msgstr "" -#~ "Calcula a diferenza entre os contidos do editor e os do ficheiro no disco " -#~ "mediante diff(1)." - -#~ msgid "" -#~ "Selected directory for swap file storage does not exist. Do you want to " -#~ "create it?" -#~ msgstr "" -#~ "O cartafol escollido para o almacenamento do ficheiro de intercambio non " -#~ "existe. Desexa crealo?" - -#~ msgid "Missing Swap File Directory" -#~ msgstr "Falta o ficheiro de intercambio escollido" - -#~ msgid "KDE Default" -#~ msgstr "Predeterminado de KDE" - -#~ msgid "InputMode" -#~ msgstr "Modo de entrada" - -#~ msgid "&Next" -#~ msgstr "&Seguinte" - -#~ msgid "&Previous" -#~ msgstr "&Anterior" - -#~ msgid "&Match case" -#~ msgstr "&Distinguir as maiúsculas das minúsculas." - -#~ msgid "Case-sensitive searching" -#~ msgstr "Buscar distinguindo as maiúsculas das minúsculas." - -#~ msgid "Selection &only" -#~ msgstr "Só na &selección." - -#~ msgid "Mo&de:" -#~ msgstr "Mo&do:" - -#~ msgctxt "Language" -#~ msgid "PostScript Printer Description" -#~ msgstr "Descrición de impresora PostScript" - -#~ msgctxt "spinbox special value for 1" -#~ msgid "1 character" -#~ msgstr "1 carácter" - -#~ msgctxt "suffix for spinbox >1" -#~ msgid " characters" -#~ msgstr " caracteres" - -#~ msgctxt "suffix for spinbox >1 wrap words at (value is at 20 or larger)" -#~ msgid " characters" -#~ msgstr " caracteres" - -#~ msgid "Folder Config File" -#~ msgstr "Ficheiro de configuración de cartafol" - -#~ msgid "Search &depth for config file:" -#~ msgstr "&Profundidade de busca do ficheiro de configuración:" - -#, fuzzy -#~ msgid "" -#~ "The template needs information about you, which is stored in your address " -#~ "book.\n" -#~ "However, the required plugin could not be loaded.\n" -#~ "\n" -#~ "Please install the KDEPIM/Kontact package for your system." -#~ msgstr "" -#~ "O modelo precisa información acerca de Vde., que está gardada no seu " -#~ "caderno de enderezos.\n" -#~ "Porén, non foi posíbel cargar o complemento preciso.\n" -#~ "\n" -#~ "Por favor, instale o paquete KDEPIM/Kontact no sistema." - -#, fuzzy -#~| msgid "&Indentation width:" -#~ msgid "Indentation width" -#~ msgstr "Anc&ho do sangrado:" - -#~ msgid "Function 'action' not found in script: %1" -#~ msgstr "Non se atopou a función «action» no script: %1" - -#~ msgid "Error calling action(%1)" -#~ msgstr "Aconteceu un erro ao chamar por action(%1)" - -#~ msgid "Errors!" -#~ msgstr "Hai erros!" - -#~ msgid "Error: %1" -#~ msgstr "Erro: %1" - -#~ msgctxt "Language" -#~ msgid "Restructured Text" -#~ msgstr "Restructured Text" - -#~ msgid "" -#~ "

    w/wa — write document(s) to disk

    Usage: w[a]" -#~ "

    Writes the current document(s) to disk. It can be called " -#~ "in two ways:
    w — writes the current document to " -#~ "disk
    wa — writes all document to disk.

    If no " -#~ "file name is associated with the document, a file dialog will be shown." -#~ msgstr "" -#~ "

    w/wa : escribir o(s) documento(s) no disco

    Uso: w" -#~ "[a]

    Escribe o(s) documento(s) no disco. Pode chamarse de " -#~ "dous xeitos:
    w: escribe no disco o documento actual
    " -#~ "wa : escribe no disco todos os documentos.

    Se o documento " -#~ "non ten nome hase mostrar o diálogo de ficheiros.

    " - -#~ msgid "Unable to find '%1'" -#~ msgstr "Non foi posíbel atopar «%1»" - -#, fuzzy -#~| msgid "Auto Word Completion" -#~ msgid "A&uto Word Completion HI" -#~ msgstr "Completar as palabras automaticamente" - -#~ msgid "&VI Input Mode" -#~ msgstr "Modo de entrada de &VI" - -#~ msgid "" -#~ "When selected, the vi input mode will be enabled when opening a new view. " -#~ "You can still toggle the vi input mode on/off for a particular view in " -#~ "the Edit menu." -#~ msgstr "" -#~ "Se escolle esta opción, activará o modo de entrada vi cando abra unha " -#~ "vista nova. Aínda poderá conmutar o modo de entrada vi nunha vista " -#~ "particular no menú Editar." - -#~ msgid "Use Vi input mode" -#~ msgstr "Empregar o modo de entrada Vi" - -#, fuzzy -#~| msgid "Move to Matching Bracket" -#~ msgid "Matching Bracket" -#~ msgstr "Desprazarse até a parella deste paréntese" - -#, fuzzy -#~| msgctxt "Language Section" -#~| msgid "Other" -#~ msgid "Other" -#~ msgstr "Outra" - -#~ msgctxt "Language" -#~ msgid "C++" -#~ msgstr "C++" - -#~ msgid "" -#~ "Changing the power user mode affects only newly opened / created " -#~ "documents. In KWrite a restart is recommended." -#~ msgstr "" -#~ "A mudanza do modo de usuario avanzado só afectará aos documentos que abra " -#~ "ou cree de agora en diante. En KWrite recoméndase reiniciar." - -#~ msgid "Power user mode changed" -#~ msgstr "Trocouse o modo de usuario avanzado" - -#~ msgid "Editor Plugins" -#~ msgstr "Engadidos do editor" - -#~ msgid "" -#~ "The editor will search the given number of folder levels upwards for a ." -#~ "kateconfig file and load the settings line from it." -#~ msgstr "" -#~ "O editor busca neste número de niveis de cartafoles superiores un " -#~ "ficheiro .kateconfig e carga a configuración del." - -#~ msgid "Do not use config file" -#~ msgstr "Non usar un ficheiro de configuración" - -#~ msgid "Disable swap files syncing" -#~ msgstr "Desactivar a sincronización dos ficheiros de intercambio" - -#~ msgid "Text Area Background" -#~ msgstr "Fondo da área de texto" - -#~ msgid "Normal text:" -#~ msgstr "Texto normal:" - -#~ msgid "Selected text:" -#~ msgstr "Texto escollido:" - -#~ msgid "" -#~ "

    Sets the background color of the selection.

    To set the text " -#~ "color for selected text, use the \"Configure Highlighting\" dialog." -#~ "

    " -#~ msgstr "" -#~ "

    Axusta a cor de fondo da escolla.

    Para cambiar a cor do texto " -#~ "escollido, use o diálogo «Configuración do realzado».

    " - -#~ msgid "Current line:" -#~ msgstr "Liña actual:" - -#~ msgid "

    Select the marker type you want to change.

    " -#~ msgstr "

    Escolle o tipo de marca a modificar.

    " - -#~ msgid "" -#~ "

    Sets the background color of the selected marker type.

    Note: The marker color is displayed lightly because of transparency.

    " -#~ msgstr "" -#~ "

    Axusta a cor de fondo do tipo de marca escollida.

    Nota: A " -#~ "cor da marca móstrase suavizada debido á transparencia.

    " - -#~ msgid "Additional Elements" -#~ msgstr "Elementos adicionais" - -#~ msgid "Left border background:" -#~ msgstr "Fondo do bordo esquerdo:" - -#~ msgid "Line numbers:" -#~ msgstr "Números de liña:" - -# skip-rule: expression_when/if enabled -#~ msgid "" -#~ "

    This color will be used to draw the line numbers (if enabled) and the " -#~ "lines in the code-folding pane.

    " -#~ msgstr "" -#~ "

    Esta cor ha ser usada para os números de liña (se están visíbeis) e " -#~ "para as liñas na área de código contraido.

    " - -#~ msgid "Bracket highlight:" -#~ msgstr "Realzado de parénteses:" - -#~ msgid "Word wrap markers:" -#~ msgstr "Marcas de división de liña:" - -#~ msgid "Tab and space markers:" -#~ msgstr "Marcas de tabulación e espazos:" - -#~ msgid "Spelling mistake line:" -#~ msgstr "Liña con erro ortográfico:" - -#~ msgid "" -#~ "Changing this mode affects only newly opened / created documents. In " -#~ "KWrite a restart is recommended." -#~ msgstr "" -#~ "A mudanza do modo só afectará aos documentos que abra ou cree de agora en " -#~ "diante. En KWrite recoméndase reiniciar." - -#~ msgid "Enable power user mode (KDE 3 mode)" -#~ msgstr "Activar o modo de usuario experto (modo KDE 3)" - -#~ msgid "" -#~ "The file %1 was opened and contained lines longer than the configured " -#~ "Line Length Limit (%2 characters). Those lines were wrapped and the " -#~ "document is set to read-only mode, as saving will modify its content." -#~ msgstr "" -#~ "Abriuse o ficheiro %1 e contiña liñas máis longas do que o límite de " -#~ "lonxitude de liña (%2 caracteres) que ten configurado. Esas liñas " -#~ "dividíronse e o documento púxose no modo de só para lectura, xa que " -#~ "gardalo había modificar o contido." - -#~ msgid "Edit Snippet Repository %1" -#~ msgstr "Editar o repositorio de fragmentos %1" - -#~ msgid "Create New Snippet Repository" -#~ msgstr "Crear un repositorio de fragmentos novo" - -#~ msgid "leave empty for general purpose snippets" -#~ msgstr "deixar baleiro para fragmentos de tipo xeral" - -#~ msgid "" -#~ "The name of the repository. Must not be empty or contain forward slashes " -#~ "(/)." -#~ msgstr "" -#~ "O nome do repositorio. Non pode estar baleiro nin conter barras (/)." - -#~ msgid "Na&mespace:" -#~ msgstr "Espazo de no&mes:" - -#~ msgid "" -#~ "

    If non-empty this will be used as a prefix for all snippets in this " -#~ "repository during code completion.

    \n" -#~ "

    Note: No spaces allowed.

    " -#~ msgstr "" -#~ "

    De non estar baleiro, emprégase como prefixo de todos os fragmentos do " -#~ "repositorio durante o completado do código.

    \n" -#~ "

    Nota: Non se permiten espazos.

    " - -#~ msgid "&License:" -#~ msgstr "&Licenza:" - -#~ msgid "&Authors:" -#~ msgstr "&Autores:" - -#~ msgid "&File types:" -#~ msgstr "Tipos de &ficheiro:" - -#~ msgid "Help" -#~ msgstr "Axuda" - -#~ msgid "Edit Snippet %1 in %2" -#~ msgstr "Editar o fragmento %1 de %2" - -#~ msgid "Create New Snippet in Repository %1" -#~ msgstr "Crear un fragmento novo no repositorio %1" - -#~ msgid "Snippet name cannot contain spaces" -#~ msgstr "O nome do fragmento non pode conter espazos" - -#~ msgid "" -#~ "The snippet contains unsaved changes. Do you want to continue and lose " -#~ "all changes?" -#~ msgstr "" -#~ "O fragmento contén cambios sen gardar. Desexa continuar e perder todos os " -#~ "cambios?" - -#~ msgid "Warning - Unsaved Changes" -#~ msgstr "Aviso: hai cambios non gardados" - -#~ msgid "" -#~ "

    The name will also be used as the identifier during code completion.\n" -#~ "

    Note: No spaces allowed.

    " -#~ msgstr "" -#~ "

    O nome tamén se emprega como identificador durante o completado do " -#~ "código.

    \n" -#~ "

    Nota: Non se permiten espazos.

    " - -#~ msgid "Display &Prefix:" -#~ msgstr "&Prefixo mostrado:" - -#~ msgid "The display prefix will be shown during code completion." -#~ msgstr "O prefixo mostrado aparece durante o completado do código." - -#~ msgid "Display &Arguments:" -#~ msgstr "&Argumentos mostrados:" - -#~ msgid "The arguments will be shown during code completion." -#~ msgstr "Os argumentos aparecen durante o completado do código." - -#~ msgid "Display P&ostfix:" -#~ msgstr "P&ostfixo mostrado:" - -#~ msgid "The postfix will be shown during code completion." -#~ msgstr "O postfixo aparece durante o completado do código." - -#~ msgid "Shortcut:" -#~ msgstr "Atallo:" - -#~ msgid "&Snippet" -#~ msgstr "&Fragmento" - -#~ msgid "S&cripts" -#~ msgstr "S&cripts" - -#~ msgctxt "Autogenerated repository name for a programming language" -#~ msgid "%1 snippets" -#~ msgstr "Fragmentos de %1" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "insert snippet %1" -#~ msgstr "inserir o fragmento %1" - -#~ msgid "Snippets" -#~ msgstr "Fragmentos" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ "You have edited a data file not located in your personal data directory; " -#~ "as such, a renamed clone of the original data file has been created " -#~ "within your personal data directory." -#~ msgstr "" -#~ "Modificou un ficheiro de datos que non estaba situado no seu directorio " -#~ "persoal de datos; como tal, creouse un clon do ficheiro de datos orixinal " -#~ "co nome cambiado dentro do seu directorio persoal de datos." - -#~ msgid "Output file '%1' could not be opened for writing" -#~ msgstr "Non foi posíbel abrir o ficheiro de saída «%1» para escribir nel" - -#~ msgid "Cannot open snippet repository %1." -#~ msgstr "Non é posíbel abrir o repositorio %1." - -#~ msgid "Invalid XML snippet file: %1" -#~ msgstr "O ficheiro de fragmentos en XML é erróneo: %1" - -#~ msgid "" -#~ "Repository is disabled, the contained snippets will not be shown during " -#~ "code-completion." -#~ msgstr "" -#~ "O repositorio está desactivado; os fragmentos que contén non aparecerán " -#~ "durante o completado do código." - -#~ msgid "Applies to all filetypes" -#~ msgstr "Aplícase a todos os tipos de ficheiro" - -#~ msgid "Applies to the following filetypes: %1" -#~ msgstr "Aplícase aos tipos de ficheiro seguintes: %1" - -#~ msgid "Add Repository" -#~ msgstr "Engadir un repositorio" - -#~ msgid "Edit Repository" -#~ msgstr "Editar un repositorio" - -#~ msgid "Remove Repository" -#~ msgstr "Eliminar o repositorio" - -#~ msgid "Publish Repository" -#~ msgstr "Publicar un repositorio" - -#~ msgid "Add Snippet" -#~ msgstr "Engadir un fragmento" - -#~ msgid "Edit Snippet" -#~ msgstr "Modificar este fragmento" - -#~ msgid "Remove Snippet" -#~ msgstr "Eliminar o fragmento" - -#~ msgid "Get New Snippets" -#~ msgstr "Obter fragmentos novos" - -#~ msgid "Repository: %1" -#~ msgstr "Repositorio: %1" - -#~ msgid "Do you really want to delete the snippet \"%1\"?" -#~ msgstr "Desexa realmente eliminar o fragmento «%1»?" - -#~ msgid "" -#~ "Do you really want to delete the repository \"%1\" with all its snippets?" -#~ msgstr "" -#~ "Desexa realmente eliminar o repositorio «%1» con todos os seus fragmentos?" - -#~ msgid "Define filter here" -#~ msgstr "Defina aquí o filtro" - -#~ msgid "Filter..." -#~ msgstr "Filtrar..." - -#~ msgid "Extensions Manager" -#~ msgstr "Xestor de extensións" - -#~ msgid "Create Snippet" -#~ msgstr "Crear un fragmento" - -#~ msgid "Snippets..." -#~ msgstr "Fragmentos..." - -#~ msgid "OVR" -#~ msgstr "OVR" - -#~ msgid "INS" -#~ msgstr "INS" - -#~ msgid "Move To..." -#~ msgstr "Mover para..." - -#~ msgid "Move Left" -#~ msgstr "Mover para a esquerda" - -#~ msgid "Move Right" -#~ msgstr "Mover para a dereita" - -#~ msgid "Move Up" -#~ msgstr "Subir" - -#~ msgid "Move Down" -#~ msgstr "Baixar" - -#~ msgid "Error: cannot open utils.js" -#~ msgstr "Erro: non é posíbel abrir utils.js" - -#~ msgid "Syntax Error: Parse error" -#~ msgstr "Erro de sintaxe: erro de análise sintáctica" - -#~ msgid "Error: There are bad defined functions" -#~ msgstr "Erro: hai funcións mal definidas" - -#~ msgid "Execute" -#~ msgstr "Executar" - -#~ msgid "There's no code to execute" -#~ msgstr "Non hai código para executar" - -#~ msgid "Show the JavaScript Console" -#~ msgstr "Mostrar a consola de JavaScript" - -#~ msgid "Show/hide the JavaScript Console on the bottom of the view." -#~ msgstr "Mostra/Agocha a consola de JavaScript do fondo da vista." - -#~ msgid "Always on" -#~ msgstr "Sempre activo" - -#~ msgid "Sorry, but Kate is not able to replace newlines, yet" -#~ msgstr "Kate non pode substituír os saltos de liña." - -#, fuzzy -#~| msgid "Print the current document." -#~ msgid "Modify the current snippet" -#~ msgstr "Imprimir o documento actual." - -#, fuzzy -#~| msgid "Create New Snippet Repository" -#~ msgid "Create a new repository file" -#~ msgstr "Crear un repositorio de fragmentos novo" - -#, fuzzy -#~| msgid "Create Snippet" -#~ msgid "Kate Snippets" -#~ msgstr "Crear un fragmento" - -#, fuzzy -#~| msgid "" -#~| "You have edited a data file not located in your personal data directory; " -#~| "as such, a renamed clone of the original data file has been created " -#~| "within your personal data directory." -#~ msgid "" -#~ "You have edited a data file not located in your personal data directory, " -#~ "but a suitable filename could not be generated for storing a clone of the " -#~ "file within your personal data directory." -#~ msgstr "" -#~ "Modificou un ficheiro de datos que non estaba situado no seu directorio " -#~ "persoal de datos; como tal, creouse un clon do ficheiro de datos orixinal " -#~ "co nome cambiado dentro do seu directorio persoal de datos." - -#, fuzzy -#~| msgid "Get New Snippets" -#~ msgid "New Snippet" -#~ msgstr "Obter fragmentos novos" - -#, fuzzy -#~| msgid "&File types:" -#~ msgid "all file types" -#~ msgstr "Tipos de &ficheiro:" - -#, fuzzy -#~| msgid "" -#~| "Do you really want to delete the repository \"%1\" with all its snippets?" -#~ msgid "" -#~ "Do you really want to delete the file '%1' from the repository? This " -#~ "action is irreversible." -#~ msgstr "" -#~ "Desexa realmente eliminar o repositorio «%1» con todos os seus fragmentos?" - -#, fuzzy -#~| msgid "Invalid XML snippet file: %1" -#~ msgid "Deleting snippet file" -#~ msgstr "O ficheiro de fragmentos en XML non é válido: %1" - -#, fuzzy -#~| msgid "Name unspecified" -#~ msgid "No file specified" -#~ msgstr "Nome non especificado" - -#, fuzzy -#~| msgid "Output file '%1' could not be opened for writing" -#~ msgid "File could not be copied to repository" -#~ msgstr "Non foi posíbel abrir o ficheiro de saída «%1» para escribir nel" - -#, fuzzy -#~| msgid "Edit Snippet Repository %1" -#~ msgid "Snippet Repository:" -#~ msgstr "Editar o repositorio de fragmentos %1" - -#, fuzzy -#~| msgid "Snippets..." -#~ msgid "New Snippet File..." -#~ msgstr "Fragmentos..." - -#, fuzzy -#~| msgid "Get New Snippets" -#~ msgid "Get New Snippets..." -#~ msgstr "Obter fragmentos novos" - -#, fuzzy -#~| msgid "Invalid XML snippet file: %1" -#~ msgid "listing by snippet file" -#~ msgstr "O ficheiro de fragmentos en XML non é válido: %1" - -#, fuzzy -#~| msgid "Create Snippet" -#~ msgid "Kate Part Snippets" -#~ msgstr "Crear un fragmento" - -#~ msgid "" -#~ "By default, an extra status bar will be used when the Vi input mode is " -#~ "enabled. This status bar shows commands while they are being typed and " -#~ "messages/errors produced by Vi commands.\n" -#~ "\n" -#~ "Checking this options will hide this extra status line." -#~ msgstr "" -#~ "Por omisión, ao activar o movo de entrada de Vi empregarase unha barra de " -#~ "estado adicional, onde se mostran as ordes á medida que as escribe así " -#~ "como as mensaxes/erros producidos polas ordes de Vi.\n" -#~ "\n" -#~ "Se escolle esta opción acochará esta liña adicional de estado." - -#~ msgid "Hide the Vi mode status bar" -#~ msgstr "Acochar a barra de estado do modo Vi" - -#~ msgid "&Keep highlighting" -#~ msgstr "Manter o &realzado" - -#~ msgid "Keep search and replace highlighting marks" -#~ msgstr "Manter as marcar de realzado de buscar e substituír" - -#~ msgid "R/O" -#~ msgstr "S/L" - -#~ msgid "Close message (Escape)" -#~ msgstr "Pechar a mensaxe (Escape)" - -#~ msgid "Unfold All Nodes" -#~ msgstr "Expandir todo os nodos" - -#~ msgid "Fold Multiline Comments" -#~ msgstr "Contraer os comentarios multiliña" - -#~ msgid "Fold Nodes in Level %1" -#~ msgstr "Contraer os nodos no nivel %1" - -#~ msgid "Unfold Nodes in Level %1" -#~ msgstr "Contraer os nodos no nivel %1" - -#~ msgid "Show &folding markers (if available)" -#~ msgstr "Mostrar marcas de &pregado (de ser aplicábel)" - -#~ msgid "Plugins" -#~ msgstr "Engadidos" - -#, fuzzy -#~| msgid "Move Word Left" -#~ msgid "Programmer's Move Word Left" -#~ msgstr "Moverse unha palabra á esquerda" - -#, fuzzy -#~| msgid "Select Word Left" -#~ msgid "Programmer's Select Word Left" -#~ msgstr "Escoller unha palabra á esquerda" - -#, fuzzy -#~| msgid "Move Word Right" -#~ msgid "Programmer's Move Word Right" -#~ msgstr "Moverse unha palabra á dereita" - -#, fuzzy -#~| msgid "Select Word Right" -#~ msgid "Programmer's Select Word Right" -#~ msgstr "Escoller unha palabra á dereita" - -#~ msgctxt "Language" -#~ msgid "Prolog" -#~ msgstr "Prolog" - -#~ msgid "" -#~ "Selections will be overwritten by typed text and will be lost on cursor " -#~ "movement." -#~ msgstr "" -#~ "As seleccións serán sobrescritas co texto escrito e perderanse co " -#~ "movemento do cursor." - -#~ msgid "&Normal" -#~ msgstr "&Normal" - -#~ msgid "Selections will stay even after cursor movement and typing." -#~ msgstr "As seleccións permanecerán despois de mover o cursor ou escribir." - -#~ msgid "Cursor && Selection" -#~ msgstr "Cursor e selección" - -#~ msgid "" -#~ "The filter/check plugin '%1' could not be found, still continue saving of " -#~ "%2" -#~ msgstr "" -#~ "Non foi posíbel atopar o engadido de filtro/comprobación «%1». Mesmo así " -#~ "continúase a gardar %2" - -#~ msgid "Saving problems" -#~ msgstr "Problemas ao gardar" - -#~ msgid "" -#~ "When the user types a left bracket ([,(, or {) KateView automatically " -#~ "enters the right bracket (}, ), or ]) to the right of the cursor." -#~ msgstr "" -#~ "Cando o usuario escribe un paréntese esquerdo ([,(, ou {) KateView insire " -#~ "automaticamente o dereito(},) ou ]) á dereita do cursor." - -#~ msgid "Broken Encoding" -#~ msgstr "Codificación estragada" - -#~ msgid "The file %1 is a binary, saving it will result in a corrupt file." -#~ msgstr "O ficheiro %1 é un binario; gardalo pode corrompelo." - -#~ msgid "Trying to Save Binary File" -#~ msgstr "Intento de gardar un ficheiro binario" - -#~ msgid "" -#~ "

    When on, moving the insertion cursor using the Left and " -#~ "Right keys will go on to previous/next line at beginning/end of " -#~ "the line, similar to most editors.

    When off, the insertion cursor " -#~ "cannot be moved left of the line start, but it can be moved off the line " -#~ "end, which can be very handy for programmers.

    " -#~ msgstr "" -#~ "

    Se o activa, ao mover o cursor coas teclas Esquerda e " -#~ "Dereita fará que vaia para a liña anterior/seguinte cando estea no " -#~ "comezo/final da liña, como na maioría dos editores.

    Se o desactiva, " -#~ "o cursor de inserción non poderá ser movido á esquerda do comezo da liña, " -#~ "pero poderá superar o fin da liña, o que pode ser moi cómodo para os " -#~ "programadores.

    " - -#~ msgid "Wrap c&ursor" -#~ msgstr "Axustar o c&ursor" - -#~ msgid "" -#~ "If this is enabled, the editor will remove any trailing whitespace on " -#~ "lines that are changed through editing." -#~ msgstr "" -#~ "Se escolle esta opción, o editor eliminará calquera espazo en branco ao " -#~ "final das liñas que se modifiquen editándoos." - -#~ msgid "Remove &trailing spaces while editing" -#~ msgstr "Eliminar os espazos en branco &finais ao editar" - -#, fuzzy -#~| msgid "" -#~| "The editor will automatically eliminate extra spaces at the ends of " -#~| "lines of text while loading/saving the file. This change is only visible " -#~| "after a save if you reload the file." -#~ msgid "" -#~ "The editor will automatically eliminate extra spaces at the ends of lines " -#~ "of text while saving the file. This change is only visible after a save " -#~ "if you reload the file." -#~ msgstr "" -#~ "O editor elimina automaticamente os espazos adicionais nos finais das " -#~ "liñas do texto ao cargar/gardar o ficheiro. Esta modificación só é " -#~ "visíbel tras gardar se carga de novo o ficheiro." - -#, fuzzy -#~| msgid "Remove &trailing spaces while editing" -#~ msgctxt "short translation please" -#~ msgid "Remove trailing spaces when editing a line." -#~ msgstr "Eliminar os espazos en branco &finais ao editar" - -#~ msgid "" -#~ "\n" -#~ "

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Recuperación de datos (Axuda)

    Non foi posíbel recuperar todos os datos. Probabelmente o ficheiro " -#~ "de intercambio estaba incompleto.

    " - -#~ msgid "OK" -#~ msgstr "Aceptar" - -#~ msgid "Overwrite" -#~ msgstr "Sobrescribir" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Recuperación de datos (Axuda)" -#~ "

    O ficheiro non se fechou correctamente. Desexa " -#~ "recuperar os datos?

    " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "Ámbito" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Cores" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Cores" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "&Cor normal..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "&Cor normal..." - -#~ msgid "Template Background" -#~ msgstr "Fondo do modelo" diff -Nru ktexteditor-5.28.0/po/gu/ktexteditor5.po ktexteditor-5.31.0/po/gu/ktexteditor5.po --- ktexteditor-5.28.0/po/gu/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/gu/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2009-05-13 15:41+0530\n" "Last-Translator: Kartik Mistry \n" "Language-Team: Gujarati \n" @@ -18,270 +18,330 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "઼કોડ પૂર્તિ રૂપરેખાંકન" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "હંમેશા" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "શ્રેષ્ઠ મેળ" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "નેમસ્પેશીસ" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "ક્લાસીસ" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "સ્ટ્ર્ક્ટ્સ" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "યુનિયન્સ" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "વિધેયો" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "ચલો" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "એન્યુમરેશન્સ" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "પૂર્વગ" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "ચિહ્ન" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "અવકાશ" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "નામ" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "દલીલો" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "પોસ્ટફિક્સ" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "પબ્લિક" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "પ્રોટેક્ટેડ" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "પ્રાઇવેટ" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "સ્ટેટીક" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "કોન્સ્ટન્ટ" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "નેમસ્પેશ" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "ક્લાસ" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "સ્ટ્રક્ટ" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "યુનિયન" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "ફંકશન" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "ચલ" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "એન્યુમનેરેશન" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "ટેમ્પલેટ" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "વર્ચ્યુઅલ" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "ઓવરરાઇડ" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "ઇનલાઇન" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "ફ્રેન્ડ" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "સિગ્નલ" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "સ્લોટ" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "સ્થાનિક અવકાશ" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "નેમસ્પેશ અવકાશ" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "અજ્ઞાત ગુણધર્મ" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "આપમેળે શબ્દ પૂર્તિ" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "શૅલ પૂર્તિ" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "ફાઇલ (&F)" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "ફેરફાર (&E)" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "દેખાવ (&V)" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "કિનારીઓ" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "઼" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "સાધનો (&T)" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "શબ્દ પૂર્તિ" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "ગોઠવણીઓ (&S)" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "મુખ્ય સાધનપટ્ટી" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "વાળવાની નિશાનીઓ બતાવો (&M)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -289,13 +349,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show preview of folded code" msgstr "હાલનો દસ્તાવેજ છાપો." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -304,11 +365,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "ચિહ્ન કિનારી બતાવો (&i)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -316,11 +379,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "લીટી ક્રમાંકો બતાવો (&l)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -328,13 +393,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "વાળવાની નિશાનીઓ બતાવો (&M)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -342,11 +408,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "સરકપટ્ટી ચિહ્નો બતાવો (&s)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " @@ -354,11 +422,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -366,13 +436,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgid "Show scrollbar mini-map" msgstr "સરકપટ્ટી ચિહ્નો બતાવો (&s)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -380,53 +451,59 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save the current document" msgid "Map the whole document" msgstr "હાલનો દસ્તાવેજ સંગ્રહ કરો" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tab wi&dth:" -msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "ટેબ પહોળાઇ (&d):" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "હંમેશા ચાલુ" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy +#, fuzzy, kde-format #| msgid "Always" msgid "Always Off" msgstr "હંમેશા" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "બુકમાર્ક મેનુ ગોઠવો" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -434,59 +511,67 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "બનાવટ વડે (&r)" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "સ્થિતિ વડે (&p)" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "આદેશ" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "વર્ણન" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "઼દાખલો ફેરફાર કરો..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "દાખલો દૂર કરો" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "દાખલો ઉમેરો..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "વધુ નોંધો" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "વર્ણન (&D):" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "વર્ગ (&C):" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "સામાન્ય" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Completion" msgid "Enable &auto completion" msgstr "આપમેળે શબ્દ પૂર્તિ" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Word Completion" msgid "A&uto Word Completion" msgstr "આપમેળે શબ્દ પૂર્તિ" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "Remove tail on complete" msgstr "વધારાની જગ્યાઓ રાખો" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "શબ્દ પૂર્તિ" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -583,31 +679,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "ગોઠવણી" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "ઉલ્ટું" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "અક્ષર સંવેદનશીલ" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" @@ -616,6 +718,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -624,121 +727,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "અનંત" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "સમૂહ કરવાની પધ્ધતિ" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "વસ્તુ પ્રકાર (વિધેય વગેરે.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "સ્તંભ ભેગું કરવું" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "સ્થંભો" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "ભેગું કરેલ" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "દર્શાવેલ" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -749,12 +876,14 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -762,120 +891,136 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Input Mode" msgstr "Vi ઇનપુટ સ્થિતિ" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Use the Vi input mode" -msgid "Default input mode" +msgid "Default input mode:" msgstr "Vi ઇનપુટ સ્થિતિ વાપરો" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "આપમેળે કૌંસ (&b)" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "મળતાં કૌંસ પસંદ કરો" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "રોલાન્ડ પાબેલ" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "ફાઇલપ્રકાર (&F):" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "તમે બદલવા માંગતા હોવ તે ફાઇલપ્રકાર પસંદ કરો." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "નવો ફાઇલ પ્રકાર બનાવો." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "નવું (&N)" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "હાલનો ફાઇલ પ્રકાર દૂર કરો." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "દૂર કરો (&D)" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "ગુણધર્મો" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "પસંદગી (&S):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "ચલો (&V):" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -885,21 +1030,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "પ્રકાશિત (&H):" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "ફાઇલ એક્સટેન્શનો (&x):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -908,11 +1057,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "માઇમ પ્રકારો (&t):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -921,16 +1072,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "ઉચ્ચતા (&r):" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -938,16 +1092,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "પ્રકાશિત કરેલ ફાઇલ્સ ડાઉનલોડ કરો..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -957,40 +1114,45 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indent" msgid "Indent using" msgstr "જગ્યા વધારો (&I)" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Replace" msgid "&Spaces" msgstr "બદલો (&R)" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "ટેબ પહોળાઇ (&d):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1000,11 +1162,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1012,13 +1176,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "&Keep extra spaces" msgstr "વધારાની જગ્યાઓ રાખો" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1026,16 +1191,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1044,11 +1212,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    When selected, vi " -#~ "commands will override Kate's built-in commands. For example: Ctrl+R will " -#~ "redo, and override the standard action (showing the search & replace " -#~ "dialog).

    " -#~ msgstr "" -#~ "

    מאפייני " -#~ "קיבוץ לפי גישה

    " - -#~ msgid "-- VI: COMMAND LINE --" -#~ msgstr "--VI: שורת פקודה --" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "הגדרות קיצורים" - -#~ msgid "No encoding header" -#~ msgstr "אין כותרת קידוד" - -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "אין אפשרות להפעיל את תוכנית בדיקת האיות. ודא שהגדרת את תוכנית בדיקת האיות " -#~ "המתאימה ושהיא מוגדרת כהלכה בנתיב (PATH) שלך." - -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "נראה שתוכנית בדיקת האיות התרסקה." - -#~ msgid "unknown" -#~ msgstr "לא ידוע" - -#~ msgid "Context '%1': Incorrect number of arguments in '%2'" -#~ msgstr "הקשר \"%1\": מספר ארגומנטים שגוי ב־\"%2\"" - -#~ msgid "Exception, line %1: %2" -#~ msgstr "שגיאה, שורה %1: %2" - -#~ msgid "Could not access view." -#~ msgstr "אין אפשרות לגשת אל התצוגה." - -#~ msgid "Could not access lookup object." -#~ msgstr "אין אפשרות לגשת אל אובייקט החיפוש." - -#~ msgid "Exception: Unable to find function '%1': %2" -#~ msgstr "שגיאה: אין אפשרות למצוא את הפונקציה \"%1\": %2" - -#~ msgid "Exception in line %1: %2" -#~ msgstr "שגיאה בשורה: %1: %2" - -#~ msgid "Sort: None" -#~ msgstr "מיון: ללא" - -#~ msgid "Filter: None" -#~ msgstr "סינון: ללא" - -#~ msgid "Setup" -#~ msgstr "הגדרות" - -#~ msgid "&Maximum undo steps:" -#~ msgstr "&מספר מירבי של ביטולים:" - -#~ msgid " Static" -#~ msgstr " סטטי" - -#~ msgid "Print syntax &guide" -#~ msgstr "הדפ&ס מדריך תחביר" - -#~ msgid "" -#~ "

    Item " -#~ "Grouping properties

    " -#~ msgstr "" -#~ "

    מאפייני " -#~ "קיבוץ פריטים

    " - -#~ msgid "Print &selected text only" -#~ msgstr "הדפס את הטקסט ה&נבחר בלבד" - -#~ msgid "" -#~ "

    This option is only available if some text is selected in the document." -#~ "

    If available and enabled, only the selected text is printed.

    " -#~ msgstr "" -#~ "

    אפשרות זו זמינה רק כאשר טקסט כלשהו נבחר במסמך.

    אם האפשרות זמינה " -#~ "ונבחרת, רק הטקסט הנבחר יודפס.

    " - -#~ msgid "Print %1" -#~ msgstr "הדפסת %1" - -#~ msgid "Nowhere" -#~ msgstr "שום מקום" - -#~ msgid "Selection Only" -#~ msgstr "בחירה בלבד" - -#~ msgid "Selection, then Current Word" -#~ msgstr "בחירה, ואז מילה נוכחית" - -#~ msgid "Current Word Only" -#~ msgstr "מילה נוכחית בלבד" - -#~ msgid "Current Word, then Selection" -#~ msgstr "מילה נוכחית, אז סימון" - -#~ msgid "Smart search t&ext from:" -#~ msgstr "חיפוש &טקסט חכם מ:" - -#~ msgid "" -#~ "

    This determines where a view will get the search text from \n" -#~ "(this will be automatically entered into the Find Text dialog): \n" -#~ "

    \n" -#~ "

    \n" -#~ "

      \n" -#~ "
    • Nowhere: Don't guess the search text.\n" -#~ "
    • \n" -#~ "
    • Selection Only: Use the current text selection, \n" -#~ "if available.\n" -#~ "
    • \n" -#~ "
    • Selection, then Current Word: Use the current \n" -#~ "selection if available, otherwise use the current word.\n" -#~ "
    • \n" -#~ "
    • Current Word Only: Use the word that the cursor \n" -#~ "is currently resting on, if available.\n" -#~ "
    • \n" -#~ "
    • Current Word, then Selection: Use the current \n" -#~ "word if available, otherwise use the current selection.\n" -#~ "
    • \n" -#~ "
    \n" -#~ "

    \n" -#~ "

    \n" -#~ "Note that, in all the above modes, if a search string has \n" -#~ "not been or cannot be determined, then the Find Text Dialog \n" -#~ "will fall back to the last search text.\n" -#~ "

    " -#~ msgstr "" -#~ "

    ערך זה קובע את המקום ממנו תקבל תצוגה את הטקסט לחיפוש \n" -#~ "(טקסט זה יוזן באופן אוטומטי לדו־שיח חיפוש הטקסט): \n" -#~ "

    \n" -#~ "

    \n" -#~ "

      \n" -#~ "
    • שום מקום: לא לנחש את הטקסט לחיפוש\n" -#~ "
    • \n" -#~ "
    • בחירה בלבד:אם יש טקסט שנבחר, שימוש בטקסט זה.\n" -#~ "
    • \n" -#~ "
    • בחירה, ואז מילה נוכחית: אם יש טקסט שנבחר, שימוש בטקסט זה, \n" -#~ "אחרת שימוש במילה הנוכחית.\n" -#~ "
    • \n" -#~ "
    • מילה נוכחית בלבד: שימוש במילה שנמצאת כרגע מתחת לסמן, אם יש " -#~ "מילה כזו.\n" -#~ "
    • \n" -#~ "
    • מילה נוכחית, ואז בחירה:שימוש במילה הנוכחית, אם יש כזו, אחרת " -#~ "בבחירה הנוכחית.\n" -#~ "
    • \n" -#~ "
    \n" -#~ "

    \n" -#~ "

    \n" -#~ "שים לב שבכל המצבים הנזכרים לעיל, \n" -#~ "אם אין מחרוזת טקסט או שלא ניתן לקבל מחרוזת כזו, \n" -#~ "חלון החיפוש ישתמש בטקסט האחרון שחיפשו.\n" -#~ "

    " - -#~ msgid "NORM" -#~ msgstr "רגיל" - -#~ msgid " NORM " -#~ msgstr " רגיל " - -#~ msgid "&From cursor" -#~ msgstr "ממיקום ה&סמן" - -#~ msgid "&Highlight all" -#~ msgstr "הדגש ה&כל" diff -Nru ktexteditor-5.28.0/po/hi/ktexteditor5.po ktexteditor-5.31.0/po/hi/ktexteditor5.po --- ktexteditor-5.28.0/po/hi/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/hi/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katepart\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2007-09-13 11:39+0530\n" "Last-Translator: Ravishankar Shrivastava \n" "Language-Team: Hindi \n" @@ -20,170 +20,210 @@ "Plural-Forms: nplurals=2; plural=(n!=1);\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "कोड पूर्णता कॉन्फ़िगुरेशन" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "हमेशा" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "आर्गुमेंट-हिंट्स" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "सर्वोत्तम मिलान" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "नेम-स्पेसेज़" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "वर्ग" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "सट्रक्ट" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "संघ" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "फंक्शन्स" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "वेरिएबल्स" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "एनुमरेशन" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "उपसर्ग" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "प्रतीक" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "स्कोप" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "नाम " #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "आर्गुमेंट्स" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "पोस्टफिक्स" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "सार्वजनिक" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "सुरक्षित" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "निजी " #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "स्थैतिक" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "स्थिर" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "नेमस्पेस" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "वर्ग" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "सट्रक्ट" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "संघ" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "फंक्शन" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "परिवर्तनीय" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "एनुमरेशन" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "टैम्प्लेट" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "आभासी" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "ओवरराइड" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "इनलाइन" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "मित्र" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "सिग्नल" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "स्लॉट" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "स्थानीय स्कोप" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "नेमस्पेस स्कोप" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "वैश्विक स्कोप" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "अज्ञात प्रापर्टी" #: completion/katekeywordcompletion.cpp:165 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "_: Language Section\n" #| "Other" @@ -191,98 +231,110 @@ msgstr "अन्य" #: completion/katewordcompletion.cpp:90 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "Auto Word Completion" msgstr "शब्द पूर्णता" #: completion/katewordcompletion.cpp:341 -#, fuzzy +#, fuzzy, kde-format msgid "Shell Completion" msgstr "चयन" #: completion/katewordcompletion.cpp:346 -#, fuzzy +#, fuzzy, kde-format msgid "Reuse Word Above" msgstr "रीयूज़ वर्ड अहेड" #: completion/katewordcompletion.cpp:351 -#, fuzzy +#, fuzzy, kde-format msgid "Reuse Word Below" msgstr "रीयूज़ वर्ड बिहाइन्ड" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "फ़ाइल (&F)" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "संपादन (&E)" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "दृश्य (&V)" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "स्थिर शब्द रैप" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "किनारा" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "कोड फोल्डिंग (&C)" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "औज़ार (&T)" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "शब्द पूर्णता" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "वर्तनी" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "विन्यास (&S)" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "मुख्य औज़ार पट्टी" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -294,14 +346,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "फोल्डिंग निशान दिखाएँ (यदि लागू हो) (&M)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -311,14 +363,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show preview of folded code" msgstr "मौज़ूदा दस्तावेज़ छापें" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 -#, fuzzy +#, fuzzy, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -329,11 +381,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "प्रतीक किनारा दिखाएँ (&i)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -341,12 +395,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "पंक्ति क्रमांक दिखाएँ (&l)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -357,14 +412,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "फोल्डिंग निशान दिखाएँ (यदि लागू हो) (&M)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 -#, fuzzy +#, fuzzy, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -374,12 +429,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "स्क्रॉल पट्टी चिह्न दिखाएँ (&s)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " @@ -389,12 +445,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -405,14 +462,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgid "Show scrollbar mini-map" msgstr "स्क्रॉल पट्टी चिह्न दिखाएँ (&s)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -423,53 +480,59 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save the current document" msgid "Map the whole document" msgstr "मौज़ूदा दस्तावेज़ सहेजें" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Minimal matching" -msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "न्यूनतम जोड़ मिलाएँ (&M)" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "हमेशा चालू" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy +#, fuzzy, kde-format #| msgid "Always" msgid "Always Off" msgstr "हमेशा" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "चुनें कि पसंदीदा किस क्रम में पसंदीदा मेन्यू में हों." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr " पसंदीदा मेन्यू क्रमबद्ध करें" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -479,65 +542,70 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "रचना द्वारा (&r)" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "पंक्ति क्रमांक के अनुसार जैसे रखे गए हैं, पसंदीदा उस क्रम में होंगे." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "स्थिति द्वारा (&p)" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "कमांड" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "वर्णन" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit entry..." msgid "Edit Entry..." msgstr "प्रविष्टि का संपादन करें..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Remove entry" msgid "Remove Entry" msgstr "प्रविष्टि मिटाएँ" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Add entry..." msgid "Add Entry..." msgstr "प्रविष्टि जोड़ें..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "आगे की टिप्पणियाँ" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "" "डेस्कटॉप मेनू और उपकरण-पटिया प्रेफरेंसेज़ के हिसाब से उपकरण-पटिया के बटन स्टाइल ल सेट कर लेव" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "वर्णनः (&D)" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "वर्ग: (&C)" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "सामान्य" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "Enable &auto completion" msgstr "शब्द पूर्णता" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "A&uto Word Completion" msgstr "शब्द पूर्णता" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "ट्रेलिंग स्पेसेस हटाएँ (&m)" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "शब्द पूर्णता" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -636,36 +714,39 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "क्रमबद्ध करने में" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "अकारादि" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "विपरीत" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "Case &sensitive" msgid "Case sensitive" msgstr "केस सेंसिटिव (&s)" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Inheritance Depth" msgid "Inheritance depth" msgstr "इनहेरिटेंस गहराई" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 -#, fuzzy +#, fuzzy, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "मल्टीडिस्क उपकरणों को कॉन्फ़िगर करने हेतु प्रस्तावित क्रियाओं में से एक चुनें." @@ -674,6 +755,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -682,129 +764,149 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "फ़िल्टर किया जा रहा है" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "सिर्फ उपयुक्त संदर्भित मिलान" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "पूर्णता को निम्न गुणों के साथ छुपाएँ:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 -#, fuzzy +#, fuzzy, kde-format #| msgid "Maximum inheritance depth" msgid "Maximum inheritance depth:" msgstr "अधिकतम इनहैरिटेंस गहराई" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "अनंत" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "समूहबद्धता" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 -#, fuzzy +#, fuzzy, kde-format #| msgid "Grouping method" msgid "Grouping Method" msgstr "समूहीकरण विधि" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "स्कोप किस्म (स्थानीय, नेमस्पेस, वैश्विक)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "स्कोप (उदा. प्रति क्लास)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "पहुंच किस्म (सार्वजनिक इत्यादि)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "वस्तु किस्म (फ़ंक्शन इत्यादि)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Access Grouping Properties" msgstr "पाद-सूचना गुण" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "कॉस्टैंट को में शामिल करें" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "स्टैटिक को समूह में शामिल करें" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "सिगनल तथा स्लॉट को समूह में शामिल करें" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Item Grouping properties" msgstr "पाद-सूचना गुण" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "टैम्प्लेट को समूह में शामिल करें" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "स्तम्भ मिलाना" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "स्तम्भ" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "मिलाया" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "दिखाया" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "स्थिर शब्द रैप" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -815,12 +917,14 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "स्थिर शब्द रैप सक्षम करें (&w)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -828,20 +932,21 @@ msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 -#, fuzzy +#: dialogs/editconfigwidget.ui:39 +#, fuzzy, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "स्थिर वर्ड रैप मार्कर दिखाएँ (यदि लागू हो)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "पर शब्द लपेटें: (&r)" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -850,95 +955,104 @@ "लंबाई पर स्वयं एक नई पंक्ति प्रारंभ करेगा." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "&Indentation mode:" msgid "Input Mode" msgstr "जगह छोड़ने का मोड: (&I)" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "डिफ़ॉल्ट इंडेटेशन मोड:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "स्वचलित ब्रेकेट्स (&b)" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "मैचिंग ब्रेकेट चुनें" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "रोलेण्ड पेबेल" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "फ़ाइल-क़िस्म: (&F)" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "फ़ाइल क़िस्म जिसे आप बदलना चाहते हैं उसे चुनें." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "नया फ़ाइल क़िस्म तैयार करें" #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "नया (&N)" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "वर्तमान फ़ाइल क़िस्म मिटाएँ." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "मिटाएँ (&D)" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "गुण" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 -#, fuzzy +#, fuzzy, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "चंद्रमा" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "खण्ड: (&S)" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 -#, fuzzy +#, fuzzy, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" "फ़ाइल को चुनें. \\फ़ाइल क़िस्म\\ बक्से में आप कुछ विशिष्ट क़िस्म की फ़ाइलों " @@ -946,11 +1060,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "चर: (&V)" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -960,23 +1076,26 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "उभारना: (&H)" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation mode:" msgid "&Indentation Mode:" msgstr "जगह छोड़ने का मोड: (&I)" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "फ़ाइल एक्सटेंशन्स: (&x)" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -985,11 +1104,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "माइम क़िस्म: (&t)" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -998,7 +1119,7 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 -#, fuzzy +#, fuzzy, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "\\\\जिस " @@ -1007,11 +1128,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "प्राथमिकता: (&r)" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1019,16 +1142,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "उभारे गए फ़ाइलों को डाउनलोड किया जा रहा है..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "डिफ़ॉल्ट इंडेटेशन मोड:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1038,45 +1164,47 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "जगह छोड़ना" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "टेबुलेटर्स" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Replace" msgid "&Spaces" msgstr "बदलें (&R)" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format msgid "&Indentation width:" msgstr "अनुकूलतम चौड़ाई (~O)" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "टेबुलेटर्स" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "टैब चौड़ाई: (&d)" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1086,12 +1214,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 -#, fuzzy +#, fuzzy, kde-format msgid "Indentation Properties" msgstr "दस्तावेज गुण" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1099,13 +1228,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "&Keep extra spaces" msgstr "अतिरिक्त जगह रखें" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1113,18 +1243,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 -#, fuzzy +#, fuzzy, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "क्लिपबोर्ड की विषय को नहीं चिपका सकते है ." #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 -#, fuzzy +#, fuzzy, kde-format msgid "Indentation Actions" msgstr "क्रिया चलाएँ (_E)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1133,12 +1264,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "पैराग्राफ में व्रैप पंक्तियों के बीच रिक्त स्थानों के पिक्सल" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Adathelyreállítás (Súgó)

    Nem minden adat állítható helyre. A lapozófájl valószínűleg hiányos." -#~ "

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Felülírás" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Adathelyreállítás (Súgó)

    A fájl nem megfelelően lett bezárva. Szeretné helyreállítani az " -#~ "adatokat?

    " - -#~ msgid "Cancel" -#~ msgstr "Mégsem" - -#~ msgid "Stop" -#~ msgstr "Leállítás" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Színek" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Színek" - -#~ msgid "Export HlColors..." -#~ msgstr "Kiemelőszínek exportálása…" - -#~ msgid "Import HlColors..." -#~ msgstr "Kiemelőszínek importálása…" - -#~ msgid "Template Background" -#~ msgstr "Sablon - Háttér" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Egy helyi szint összecsukása" - -#~ msgid "Expand One Local Level" -#~ msgstr "Egy helyi szint kibontása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "A felső szint összecsukása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "A felső szint kibontása" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "A felső szint összecsukása" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Automatikus kiegészítés bekapcsolva" - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "F&ormátum:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "A KDE szövegszerkesztő komponens nem található.\n" -#~ "Ellenőrizze, telepítve van-e ez a komponens." - -#~ msgid "Use this to close the current document" -#~ msgstr "Bezárja az aktuális dokumentumot" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Létrehoz egy új dokumentumot" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Ezzel a paranccsal lehet dokumentumot megnyitni szerkesztésre" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Kilistázza a legutóbb megnyitott fájlokat, könnyű hozzáférést biztosítva " -#~ "az esetleges újbóli megnyitáshoz." - -#~ msgid "&New Window" -#~ msgstr "Ú&j ablak" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Új nézetet nyit az aktuális dokumentummal" - -#~ msgid "Choose Editor..." -#~ msgstr "Szerkesztőválasztás..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Az alapértelmezett szerkesztőkomponens egyedi beállítása" - -#~ msgid "Close the current document view" -#~ msgstr "Bezárja az aktuális nézetet" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "Ezzel lehet megjeleníteni vagy elrejteni a nézet állapotsorát" - -#~ msgid "Sho&w Path" -#~ msgstr "Az elérési út m&utatása" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "A dokumentum elérési útjának megjelenítése az ablak címsorában" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "" -#~ "Itt lehet beállítani az alkalmazásban használható billentyűparancsokat." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "" -#~ "Itt lehet kiválasztani, mely elemek jelenjenek meg az eszköztárakban." - -#~ msgid "&About Editor Component" -#~ msgstr "&Névjegy: Szerkesztőkomponens" - -#~ msgid " INS " -#~ msgstr " BESZ " - -#~ msgid " LINE " -#~ msgstr " SOR " - -#~ msgid "Open File" -#~ msgstr "Fájl megnyitása" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "A fájlt nem sikerült beolvasni, ellenőrizze, hogy létezik-e és van-e " -#~ "hozzá olvasási jogosultsága." - -#~ msgid " BLOCK " -#~ msgstr " BLK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Olvasás a standard bemenetről" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "A megnyitandó fájl kódolása" - -#~ msgid "Navigate to this line" -#~ msgstr "Navigálás erre a sorra" - -#~ msgid "Navigate to this column" -#~ msgstr "Navigálás erre az oszlopra" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite szövegszerkesztő" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) A Kate szerzői, 2000-2005." - -#~ msgid "Choose Editor Component" -#~ msgstr "Szerkesztőkomponens választása" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "" -#~ "A teszteket, az alapkönyvtárt és a kimeneti könyvtárakat tartalmazó " -#~ "könyvtár." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "A teszt hibás kimeneteleinek összahasonlítása ezzel: . " -#~ "Alapértelmezés szerint a legújabb pillanatfelvétel (vagy üres, ha nem " -#~ "létezik egy sem)." - -#~ msgid "Do not suppress debug output" -#~ msgstr "A nyomkövetési kimenet megjelenítése" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Alapvonal újragenerálása (ellenőrzés helyett)" - -#~ msgid "Keep output files even on success" -#~ msgstr "A kimeneti fájlok megőrzése sikeres teszt esetén is" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "A teszt hibás kimeneteleinek megőrzése adatban" - -#~ msgid "Show the window while running tests" -#~ msgstr "Az ablak látszódjon a tesztek futása közben" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Csak egy teszt futtatása. Több lehetséges opcióval." - -#~ msgid "Put output in instead of /output" -#~ msgstr "" -#~ "A kimenet az adott ba kerüljön, ne az /output " -#~ "könyvtárba" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Minden teszt külön folyamatban fusson." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "A teszteket, az alapkönyvtárt és a kimeneti könyvtárakat tartalmazó " -#~ "könyvtár. Csak a -b megadása esetén van hatása." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "A tesztelendő eset (vagy esetek könyvtárának) elérési útja (egyenértékű a " -#~ "-t argumentummal)" - -#~ msgid "TestRegression" -#~ msgstr "Regresszióteszt" - -#~ msgid "Regression tester for kate" -#~ msgstr "Regressziótesztelő a Kate-hez" - -#~ msgid "Error: " -#~ msgstr "Hiba: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "" -#~ "Nem sikerült meghívni: \"%1\". Ellenőrizze, van-e szintaktikai hiba." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Ha ez az opció be van jelölve, a szerkesztő kiszámolja a következő " -#~ "tabulátorig a szóközök számát (a tabulátor szélessége alapján), és a " -#~ "tabulátor karaktert lecseréli a megfelelő számú szóközre." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Szó&közök beszúrása tabulátorok helyett" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "Az &eltérések megtekintése" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Letiltva" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "A fájl (%1) UTF-8 kódolással lett megnyitva, de érvénytelen karaktereket " -#~ "tartalmaz. Csak olvasásra van megnyitva, mert mentés esetén megsérülhet " -#~ "az adattartalom. Nyissa meg újból a fájlt a megfelelő kódolással, vagy " -#~ "engedélyezze az írást a menüben." - -#~ msgid "Binary File Opened" -#~ msgstr "Bináris fájl lett megnyitva" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Hibás UTF-8 kódolású fájl megnyitva" - -#~ msgid "Universal" -#~ msgstr "Általános" - -#~ msgid "&Word Wrap Document" -#~ msgstr "Sor&tördelés" - -#~ msgid "Modify search behavior" -#~ msgstr "A keresési mód megváltoztatása" - -#~ msgid "&Options" -#~ msgstr "&Beállítások" - -#~ msgid "From &cursor" -#~ msgstr "Kur&zortól" - -#~ msgid "Hi&ghlight all" -#~ msgstr "Minden kieme&lése" - -#~ msgid "Add &BOM" -#~ msgstr "&BOM jelző használata" diff -Nru ktexteditor-5.28.0/po/ia/ktexteditor5.po ktexteditor-5.31.0/po/ia/ktexteditor5.po --- ktexteditor-5.28.0/po/ia/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ia/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -1,277 +1,334 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# g.sora , 2010, 2011, 2012, 2013, 2014, 2016. +# g.sora , 2010, 2011, 2012, 2013, 2014, 2016, 2017. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-02-01 13:40+0100\n" -"Last-Translator: Giovanni Sora \n" -"Language-Team: Italian \n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-31 23:10+0100\n" +"Last-Translator: giovanni \n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 1.5\n" +"X-Generator: Lokalize 2.0\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Configuration pro le completion del codice" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Sempre" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Consilios pro argumentos" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Le melior coincidentias" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Spatio del nomines" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Classes" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Structuras" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Uniones" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Functiones" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variabiles" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumerations" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Prefix" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Icone" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Extension" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nomine" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumentos" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Public" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protecte" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Private" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Static" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Constant" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Spatio de nomine" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Class" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Structura" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Union" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Function" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variabile" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumeration" # Texto in anglese #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Patrono" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtual" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Ultrapassar" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "In linea" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Amico" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Scopo local" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Extension del spatio de nomine" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Extension global" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Proprietate incognite" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Parolas clave del linguage" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Completion de parola automatic" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Completion de Shell" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Usa de nove le parola de supra" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Usa de nove le parola de infra" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&File" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Edita" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Trova variantes" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Vade a" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Vide" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy -#| msgid "Static Word Wrap" +#, kde-format msgid "Word Wrap" -msgstr "Excision static de parola" +msgstr "Torno de parolas" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Limites" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Plicabile de &codice" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "Ins&trumentos" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Completion de parola" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Orthographia" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "Preferentia&s" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Barra de instrumentos principal" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -279,12 +336,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "&Monstra marcatores pro plicar" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -317,11 +375,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Monstra limite de &icone" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -331,11 +391,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Monstra numeros de &linea" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -345,11 +407,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Monstra marcatores de modificationes de linea" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -360,12 +424,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Monstra marcas de la &barra de rolar" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "" "

    Iste icone essera monstrate in le menu e in le barra de instrumentos.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Description:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Categoria:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "General" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Habilita compeltion &automatic" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Completion de parola a&utomatic" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Longitude minime de parola pro completar:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Remove cauda del previe parola quando on completa elemento seligite ex un " @@ -597,16 +689,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Remove caud quando on completa" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "&Completion de parola clave" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -616,31 +711,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Ordinar" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alphabetic" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Revertite" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Distingue inter majusculas e minusculas" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Profunditate de hereditage" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" "Ordine de gruppamentos (selectiona un methodo de gruppar pro configurar):" @@ -650,6 +751,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -658,121 +760,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtrar" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Solmente coincidentias de contexto disponibile" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Cela completiones con le sequente attributos:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Profunditate de hereditage maxime:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Infinitate" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Gruppar" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Methodo de gruppar" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Typo de scopo (local, nomine de spatio, global)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Scopo (p.ex. per classe)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Typo de accesso (public etc.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Typo de elemento (function etc.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Proprietates de accesso de gruppos" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Include const in gruppamento" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Include static in gruppamento" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Include signales e slots in gruppamento" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Proprietate de gruppamento de elemento" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Include patronos in gruppamento" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Fusionar de columna" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Columnas" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Fusionate" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Monstrate" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Excision static de parola" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -791,12 +917,14 @@ "Apparentia.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Habilita excision &static de parola" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -808,19 +936,20 @@ "es solmente designate si tu usa un font con pitch fixate.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Monstra marcator de excision static de &parola (si applicabile)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy -#| msgid "W&rap words at:" +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" -msgstr "Excide pa&rolas a:" +msgstr "Talia&r parolas a:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -830,80 +959,86 @@ "automaticamente un nove linea." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy -#| msgid "Input Modes" +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" -msgstr "Modo de Insertar " +msgstr "Modo de insertar " #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" msgstr "Modo de insertar predefinite:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy -#| msgid "Auto &brackets" +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" -msgstr "Parent&heses Automatic" +msgstr "Parentheses automatic" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy -#| msgid "Flash matching brackets" +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" -msgstr "Fulgura parentheses correspondente" +msgstr "Activa parentheses automatic" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy -#| msgid "Roland Pabel" +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" -msgstr "Roland Pabel" +msgstr "Copia e Colla" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Copia/Talia le linea currente si necun selection" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "Typo de &file:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Selige le typo de file que tu vole modificar." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Crea un nove typo de file." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nove" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Dele le currente typo de file." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Cancella" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Proprietates" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -911,21 +1046,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Section:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Le nomine de section es usate pro organisar le typos de file in menus." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variabiles:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -939,21 +1078,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Evidentiar:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Modo de &indentation:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "E&xtensiones de file:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -966,11 +1109,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Typos MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -982,17 +1127,20 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "Il monstra un assistente que il adjuta te a seliger facilemente typos mime." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "P&rioritate:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1002,16 +1150,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Discarga files in evidentia..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Modo de indentation predefinite:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1025,36 +1176,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Indenta usante" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulatores" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Spatios" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Largessa de &Indentation" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabulatores &e spatios" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "La&rgessa de Tab:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1068,11 +1226,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Proprietates de indentation" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1083,11 +1243,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Mantene spatios extra" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1097,16 +1259,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Adapta indentation del codice &collate ab le area de transferentia" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Actiones de indentation" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1118,11 +1283,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "Clave de Spatio &Retro in ducente spatio vacue de-indenta" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Recuperation de datos (Adjuta)

    Il non pote recuperar omne datos. Le file de swap probabilemente " -#~ "esseva incomplete.

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Super scribe" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Recuperation de Datos (Adjuta)" -#~ "

    Le file non esseva claudite propriemente. Tu vole " -#~ "recuperar le datos?

    " - -#~ msgid "Cancel" -#~ msgstr "Cancella" - -#~ msgid "Stop" -#~ msgstr "Stoppa" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Colores" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Colores" - -#~ msgid "Export HlColors..." -#~ msgstr "Exporta HIColors..." - -#~ msgid "Import HlColors..." -#~ msgstr "Importa HIColors..." - -#~ msgid "Template Background" -#~ msgstr "Fundo de patrono" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Plica un nivello local" - -#~ msgid "Expand One Local Level" -#~ msgstr "Expande un nivello local" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Plica le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Expande le nivello culmine" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Plica le nivello culmine" - -#~ msgid "&Auto completion enabled" -#~ msgstr "Completamento &automatic habilitate" - -#~ msgid "Sort the selected text or whole document in natural order.
    " -#~ msgstr "" -#~ "Ordina le texto seligite o le integre documento in ordine natural.
    " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "" -#~ "Date un function de JavaScript como argumento, appella illo pro le lista " -#~ "de lineas (seligite) e" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "" -#~ "Date un function de JavaScript como argumento, appella illo pro le lista " -#~ "de lineas (seligite)" - -#~ msgid "Form" -#~ msgstr "Formato:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Un componente del editor de texto KDE non pote trovar se;\n" -#~ "Si tu place, tu controla tu installation de KDE." - -#~ msgid "Use this to close the current document" -#~ msgstr "Tu usa isto pro clauder le documento currente" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Tu usa iste commando pro crear un nove documento" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "" -#~ "Tu usa iste commando pro aperir un documento existente per editar lo" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Isto lista le files que tu aperiva recentemente, e permitte " -#~ "tefacilemente de aperir los de nove." - -#~ msgid "&New Window" -#~ msgstr "&Nove Fenestra" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Il crea altere vista que contine le documento currente" - -#~ msgid "Choose Editor..." -#~ msgstr "Tu Elige le Editor ..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "" -#~ "Il ultrapassa le preferentias pro tote le systema pro le componente de " -#~ "editing predefinite" - -#~ msgid "Close the current document view" -#~ msgstr "Il claude le vista currente del documento" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Tu usa iste commando pro monstrar o celar le vista de le barra de status" - -#~ msgid "Sho&w Path" -#~ msgstr "Monstrar Le percu&rso" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "" -#~ "Monstrar le percurso complete de le documento in le fenestra de legenda" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "" -#~ "Il configura le assignationes de le breve vias del claviero pro le " -#~ "application" - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "" -#~ "Il configura qual terminos debe apparer in le barra(s) de instrumento" - -#~ msgid "&About Editor Component" -#~ msgstr "&A proposito del componente de editor" - -#~ msgid " INS " -#~ msgstr " INS " - -#~ msgid " LINE " -#~ msgstr " LINE " - -#~ msgid "Open File" -#~ msgstr "Il aperi le File" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Le date file non pote esser legite, tu controla si illo existe o si illo " -#~ "es legibile per le currente usator." - -#~ msgid " BLOCK " -#~ msgstr " BLOCK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Il lege le contentos de stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Il fixa le codifica pro le file que aperi" - -#~ msgid "Navigate to this line" -#~ msgstr "Tu naviga a iste file" - -#~ msgid "Navigate to this column" -#~ msgstr "Tu naviga a iste columna" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - Editor de Texto" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 Le Autores de Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "Tu Elige le Componente de Editor" - -#~ msgid "The swap file is broken. Recovery might be incomplete." -#~ msgstr "" -#~ "Le file de swap es corrupte. Le recuperation poterea esser incomplete." - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Le directorio que contine provas, basedir e directorios de egresso" - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Il compara fallimentos de iste testrun contra le snapshot. Pro " -#~ "definition il vale le snapshot de plus recente captura o nemo si nemo " -#~ "existe." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Il non supprime le egresso de cribrar (debug)" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Il regenera le baseline (in vice de controlar lo)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Il retene le files de egresso anque in caso de successo" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "" -#~ "Il salva le fallimentos de iste testrun como snapshot de fallimento " -#~ "" - -#~ msgid "Show the window while running tests" -#~ msgstr "Il monstra la fenestra durante que il executa essayos" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Solo il va un single test. Multiple optiones es permittite." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Il pone egresso in in vice de /egresso" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Il curre omne caso de test in un processo separate" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Le directorio que contine le tests, basedir e directorio de egresso. Solo " -#~ "il se valuta si -b non es specificate." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Le curso relative al testcase, o le directorio del testcases que debe " -#~ "currer (equivalente a -t)" - -#~ msgid "TestRegression" -#~ msgstr "Test de regression" - -#~ msgid "Regression tester for kate" -#~ msgstr "tester de Regression pro kate" - -#~ msgid "Error: " -#~ msgstr "Error: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "" -#~ "Error durante que clamava '%1'. Pro favor, vos verifica per errores de " -#~ "syntaxe" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "&Vide Differentia" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Dishabilitate" - -#~ msgid "Binary File Opened" -#~ msgstr "Il Aperiva un file binari" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Aperite un file UTF-8 guastate" - -#~ msgid "Universal" -#~ msgstr "Universal" diff -Nru ktexteditor-5.28.0/po/is/ktexteditor5.po ktexteditor-5.31.0/po/is/ktexteditor5.po --- ktexteditor-5.28.0/po/is/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/is/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2016-04-08 22:57+0000\n" "Last-Translator: Sveinn í Felli \n" "Language-Team: Icelandic \n" @@ -26,260 +26,317 @@ "\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Stilling kóðaklárunar" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Alltaf" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Frumbreytu-tillögur" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Bestu samsvaranir" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Nafnasvið" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Klasar" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Structs" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unions" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Aðgerðir" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Breytur" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Talningar" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Forskeyti" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Táknmynd" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Leitarsvið" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Heiti" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Viðföng" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Opið (public)" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Varið (protected)" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Lokað (private)" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Kyrrt (static)" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Fast (constant)" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Nafnasvið" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Klasi" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struct" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Union" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Aðgerð" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Breyta" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Talning" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Forsnið" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Sýndar" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Rétthærri" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Innfellt" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Vinur" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Merki" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Hólf" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Staðbundið leitarsvið" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Nafnsviðsleitarsvið" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Víðvært leitarsvið" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Óþekktur eiginleiki" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Sjálfvirk orðaklárun" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Skeljarklárun" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Endurnota orðið á undan" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Endurnota orðið á eftir" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Skrá" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "Br&eyta" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "S&koða" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "Föst línuskipting" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Jaðrar" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Kóða&fletting" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "Á&höld" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Orðaklárun" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Stafsetning" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "S&tillingar" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Aðaltækjaslá" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -291,14 +348,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "Sýna sam&felli-merki" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -329,11 +387,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Sýna &merkjaspássíu" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -343,12 +403,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Sýna &línunúmer" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -361,13 +422,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "Sýna sam&felli-merki" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -377,12 +439,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Sýna &skrunsláarmerkingar" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    Þessi táknmynd mun birtast í valmynd og á áhaldastiku.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Lýsing:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Flokkur:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Almennt" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Completion" msgid "Enable &auto completion" msgstr "Orðaklárun" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Word Completion" msgid "A&uto Word Completion" msgstr "Sjálfvirk orðaklárun" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Minnsta lengd orða sem á að klára:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "&Fjarlægja bil aftan við línu" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "Orðaklárun" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -643,31 +732,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Röðun" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Stafrófsröð" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Snúa við" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Háð há/lágstöfum" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Dýpt erfða" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Röðun hópana (veldu hópunaraðferð til að stilla):" @@ -676,6 +771,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -684,122 +780,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Síun" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Einungis samhengissamsvaranir sem henta" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Fela endingar með eftirtöldum eigindum:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Mesta dýpt erfða:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Óendanleiki" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Hópun" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Hópunaraðferð" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Gerð leitarsviðs (staðvært, nafnrýmd, víðvært)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Leitarsvið (t.d. per klasa)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Gerð aðgangsheimilda (almennt etc)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Gerð staks (aðgerð etc)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Eiginleikar hópunaraðgangs" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Taka fasta með í hópun" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Taka stöður (static) með í hópun" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Taka merki og hólf með í hópun" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Eiginleikar hópunar staka" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Taka sniðmát með í hópun" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Sameining dálka" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Dálkar" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Blandað" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Sýnt" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Föst línuskipting" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 -#, fuzzy +#: dialogs/editconfigwidget.ui:26 +#, fuzzy, kde-format #| msgid "" #| "

    Automatically start a new line of text when the current line exceeds " #| "the length specified by the Wrap words at: option.

    This " @@ -824,12 +943,14 @@ "línuskipting in the Skoða sjálfgefin gildi config page.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Virkja &fasta línuskiptingu" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -841,19 +962,21 @@ "jafnbreitt letur.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Sýna fast línuski&ptimerki (ef mögulegt)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "&Línuskipting við:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -862,103 +985,116 @@ "hversu löng lína verður (talið í stöfum) áður en henni er sjálfkrafa skipt." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Input Mode" msgstr "VI innsetningarhamur" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "Sjálfgefinn inndráttarhamur:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "Sjálfv. s&vigar" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "Velja að mótsvarandi sviga" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Afrita/Klippa núverandi línu ef ekkert er valið" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Skráargerð:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Veldu skráagerðina sem þú vilt breyta." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Búa til nýja skráartegund." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nýtt" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Eyða núverandi skráartegund." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Eyða" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Eiginleikar" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Skráarnafnið verður notað sem nafnið í valmyndinni." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Val:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Hlutanafnið er notað til að raða skráartegundunum í valmyndir." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Breytur:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -972,21 +1108,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Litun:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Inndráttarhamur:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Skráa&endingar:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -998,11 +1138,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "Mime &tög:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1014,16 +1156,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Sýna álf sem hjálpar þér að velja Mime tegundir." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Fo&rgangur:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1033,16 +1178,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Sækja skrár með litunarreglum..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Sjálfgefinn inndráttarhamur:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1055,46 +1203,48 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "Stillingar inndrátts" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "Tabulators" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Replace" msgid "&Spaces" msgstr "&Skipta út" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation width:" msgid "&Indentation width:" msgstr "Breidd inndráttar:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "Tabulators" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Innskotsbrei&dd (Tab):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1108,11 +1258,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Eiginleikar inndráttar" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1122,13 +1274,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "&Keep extra spaces" msgstr "Halda auka bilum" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1138,18 +1291,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 -#, fuzzy +#, fuzzy, kde-format #| msgid "Adjust indentation of code pasted from the clipboard" msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Stilla inndrátt kóða sem límdur er af klippispjaldinu" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Aðgerðir við inndrátt" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1160,14 +1315,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format #| msgid "Backspace key in leading blank space unindents" msgid "&Backspace key in leading blank space unindents" msgstr "Backspace lykill í undanfarandi auðu svæði fjarlægir innfærslu" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "\n" -#~| "

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "Veljið hvernig bókamerki verða sýnd í Bókamerkja valmynd." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Raða bókamerkjum" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -490,59 +560,67 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "Eftir &tíma" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "Bókamerkjunum verður raðað eftir línunúmerum sem þau eru staðsett á." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "Eftir &stöðu" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Skipun" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Lýsing" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Breyta færslu..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Fjarlægja færslu" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Bæta við færslu..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Fleiri athugasemdir" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "" @@ -450,11 +522,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Ordina menu de marcatores de libro" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -464,13 +538,13 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy -#| msgid "By c&reation" +#, kde-format msgid "B&y creation" msgstr "Per c&reation" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Le marcatores de libro essera ordinate per le numeros de linea ubi illos es " @@ -478,47 +552,53 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy -#| msgid "By &position" +#, kde-format msgid "By posi&tion" -msgstr "Per &position" +msgstr "Per posi&tion" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Commando" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Description" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Edita entrata..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Remove entrata" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Adde entrata..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Notas ulterior" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Virkni Tab lykils (ef ekkert er valið) Tab jafni núverandi textalínu við aðrar línur í textablokkinni sem " -#~ "þú ert staddur í (eins og í emacs), búðu til lyklaborðsbindingu Tab við aðgerðina Jafna.\">Meira ...

    " - -#~ msgid "Overwrite" -#~ msgstr "Yfirrita" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "

    Tab key action (if no selection exists) Tab to align the current line in the current code block like in " -#~| "emacs, make Tab a shortcut to the action Align." -#~| "\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Virkni Tab lykils (ef ekkert er valið) Tab jafni núverandi textalínu við aðrar línur í textablokkinni sem " -#~ "þú ert staddur í (eins og í emacs), búðu til lyklaborðsbindingu Tab við aðgerðina Jafna.\">Meira ...

    " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "Leitarsvið" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Litir" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Litir" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "Venjulegir &litir..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "Venjulegir &litir..." - -#~ msgid "Template Background" -#~ msgstr "Bakgrunnur forsniðs" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Loka einu stigi" - -#~ msgid "Expand One Local Level" -#~ msgstr "opna eitt stig" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Loka efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Opna efst" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Loka efst" - -#~ msgid "&Auto completion enabled" -#~ msgstr "Orð&aklárun virk" - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "&Snið:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Hluti forrita KDE textaritilsins fannst ekki;\n" -#~ "Athugið KDE uppsetninguna." - -#~ msgid "Use this to close the current document" -#~ msgstr "Notaðu þetta til að loka núverandi skjali" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Notaðu þessa skipun til að búa til nýja skrá" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Notaðu þessa skipun til að opna skjal sem þegar er til" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Þessi listi sýnir skrár sem þú hefur opnað nýlega, og er fljótleg leið að " -#~ "þeim aftur." - -#~ msgid "&New Window" -#~ msgstr "&Nýr gluggi" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Búa til nýja sýn á núverandi skjal" - -#~ msgid "Choose Editor..." -#~ msgstr "Velja ritil..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Hunsa kerfisstillingar fyrir sjálfgefna ritilhlutann" - -#~ msgid "Close the current document view" -#~ msgstr "Loka núverandi skráarsýn" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "Notaðu þessa skipun til að sýna eða fela stöðuslána" - -#~ msgid "Sho&w Path" -#~ msgstr "Sýna &slóð" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Sýna heildarslóð skjalsins í titilslá" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Stilla flýtilykla forritsins." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Stilla hvaða hlutir eigi að birtast í tækjaslá(m)." - -#~ msgid "&About Editor Component" -#~ msgstr "&Um ritilseiningu" - -#~ msgid " INS " -#~ msgstr " INS " - -#~ msgid " LINE " -#~ msgstr " LINE " - -#~ msgid "Open File" -#~ msgstr "Opna skrá" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Ekki var hægt að lesa skrána, athugaðu hvort að hún sé til og að þú hafir " -#~ "heimild til að lesa hana." - -#~ msgid " BLOCK " -#~ msgstr " BLOCK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Lesa innihald stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Veldu stafatöflu fyrir skrána sem á að opna" - -#~ msgid "Navigate to this line" -#~ msgstr "Fara á þessa línu" - -#~ msgid "Navigate to this column" -#~ msgstr "Fara í þennan dálk" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - Textavinnsluforrit" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 höfundar Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "Veldu ritilseiningu" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "" -#~ "Mappa sem inniheldur prófanir, grunnmöppu (basedir) og úttaksmöppur." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Bera saman villur úr þessari prófun við stöðuna úr . " -#~ "Sjálfgefinn er samanburður við nýjustu villustöðu sem náðst hefur, eða " -#~ "enginn ef ekkert finnst." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Ekki henda aflúsunarúttakinu" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Endurreikna grunnviðmiðun (í stað þess að yfirfara)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Geyma úttaksskrár jafnvel þótt prófanir séu jákvæðar" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Vista villur úr þessari prófun sem villustöðu " - -#~ msgid "Show the window while running tests" -#~ msgstr "Sýna gluggann á meðan prófanir eru keyrðar" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Aðeins keyra eina prófun. Margir valmöguleikar leyfðir." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Setja úttak í í stað /úttak" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Keyra hverja prófun í aðgreindu ferli." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Mappa sem inniheldur prófanir, grunnmöppu (basedir) og úttaksmöppur. " -#~ "Einungis notað ef -b er ekki tilgreint." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Afstæð slóð til prófunarverkefnis, eða mappa fyrir þau prófunarverkefni " -#~ "sem á að keyra (samsvarandi -t)." - -#~ msgid "TestRegression" -#~ msgstr "AðfallsPrófun" - -#~ msgid "Regression tester for kate" -#~ msgstr "Aðfallsprófun fyrir Kate" - -#~ msgid "Error: " -#~ msgstr "Villa: " - -#, fuzzy -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Villa við kall á '%1'. Athugaðu með málfræðivillur." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Ef þetta er valið mun ritillinn reikna út hversu mörg orðabil eru eftir í " -#~ "næstu tab stöðu og setja inn það mörg orðabil í stað TAB táknsins." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Nota orðab&il til að draga inn í stað tab" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "S&já muninn" diff -Nru ktexteditor-5.28.0/po/it/ktexteditor5.po ktexteditor-5.31.0/po/it/ktexteditor5.po --- ktexteditor-5.28.0/po/it/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/it/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-18 00:37+0200\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-22 08:12+0100\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian \n" "Language: it\n" @@ -21,260 +21,319 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.10\n" +"X-Generator: Lokalize 2.0\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Configurazione del completamento del codice" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Sempre" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Suggerimenti per gli argomenti" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Migliori corrispondenze" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Spazi di nomi" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Classi" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Strutture" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unioni" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funzioni" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variabili" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumerazioni" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Prefisso" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Icona" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Contesto" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nome" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argomenti" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Suffisso" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Pubblico" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protetto" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Privato" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statico" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Costante" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Spazio di nomi" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Classe" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struttura" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Unione" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funzione" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variabile" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumerazione" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Modello" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtuale" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Sostituzione" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "In linea" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Amico" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Segnale" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Contesto locale" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Contesto dello spazio di nomi" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Contesto globale" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Proprietà sconosciuta" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Parole chiave del linguaggio" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Completamento automatico delle parole" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Completamento di shell" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Riusa parola sopra" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Riusa parola sotto" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&File" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Modifica" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Trova varianti" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Vai a" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Visualizza" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "A capo automatico" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Bordi" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Raggruppamento del &codice" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "S&trumenti" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Completamento delle parole" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Ortografia" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "Imp&ostazioni" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Barra principale" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -283,11 +342,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Mostra segni di &raggruppamento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -297,11 +358,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Mostra un'anteprima del codice raggruppato" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -313,11 +376,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Mostra bordo delle &icone" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -327,11 +392,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Mostra numeri di &riga" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -341,11 +408,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Mostra segni di modifica delle righe" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -356,11 +425,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Mostra segni nella barra di &scorrimento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " @@ -370,11 +441,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Mostra un'ante&prima del testo sulla barra di scorrimento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -384,11 +457,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Mostra minimappa di scorrimento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -398,36 +473,43 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Mappa tutto il documento" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" -msgstr "L&arghezza della minimappa" +#, kde-format +msgid "Minim&ap Width:" +msgstr "L&arghezza della minimappa:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Visibi&lità delle barre di scorrimento:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Sempre presenti" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Mostra quando necessarie" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Sempre assenti" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -435,11 +517,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Ordina il menu dei segnalibri" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -449,55 +533,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "Per crea&zione" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "I segnalibri saranno ordinati per il numero della riga dove sono." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "Per p&osizione" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Comando" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Descrizione" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Modifica voce..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Rimuovi voce" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Aggiungi voce..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Note ulteriori" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "" "

    Questa icona sarà visualizzata nel menu e nella barra degli strumenti.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Descrizione:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Categoria:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Generale" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "&Abilita il completamento delle parole" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Completamento a&utomatico delle parole" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Lunghezza minima delle parole da completare:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Rimuovi la coda di una parola precedente quando viene scelto un elemento da " @@ -576,16 +682,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Rimuovi coda al completamento" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "Com&pletamento delle parole" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -595,31 +704,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Ordinamento" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabetico" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Inverso" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Con distinzione delle maiuscole" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Profondità di ereditarietà" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" "Ordine di raggruppamento (seleziona un metodo di raggruppamento da " @@ -630,6 +745,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -638,121 +754,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtraggio" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Solo corrispondenze contestuali adatte" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Nascondi i completamenti con gli attributi seguenti:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Massima profondità di ereditarietà:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Infinito" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Raggruppamento" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Metodo di raggruppamento" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Tipo di contesto (locale, spazio di nomi, globale)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Contesto (per esempio per classe)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Tipo d'accesso (pubblico, eccetera)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Tipo di elemento (funzione, eccetera)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Proprietà di raggruppamento d'accesso" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Includi costanti nel raggruppamento" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Includi statici nel raggruppamento" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Includi segnali e slot nel raggruppamento" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Proprietà di raggruppamento degli elementi" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Includi modelli nel raggruppamento" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Fusione delle colonne" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Colonne" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Fuse" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Mostrate" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Ritorno a capo statico" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -771,12 +911,14 @@ "di configurazione Aspetto.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Abilita ritorno &a capo statico" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -788,17 +930,20 @@ "se si usa un tipo di carattere a larghezza fissa.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Mostra indicatori di a capo &statico (se applicabili)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Torna a ca&po dopo:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -808,72 +953,86 @@ "una nuova riga." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Modalità di inserimento" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" -msgstr "Modalità di inserimento predefinita" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" +msgstr "Modalità di inserimento predefinita:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Parentesi automatiche" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Abilita le parentesi automatiche" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Copia e incolla" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Copia o taglia la riga attuale se non c'è una selezione" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "Tipo di &file:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Seleziona il tipo di file che vuoi cambiare." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Crea un nuovo tipo di file." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nuovo" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Elimina il tipo di file attuale." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Elimina" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Proprietà" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -881,21 +1040,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Sezione:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Il nome della sezione è usato per organizzare i tipi di file in menu." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variabili:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -910,21 +1073,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Evidenziazione:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Modalità di &rientro:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "E&stensioni dei file:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -937,11 +1104,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Tipi MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -953,16 +1122,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Mostra un assistente che ti aiuta a scegliere facilmente i tipi MIME." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "P&riorità:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -972,16 +1144,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Scarica file di evidenziazione..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Modalità di rientro predefinita:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -995,36 +1170,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Rientra con" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulazioni" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Spazi" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Larghezza del r&ientro:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "T&abulazioni e spazi" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Larghezza &di tabulazione:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1039,11 +1221,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Regole di rientro" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1054,11 +1238,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Mantieni gli spazi di &troppo" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1068,16 +1254,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Regola il rientro del codice incollato dagli a&ppunti" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Azioni di rientro" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1089,11 +1278,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "Il tasto &Backspace nello spazio vuoto iniziale toglie il rientro" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Recupero dei dati(Aiuto)

    Impossibile recuperare tutti i dati. Il file di swap era " -#~ "probabilmente incompleto.

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Recupero dei dati(Aiuto)

    Il file non è stato chiuso correttamente. Vuoi recuperare " -#~ "i dati?

    " - -#~ msgctxt "Language" -#~ msgid "Prolog" -#~ msgstr "Prolog" - -#~ msgctxt "short translation please" -#~ msgid "Set auto insertion of brackets on or off." -#~ msgstr "Attiva o disattiva l'inserimento automatico delle parentesi." - -#~ msgctxt "short translation please" -#~ msgid "Remove trailing spaces when editing a line." -#~ msgstr "Rimuovi gli spazi finali quando si modifica una riga." - -#~ msgctxt "short translation please" -#~ msgid "Wrap the text cursor at the end of a line." -#~ msgstr "Manda a capo il cursore alla fine di una riga." - -#~ msgid "Template Background" -#~ msgstr "Sfondo del modello" - -#~ msgid "Export HlColors..." -#~ msgstr "Esporta colori ev..." - -#~ msgid "Import HlColors..." -#~ msgstr "Importa colori ev..." - -#~ msgid "Cancel" -#~ msgstr "Annulla" - -#~ msgid "Stop" -#~ msgstr "Ferma" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Contrai un livello locale" - -#~ msgid "Expand One Local Level" -#~ msgstr "Espandi un livello locale" - -#~ msgid "&Auto completion enabled" -#~ msgstr "Completamento automatico &abilitato" - -#~ msgid "Error: " -#~ msgstr "Errore: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "" -#~ "Errore nella chiamata a «%1». Controlla se ci sono errori di sintassi." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Se attivato, l'editor calcolerà il numero di spazi fino alla prossima " -#~ "tabulazione come definita dall'ampiezza di tabulazione, e inserirà quel " -#~ "numero di spazi al posto di un carattere di tabulazione." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "&Inserisci spazi invece di tabulazioni" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Impossibile trovare un componente di editor di testi per KDE;\n" -#~ "controlla la tua installazione di KDE." - -#~ msgid "Use this to close the current document" -#~ msgstr "Usalo per chiudere il documento attuale" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Usa questo comando per creare un nuovo documento" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Usa questo comando per aprire un documento da modificare" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Questo elenca i file che hai aperto di recente, e ti permette di " -#~ "riaprirli facilmente." - -#~ msgid "&New Window" -#~ msgstr "&Nuova finestra" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Crea una nuova vista con il documento attuale" - -#~ msgid "Choose Editor..." -#~ msgstr "Scegli editor..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "" -#~ "Ignora le impostazioni di sistema per il componente di modifica " -#~ "predefinito" - -#~ msgid "Close the current document view" -#~ msgstr "Chiudi la vista attuale del documento" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Usa questo comando per mostrare o nascondere la barra di stato della vista" - -#~ msgid "Sho&w Path" -#~ msgstr "Mostra &percorso" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "" -#~ "Mostra il percorso completo del documento nella didascalia della finestra" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "" -#~ "Configura le assegnazioni delle scorciatoie da tastiera dell'applicazione." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "" -#~ "Configura quali elementi dovrebbero apparire nelle barre degli strumenti." - -#~ msgid "&About Editor Component" -#~ msgstr "&Informazioni sul componente editor" - -#~ msgid " INS " -#~ msgstr " INS " - -#~ msgid " LINE " -#~ msgstr " RIGA " - -#~ msgid "Open File" -#~ msgstr "Apri file" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Impossibile leggere il file dato, controlla se esiste o se è leggibile " -#~ "per l'utente attuale." - -#~ msgid " BLOCK " -#~ msgstr " BLOC " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Leggi i contenuti di stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Imposta la codifica per il file da aprire" - -#~ msgid "Navigate to this line" -#~ msgstr "Naviga a questa riga" - -#~ msgid "Navigate to this column" -#~ msgstr "Naviga a questa colonna" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - Editor di testi" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "© 2000-2005 degli autori di Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "Scegli il componente editor" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Cartella contenente test, cartella di base e cartelle di output." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Confronta gli errori di questa prova con questa . Assume come " -#~ "valore predefinito l'istantanea dell'ultimo errore catturato, o nessuna " -#~ "se non ce ne sono." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Non scartare l'output di debug" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Rigenera la linea di base (invece di controllare)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Tieni i file di output anche se va tutto bene" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Salva gli errori di questa prova come di errore" - -#~ msgid "Show the window while running tests" -#~ msgstr "Mostra la finestra mentre si effettuano le prove" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Esegui solo una prova. Sono permesse opzioni multiple." - -#~ msgid "Put output in instead of /output" -#~ msgstr "" -#~ "Metti l'output nella invece che in /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Esegui ogni prova in un processo a parte." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "La cartella contenente le prove, la cartella di base e le cartelle di " -#~ "output. Considerato solo se -b non è specificato." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Percorso relativo al caso di prova, o cartella di casi di prova da " -#~ "eseguire (equivalente a -t)." - -#~ msgid "TestRegression" -#~ msgstr "Prove regressione" - -#~ msgid "Regression tester for kate" -#~ msgstr "Prove di regressione per Kate" - -#~ msgid "Universal" -#~ msgstr "Universale" - -#~ msgid "From &cursor" -#~ msgstr "Dal &cursore" - -#~ msgid "Hi&ghlight all" -#~ msgstr "&Evidenzia tutto" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Manda a capo il documento" - -#~ msgid "Add &BOM" -#~ msgstr "Aggiungi &BOM" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Disabilitato" - -#~ msgid "Binary File Opened" -#~ msgstr "Aperto file binario" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Aperto file UTF-8 danneggiato" - -#~ msgid "&Options" -#~ msgstr "&Opzioni" - -#~ msgid "Modify search behavior" -#~ msgstr "Modifica il comportamento di ricerca" - -#~ msgid "Success" -#~ msgstr "Successo" - -#~ msgid "Move Character Right" -#~ msgstr "Vai un carattere a destra" - -#~ msgid "Move Character Left" -#~ msgstr "Vai un carattere a sinistra" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "© 2000-2008 degli autori di Kate" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Sviluppatore e procedura guidata di evidenziazione" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Impossibile leggere il file: «%1»" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Impossibile avviare l'interprete per lo script %1, comando %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "" -#~ "Questo esegue il documento attuale come JavaScript all'interno di Kate." - -#~ msgid "&Overwrite" -#~ msgstr "S&ovrascrivi" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "A capo automatico &dinamico" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "© 2000-2005 degli autori di Kate" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "Configurazione delle scorciatoie" - -#~ msgid "Line must be at least 1" -#~ msgstr "La riga deve essere almeno 1." - -#~ msgid "There is not that many lines in this document" -#~ msgstr "Non ci sono così tante righe in questo documento" - -#~ msgid "Add special item to search pattern" -#~ msgstr "Aggiungi elemento speciale allo schema di ricerca" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "" -#~ "Espandi i segnaposti (da \\0 a \\9) e sequenze di escape (\\n, \\t, ...)" - -#~ msgid "Add special item to replacement text" -#~ msgstr "Aggiungi un elemento speciale al testo di sostituzione" - -#~ msgid "Highlight all matches" -#~ msgstr "Evidenzia tutte le corrispondenze" - -#~ msgid "Match case" -#~ msgstr "Distingui le maiuscole" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "Avvia la ricerca dal cursore, non dall'inizio del documento" - -#~ msgid "From cursor" -#~ msgstr "Dal cursore" - -#~ msgid "Selection only " -#~ msgstr "Solo la selezione" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "Stai cercando di salvare un file Python come non ASCII, senza specificare " -#~ "una corretta riga sorgente di codifica per la codifica «%1»" - -#~ msgid "No encoding header" -#~ msgstr "Nessuna intestazione di codifica" - -#~ msgid "VI: COMMAND LINE" -#~ msgstr "VI: RIGA DI COMANDO" - -#~ msgid "unknown" -#~ msgstr "sconosciuto" - -#~ msgid "Context '%1': Incorrect number of arguments in '%2'" -#~ msgstr "Contesto «%1»: numero errato di argomenti in «%2»" - -#~ msgid "Exception, line %1: %2" -#~ msgstr "Eccezione, riga %1: %2" - -#~ msgid "Could not access view." -#~ msgstr "Impossibile accedere alla vista." - -#~ msgid "Could not access lookup object." -#~ msgstr "Impossibile accedere ad oggetto di ricerca." - -#~ msgid "Exception: Unable to find function '%1': %2" -#~ msgstr "Eccezione: impossibile trovare la funzione «%1»: %2" - -#~ msgid "Exception in line %1: %2" -#~ msgstr "Eccezione alla riga %1: %2" - -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "Impossibile avviare il programma di controllo ortografico. Assicurati di " -#~ "aver impostato il programma di controllo ortografico giusto e che sia " -#~ "correttamente configurato e presente nel percorso PATH." - -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "" -#~ "Sembra che il programma di controllo ortografico sia andato in crash." - -#~ msgid "Sort: None" -#~ msgstr "Ordinamento: nessuno" - -#~ msgid "Filter: None" -#~ msgstr "Filtro: nessuno" - -#~ msgid "Setup" -#~ msgstr "Configurazione" - -#~ msgid "&Maximum undo steps:" -#~ msgstr "&Massimo numero di annullamenti:" - -#~ msgid " Static" -#~ msgstr " Statico" - -#~ msgid "Print syntax &guide" -#~ msgstr "Stampa &guida alla sintassi" - -#~ msgid "Print &selected text only" -#~ msgstr "&Stampa solo testo selezionato" - -#~ msgid "" -#~ "

    This option is only available if some text is selected in the document." -#~ "

    If available and enabled, only the selected text is printed.

    " -#~ msgstr "" -#~ "

    Questa opzione è disponibile solamente se c'è del testo selezionato " -#~ "nel documento.

    Se disponibile e attiva, sarà stampato solo il testo " -#~ "selezionato.

    " - -#~ msgid "Print %1" -#~ msgstr "Stampa %1" - -#~ msgid "Nowhere" -#~ msgstr "Nessuna" - -#~ msgid "Selection, then Current Word" -#~ msgstr "La selezione, poi la parola corrente" - -#~ msgid "Current Word Only" -#~ msgstr "Solo la parola corrente" - -#~ msgid "Current Word, then Selection" -#~ msgstr "La parola corrente, poi la selezione" - -#~ msgid "Smart search t&ext from:" -#~ msgstr "Fonte del t&esto da cercare:" - -#, fuzzy -#~| msgid "" -#~| "This determines where KateView will get the search text from (this will " -#~| "be automatically entered into the Find Text dialog): " -#~| "
    • Nowhere: Don't guess the search text.
    • Selection Only: Use the current text selection, if " -#~| "available.
    • Selection, then Current Word: Use the current " -#~| "selection if available, otherwise use the current word.
    • Current Word Only: Use the word that the cursor is " -#~| "currently resting on, if available.
    • Current Word, then " -#~| "Selection: Use the current word if available, otherwise use the " -#~| "current selection.
    Note that, in all the above modes, if a " -#~| "search string has not been or cannot be determined, then the Find Text " -#~| "Dialog will fall back to the last search text." -#~ msgid "" -#~ "

    This determines where a view will get the search text from \n" -#~ "(this will be automatically entered into the Find Text dialog): \n" -#~ "

    \n" -#~ "

    \n" -#~ "

      \n" -#~ "
    • Nowhere: Don't guess the search text.\n" -#~ "
    • \n" -#~ "
    • Selection Only: Use the current text selection, \n" -#~ "if available.\n" -#~ "
    • \n" -#~ "
    • Selection, then Current Word: Use the current \n" -#~ "selection if available, otherwise use the current word.\n" -#~ "
    • \n" -#~ "
    • Current Word Only: Use the word that the cursor \n" -#~ "is currently resting on, if available.\n" -#~ "
    • \n" -#~ "
    • Current Word, then Selection: Use the current \n" -#~ "word if available, otherwise use the current selection.\n" -#~ "
    • \n" -#~ "
    \n" -#~ "

    \n" -#~ "

    \n" -#~ "Note that, in all the above modes, if a search string has \n" -#~ "not been or cannot be determined, then the Find Text Dialog \n" -#~ "will fall back to the last search text.\n" -#~ "

    " -#~ msgstr "" -#~ "Questa opzione determina la fonte del testo da cercare, cioè il testo " -#~ "inserito automaticamente nella finestra Trova testo: " -#~ "
    • Nessuna: non indovinare il testo da cercare.
    • Solo la selezione: usa il testo attualmente selezionato, se " -#~ "possibile.
    • La selezione, poi la parola attuale: usa la " -#~ "selezione attuale se possibile, altrimenti usa la parola attuale.
    • Solo la parola attuale: usa la parola su cui si trova il " -#~ "cursore, se possibile.
    • La parola attuale, poi la selezione: usa la parola attuale se possibile, altrimenti usa la selezione " -#~ "attuale.
    Nota che, in tutte le modalità indicate, se non è " -#~ "possibile determinare una stringa di ricerca allora verrà usato l'ultimo " -#~ "testo cercato." diff -Nru ktexteditor-5.28.0/po/ja/ktexteditor5.po ktexteditor-5.31.0/po/ja/ktexteditor5.po --- ktexteditor-5.28.0/po/ja/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ja/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2011-04-24 13:17-0700\n" "Last-Translator: Fumiaki Okushi \n" "Language-Team: Japanese \n" @@ -28,260 +28,317 @@ "X-Generator: Lokalize 1.1\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "コード補完の設定" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "常に" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "引数ヒント" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "最適マッチ" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "名前空間" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "クラス" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "構造体" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "共用体" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "関数" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "変数" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "列挙型" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "プレフィックス" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "アイコン" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "スコープ" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "名前" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "引数" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "ポストフィックス" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Public" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protected" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Private" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Static" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "定数" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "名前空間" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "クラス" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "構造体" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "共用体" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "関数" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "変数" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "列挙型" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "テンプレート" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "仮想" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "オーバーライド" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "インライン" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "フレンド" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "シグナル" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "スロット" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "ローカルスコープ" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "名前空間スコープ" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "グローバルスコープ" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "未知のプロパティ" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "自動単語補完" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "シェル補完" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "上の単語を再使用" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "下の単語を再使用" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "ファイル(&F)" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "編集(&E)" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "表示(&V)" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "固定的な行の折り返し" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "境界" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "コード折りたたみ(&C)" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "ツール(&T)" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "単語補完" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "スペル" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "設定(&S)" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "メインツールバー" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -293,14 +350,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "折りたたみマーカーを表示(&M)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -331,11 +389,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "アイコンバーを表示する(&I)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -345,12 +405,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "行番号を表示する(&L)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -363,13 +424,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "折りたたみマーカーを表示(&M)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -379,12 +441,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "スクロールバーにマークを表示する(&S)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "" @@ -479,11 +547,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "ブックマークメニューのソート順" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -491,59 +561,67 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "作成日時で(&R)" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "ブックマークを行番号順に並べます。" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "位置で(&P)" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "コマンド" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "説明" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "エントリを編集..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "エントリを削除" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "エントリを追加..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "メモ" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    このアイコンはメニューとツールバーに表示されます。

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "説明(&D):" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "カテゴリ(&C):" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "全般" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Completion" msgid "Enable &auto completion" msgstr "自動補完" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Word Completion" msgid "A&uto Word Completion" msgstr "自動単語補完" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "補完する単語の最低の長さ:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "末尾のスペースを削除する(&M)" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "単語補完" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -644,31 +733,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "ソート" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "アルファベット順" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "逆順" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "大文字と小文字を区別する" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "継承の深さ" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "グルーピングの順序 (設定するグルーピング方法を選択):" @@ -677,6 +772,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -685,122 +781,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "フィルタリング" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "適切なコンテクストマッチのみ" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "以下の属性の補完を隠す:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "最大の継承の深さ:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "無限" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "グルーピング" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "グルーピング方法" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "スコープのタイプ (ローカル、名前空間、グローバル)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "スコープ (例: クラスごと)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "アクセスのタイプ (例: public)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "アイテムのタイプ (例: 関数)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "アクセスグルーピングのオプション" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "グルーピングに const を含める" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "グルーピングに static を含める" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "グルーピングにシグナルとスロットを含める" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "アイテムグルーピングのオプション" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "グルーピングにテンプレートを含める" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "カラムのマージ" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "カラム" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "マージ" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "表示" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "固定的な行の折り返し" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 -#, fuzzy +#: dialogs/editconfigwidget.ui:26 +#, fuzzy, kde-format #| msgid "" #| "

    Automatically start a new line of text when the current line exceeds " #| "the length specified by the Wrap words at: option.

    This " @@ -826,12 +945,14 @@ "ください。

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "固定的な行の折り返しを有効にする(&W)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -843,19 +964,21 @@ "とに注意してください。

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "(有効時に) 固定的な行の折り返しマーカーを表示する(&P)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "折り返す文字数(&R):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -864,101 +987,115 @@ "数) をここで設定します。" #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Input Mode" msgstr "VI 入力モード" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "デフォルトの字下げモード:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "マッチする括弧を選択" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "何も選択されていなければ現在の行をコピー/切り取る" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "ファイルタイプ(&F):" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "変更するファイルタイプを選択します。" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "新しいファイルタイプを作成します。" #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "新規(&N)" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "現在のファイルタイプを削除します。" #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "削除(&D)" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "プロパティ" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "ここで指定したファイルタイプ名がメニューの項目として表示されます。" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "セクション(&S):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "セクション名はメニュー内でファイルタイプを分類するために使用します。" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "変数(&V):" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -973,21 +1110,25 @@ # ACCELERATOR changed by translator #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "強調表示(&L):" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "字下げモード(&I):" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "ファイル拡張子(&X):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -999,11 +1140,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME タイプ(&T):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1015,16 +1158,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "MIME タイプを簡単に選択するためのウィザードを表示します。" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "優先度(&R):" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1034,16 +1180,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "強調表示定義をダウンロード..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "デフォルトの字下げモード:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1056,38 +1205,44 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "字下げ" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "タブ(&T)" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "スペース(&S)" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "字下げの幅(&I):" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "タブとスペース" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "タブ幅(&D):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1101,11 +1256,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "字下げの設定" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1115,11 +1272,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "余分なスペースを保持する(&K)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1130,16 +1289,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "クリップボードから貼り付けたコードの字下げを調整する(&P)" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "字下げの動作" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1150,11 +1312,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "Backspace キーで字下げレベルを減らす(&B)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Деректі қалпына келтіру (Көмек)

    Дерек түгелдей қалпына келмеді. Своп файл толық емес сияқты. " - -#~ msgid "OK" -#~ msgstr "ОК" - -#~ msgid "Overwrite" -#~ msgstr "Үстінен жазу" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Деректі қалпына келтіру " -#~ "(Көмек)

    Бұл файл дұрыс жабылмаған. Деректі қалпына " -#~ "келтіруді қалайсыз ба?

    " - -#~ msgid "Cancel" -#~ msgstr "Қайту" - -#~ msgid "Stop" -#~ msgstr "Тоқтату" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Түстер" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Түстер" - -#~ msgid "Export HlColors..." -#~ msgstr "Бояулау түстерді экспорттау..." - -#~ msgid "Import HlColors..." -#~ msgstr "Бояулау түстерді импорттау..." - -#~ msgid "Template Background" -#~ msgstr "Үлгі аясы" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Бір деңгейді бүктеу" - -#~ msgid "Expand One Local Level" -#~ msgstr "Бір деңгейді жаю" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Барлығын бүктеу" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Барлығын жаю" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Барлығын бүктеу" - -#~ msgid "&Auto completion enabled" -#~ msgstr "Автотолықтыру істесін" - -#~ msgid "Sort the selected text or whole document in natural order.
    " -#~ msgstr "Таңдалған мәтінді не құжатты түгелдей өзінің ретіне келтіру.
    " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "" -#~ "Аргумент ретінде келтірілген JavaScript функциясын келесі үшін жұмсалсын: " -#~ "(таңдалған) жолдар және" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "" -#~ "Аргумент ретінде келтірілген JavaScript функциясын келесі үшін жұмсалсын: " -#~ "(таңдалған) жолдар " - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "&Пішімі:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "KDE мәтін өңдегіш компоненті табылмады;\n" -#~ "KDE орнатылымын түгелдеңіз." - -#~ msgid "Use this to close the current document" -#~ msgstr "Назардағы құжатты жабу" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Жаңа құжатты құру командасы" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Бар құжатты өңдеу үшін ашу командасы" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "Қайтадан ашуды тездететін жуырда ашылған файлдар тізімі." - -#~ msgid "&New Window" -#~ msgstr "&Жаңа терезе" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Назардағы құжатпен тағы бір көріністі құру" - -#~ msgid "Choose Editor..." -#~ msgstr "Өңдегішті таңдау..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Әдетті өңдегіш компонентінің жалпы жүйе бойынша баптауларын өзгерту" - -#~ msgid "Close the current document view" -#~ msgstr "Назардағы құжат көрінісін жабу" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "Көріністің күй-жай жолағын көрсету/жасыру командасы" - -#~ msgid "Sho&w Path" -#~ msgstr "Жолын &көрсету" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Терезе айдарында құжаттың толық жолын көрсету" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Қолданбаның перне тіркесімдерін баптау." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Құралдар панелін(дер)де көрсетілетін нәрселерді баптау." - -#~ msgid "&About Editor Component" -#~ msgstr "Өңдегіш компоненті тур&алы" - -#~ msgid " INS " -#~ msgstr " ЕНД " - -#~ msgid " LINE " -#~ msgstr " ЖОЛ " - -#~ msgid "Open File" -#~ msgstr "Файлды ашу" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Келтірілген файл оқылмады, оның бар екенін және әрекет еткен " -#~ "пайдаланушыға оқуы рұқсат екенін тексеріңіз." - -#~ msgid " BLOCK " -#~ msgstr " БЛОК " - -#~ msgid "Read the contents of stdin" -#~ msgstr "stdin мазмұнын оқу" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Ашатын файлдың кодтамасын таңдаңыз" - -#~ msgid "Navigate to this line" -#~ msgstr "Осы жолға ауысу" - -#~ msgid "Navigate to this column" -#~ msgstr "Осы бағанға ауысу" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - мәтін өңдегіші" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005, Kate авторлары" - -#~ msgid "Choose Editor Component" -#~ msgstr "Өңдегіш компонентін таңдау" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Ішінде сынақтар, негізгі және шығыс каталогтары сақтайтын қапшық." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "Осы сынақтан өтпегенін дегенмен салыстырып көріңіз." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Жөндеу мәлімет шығысын бұғаттамау" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Негізгі жолын қайта жасау (тексеру орнына)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Сәтті өтсе де шығыс файлдар сақталсын" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Осы сынақтан өтпегенін жаңылыс түсірімі деп сақтау" - -#~ msgid "Show the window while running tests" -#~ msgstr "Сынақ орындалғанда терезесі көрсетілсін" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Тек жалғыз сынақты орындау. Көп параметрлер рұқсатты." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Шығысы /output орнына дегенде сақталсын" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Әрбір сынақты бөлек процесте орындау." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Ішінде сынақтар, негізгі және шығыс каталогтары сақтайтын қапшық. Тек -b " -#~ "параметрі келтірілмесе ғана істейді." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Сынаққа осыдан апаратын жол немесе сынақтарды орындайтын каталог (-t " -#~ "дегенге тең)." - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for kate" -#~ msgstr "kate-тің регрессия сынағы" - -#~ msgid "Error: " -#~ msgstr "Қате: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "'%1' дегенді шақыру қатесі. Синтаксисін тексеріңіз." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Бұл таңдалса, өңдегіш келесі кестелеу орнына дейінгі бос орындарды " -#~ "есептеп, TAB кестелеу таңбасын сол бос орындармен ауыстырады." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "&Кестелеу бос орындардан құрылсын" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "Айырмашылығын &көру" - -#~| msgid "General" -#~ msgid "Universal" -#~ msgstr "Әмбебап" - -#~ msgid "From &cursor" -#~ msgstr "&Меңзерден бастап" - -#~ msgid "Hi&ghlight all" -#~ msgstr "Барлығын &бояулау" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Құжатта жолдарды тасымалдау" - -#~ msgid "Add &BOM" -#~ msgstr "&БРМ-ді қосу" - -#~| msgid "Disabled" -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Бұғатталған" - -#~ msgid "Binary File Opened" -#~ msgstr "Бинарлық файл ашылды" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Ашылған UTF-8 файл бүлінген" - -#~| msgid "Options" -#~ msgid "&Options" -#~ msgstr "&Параметрлері" - -#~ msgid "Modify search behavior" -#~ msgstr "Іздеу тәртібін өзгерту" - -#, fuzzy -#~| msgid "(c) 2000-2005 The Kate Authors" -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2005, Kate авторлары" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Жасаушысы, талдап бояулау шебері" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Келесі файл оқылмайды: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "%1 скрипттегі %2 команда үшін интерпретаторды жегу жаңылысы" - -#~ msgid "Success" -#~ msgstr "Сәтті болды" - -#~ msgid "Move Character Right" -#~ msgstr "Бір таңба оңға жылжу" - -#~ msgid "Move Character Left" -#~ msgstr "Бір таңба солға жылжу" - -#~ msgid "&Overwrite" -#~ msgstr "&Үстінен жазу" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Динамикалық тасымалдау" - -#, fuzzy -#~| msgid "(c) 2000-2005 The Kate Authors" -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2005, Kate авторлары" diff -Nru ktexteditor-5.28.0/po/km/ktexteditor5.po ktexteditor-5.31.0/po/km/ktexteditor5.po --- ktexteditor-5.28.0/po/km/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/km/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -6,11 +6,11 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2012-06-13 09:26+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer\n" -"Language: \n" +"Language: km\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -19,260 +19,317 @@ "X-Language: km-KH\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "ការ​កំណត់​រចនា​សម្ព័ន្ធ​ការ​បំពេញ​កូដ" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "ជានិច្ច" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "ព័ត៌មាន​ជំនួយ​អាគុយម៉ង់" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "ការ​ផ្គូផ្គង​ល្អ​បំផុត" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "ចន្លោះ​ឈ្មោះ" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "ថ្នាក់" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "កំណត់​រចនាសម្ព័ន្ធ" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "ការរួបរួម" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "មុខងារ" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "អថេរ" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "ការ​រៀបរាប់" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "បុព្វបទ" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "រូបតំណាង" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "វិសាលភាព" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "ឈ្មោះ" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "អាគុយម៉ង់" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "បច្ច័យ" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "សាធារណៈ" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "បាន​ការពារ" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "ឯកជន" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "ឋិតិវន្ត" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "ថេរ​" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "ចន្លោះ​ឈ្មោះ" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "ថ្នាក់" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "កំណត់​រចនាសម្ព័ន្ធ" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "ប្រជុំ" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "មុខងារ" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "អថេរ" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "ការ​រៀបរាប់" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "ពុម្ព" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "និម្មិត" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "បដិសេធ" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "ក្នុង​តួ" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "មិត្ត​ភក្ដិ" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "សញ្ញា" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "រន្ធ" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "វិសាល​ភាព​មូលដ្ឋាន" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "វិសាលភាព​ចន្លោះ​ឈ្មោះ" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "វិសាលភាព​សកល" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "មិន​ស្គាល់​លក្ខណៈសម្បត្តិ" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "ការបំពេញ​ពាក្យ​ដោយ​ស្វ័យ​ប្រវត្តិ" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "ការ​បំពេញ​សែល" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "ប្រើ​ពាក្យ​ខាង​លើ​ឡើង​វិញ" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "ប្រើ​ពាក្យ​ខាង​ក្រោម​នេះ​ឡើង​វិញ" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "ឯកសារ" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "កែសម្រួល" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "រក​ផ្សេងៗ​គ្នា" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "មើល" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "ការ​រុំ​ពាក្យឋិតិវន្ត" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "ស៊ុម" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "ផ្នត់​កូដ" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "ឧបករណ៍" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "ការ​បំពេញ​ពាក្យ" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "អក្ខរាវិរុទ្ធ" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "ការ​កំណត់" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "របារ​ឧបករណ៍​មេ" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -283,14 +340,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "បង្ហាញ​សញ្ញា​​សម្គាល់​ការ​បត់" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -321,11 +379,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "បង្ហាញ​ស៊ុម​រូបតំណាង" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -334,11 +394,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "បង្ហាញ​លេខ​បន្ទាត់" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -348,11 +410,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "បង្ហាញ​ឧបករណ៍​កំណែប្រែ​​បន្ទាត់" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -362,12 +426,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "បង្ហាញ​សញ្ញា​សម្គាល់​របារ​រមូរ" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    រូបតំណាង​នេះ​នឹង​ត្រូវ​បាន​បង្ហាញ​នៅក្នុង​ម៉ឺនុយ និង​របារ​ឧបករណ៍ ។

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "សេចក្ដី​ពិពណ៌នា ៖" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "ប្រភេទ ៖" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "ទូទៅ" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "បើក​ការ​បំពេញ​ស្វ័យប្រវត្តិ" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Auto Word Completion" msgid "A&uto Word Completion" msgstr "ការបំពេញ​ពាក្យ​ដោយ​ស្វ័យ​ប្រវត្តិ" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "ប្រវែង​ពាក្យ​អប្បបរមា​ដើម្បីបំពេញ ៖" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces:" msgid "Remove tail on complete" msgstr "យក​ដក​ឃ្លា​នៅ​ពី​ក្រោយ​ចេញ​" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "ការ​បំពេញ​ពាក្យ" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -617,31 +711,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "ការ​តម្រៀប" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "លំដាប់​អក្ខរក្រម" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "បញ្ច្រាស" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "ប្រកាន់​​អក្សរ​តូច​ធំ" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "ជម្រៅ​ការ​បន្សល់ទុក" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "លំដាប់​នៃការ​ដាក់ក្រុម (ជ្រើស​វិធីសាស្ដ្រ​នៃការ​ដាក់ក្រុម​ដើម្បី​កំណត់​រចនា​សម្ព័ន្ធ) ៖" @@ -650,6 +750,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -658,121 +759,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "ការ​ត្រង" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "តែ​ការ​ផ្គូផ្គង​បរិបទ​សមរម្យ​ប៉ុណ្ណោះ" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "លាក់​ការ​បំពេញ​ដោយ​គុណលក្ខណៈ​ដូច​ខាងក្រោម ៖" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "ជម្រៅ​ការ​បន្សល់ទុក​អតិបរមា ៖" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "គ្មាន​ព្រំដែន" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "ការ​ដាក់ក្រុម" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "វិធីសាស្ដ្រ​នៃ​ការ​ដាក់ក្រុម" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "ប្រភេទ​វិសាលភាព (មូលដ្ឋាន ចន្លោះ​ឈ្មោះ សកល)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "វិសាលភាព (ឧ. ក្នុង​មួយ​ថ្នាក់)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "ប្រភេទ​ចូល​ដំណើរការ (សាធារណៈ ។ល។)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "ប្រភេទ​ធាតុ (មុខងារ ។ល។)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "លក្ខណៈសម្បត្តិនៃ​ការ​ចូលដំណើរការ​​ក្រុម​" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "រួម​បញ្ចូល​ const ក្នុង​ការ​ដាក់ក្រុម" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "រួមបញ្ចូល​ឋិតិវន្ដ​ក្នុង​ការ​ដាក់ក្រុម" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "រួមបញ្ចូល​​សញ្ញា និង​រន្ធ​ក្នុង​ការ​ដាក់ក្រុម" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "លក្ខណៈសម្បត្តិ​ក្រុម​វត្ថុ​" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "រួមបញ្ចូល​ពុម្ព​ក្នុង​ការ​ដាក់​ក្រុម" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "ការ​បញ្ចូល​ជួរឈរ​ចូល​គ្នា" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "ជួរឈរ" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "បាន​បញ្ចូល​ចូល​គ្នា" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "បាន​បង្ហាញ" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "ការ​រុំ​ពាក្យឋិតិវន្ត" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -788,12 +913,14 @@ "b> ក្នុង​ទំព័រ​កំណត់​រចនាសម្ព័ន្ធ រូបរាង

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "អនុញ្ញាត​ការ​រុំ​ពាក្យ​ឋិតិវន្ត" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -804,19 +931,21 @@ "ករណី​ដែល​អ្នក​ប្រើ​ពុម្ពអក្សរ​ជម្រាល​ថេរ ។

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "បង្ហាញ​សញ្ញា​​សម្គាល់​រុំពាក្យ​ឋិតិវន្ត (​ប្រសិន​បើ​អាច​អនុវត្ត)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "រុំ​ពាក្យត្រង់ ៖" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -825,103 +954,116 @@ "ដោយ​ស្វ័យប្រវត្តិ ។" #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Input Mode" msgstr "របៀប​បញ្ចូល VI" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "របៀប​ចូល​បន្ទាត់​លំនាំដើម ៖" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Move to Matching Bracket" msgid "Auto Brackets" msgstr "ផ្លាស់ទី​ទៅ​តង្កៀប​ដែល​ដូច" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "ជ្រើស​ទៅ​តង្កៀប​ដែល​ដូច" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "ចម្លង/កាត់​បន្ទាត់​បច្ចុប្បន្ន ប្រសិនបើ​គ្មាន​ជម្រើស" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "ប្រភេទ​ឯកសារ ៖" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "ជ្រើស​ប្រភេទ​​ឯកសារ​ដែល​អ្នក​ចង់​ផ្លាស់ប្ដូរ ។" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "បង្កើត​ប្រភេទ​ឯកសារ​ថ្មី​មួយ ។" #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "ថ្មី" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "លុប​ប្រភេទ​ឯកសារ​បច្ចុប្បន្ន ។" #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "លុប" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "លក្ខណៈ​សម្បត្តិ" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "ឈ្មោះ​ប្រភេទ​ឯកសារ​នឹងជា​​អត្ថបទ​របស់​ធាតុ​ម៉ឺនុយ​ដែល​ត្រូវ​គ្នា ។" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "ផ្នែក ៖" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "ឈ្មោះ​ផ្នែក​ត្រូវ​បាន​ប្រើ​ដើម្បី​រៀបចំ​ប្រភេទ​ឯកសារ​ក្នុង​ម៉ឺនុយ ។" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "អថេរ ៖" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -934,21 +1076,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "ការ​បន្លិច ៖" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "ការ​ចូល​បន្ទាត់ ៖" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "កន្ទុយ​ឯកសារ ៖" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -960,11 +1106,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "ប្រភេទ MIME ៖" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -975,16 +1123,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "បង្ហាញ​អ្នក​ជំនួយ​ការ​ដែល​ជួយ​អ្នក​ឲ្យ​ជ្រើស​ប្រភេទ mime បាន​ងាយ​ស្រួល ។" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "អាទិភាព ៖" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -994,16 +1145,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "ទាញ​យក​ឯកសារ​បន្លិច..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "របៀប​ចូល​បន្ទាត់​លំនាំដើម ៖" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1015,36 +1169,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "ប្រើ​ការ​ចូល​បន្ទាត់" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "ថេប" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "ចន្លោះ" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "ទំហំ​នៃ​ការ​ចូល​បន្ទាត់ ៖" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "ថេប និង​ចន្លោះ" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "ទទឹង​ថេប ៖" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1057,11 +1218,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "លក្ខណៈ​សម្បត្តិ​ការ​ចូលបន្ទាត់" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1071,11 +1234,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "ទុក​ចន្លោះ​បន្ថែម" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1085,16 +1250,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "លៃតម្រូវ​ការចូល​បន្ទាត់​របស់​កូដ​ដែលបាន​បិទភ្ជាប់​ពី​ក្ដារតម្បៀតខ្ទាស់" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "អំពើ​នៃ​ការ​ចូល​បន្ទាត់" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1105,11 +1273,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "គ្រាប់ចុច​លុបថយ​ក្រោយ​ក្នុង​​​ចន្លោះ​ទទេ​នៅ​ខាង​មុខ នឹង​ចេញ​បន្ទាត់" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -"

    សកម្មភាព​គ្រាប់ចុច​ថេប(Tab) (ប្រសិន​បើ​មិន​មាន​ជម្រើស) ថេប(Tab)" -" ដើម្បី​តម្រឹម​បន្ទាត់​បច្ចុប្បន្ន​នៅ​ក្នុង​ប្លុក​កូដ​​បច្ចុប្បន្ន​ដូច​នៅ​ក្នុង emacs, make ផ្លូវកាត់​ថេប" -"(Tab) ទៅ​​សកម្មភាព តម្រឹម ។\">ច្រើន​ទៀត ...

    " +"

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "ជ្រើស​របៀប​តម្រៀប​ចំណាំ​នៅ​ក្នុង​ម៉ឺនុយ ចំណាំ ។" #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "តម្រៀប​ម៉ឺនុយ​ចំណាំ" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -467,59 +541,67 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "តាម​ការ​បង្កើត" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "ចំណាំ​នឹង​ត្រូវ​បាន​តម្រៀប​តាម​លេខ​បន្ទាត់​ដែល​ពួក​វាស្ថិត​នៅ ។" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "តាម​ទីតាំង" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "ពាក្យ​បញ្ជា" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "សេចក្ដី​ពិពណ៌នា" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "កែសម្រួល​ធាតុ​..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "យក​ធាតុ​ចេញ" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "បន្ថែម​ធាតុ​..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "ចំណាំ​បន្ថែមទៀត​" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    " #: utils/katecmds.cpp:124 +#, kde-format msgid "" "

    set-indent-width width

    Sets the indentation width to the " "number width. Used only if you are indenting with spaces.

    " @@ -6624,6 +5302,7 @@ "ប្រសិនបើ​អ្នក​កំពុង​ឲ្យ​មាន​ចន្លោះ​មិន​ឃើញ ។

    " #: utils/katecmds.cpp:128 +#, kde-format msgid "" "

    set-indent-mode mode

    The mode parameter is a value as seen " "in the Tools - Indentation menu

    " @@ -6632,6 +5311,7 @@ "បន្ទាត់

    " #: utils/katecmds.cpp:132 +#, kde-format msgid "" "

    set-auto-indent enable

    Enable or disable autoindentation.

    possible true values: 1 on true
    possible false values: 0 off falseតម្លៃ​មិន​ពិត​ពិត ៖ ០ មិន​ពិត

    " #: utils/katecmds.cpp:138 +#, kde-format msgid "" "

    set-line-numbers enable

    Sets the visibility of the line " "numbers pane.

    possible true values: 1 on true
    possible false " @@ -6650,6 +5331,7 @@ "តម្លៃ​ពិត ៖ 1 on true
    possible false values: 0 off false

    " #: utils/katecmds.cpp:144 +#, kde-format msgid "" "

    set-folding-markers enable

    Sets the visibility of the " "folding markers pane.

    possible true values: 1 on true
    possible " @@ -6659,6 +5341,7 @@ "សម្គាល់​ folding ។

    តម្លៃ​ពិត ៖ ១ ពិត
    តម្លៃ​មិន​ពិត ៖ ០ មិន​ពិត

    " #: utils/katecmds.cpp:150 +#, kde-format msgid "" "

    set-icon-border enable

    Sets the visibility of the icon " "border.

    possible true values: 1 on true
    possible false values: 0 " @@ -6668,6 +5351,7 @@ "៖ ១ ពិត
    តម្លៃ​មិន​ពិត ៖ ០ មិន​ពិត

    " #: utils/katecmds.cpp:156 +#, kde-format msgid "" "

    set-word-wrap enable

    Enables dynamic word wrap according to " "enable

    possible true values: 1 on true
    possible false " @@ -6677,6 +5361,7 @@ "តម្លៃ​ពិត ៖ ១ ពិត
    តម្លៃ​មិន​ពិត ៖ ០ មិន​ពិត

    " #: utils/katecmds.cpp:162 +#, kde-format msgid "" "

    set-word-wrap-column width

    Sets the line width for hard " "wrapping to width. This is used if you are having your text wrapped " @@ -6686,6 +5371,7 @@ "ត្រូវ​បាន​ប្រើ ប្រសិនបើ​​អ្នក​មាន​អត្ថបទ​ដែល​បាន​រុំ​ដោយ​ស្វ័យ​ប្រវត្តិ ។

    " #: utils/katecmds.cpp:166 +#, kde-format msgid "" "

    set-replace-tabs-save enable

    When enabled, tabs will be " "replaced with whitespace whenever the document is saved.

    possible " @@ -6696,6 +5382,7 @@ "មិន​ពិត

    " #: utils/katecmds.cpp:172 +#, kde-format msgid "" "

    set-highlight highlight

    Sets the syntax highlighting system " "for the document. The argument must be a valid highlight name, as seen in " @@ -6707,10 +5394,12 @@ "សម្រាប់​អាគុយម៉ង់​របស់​វា ។

    " #: utils/katecmds.cpp:176 +#, kde-format msgid "

    set-mode mode

    Sets the mode as seen in Tools - Mode

    " msgstr "

    កំណត់​របៀប របៀប

    កំណត់​របៀប​ដូច​ដែល​អ្នក​ឃើញ​ក្នុង​​​របៀប​ឧបករណ៍

    " #: utils/katecmds.cpp:180 +#, kde-format msgid "" "

    set-show-indent enable

    If enabled, indentation will be " "visualized by a vertical dotted line.

    possible true values: 1 on " @@ -6720,6 +5409,7 @@ "បន្ទាត់​ចុច​ៗ​បញ្ឈរ ។

    តម្លៃ​ពិត ៖ ១ ពិត
    តម្លៃ​មិន​ពិត ៖ ០ មិន​ពិត

    " #: utils/katecmds.cpp:186 +#, kde-format msgid "

    Open the Print dialog to print the current document.

    " msgstr "

    បើក​ប្រអប់​បោះពុម្ព​ ដើម្បី​បោះពុម្ព​​ឯកសារ​បច្ចុប្បន្ន ។

    " @@ -6744,10 +5434,12 @@ msgstr "បាន​បរាជ័យ​ក្នុង​ការ​បម្លែង​អាគុយ​ម៉ង់ '%1' ទៅ​ជា​ចំនួន​គត់ ។" #: utils/katecmds.cpp:340 utils/katecmds.cpp:345 +#, kde-format msgid "Width must be at least 1." msgstr "ទទឹង​យ៉ាង​ហោច​ណាស់​ស្មើ ១ ។" #: utils/katecmds.cpp:350 +#, kde-format msgid "Column must be at least 1." msgstr "ជួរឈរ​យ៉ាង​ហោច​ណាស់​ស្មើ ១ ។" @@ -6762,6 +5454,7 @@ msgstr "អាគុយ​ម៉ង់ '%1' មិន​ត្រឹមត្រូវ ។ ប្រើ ៖ %2 on|off|1|0|true|false" #: utils/katecmds.cpp:418 +#, kde-format msgid "" "Usage: set-remove-trailing-spaces 0|-|none or 1|+|mod|modified or 2|*|all" msgstr "" @@ -6773,6 +5466,7 @@ msgstr "មិន​ស្គាល់​ពាក្យ​បញ្ជា '%1'" #: utils/katecmds.cpp:486 +#, kde-format msgid "" "

    char identifier

    This command allows you to insert literal " "characters by their numerical identifier, in decimal, octal or hexadecimal " @@ -6784,6 +5478,7 @@ "

    • តួអក្សរ 234
    • តួអក្សរ 0x1234

    " #: utils/katecmds.cpp:548 +#, kde-format msgid "" "

    date or date format

    Inserts a date/time string as defined by " "the specified format, or the format yyyy-MM-dd hh:mm:ss if none is specified." @@ -6812,313 +5507,387 @@ msgstr "" #: utils/kateglobal.cpp:89 +#, kde-format msgid "Kate Part" msgstr "ផ្នែក​របស់ Kate" #: utils/kateglobal.cpp:90 +#, kde-format msgid "Embeddable editor component" msgstr "សមាសភាគ​កម្មវិធី​និពន្ធ​ដែល​អាច​បង្កប់" #: utils/kateglobal.cpp:91 -#, fuzzy +#, fuzzy, kde-format #| msgid "(c) 2000-2009 The Kate Authors" -msgid "(c) 2000-2016 The Kate Authors" +msgid "(c) 2000-2017 The Kate Authors" msgstr "រក្សាសិទ្ធិ​ឆ្នាំ ២០០០-២០០៩ ដោយ​អ្នក​និពន្ធ Kate" #: utils/kateglobal.cpp:117 +#, kde-format msgid "Christoph Cullmann" msgstr "Christoph Cullmann" #: utils/kateglobal.cpp:117 +#, kde-format msgid "Maintainer" msgstr "អ្នក​ថែទាំ" #: utils/kateglobal.cpp:118 +#, kde-format msgid "Dominik Haumann" msgstr "Dominik Haumann" #: utils/kateglobal.cpp:118 utils/kateglobal.cpp:119 utils/kateglobal.cpp:120 #: utils/kateglobal.cpp:123 utils/kateglobal.cpp:126 utils/kateglobal.cpp:131 +#, kde-format msgid "Core Developer" msgstr "អ្នក​អភិវឌ្ឍន៍​ចម្បង" #: utils/kateglobal.cpp:119 +#, kde-format msgid "Milian Wolff" msgstr "Milian Wolff" #: utils/kateglobal.cpp:120 +#, kde-format msgid "Joseph Wenninger" msgstr "Joseph Wenninger" #: utils/kateglobal.cpp:121 +#, kde-format msgid "Erlend Hamberg" msgstr "Erlend Hamberg" #: utils/kateglobal.cpp:122 +#, kde-format msgid "Bernhard Beschow" msgstr "Bernhard Beschow" #: utils/kateglobal.cpp:122 utils/kateglobal.cpp:138 +#, kde-format msgid "Developer" msgstr "អ្នក​អភិវឌ្ឍន៍" #: utils/kateglobal.cpp:123 +#, kde-format msgid "Anders Lund" msgstr "Anders Lund" #: utils/kateglobal.cpp:124 +#, kde-format msgid "Michel Ludwig" msgstr "Michel Ludwig" #: utils/kateglobal.cpp:124 +#, kde-format msgid "On-the-fly spell checking" msgstr "ការ​ពិនិត្យ​អក្ខរាវិរុទ្ធ On-The-Fly" #: utils/kateglobal.cpp:125 +#, kde-format msgid "Pascal Létourneau" msgstr "Pascal Létourneau" #: utils/kateglobal.cpp:125 +#, kde-format msgid "Large scale bug fixing" msgstr "ជួសជុល​កំហុស​មាត្រដ្ឋាន​ទូលាយ​" #: utils/kateglobal.cpp:126 +#, kde-format msgid "Hamish Rodda" msgstr "Hamish Rodda" #: utils/kateglobal.cpp:127 +#, kde-format msgid "Waldo Bastian" msgstr "Waldo Bastian" #: utils/kateglobal.cpp:127 +#, kde-format msgid "The cool buffersystem" msgstr "ប្រព័ន្ធ​អង្គ​ចងចាំ​បណ្ដោះអាសន្ន​" #: utils/kateglobal.cpp:128 +#, kde-format msgid "Charles Samuels" msgstr "Charles Samuels" #: utils/kateglobal.cpp:128 +#, kde-format msgid "The Editing Commands" msgstr "ពាក្យ​បញ្ជា​កែសម្រួល" #: utils/kateglobal.cpp:129 +#, kde-format msgid "Matt Newell" msgstr "Matt Newell" #: utils/kateglobal.cpp:129 +#, kde-format msgid "Testing, ..." msgstr "ការ​សាកល្បង ..." #: utils/kateglobal.cpp:130 +#, kde-format msgid "Michael Bartl" msgstr "Michael Bartl" #: utils/kateglobal.cpp:130 +#, kde-format msgid "Former Core Developer" msgstr "អតីត​ជា​អ្នក​អភិវឌ្ឍន៍​​ចម្បង" #: utils/kateglobal.cpp:131 +#, kde-format msgid "Michael McCallum" msgstr "Michael McCallum" #: utils/kateglobal.cpp:132 +#, kde-format msgid "Michael Koch" msgstr "Michael Koch" #: utils/kateglobal.cpp:132 +#, kde-format msgid "KWrite port to KParts" msgstr "ច្រក KWrite ទៅ KParts" #: utils/kateglobal.cpp:133 +#, kde-format msgid "Christian Gebauer" msgstr "Christian Gebauer" #: utils/kateglobal.cpp:134 +#, kde-format msgid "Simon Hausmann" msgstr "Simon Hausmann" #: utils/kateglobal.cpp:135 +#, kde-format msgid "Glen Parker" msgstr "Glen Parker" #: utils/kateglobal.cpp:135 +#, kde-format msgid "KWrite Undo History, Kspell integration" msgstr "ប្រវត្តិ​មិន​ធ្វើ​វិញ​របស់ KWrite ការ​រួមបញ្ចូល Kspell" #: utils/kateglobal.cpp:136 +#, kde-format msgid "Scott Manson" msgstr "Scott Manson" #: utils/kateglobal.cpp:136 +#, kde-format msgid "KWrite XML Syntax highlighting support" msgstr "គាំទ្រ​ការ​រំលេច​​វាក្យសម្ព័ន្ធ XML របស់ KWrite" #: utils/kateglobal.cpp:137 +#, kde-format msgid "John Firebaugh" msgstr "John Firebaugh" #: utils/kateglobal.cpp:137 +#, kde-format msgid "Patches and more" msgstr "បំណះ និង​អ្វីៗផ្សេង​ទៀត" #: utils/kateglobal.cpp:138 +#, kde-format msgid "Andreas Kling" msgstr "Andreas Kling" #: utils/kateglobal.cpp:139 +#, kde-format msgid "Mirko Stocker" msgstr "Mirko Stocker" #: utils/kateglobal.cpp:139 +#, kde-format msgid "Various bugfixes" msgstr "ការ​កែកំហុស​ផ្សេងៗ" #: utils/kateglobal.cpp:140 +#, kde-format msgid "Matthew Woehlke" msgstr "Matthew Woehlke" #: utils/kateglobal.cpp:140 +#, kde-format msgid "Selection, KColorScheme integration" msgstr "ការ​ជ្រើសរើស ការ​រួមបញ្ចូល KColorScheme" #: utils/kateglobal.cpp:141 +#, kde-format msgid "Sebastian Pipping" msgstr "Sebastian Pipping" #: utils/kateglobal.cpp:141 +#, kde-format msgid "Search bar back- and front-end" msgstr "ខាងក្រោយ​របារ​ស្វែងរក និង​កម្មវិធី​ខាងមុខ" #: utils/kateglobal.cpp:142 +#, kde-format msgid "Jochen Wilhelmy" msgstr "Jochen Wilhelmy" #: utils/kateglobal.cpp:142 +#, kde-format msgid "Original KWrite Author" msgstr "អ្នកនិពន្ធ​ KWrite ដើម​" #: utils/kateglobal.cpp:143 +#, kde-format msgid "Gerald Senarclens de Grancy" msgstr "" #: utils/kateglobal.cpp:143 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "Language" #| msgid "Quake Script" msgid "QA and Scripting" msgstr "ស្គ្រីប Quake" #: utils/kateglobal.cpp:145 +#, kde-format msgid "Matteo Merli" msgstr "Matteo Merli" #: utils/kateglobal.cpp:145 +#, kde-format msgid "Highlighting for RPM Spec-Files, Perl, Diff and more" msgstr "ការ​បន្លិច​សម្រាប់ RPM Spec-Files, Perl, Diff និង​ច្រើន​ទៀត" #: utils/kateglobal.cpp:146 +#, kde-format msgid "Rocky Scaletta" msgstr "Rocky Scaletta" #: utils/kateglobal.cpp:146 +#, kde-format msgid "Highlighting for VHDL" msgstr "ការ​រំលេច​​សម្រាប់ VHDL" #: utils/kateglobal.cpp:147 +#, kde-format msgid "Yury Lebedev" msgstr "Yury Lebedev" #: utils/kateglobal.cpp:147 +#, kde-format msgid "Highlighting for SQL" msgstr "ការ​រំលេច​​សម្រាប់ SQL" #: utils/kateglobal.cpp:148 +#, kde-format msgid "Chris Ross" msgstr "Chris Ross" #: utils/kateglobal.cpp:148 +#, kde-format msgid "Highlighting for Ferite" msgstr "ការ​រំលេច​​សម្រាប់ Ferite" #: utils/kateglobal.cpp:149 +#, kde-format msgid "Nick Roux" msgstr "Nick Roux" #: utils/kateglobal.cpp:149 +#, kde-format msgid "Highlighting for ILERPG" msgstr "ការ​រំលេច​សម្រាប់ ILERPG" #: utils/kateglobal.cpp:150 +#, kde-format msgid "Carsten Niehaus" msgstr "Carsten Niehaus" #: utils/kateglobal.cpp:150 +#, kde-format msgid "Highlighting for LaTeX" msgstr "ការ​​រំលេច​​សម្រាប់ LaTeX" #: utils/kateglobal.cpp:151 +#, kde-format msgid "Per Wigren" msgstr "Per Wigren" #: utils/kateglobal.cpp:151 +#, kde-format msgid "Highlighting for Makefiles, Python" msgstr "ការ​​រំលេច​​សម្រាប់ Makefiles, Python" #: utils/kateglobal.cpp:152 +#, kde-format msgid "Jan Fritz" msgstr "Jan Fritz" #: utils/kateglobal.cpp:152 +#, kde-format msgid "Highlighting for Python" msgstr "ការ​រំលេច​សម្រាប់ Python" #: utils/kateglobal.cpp:153 +#, kde-format msgid "Daniel Naber" msgstr "Daniel Naber" #: utils/kateglobal.cpp:154 +#, kde-format msgid "Roland Pabel" msgstr "Roland Pabel" #: utils/kateglobal.cpp:154 +#, kde-format msgid "Highlighting for Scheme" msgstr "ការ​​រំលេច​សម្រាប់​គ្រោងការណ៍" #: utils/kateglobal.cpp:155 +#, kde-format msgid "Cristi Dumitrescu" msgstr "Cristi Dumitrescu" #: utils/kateglobal.cpp:155 +#, kde-format msgid "PHP Keyword/Datatype list" msgstr "បញ្ជី​ពាក្យ​គន្លឹះ/ប្រភេទ​ទិន្នន័យ PHP" #: utils/kateglobal.cpp:156 +#, kde-format msgid "Carsten Pfeiffer" msgstr "Carsten Pfeiffer" #: utils/kateglobal.cpp:156 +#, kde-format msgid "Very nice help" msgstr "ជំនួយ​ដ៏​ប្រពៃ​ណាស់" #: utils/kateglobal.cpp:157 +#, kde-format msgid "Bruno Massa" msgstr "Bruno Massa" #: utils/kateglobal.cpp:157 +#, kde-format msgid "Highlighting for Lua" msgstr "ការ​​រំលេច​សម្រាប់ Lua" #: utils/kateglobal.cpp:159 +#, kde-format msgid "All people who have contributed and I have forgotten to mention" msgstr "មនុស្ស​ទាំងអស់​ដែល​បាន​ចូលរួម ហើយ​ខ្ញុំ​ភ្លេច​រៀប​រាប់" #: utils/kateglobal.cpp:161 +#, kde-format msgctxt "NAME OF TRANSLATORS" msgid "Your names" msgstr "ខឹម សុខែម, ម៉ន ម៉េត, សេង សុត្ថា, ចាន់ សម្បត្តិរតនៈ, សុខ សុភា" #: utils/kateglobal.cpp:161 +#, kde-format msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" msgstr "" @@ -7126,6 +5895,7 @@ "ratanak@khmeros.info,sophea@khmeros.info" #: utils/kateglobal.cpp:286 +#, kde-format msgid "Configure" msgstr "កំណត់​រចនាសម្ព័ន្ធ" @@ -7150,106 +5920,123 @@ msgstr[0] "%1 បន្ទាត់" #: variableeditor/katehelpbutton.cpp:34 +#, kde-format msgid "Kate Handbook." msgstr "សៀវភៅ​ដៃ Kate ។" #: variableeditor/variableeditor.cpp:188 +#, kde-format msgid "true" msgstr "ពិត" #: variableeditor/variableeditor.cpp:189 +#, kde-format msgid "false" msgstr "មិន​ពិត" #: variableeditor/variableeditor.cpp:325 -#, fuzzy +#, fuzzy, kde-format #| msgid "none" msgctxt "value for variable remove-trailing-spaces" msgid "none" msgstr "គ្មាន" #: variableeditor/variableeditor.cpp:326 -#, fuzzy +#, fuzzy, kde-format #| msgid "modified" msgctxt "value for variable remove-trailing-spaces" msgid "modified" msgstr "បាន​កែប្រែ​បន្ទាត់" #: variableeditor/variableeditor.cpp:327 -#, fuzzy +#, fuzzy, kde-format #| msgid "all" msgctxt "value for variale remove-trailing-spaces" msgid "all" msgstr "ទាំងអស់" #: variableeditor/variablelineedit.cpp:59 +#, kde-format msgid "Show list of valid variables." msgstr "បង្ហាញ​បញ្ជី​នៃ​អថេរ​ត្រឹមត្រូវ ។" #: variableeditor/variablelineedit.cpp:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgctxt "short translation please" msgid "Enable automatic insertion of brackets." msgstr "ជ្រើស​ទៅ​តង្កៀប​ដែល​ដូច" #: variableeditor/variablelineedit.cpp:141 +#, kde-format msgctxt "short translation please" msgid "Set the number of autocenter lines." msgstr "កំណត់​ចំនួន​ជួរ​ចំកណ្ដាល​ស្វ័យប្រវត្តិ ។" #: variableeditor/variablelineedit.cpp:146 +#, kde-format msgctxt "short translation please" msgid "Set the document background color." msgstr "កំណត់​ពណ៌​ផ្ទៃ​ខាងក្រោយ​របស់​ឯកសារ ។" #: variableeditor/variablelineedit.cpp:151 +#, kde-format msgctxt "short translation please" msgid "Pressing backspace in leading whitespace unindents." msgstr "ការ​ចុច​គ្រាប់ចុច​លុប​ថយក្រោយ​ក្នុង​ចន្លោះ​ទទេ​ខាងមុខ​ដែល​មិន​ចូល​បន្ទាត់ ។" #: variableeditor/variablelineedit.cpp:159 +#, kde-format msgctxt "short translation please" msgid "Enable block selection mode." msgstr "បើក​របៀប​ជ្រើស​ប្លុក ។" #: variableeditor/variablelineedit.cpp:164 +#, fuzzy, kde-format +#| msgctxt "short translation please" +#| msgid "Enable the byte order marker when saving unicode files." msgctxt "short translation please" -msgid "Enable the byte order marker when saving unicode files." +msgid "Enable the byte order mark (BOM) when saving Unicode files." msgstr "បើក​ឧបករណ៍​សម្គាល់​លំដាប់​បៃ​នៅ​ពេល​រក្សាទុក​ឯកសារ​យូនីកូដ ។" #: variableeditor/variablelineedit.cpp:169 +#, kde-format msgctxt "short translation please" msgid "Set the color for the bracket highlight." msgstr "កំណត់​ពណ៌​សម្រាប់​ផ្នែក​សំខាន់​តង្កៀប( [ ]) ។" #: variableeditor/variablelineedit.cpp:174 +#, kde-format msgctxt "short translation please" msgid "Set the background color for the current line." msgstr "កំណត់​ពណ៌​ផ្ទៃ​ខាងក្រោយ​សម្រាប់​ជួរ​បច្ចុប្បន្ន ។" #: variableeditor/variablelineedit.cpp:180 +#, kde-format msgctxt "short translation please" msgid "Set the default dictionary used for spell checking." msgstr "កំណត់​វចនានុក្រម​លំនាំ​ដើម​ដែល​ប្រើ​សម្រាប់​ការ​ពិនិត្យ​អក្ខរាវិរុទ្ធ ។" #: variableeditor/variablelineedit.cpp:185 +#, kde-format msgctxt "short translation please" msgid "Enable dynamic word wrap of long lines." msgstr "អនុញ្ញាត​ការ​រុំ​ពាក្យ​ជា​ថាមវន្ត​នៃ​ជួរ​វែង ។" #: variableeditor/variablelineedit.cpp:190 +#, kde-format msgctxt "short translation please" msgid "Sets the end of line mode." msgstr "កំណត់​ចុង​នៃ​របៀប​បន្ទាត់ ។" #: variableeditor/variablelineedit.cpp:195 +#, kde-format msgctxt "short translation please" msgid "Enable folding markers in the editor border." msgstr "បើក​ឧបករណ៍​សម្គាល់​របត់​នៅ​ក្នុង​ស៊ុម​កម្មវិធី​និពន្ធ ។" #: variableeditor/variablelineedit.cpp:200 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "short translation please" #| msgid "Enable folding markers in the editor border." msgctxt "short translation please" @@ -7257,160 +6044,188 @@ msgstr "បើក​ឧបករណ៍​សម្គាល់​របត់​នៅ​ក្នុង​ស៊ុម​កម្មវិធី​និពន្ធ ។" #: variableeditor/variablelineedit.cpp:206 +#, kde-format msgctxt "short translation please" msgid "Set the point size of the document font." msgstr "កំណត់​ទំហំ​ចំណុច​នៃ​ពុម្ពអក្សរ​ឯកសារ ។" #: variableeditor/variablelineedit.cpp:211 +#, kde-format msgctxt "short translation please" msgid "Set the font of the document." msgstr "កំណត់​ពុម្ពអក្សរ​​របស់​​ឯកសារ ។" #: variableeditor/variablelineedit.cpp:226 +#, kde-format msgctxt "short translation please" msgid "Set the syntax highlighting." msgstr "កំណត់​ការ​រំលេច​​វាក្យសម្ពន្ធ ។" #: variableeditor/variablelineedit.cpp:231 +#, kde-format msgctxt "short translation please" msgid "Set the icon bar color." msgstr "កំណត់​ពណ៌​របស់​របារ​រូបតំណាង ។" #: variableeditor/variablelineedit.cpp:236 +#, kde-format msgctxt "short translation please" msgid "Enable the icon border in the editor view." msgstr "បើក​ស៊ុម​រូបតំណាង​ក្នុង​ទិដ្ឋភាព​កម្មវិធី​កែស្រួល ។" #: variableeditor/variablelineedit.cpp:241 +#, kde-format msgctxt "short translation please" msgid "Set the auto indentation style." msgstr "កំណត់​រចនាប័ទ្ម​ការ​ចូល​បន្ទាត់​ស្វ័យប្រវត្តិ ។" #: variableeditor/variablelineedit.cpp:246 -#, fuzzy +#, fuzzy, kde-format #| msgid "Adjust indentation of code &pasted from the clipboard" msgctxt "short translation please" msgid "Adjust indentation of text pasted from the clipboard." msgstr "លៃតម្រូវ​ការចូល​បន្ទាត់​របស់​កូដ​ដែលបាន​បិទភ្ជាប់​ពី​ក្ដារតម្បៀតខ្ទាស់" #: variableeditor/variablelineedit.cpp:252 +#, kde-format msgctxt "short translation please" msgid "Set the indentation depth for each indent level." msgstr "កំណត់​​ការ​ចូល​បន្ទាត់​សម្រាប់​កម្រិត​ចូល​បន្ទាត់​នីមួយៗ ។" #: variableeditor/variablelineedit.cpp:257 +#, kde-format msgctxt "short translation please" msgid "Allow odd indentation level (no multiple of indent width)." msgstr "អនុញ្ញាត​កម្រិត​ចូល​បន្ទាត់​សេស (គ្មាន​ពហុ​បន្ទាត់​​​ទទឹង​ចូល​បន្ទាត់) ។" #: variableeditor/variablelineedit.cpp:262 +#, kde-format msgctxt "short translation please" msgid "Show line numbers." msgstr "បង្ហាញ​​ចំនួន​ជួរ ។" #: variableeditor/variablelineedit.cpp:267 +#, kde-format msgctxt "short translation please" msgid "Insert newline at end of file on save." msgstr "បញ្ចូល​បន្ទាត់​ថ្មី​នៅ​ចុង​ឯកសារ​ពេល​ដែល​​រក្សាទុក ។" #: variableeditor/variablelineedit.cpp:272 +#, kde-format msgctxt "short translation please" msgid "Enable overwrite mode in the document." msgstr "បើក​របៀប​សរសេរ​ជាន់​លើ​នៅ​ក្នុង​ឯកសារ ។" #: variableeditor/variablelineedit.cpp:277 +#, kde-format msgctxt "short translation please" msgid "Enable persistent text selection." msgstr "បើក​ការ​ជ្រើស​អត្ថបទ​អចិន្ត្រៃយ៍ ។" #: variableeditor/variablelineedit.cpp:282 +#, kde-format msgctxt "short translation please" msgid "Replace tabs with spaces when saving the document." msgstr "ជំនួស​ថេប​ដោយ​ចន្លោះ នៅ​ពេល​រក្សាទុក​ឯកសារ ។" #: variableeditor/variablelineedit.cpp:287 +#, kde-format msgctxt "short translation please" msgid "Replace tabs with spaces." msgstr "ជំនួស​ថេប​ដោយ​ចន្លោះ ។" #: variableeditor/variablelineedit.cpp:292 +#, kde-format msgctxt "short translation please" msgid "Remove trailing spaces when saving the document." msgstr "យក​ចន្លោះ​ពីក្រោយ​ចេញ នៅ​ពេល​រក្សាទុក​ឯកសារ ។" #: variableeditor/variablelineedit.cpp:297 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show scrollbar mini-map" msgctxt "short translation please" msgid "Show scrollbar minimap." msgstr "បង្ហាញ​​របារ​រមូរ​ផែនទី​តូច" #: variableeditor/variablelineedit.cpp:302 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgctxt "short translation please" msgid "Show scrollbar preview." msgstr "បង្ហាញ​សញ្ញា​សម្គាល់​របារ​រមូរ" #: variableeditor/variablelineedit.cpp:311 +#, kde-format msgctxt "short translation please" msgid "Set the color scheme." msgstr "កំណត់​ពណ៌​ចម្រុះ ។" #: variableeditor/variablelineedit.cpp:316 +#, kde-format msgctxt "short translation please" msgid "Set the text selection color." msgstr "កំណត់​ពណ៌​នៃ​ការ​ជ្រើស​អត្ថបទ ។" #: variableeditor/variablelineedit.cpp:321 +#, kde-format msgctxt "short translation please" msgid "Visualize tabs and trailing spaces." msgstr "ធ្វើ​ឲ្យ​មើល​ឃើញ​ថេប និង​ចន្លោះ​ពីក្រោយ ។" #: variableeditor/variablelineedit.cpp:326 +#, kde-format msgctxt "short translation please" msgid "Enable smart home navigation." msgstr "បើក​ការ​រុករក​ទៅ​ដើម​ដែល​ឆ្លាតវៃ ។" #: variableeditor/variablelineedit.cpp:331 +#, kde-format msgctxt "short translation please" msgid "Pressing TAB key indents." msgstr "​ចុច​គ្រាប់ចុច ថេប (TAB) នឹង​ចូល​បន្ទាត់ ។" #: variableeditor/variablelineedit.cpp:337 +#, kde-format msgctxt "short translation please" msgid "Set the tab display width." msgstr "កំណត់​ទទឹង​ការ​បង្ហាញ​ថេប ។" #: variableeditor/variablelineedit.cpp:343 +#, kde-format msgctxt "short translation please" msgid "Set the number of undo steps to remember (0 equals infinity)." msgstr "កំណត់​ចំនួន​ជំហាន​មិន​ធ្វើ​វិញ​ឲ្យ​ចងចាំ (០ អនន្ត​ភាព​ស្មើ) ។" #: variableeditor/variablelineedit.cpp:349 +#, kde-format msgctxt "short translation please" msgid "Set the word wrap column." msgstr "កំណត់​ជួរឈរ​នៃ​ការ​រុំ​ពាក្យ ។" #: variableeditor/variablelineedit.cpp:354 +#, kde-format msgctxt "short translation please" msgid "Set the word wrap marker color." msgstr "កំណត់​ពណ៌​របស់​ឧបករណ៍​សម្គាល់​ការ​រុំ​ពាក្យ ។" #: variableeditor/variablelineedit.cpp:359 +#, kde-format msgctxt "short translation please" msgid "Enable word wrap while typing text." msgstr "បើក​ការ​រុំ​ពាក្យ​អំឡុង​ពេល​វាយ​អត្ថបទ ។" #: view/katestatusbar.cpp:86 +#, kde-format msgid "Current cursor position. Doubleclick to go to specific line." msgstr "" #: view/katestatusbar.cpp:95 +#, kde-format msgid "Words and Chars count in document/selection." msgstr "" #: view/katestatusbar.cpp:106 +#, kde-format msgid "Insert mode and VI input mode indicator" msgstr "" @@ -7436,49 +6251,49 @@ msgstr "" #: view/katestatusbar.cpp:126 view/katestatusbar.cpp:382 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tab wi&dth:" msgid "Tab Width" msgstr "ទទឹង​ថេប ៖" #: view/katestatusbar.cpp:131 view/katestatusbar.cpp:393 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation width:" msgid "Indentation Width" msgstr "ទំហំ​នៃ​ការ​ចូល​បន្ទាត់ ៖" #: view/katestatusbar.cpp:137 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation Mode:" msgid "Indentation Mode" msgstr "ការ​ចូល​បន្ទាត់ ៖" #: view/katestatusbar.cpp:139 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators &and Spaces" msgid "Tabulators && Spaces" msgstr "ថេប និង​ចន្លោះ" #: view/katestatusbar.cpp:143 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Tabulators" msgid "Tabulators" msgstr "ថេប" #: view/katestatusbar.cpp:147 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Spaces" msgid "Spaces" msgstr "ចន្លោះ" #: view/katestatusbar.cpp:163 -#, fuzzy +#, fuzzy, kde-format #| msgid "E&ncoding" msgid "Encoding" msgstr "ការ​អ៊ិនកូដ" #: view/katestatusbar.cpp:174 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "short translation please" #| msgid "Set the syntax highlighting." msgid "Syntax highlighting" @@ -7495,22 +6310,24 @@ msgstr "" #: view/katestatusbar.cpp:284 +#, kde-format msgid "Meaning of current icon: Document was modified since it was loaded" msgstr "" #: view/katestatusbar.cpp:289 -#, fuzzy +#, fuzzy, kde-format #| msgid "The file '%1' was modified by another program." msgid "" "Meaning of current icon: Document was modified or deleted by another program" msgstr "ឯកសារ '%1' ត្រូវ​បាន​កែប្រែ​ដោយ​កម្មវិធី​ផ្សេងទៀត ។" #: view/katestatusbar.cpp:300 +#, kde-format msgid "Meaning of current icon: Document was not modified since it was loaded" msgstr "" #: view/katestatusbar.cpp:350 view/katestatusbar.cpp:370 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "Language Section" #| msgid "Other" msgid "Other..." @@ -7525,10 +6342,12 @@ msgstr[0] "ផ្សេងៗ" #: view/katestatusbar.cpp:382 +#, kde-format msgid "Please specify the wanted tab width:" msgstr "" #: view/katestatusbar.cpp:393 +#, kde-format msgid "Please specify the wanted indentation width:" msgstr "" @@ -7538,43 +6357,53 @@ msgstr "" #: view/kateview.cpp:472 +#, kde-format msgid "Cut the selected text and move it to the clipboard" msgstr "កាត់​អត្ថបទ​ដែល​បាន​ជ្រើស ហើយ​ផ្លាស់​ទី​វា​ទៅ​ក្ដារ​តម្បៀត​ខ្ទាស់" #: view/kateview.cpp:475 +#, kde-format msgid "Paste previously copied or cut clipboard contents" msgstr "បិទ​ភ្ជាប់​មាតិកា​របស់​ក្ដារ​តម្បៀត​ខ្ទាស់​ដែល​បាន​កាត់ ឬ​ចម្លង​ពី​មុន ។" #: view/kateview.cpp:478 +#, kde-format msgid "" "Use this command to copy the currently selected text to the system clipboard." msgstr "ប្រើ​ពាក្យ​បញ្ជា​នេះ​ដើម្បី​ចម្លង​អត្ថបទ​ដែល​បាន​ជ្រើស​បច្ចុប្បន្ន ទៅ​ក្ដារ​តម្បៀត​ខ្ទាស់របស់ប្រព័ន្ធ ។​" #: view/kateview.cpp:480 +#, kde-format msgid "Clipboard &History" msgstr "ប្រវត្តិ​ក្ដារតម្បៀតខ្ទាស់" #: view/kateview.cpp:485 +#, kde-format msgid "Save the current document" msgstr "រក្សាទុក​ឯកសារ​បច្ចុប្បន្ន" #: view/kateview.cpp:488 +#, kde-format msgid "Revert the most recent editing actions" msgstr "ត្រឡប់​សកម្មភាព​កែសម្រួល​ថ្មី​បំផុត​ទៅ​ដើម" #: view/kateview.cpp:491 +#, kde-format msgid "Revert the most recent undo operation" msgstr "ត្រឡប់​ប្រតិបត្តិការ​មិន​ធ្វើ​វិញ​ថ្មី​ៗបំផុត​ទៅ​ដើម​វិញ" #: view/kateview.cpp:494 +#, kde-format msgid "&Scripts" msgstr "ស្គ្រីប" #: view/kateview.cpp:498 +#, kde-format msgid "Apply &Word Wrap" msgstr "អនុវត្ត​ការ​រុំពាក្យ" #: view/kateview.cpp:499 +#, kde-format msgid "" "Use this command to wrap all lines of the current document which are longer " "than the width of the current view, to fit into this view.

    This " @@ -7585,10 +6414,12 @@ "ភាព​នៅ​ពេល​ទិដ្ឋភាព​ត្រូវ​បាន​ប្ដូរ​ទំហំ​នោះ​ទេ ។" #: view/kateview.cpp:505 +#, kde-format msgid "&Clean Indentation" msgstr "សម្អាត​ការ​ចូល​បន្ទាត់" #: view/kateview.cpp:506 +#, kde-format msgid "" "Use this to clean the indentation of a selected block of text (only tabs/" "only spaces).

    You can configure whether tabs should be honored " @@ -7598,20 +6429,24 @@ "អាច​កំណត់​រចនាសម្ព័ន្ធ​ថា​តើ​ថេប​តែ​គួរ​ត្រូវ​បាន​ប្រើ ឬ​ជំនួស​ដោយ​ចន្លោះ ក្នុង​ប្រអប់​កំណត់​រចនាសម្ព័ន្ធ ។" #: view/kateview.cpp:511 +#, kde-format msgid "&Align" msgstr "តម្រឹម" #: view/kateview.cpp:512 +#, kde-format msgid "" "Use this to align the current line or block of text to its proper indent " "level." msgstr "ប្រើ​វា​ដើម្បី​តម្រឹម​បន្ទាត់ ឬ​បណ្ដុំ​អត្ថបទ​បច្ចុប្បន្ន​ឲ្យត្រូវ​​នឹង​កម្រឹត​ចូល​បន្ទាត់​ត្រឹមត្រូវ​របស់​វា ។" #: view/kateview.cpp:516 +#, kde-format msgid "C&omment" msgstr "សេចក្តី​អធិប្បាយ" #: view/kateview.cpp:518 +#, kde-format msgid "" "This command comments out the current line or a selected block of text.

    The characters for single/multiple line comments are defined within " @@ -7621,22 +6456,24 @@ "សេចក្ដី​អធិប្បាយ​មួយ/ច្រើន​បន្ទាត់​ត្រូវ​បាន​កំណត់​នៅ​ក្នុង​ការ​បន្លិច​របស់​ភាសា ។" #: view/kateview.cpp:523 -#, fuzzy +#, fuzzy, kde-format #| msgid "Go to previous edit point" msgid "Go to previous editing line" msgstr "ទៅ​កាន់​ចំណុច​កែសម្រួល​មុន" #: view/kateview.cpp:528 -#, fuzzy +#, fuzzy, kde-format #| msgid "Go to next edit point" msgid "Go to next editing line" msgstr "ទៅ​​​កាន់​ចំណុច​​​​កែសម្រួល​បន្ទាប់" #: view/kateview.cpp:533 +#, kde-format msgid "Unco&mment" msgstr "គ្មាន​សេចក្ដី​អធិប្បាយ" #: view/kateview.cpp:535 +#, kde-format msgid "" "This command removes comments from the current line or a selected block of " "text.

    The characters for single/multiple line comments are " @@ -7646,22 +6483,27 @@ ">តួអក្សរ​សម្រាប់​សេចក្ដី​​អធិប្បាយ​មួយ/ច្រើន​បន្ទាត់​ត្រូវ​បាន​កំណត់​ក្នុង​ការ​បន្លិច​របស់​ភាសា ។" #: view/kateview.cpp:540 +#, kde-format msgid "Toggle Comment" msgstr "បិទ/បើក​មតិយោបល់" #: view/kateview.cpp:543 +#, kde-format msgid "&Read Only Mode" msgstr "របៀប​បាន​តែ​អាន" #: view/kateview.cpp:544 +#, kde-format msgid "Lock/unlock the document for writing" msgstr "ចាក់សោ/ដោះសោ​ឯកសារ ដើម្បី​សរសេរ" #: view/kateview.cpp:550 +#, kde-format msgid "Uppercase" msgstr "អក្សរធំ" #: view/kateview.cpp:552 +#, kde-format msgid "" "Convert the selection to uppercase, or the character to the right of the " "cursor if no text is selected." @@ -7669,10 +6511,12 @@ "បម្លែង​ជម្រើស​ទៅ​ជា​អក្សរ​​ធំ ឬ​តួអក្សរ​ទៅ​ខាងស្ដាំ​​ទស្សន៍ទ្រនិច ប្រសិន​បើ​គ្មាន​អត្ថបទ​ដែល​បាន​ជ្រើស​ទេ​នោះ ។" #: view/kateview.cpp:557 +#, kde-format msgid "Lowercase" msgstr "អក្សរ​តូច" #: view/kateview.cpp:559 +#, kde-format msgid "" "Convert the selection to lowercase, or the character to the right of the " "cursor if no text is selected." @@ -7680,108 +6524,124 @@ "បម្លែង​ជម្រើស​ទៅ​អក្ស​រ​តូច ឬ​តួអក្សរ​ទៅ​ខាងស្ដាំ​ទស្សន៍ទ្រនិច ប្រសិន​បើ​គ្មាន​អត្ថបទ​ត្រូវ​បាន​ជ្រើស​ទេ​នោះ ។" #: view/kateview.cpp:564 +#, kde-format msgid "Capitalize" msgstr "សរសេរ​ជា​អក្សរ​ធំ" #: view/kateview.cpp:566 +#, kde-format msgid "" "Capitalize the selection, or the word under the cursor if no text is " "selected." msgstr "សរសេរ​ជម្រើស​ជាអក្សរ​ធំ ឬ​ពាក្យ​នៅ​ខាងក្រោម​ទស្សន៍​ទ្រនិច ប្រសិន​បើ​គ្មាន​អត្ថបទ​ត្រូវ​បាន​ជ្រើស ។" #: view/kateview.cpp:571 +#, kde-format msgid "Join Lines" msgstr "ត​បន្ទាត់" #: view/kateview.cpp:576 +#, kde-format msgid "Invoke Code Completion" msgstr "ហៅ​ការ​បំពេញ​កូដ" #: view/kateview.cpp:577 +#, kde-format msgid "" "Manually invoke command completion, usually by using a shortcut bound to " "this action." msgstr "ហៅ​ការ​បំពេញ​ពាក្យ​បញ្ជា​ដោយ​ដៃ ដែលជា​ទូទៅ​គឺ​ដោយ​ប្រើ​ការ​ចង​ផ្លូវកាត់​ចំពោះ​អំពើ​នេះ ។" #: view/kateview.cpp:589 +#, kde-format msgid "Print the current document." msgstr "បោះពុម្ព​ឯកសារ​បច្ចុប្បន្ន ។" #: view/kateview.cpp:592 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show print preview of current document" msgstr "បោះពុម្ព​ឯកសារ​បច្ចុប្បន្ន ។" #: view/kateview.cpp:596 +#, kde-format msgid "Reloa&d" msgstr "ផ្ទុក​ឡើង​វិញ" #: view/kateview.cpp:598 +#, kde-format msgid "Reload the current document from disk." msgstr "ផ្ទុក​ឯកសារ​បច្ចុប្បន្នពីថាស​ឡើង​វិញ ។​" #: view/kateview.cpp:602 +#, kde-format msgid "Save the current document to disk, with a name of your choice." msgstr "រក្សា​ទុក​ឯកសារ​បច្ចុប្បន្ន​ទៅ​ថាស ដែល​មានឈ្មោះ​ជម្រើស​របស់​អ្នក ។" #: view/kateview.cpp:604 +#, kde-format msgid "Save As with Encoding..." msgstr "" #: view/kateview.cpp:610 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Save File As..." msgid "Save &Copy As..." msgstr "រក្សាទុក​ឯកសារ​ជា..." #: view/kateview.cpp:611 -#, fuzzy +#, fuzzy, kde-format #| msgid "Reload the current document from disk." msgid "Save a copy of the current document to disk." msgstr "ផ្ទុក​ឯកសារ​បច្ចុប្បន្នពីថាស​ឡើង​វិញ ។​" #: view/kateview.cpp:615 +#, kde-format msgid "" "This command opens a dialog and lets you choose a line that you want the " "cursor to move to." msgstr "ពាក្យ​បញ្ជា​នេះ​បើកប្រអប់​មួយ ហើយ​​អនុញ្ញាតឲ្យ​អ្នក​ជ្រើស​បន្ទាត់​ដែល​អ្នក​ចង់​ផ្លាស់ទី​ទស្សន៍​ទ្រនិច​ទៅ ។" #: view/kateview.cpp:618 -#, fuzzy +#, fuzzy, kde-format #| msgid "Move to Previous Line" msgid "Move to Previous Modified Line" msgstr "ផ្លាស់ទី​ទៅ​បន្ទាត់​មុន" #: view/kateview.cpp:619 -#, fuzzy +#, fuzzy, kde-format #| msgid "Move cursor to matching tag" msgid "Move upwards to the previous modified line." msgstr "ផ្លាស់ទី​​ទស្សន៍ទ្រនិច​ដើម្បី​ផ្គូផ្គង​ស្លាក" #: view/kateview.cpp:623 -#, fuzzy +#, fuzzy, kde-format #| msgid "Move to Next Line" msgid "Move to Next Modified Line" msgstr "ផ្លាស់ទី​ទៅ​បន្ទាត់បន្ទាប់" #: view/kateview.cpp:624 +#, kde-format msgid "Move downwards to the next modified line." msgstr "" #: view/kateview.cpp:628 +#, kde-format msgid "&Configure Editor..." msgstr "កំណត់​រចនាសម្ព័ន្ធ​កម្មវិធី​​កែសម្រួល..." #: view/kateview.cpp:630 +#, kde-format msgid "Configure various aspects of this editor." msgstr "កំណត់​រចនា​សម្ព័ន្ធ​ទិដ្ឋភាព​ផ្សេងៗ​របស់​កម្មវិធី​​កែសម្រួល​នេះ ។" #: view/kateview.cpp:633 +#, kde-format msgid "&Mode" msgstr "របៀប" #: view/kateview.cpp:635 +#, kde-format msgid "" "Here you can choose which mode should be used for the current document. This " "will influence the highlighting and folding being used, for example." @@ -7790,143 +6650,172 @@ "ប្រើ ។" #: view/kateview.cpp:638 +#, kde-format msgid "&Highlighting" msgstr "ការ​​រំលេច" #: view/kateview.cpp:640 +#, kde-format msgid "Here you can choose how the current document should be highlighted." msgstr "នៅ​ទីនេះ អ្នក​អាច​ជ្រើស​របៀប​​រំលេច​​ឯកសារ​បច្ចុប្បន្ន ។" #: view/kateview.cpp:643 +#, kde-format msgid "&Schema" msgstr "គ្រោងការណ៍" #: view/kateview.cpp:648 +#, kde-format msgid "&Indentation" msgstr "ការ​ចូល​បន្ទាត់" #: view/kateview.cpp:652 +#, kde-format msgid "Select the entire text of the current document." msgstr "ជ្រើស​អត្ថបទ​ទាំង​មូល​នៃ​ឯកសារ​បច្ចុប្បន្ន ។" #: view/kateview.cpp:655 +#, kde-format msgid "" "If you have selected something within the current document, this will no " "longer be selected." msgstr "ប្រសិន​បើ​អ្នក​បានជ្រើស​អ្វី​មួយ​ក្នុង​ឯកសារ​បច្ចុប្បន្ន វា​នឹង​មិន​ត្រូវ​បាន​ជ្រើស​ទៀត​ទេ ។" #: view/kateview.cpp:659 +#, kde-format msgid "Enlarge Font" msgstr "ពង្រីក​ពុម្ពអក្សរ" #: view/kateview.cpp:661 +#, kde-format msgid "This increases the display font size." msgstr "វា​នឹង​បង្កើន​ទំហំ​បង្ហាញ​របស់​ពុម្ពអក្សរ ។" #: view/kateview.cpp:666 +#, kde-format msgid "Shrink Font" msgstr "បង្រួញ​ពុម្ពអក្សរ" #: view/kateview.cpp:668 +#, kde-format msgid "This decreases the display font size." msgstr "វា​នឹង​បន្ថយ​ទំហំ​បង្ហាញ​របស់​ពុម្ពអក្សរ ។" #: view/kateview.cpp:671 +#, kde-format msgid "Bl&ock Selection Mode" msgstr "របៀប​ជ្រើស​រើស​បណ្តុំ" #: view/kateview.cpp:674 +#, kde-format msgid "" "This command allows switching between the normal (line based) selection mode " "and the block selection mode." msgstr "ពាក្យ​បញ្ជា​នេះ​អនុញ្ញាត​ឲ្យ​ប្ដូរ​រវាង​របៀប​ជម្រើស​ធម្មតា (បន្ទាត់​ជា​គោល) និង​របៀប​ជម្រើស​បណ្ដុំ ។" #: view/kateview.cpp:678 -#, fuzzy +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Switch to Next Input Mode" msgstr "របៀប​បញ្ចូល VI" #: view/kateview.cpp:680 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "short translation please" #| msgid "Sets the end of line mode." msgid "Switch to the next input mode." msgstr "កំណត់​ចុង​នៃ​របៀប​បន្ទាត់ ។" #: view/kateview.cpp:683 +#, kde-format msgid "Overwr&ite Mode" msgstr "របៀប​សរសេរ​ជាន់​លើ" #: view/kateview.cpp:686 +#, kde-format msgid "" "Choose whether you want the text you type to be inserted or to overwrite " "existing text." msgstr "ជ្រើស​ថាតើអ្នក​ចង់​បញ្ចូល​អត្ថបទ​ដែល​អ្នក​បាន​វាយ ឬ​សរសេរ​ជាន់​លើ​អត្ថបទ​ដែល​មាន​ស្រាប់ ។" #: view/kateview.cpp:696 +#, kde-format msgid "Dynamic Word Wrap Indicators" msgstr "ទ្រនិច​បង្ហាញ​រុំ​ពាក្យ​ថាមវន្ត​" #: view/kateview.cpp:698 +#, kde-format msgid "Choose when the Dynamic Word Wrap Indicators should be displayed" msgstr "ជ្រើស ពេល​វេលា​ដែល​គួរ​បង្ហាញ​ទ្រនិច​ចង្អុល​បង្ហាញ​រុំ​ពាក្យ​ថាមវន្ត ។" #: view/kateview.cpp:702 +#, kde-format msgid "&Off" msgstr "បិទ" #: view/kateview.cpp:703 +#, kde-format msgid "Follow &Line Numbers" msgstr "ដាក់​ពីក្រោយលេខ​បន្ទាត់​" #: view/kateview.cpp:704 +#, kde-format msgid "&Always On" msgstr "បើក​ជានិច្ច" #: view/kateview.cpp:708 +#, kde-format msgid "Show Folding &Markers" msgstr "បង្ហាញ​សញ្ញា​​សម្គាល់​ការ​បត់" #: view/kateview.cpp:711 +#, kde-format msgid "" "You can choose if the codefolding marks should be shown, if codefolding is " "possible." msgstr "អ្នក​អាច​ជ្រើស​ថា​តើ​ការ​សម្គាល់​ការ​បត់​កូដ​គួរ​ត្រូវ​បាន​បង្ហាញ​ឬអត់ ប្រសិន​បើ​ការ​បត់​កូដ​អាច​ប្រើ​បាន ។" #: view/kateview.cpp:714 +#, kde-format msgid "Show &Icon Border" msgstr "បង្ហាញ​ស៊ុម​រូប​តំណាង" #: view/kateview.cpp:717 +#, kde-format msgid "" "Show/hide the icon border.

    The icon border shows bookmark " "symbols, for instance." msgstr "បង្ហាញ​/​លាក់​ស៊ុម​រូបតំណាង ។

    ឧទាហរណ៍ ស៊ុម​រូបតំណាង​បង្ហាញ​និមិត្ត​សញ្ញា​ចំណាំ ។" #: view/kateview.cpp:720 +#, kde-format msgid "Show &Line Numbers" msgstr "បង្ហាញ​លេខ​បន្ទាត់" #: view/kateview.cpp:723 +#, kde-format msgid "Show/hide the line numbers on the left hand side of the view." msgstr "បង្ហាញ​/​លាក់​លេខ​បន្ទាត់​នៅ​ផ្នែក​ខាង​ឆ្វេង​ដៃ​នៃ​ទិដ្ឋភាព ។​" #: view/kateview.cpp:726 +#, kde-format msgid "Show Scroll&bar Marks" msgstr "បង្ហាញ​សញ្ញា​សម្គាល់​របារ​រមូរ" #: view/kateview.cpp:728 +#, kde-format msgid "" "Show/hide the marks on the vertical scrollbar.

    The marks show " "bookmarks, for instance." msgstr "បង្ហាញ​/​លាក់​សញ្ញា​សម្គាល់​នៅ​លើ​របារ​រមូរ​បញ្ឈរ ។

    ឧទាហរណ៍ សម្គាល់​បង្ហាញ​ចំណាំ ។" #: view/kateview.cpp:731 +#, kde-format msgid "Show Scrollbar Mini-Map" msgstr "បង្ហាញ​​របារ​រមូរ​ផែនទី​តូច" #: view/kateview.cpp:733 +#, kde-format msgid "" "Show/hide the mini-map on the vertical scrollbar.

    The mini-map " "shows an overview of the whole document." @@ -7934,11 +6823,18 @@ "បង្ហាញ​/​លាក់​សញ្ញា​សម្គាល់​នៅ​លើ​របារ​រមូរ​បញ្ឈរ ។

    ឧទាហរណ៍ សញ្ញា​សម្គាល់​បង្ហាញ​ទិដ្ឋភាព​ទូទៅ​" "នៃ​ឯកសារ​ទាំងអស់ ។" +#. i18n("Show the whole document in the Mini-Map"), this); +#. ac->addAction(QLatin1String("view_scrollbar_minimap_all"), a); +#. a->setWhatsThis(i18n("Display the whole document in the mini-map.

    With this option set the whole document will be visible in the mini-map.")); +#. connect(a, SIGNAL(triggered(bool)), SLOT(toggleScrollBarMiniMapAll())); +#. connect(m_toggleScrollBarMiniMap, SIGNAL(triggered(bool)), m_toggleScrollBarMiniMapAll, SLOT(setEnabled(bool))); #: view/kateview.cpp:742 +#, kde-format msgid "Show Static &Word Wrap Marker" msgstr "បង្ហាញសញ្ញា​សម្គាល់​រុំពាក្យ​ឋិតិវន្ត" #: view/kateview.cpp:745 +#, kde-format msgid "" "Show/hide the Word Wrap Marker, a vertical line drawn at the word wrap " "column as defined in the editing properties" @@ -7947,31 +6843,37 @@ "សម្បត្តិ​ការ​កែសម្រួល" #: view/kateview.cpp:749 +#, kde-format msgid "Show Non-Printable Spaces" msgstr "" #: view/kateview.cpp:751 +#, kde-format msgid "Show/hide bounding box around non-printable spaces" msgstr "" #: view/kateview.cpp:754 +#, kde-format msgid "Show Word Count" msgstr "" #: view/kateview.cpp:757 +#, kde-format msgid "Show/hide word count in status bar" msgstr "" #: view/kateview.cpp:761 +#, kde-format msgid "Switch to Command Line" msgstr "ប្ដូរ​ទៅ​បន្ទាត់​ពាក្យបញ្ជា" #: view/kateview.cpp:763 +#, kde-format msgid "Show/hide the command line on the bottom of the view." msgstr "បង្ហាញ​/​លាក់​បន្ទាត់​ពាក្យ​បញ្ជា​នៅ​បាត​ទិដ្ឋភាព ។" #: view/kateview.cpp:766 -#, fuzzy +#, fuzzy, kde-format #| msgid "Vi Input Mode" msgid "Input Modes" msgstr "របៀប​បញ្ចូល VI" @@ -7983,115 +6885,138 @@ msgstr "ធ្វើ​ឲ្យ​របៀប​បញ្ចូល VI សកម្ម/អសកម្ម" #: view/kateview.cpp:778 +#, kde-format msgid "&End of Line" msgstr "ចុង​បន្ទាត់" #: view/kateview.cpp:780 +#, kde-format msgid "Choose which line endings should be used, when you save the document" msgstr "ជ្រើស​ថាតើ​គួរត្រូវ​ប្រើ​ចុង​បន្ទាត់​មួយ​ណា នៅ​ពេល​អ្នក​រក្សា​ទុក​ឯកសារ" #: view/kateview.cpp:782 -#, fuzzy +#, fuzzy, kde-format #| msgid "UNIX" msgctxt "@item:inmenu End of Line" msgid "&UNIX" msgstr "យូនីក" #: view/kateview.cpp:783 -#, fuzzy +#, fuzzy, kde-format #| msgid "DOS/Windows" msgctxt "@item:inmenu End of Line" msgid "&Windows/DOS" msgstr "ដូស​/​វីនដូ" #: view/kateview.cpp:784 -#, fuzzy +#, fuzzy, kde-format #| msgid "Macintosh" msgctxt "@item:inmenu End of Line" msgid "&Macintosh" msgstr "Macintosh" #: view/kateview.cpp:789 +#, kde-format msgid "Add &Byte Order Mark (BOM)" msgstr "បន្ថែម​ការ​សម្គាល់​លំដាប់​បៃ (BOM)" #: view/kateview.cpp:792 +#, fuzzy, kde-format +#| msgid "" +#| "Enable/disable adding of byte order markers for UTF-8/UTF-16 encoded " +#| "files while saving" msgid "" -"Enable/disable adding of byte order markers for UTF-8/UTF-16 encoded files " +"Enable/disable adding of byte order marks for UTF-8/UTF-16 encoded files " "while saving" msgstr "" "បិទ/បើក​កា​របន្ថែម​បៃ​នៃ​លំដាប់​កម្មវិធី​សម្គាល់​សម្រាប់ UTF-8/UTF-16 ឯកសារ​ដែល​បានអ៊ិនកូដ​ខណៈពេល​ដែល​" "រក្សាទុក" #: view/kateview.cpp:796 +#, kde-format msgid "E&ncoding" msgstr "ការ​អ៊ិនកូដ" #: view/kateview.cpp:800 +#, kde-format msgid "Look up the first occurrence of a piece of text or regular expression." msgstr "រក​មើល​ការ​កើតឡើង​ដំបូង​នៃ​ផ្នែក​របស់អត្ថបទ ឬ​កន្សោម​ធម្មតា ។" #: view/kateview.cpp:804 +#, kde-format msgid "Find Selected" msgstr "រក​អ្វី​ដែល​បាន​ជ្រើស" #: view/kateview.cpp:806 +#, kde-format msgid "Finds next occurrence of selected text." msgstr "រក​មើល​ការ​កើតឡើង​បន្ទាប់​នៃ​អត្ថបទ​ដែល​បាន​ជ្រើស ។" #: view/kateview.cpp:810 +#, kde-format msgid "Find Selected Backwards" msgstr "រក​អ្វី​ដែល​បាន​ជ្រើស​ថយក្រោយ" #: view/kateview.cpp:812 +#, kde-format msgid "Finds previous occurrence of selected text." msgstr "រក​ការ​កើតឡើង​ពី​មុន​នៃ​អត្ថបទ​ដែល​បាន​ជ្រើស ។" #: view/kateview.cpp:816 +#, kde-format msgid "Look up the next occurrence of the search phrase." msgstr "រកមើល​ការ​ជួប​ប្រទះ​បន្ទាប់​នៃ​ឃ្លា​ដែល​ស្វែងរក ។" #: view/kateview.cpp:820 +#, kde-format msgid "Look up the previous occurrence of the search phrase." msgstr "រកមើល​ការ​កើតឡើង​ពី​មុន​នៃ​ឃ្លា​ស្វែងរក ។" #: view/kateview.cpp:824 +#, kde-format msgid "" "Look up a piece of text or regular expression and replace the result with " "some given text." msgstr "រកមើល​ផ្នែក​នៃ​អត្ថបទ ឬ​កន្សោម​ធម្មតា ហើយ​ជំនួស​លទ្ធផល​ដោយ​អត្ថបទ​ដែល​បាន​ផ្តល់​ណាមួយ ។" #: view/kateview.cpp:827 +#, kde-format msgid "Automatic Spell Checking" msgstr "ពិនិត្យអក្ខរាវិរុទ្ធ​ដោយ​ស្វ័យ​ប្រវត្តិ" #: view/kateview.cpp:828 +#, kde-format msgid "Enable/disable automatic spell checking" msgstr "បិទ/បើក​ការ​ពិនិត្យ​អក្ខរាវិរុទ្ធ​ដោយ​ស្វ័យ​ប្រវត្តិ" #: view/kateview.cpp:834 +#, kde-format msgid "Change Dictionary..." msgstr "ផ្លាស់ប្ដូរ​វចនានុក្រម..." #: view/kateview.cpp:835 +#, kde-format msgid "Change the dictionary that is used for spell checking." msgstr "ផ្លាស់ប្ដូរ​ថត​ដែល​ត្រូវ​បាន​ប្រើ​ដើម្បីពិនិត្យអក្ខរាវិរុទ្ធ ។" #: view/kateview.cpp:839 +#, kde-format msgid "Clear Dictionary Ranges" msgstr "ជម្រះ​ជួរ​វចនានុក្រម" #: view/kateview.cpp:841 +#, kde-format msgid "" "Remove all the separate dictionary ranges that were set for spell checking." msgstr "យក​ជួរ​វចនានុក្រម​ដោយ​ឡែក​ទាំងអស់​ដែល​ត្រូវ​បានកំណត់​សម្រាប់ការ​ពិនិត្យ​អក្ខរាវិរុទ្ធ​ចេញ ។" #: view/kateview.cpp:847 +#, kde-format msgid "Copy as &HTML" msgstr "" #: view/kateview.cpp:848 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "Use this command to copy the currently selected text to the system " #| "clipboard." @@ -8101,188 +7026,232 @@ msgstr "ប្រើ​ពាក្យ​បញ្ជា​នេះ​ដើម្បី​ចម្លង​អត្ថបទ​ដែល​បាន​ជ្រើស​បច្ចុប្បន្ន ទៅ​ក្ដារ​តម្បៀត​ខ្ទាស់របស់ប្រព័ន្ធ ។​" #: view/kateview.cpp:851 -#, fuzzy +#, fuzzy, kde-format #| msgid "Export..." msgid "E&xport as HTML..." msgstr "នាំចេញ..." #: view/kateview.cpp:852 +#, kde-format msgid "" "This command allows you to export the current document with all highlighting " "information into a HTML document." msgstr "" #: view/kateview.cpp:890 +#, kde-format msgid "Move Word Left" msgstr "ផ្លាស់​ទី​ពាក្យ​នៅ​ខាង​ឆ្វេង" #: view/kateview.cpp:896 +#, kde-format msgid "Select Character Left" msgstr "ជ្រើស​តួអក្សរ​នៅខាង​ឆ្វេង" #: view/kateview.cpp:902 +#, kde-format msgid "Select Word Left" msgstr "ជ្រើស​ពាក្យ​ទៅ​ឆ្វេង" #: view/kateview.cpp:908 +#, kde-format msgid "Move Word Right" msgstr "ផ្លាស់​ទី​ពាក្យ​ទៅ​ស្តាំ" #: view/kateview.cpp:914 +#, kde-format msgid "Select Character Right" msgstr "ជ្រើស​តួអក្សរ​ទៅ​ស្តាំ" #: view/kateview.cpp:920 +#, kde-format msgid "Select Word Right" msgstr "ជ្រើស​ពាក្យ​ទៅ​ស្តាំ" #: view/kateview.cpp:926 +#, kde-format msgid "Move to Beginning of Line" msgstr "ផ្លាស់​ទី​ទៅ​ដើម​បន្ទាត់" #: view/kateview.cpp:932 +#, kde-format msgid "Move to Beginning of Document" msgstr "ផ្លាស់ទី​ទៅ​ដើម​ឯកសារ" #: view/kateview.cpp:938 +#, kde-format msgid "Select to Beginning of Line" msgstr "ជ្រើស​ទៅ​ដើម​បន្ទាត់" #: view/kateview.cpp:944 +#, kde-format msgid "Select to Beginning of Document" msgstr "ជ្រើស​ទៅ​ដើម​ឯកសារ" #: view/kateview.cpp:950 +#, kde-format msgid "Move to End of Line" msgstr "ផ្លាស់ទី​ទៅ​ចុង​បន្ទាត់" #: view/kateview.cpp:956 +#, kde-format msgid "Move to End of Document" msgstr "ផ្លាស់ទី​ទៅចុង​ឯកសារ" #: view/kateview.cpp:962 +#, kde-format msgid "Select to End of Line" msgstr "ជ្រើស​ទៅ​ចុង​បន្ទាត់" #: view/kateview.cpp:968 +#, kde-format msgid "Select to End of Document" msgstr "ជ្រើស​ទៅ​ចុង​ឯកសារ" #: view/kateview.cpp:974 +#, kde-format msgid "Select to Previous Line" msgstr "ជ្រើស​ទៅ​បន្ទាត់​មុន" #: view/kateview.cpp:980 +#, kde-format msgid "Scroll Line Up" msgstr "រមូរ​បន្ទាត់​ឡើងលើ" #: view/kateview.cpp:986 +#, kde-format msgid "Move to Next Line" msgstr "ផ្លាស់ទី​ទៅ​បន្ទាត់បន្ទាប់" #: view/kateview.cpp:992 +#, kde-format msgid "Move to Previous Line" msgstr "ផ្លាស់ទី​ទៅ​បន្ទាត់​មុន" #: view/kateview.cpp:998 +#, kde-format msgid "Move Cursor Right" msgstr "ផ្លាស់ទី​ទស្សន៍ទ្រនិច​ទៅ​ស្ដាំ" #: view/kateview.cpp:1004 +#, kde-format msgid "Move Cursor Left" msgstr "ផ្លាស់ទី​ទស្សន៍ទ្រនិច​ទៅ​ឆ្វេង" #: view/kateview.cpp:1010 +#, kde-format msgid "Select to Next Line" msgstr "ជ្រើស​ទៅ​បន្ទាត់​បន្ទាប់" #: view/kateview.cpp:1016 +#, kde-format msgid "Scroll Line Down" msgstr "រមូរ​បន្ទាត់​ចុះ​ក្រោម" #: view/kateview.cpp:1022 +#, kde-format msgid "Scroll Page Up" msgstr "រមូរ​ទំព័រ​ឡើងលើ" #: view/kateview.cpp:1028 +#, kde-format msgid "Select Page Up" msgstr "ជ្រើស​ទំព័រ​ឡើង​លើ" #: view/kateview.cpp:1034 +#, kde-format msgid "Move to Top of View" msgstr "ផ្លាស់ទី​ទៅកំពូលទិដ្ឋភាព" #: view/kateview.cpp:1040 +#, kde-format msgid "Select to Top of View" msgstr "ជ្រើស​ទៅកំពូលទិដ្ឋភាព" #: view/kateview.cpp:1046 +#, kde-format msgid "Scroll Page Down" msgstr "រមូរ​ទំព័រ​ចុះក្រោម" #: view/kateview.cpp:1052 +#, kde-format msgid "Select Page Down" msgstr "ជ្រើស​ទំព័រ​ចុះក្រោម" #: view/kateview.cpp:1058 +#, kde-format msgid "Move to Bottom of View" msgstr "ផ្លាស់ទី​ទៅបាតរបស់ទិដ្ឋភាព" #: view/kateview.cpp:1064 +#, kde-format msgid "Select to Bottom of View" msgstr "ជ្រើស​ទៅបាត​ទិដ្ឋភាព" #: view/kateview.cpp:1070 +#, kde-format msgid "Move to Matching Bracket" msgstr "ផ្លាស់ទី​ទៅ​តង្កៀប​ដែល​ដូច" #: view/kateview.cpp:1076 +#, kde-format msgid "Select to Matching Bracket" msgstr "ជ្រើស​ទៅ​តង្កៀប​ដែល​ដូច" #: view/kateview.cpp:1084 +#, kde-format msgid "Transpose Characters" msgstr "ផ្លាស់​កន្លែង​តួអក្សរ" #: view/kateview.cpp:1090 +#, kde-format msgid "Delete Line" msgstr "លុប​បន្ទាត់" #: view/kateview.cpp:1096 +#, kde-format msgid "Delete Word Left" msgstr "លុ​ប​ពាក្យ​ទៅ​ឆ្វេង" #: view/kateview.cpp:1102 +#, kde-format msgid "Delete Word Right" msgstr "លុបពាក្យ​ទៅ​ស្តាំ" #: view/kateview.cpp:1108 +#, kde-format msgid "Delete Next Character" msgstr "លុប​តួអក្សរ​បន្ទាប់" #: view/kateview.cpp:1114 +#, kde-format msgid "Backspace" msgstr "លុប​ថយក្រោយ (Backspace)" #: view/kateview.cpp:1123 +#, kde-format msgid "Insert Tab" msgstr "បញ្ចូល​ថេប" #: view/kateview.cpp:1128 +#, kde-format msgid "Insert Smart Newline" msgstr "បញ្ចូល​បន្ទាត់​ថ្មី​ដ៏​ឆ្លាត" #: view/kateview.cpp:1129 +#, kde-format msgid "" "Insert newline including leading characters of the current line which are " "not letters or numbers." msgstr "បញ្ចូល​បន្ទាត់​ថ្មី រួមមាន​តួអក្សរ​នាំមុខ​របស់​បន្ទាត់បច្ចុប្បន្ន ដែល​មិនមែន​ជា​អក្សរ ឬ​លេខ ។" #: view/kateview.cpp:1139 +#, kde-format msgid "&Indent" msgstr "ចូល​បន្ទាត់" #: view/kateview.cpp:1140 +#, kde-format msgid "" "Use this to indent a selected block of text.

    You can configure " "whether tabs should be honored and used or replaced with spaces, in the " @@ -8292,26 +7261,32 @@ "ត្រូវ​បានប្រើ ឬ​ជំនួសដោយ​ចន្លោះ ក្នុង​ប្រអប់​កំណត់​រចនា​សម្ព័ន្ធ ។" #: view/kateview.cpp:1147 +#, kde-format msgid "&Unindent" msgstr "មិន​ចូល​បន្ទាត់វិញ" #: view/kateview.cpp:1148 +#, kde-format msgid "Use this to unindent a selected block of text." msgstr "ប្រើ​វា​នេះ ដើម្បី​មិន​ចូល​បន្ទាត់បណ្ដុំ​អត្ថបទ​ដែល​បាន​ជ្រើស​វិញ ។" #: view/kateview.cpp:1166 +#, kde-format msgid "Fold Toplevel Nodes" msgstr "វេញ​ថ្នាំង​កម្រិត​កំពូល" #: view/kateview.cpp:1171 +#, kde-format msgid "Unfold Toplevel Nodes" msgstr "ត្រដាង​ថ្នាំង​កម្រិត​កំពូល" #: view/kateview.cpp:1184 +#, kde-format msgid "Fold Current Node" msgstr "វេញ​ថ្នាំង​បច្ចុប្បន្ន" #: view/kateview.cpp:1188 +#, kde-format msgid "Unfold Current Node" msgstr "ត្រដាង​ថ្នាំង​បច្ចុប្បន្ន" @@ -8321,11 +7296,12 @@ msgstr "" #: view/kateview.cpp:3475 +#, kde-format msgid "Export File as HTML" msgstr "" #: view/kateviewhelpers.cpp:213 view/kateviewhelpers.cpp:260 -#: view/kateviewhelpers.cpp:836 +#: view/kateviewhelpers.cpp:841 #, fuzzy, kde-format #| msgctxt "from line - to line" #| msgid "

    %1

    %2
    " @@ -8333,28 +7309,31 @@ msgid "
    %1

    %2
    " msgstr "
    %1

    %2
    " -#: view/kateviewhelpers.cpp:1010 +#: view/kateviewhelpers.cpp:1015 +#, kde-format msgid "Available Commands" msgstr "ពាក្យ​បញ្ជា​ដែល​អាច​ប្រើ​បាន" -#: view/kateviewhelpers.cpp:1012 +#: view/kateviewhelpers.cpp:1017 +#, kde-format msgid "" "

    For help on individual commands, do 'help <command>'" msgstr "" "

    សម្រាប់​ជំនួយ​អំពី​ពាក្យ​បញ្ជា​នីមួយៗ សូម​ធ្វើ 'help <command>'

    " -#: view/kateviewhelpers.cpp:1020 +#: view/kateviewhelpers.cpp:1025 #, kde-format msgid "No help for '%1'" msgstr "គ្មាន​ជំនួយ​សម្រាប់ '%1' ឡើយ" -#: view/kateviewhelpers.cpp:1023 +#: view/kateviewhelpers.cpp:1028 #, kde-format msgid "No such command %1" msgstr "គ្មាន​ពាក្យ​បញ្ជា %1 ​បែប​នេះទេ" -#: view/kateviewhelpers.cpp:1029 +#: view/kateviewhelpers.cpp:1034 +#, kde-format msgid "" "

    This is the Katepart command line.
    Syntax: command " "[ arguments ]
    For a list of available commands, enter " @@ -8366,57 +7345,61 @@ "help list
    ចំពោះ​ជំនួយ​អំពី​ពាក្យ​បញ្ជី​នីមួយៗ សូម​បញ្ចូល help " "<ពាក្យ​បញ្ជា>

    " -#: view/kateviewhelpers.cpp:1115 vimode/emulatedcommandbar/commandmode.cpp:222 +#: view/kateviewhelpers.cpp:1120 vimode/emulatedcommandbar/commandmode.cpp:222 #, kde-format msgid "No such command: \"%1\"" msgstr "គ្មាន​ពាក្យ​បញ្ជា​បែប​នេះទេ ៖ \"%1\"" -#: view/kateviewhelpers.cpp:1119 vimode/emulatedcommandbar/commandmode.cpp:203 +#: view/kateviewhelpers.cpp:1124 vimode/emulatedcommandbar/commandmode.cpp:203 #, kde-format msgid "Error: No range allowed for command \"%1\"." msgstr "កំហុស ៖ គ្មាន​ជួរ​បាន​អនុញ្ញាត​សម្រាប់​ពាក្យ​បញ្ជា \"%1\" ។" -#: view/kateviewhelpers.cpp:1130 vimode/emulatedcommandbar/commandmode.cpp:208 +#: view/kateviewhelpers.cpp:1135 vimode/emulatedcommandbar/commandmode.cpp:208 +#, kde-format msgid "Success: " msgstr "ជោគជ័យ ៖ " -#: view/kateviewhelpers.cpp:1144 vimode/emulatedcommandbar/commandmode.cpp:217 +#: view/kateviewhelpers.cpp:1149 vimode/emulatedcommandbar/commandmode.cpp:217 #, kde-format msgid "Command \"%1\" failed." msgstr "ពាក្យ​បញ្ជា \"%1\" បាន​បរាជ័យ ។" -#: view/kateviewhelpers.cpp:2227 view/kateviewhelpers.cpp:2228 +#: view/kateviewhelpers.cpp:2232 view/kateviewhelpers.cpp:2233 #, kde-format msgid "Mark Type %1" msgstr "សម្គាល់​ប្រភេទ %1" -#: view/kateviewhelpers.cpp:2250 +#: view/kateviewhelpers.cpp:2255 +#, kde-format msgid "Set Default Mark Type" msgstr "កំណត់​ប្រភេទ​សម្គាល់​លំនាំដើម" -#: view/kateviewhelpers.cpp:2309 +#: view/kateviewhelpers.cpp:2314 +#, kde-format msgid "Disable Annotation Bar" msgstr "បិទ​របារ​ចំណារ" #: vimode/appcommands.cpp:75 -#, fuzzy +#, fuzzy, kde-format #| msgid "Document written to disk" msgid "All documents written to disk" msgstr "បាន​សរសេរ​ឯកសារ​ទៅ​ថាស" #: vimode/appcommands.cpp:78 +#, kde-format msgid "Document written to disk" msgstr "បាន​សរសេរ​ឯកសារ​ទៅ​ថាស" #: vimode/appcommands.cpp:193 -#, fuzzy +#, fuzzy, kde-format #| msgid "" -#| "

    w/wa — write document(s) to disk

    Usage: w[a]" -#| "

    Writes the current document(s) to disk. It can be called " -#| "in two ways:
    w — writes the current document to " -#| "disk
    wa — writes all document to disk.

    If no " -#| "file name is associated with the document, a file dialog will be shown." +#| "

    w/wa — write document(s) to disk

    Usage: " +#| "w[a]

    Writes the current document(s) to disk. It can " +#| "be called in two ways:
    w — writes the current " +#| "document to disk
    wa — writes all document to disk.

    If no file name is associated with the document, a file dialog will " +#| "be shown.

    " msgid "" "

    w/wa — write document(s) to disk

    Usage: w[a]

    Writes the current document(s) to disk. It can be called in " @@ -8431,14 +7414,14 @@ "បង្ហាញ ។

    " #: vimode/appcommands.cpp:203 -#, fuzzy +#, fuzzy, kde-format #| msgid "" -#| "

    w/wa — write document(s) to disk

    Usage: w[a]" -#| "

    Writes the current document(s) to disk. It can be called " -#| "in two ways:
    w — writes the current document to " -#| "disk
    wa — writes all document to disk.

    If no " -#| "file name is associated with the document, a file dialog will be shown." +#| "

    w/wa — write document(s) to disk

    Usage: " +#| "w[a]

    Writes the current document(s) to disk. It can " +#| "be called in two ways:
    w — writes the current " +#| "document to disk
    wa — writes all document to disk.

    If no file name is associated with the document, a file dialog will " +#| "be shown.

    " msgid "" "

    q/qa/wq/wqa — [write and] quit

    Usage: [w]q[a]

    Quits the application. If w is prepended, it also " @@ -8458,14 +7441,14 @@ "បង្ហាញ ។

    " #: vimode/appcommands.cpp:217 -#, fuzzy +#, fuzzy, kde-format #| msgid "" -#| "

    w/wa — write document(s) to disk

    Usage: w[a]" -#| "

    Writes the current document(s) to disk. It can be called " -#| "in two ways:
    w — writes the current document to " -#| "disk
    wa — writes all document to disk.

    If no " -#| "file name is associated with the document, a file dialog will be shown." +#| "

    w/wa — write document(s) to disk

    Usage: " +#| "w[a]

    Writes the current document(s) to disk. It can " +#| "be called in two ways:
    w — writes the current " +#| "document to disk
    wa — writes all document to disk.

    If no file name is associated with the document, a file dialog will " +#| "be shown.

    " msgid "" "

    x/xa — write and quit

    Usage: x[a]

    Saves document(s) and quits (exits). This command can be called " @@ -8483,6 +7466,7 @@ "បង្ហាញ ។

    " #: vimode/appcommands.cpp:230 +#, kde-format msgid "" "

    sp,split— Split horizontally the current view into two

    Usage: sp[lit]

    The result is two views on the " @@ -8490,6 +7474,7 @@ msgstr "" #: vimode/appcommands.cpp:235 +#, kde-format msgid "" "

    vs,vsplit— Split vertically the current view into two

    Usage: vs[plit]

    The result is two views on the " @@ -8497,20 +7482,21 @@ msgstr "" #: vimode/appcommands.cpp:240 +#, kde-format msgid "" "

    clo[se]— Close the current view

    Usage: clo[se]

    After executing it, the current view will be closed.

    " msgstr "" #: vimode/appcommands.cpp:245 -#, fuzzy +#, fuzzy, kde-format #| msgid "" -#| "

    w/wa — write document(s) to disk

    Usage: w[a]" -#| "

    Writes the current document(s) to disk. It can be called " -#| "in two ways:
    w — writes the current document to " -#| "disk
    wa — writes all document to disk.

    If no " -#| "file name is associated with the document, a file dialog will be shown." +#| "

    w/wa — write document(s) to disk

    Usage: " +#| "w[a]

    Writes the current document(s) to disk. It can " +#| "be called in two ways:
    w — writes the current " +#| "document to disk
    wa — writes all document to disk.

    If no file name is associated with the document, a file dialog will " +#| "be shown.

    " msgid "" "

    [v]new — split view and create new document

    Usage: " "[v]new

    Splits the current view and opens a new " @@ -8526,6 +7512,7 @@ "បង្ហាញ ។

    " #: vimode/appcommands.cpp:254 +#, kde-format msgid "" "

    e[dit] — reload current document

    Usage: e[dit]

    Starts editing the current document again. This is " @@ -8534,12 +7521,14 @@ msgstr "" #: vimode/appcommands.cpp:465 +#, kde-format msgid "" "

    b,buffer — Edit document N from the document list

    Usage: b[uffer] [N]

    " msgstr "" #: vimode/appcommands.cpp:470 +#, kde-format msgid "" "

    bp,bprev — previous buffer

    Usage: bp[revious] " "[N]

    Goes to [N]th previous document (\"buffer" @@ -8548,14 +7537,16 @@ msgstr "" #: vimode/appcommands.cpp:478 +#, kde-format msgid "" -"

    bn,bnext — switch to next document

    Usage: bn" -"[ext] [N]

    Goes to [N]th next document (\"buffer" -"\") in document list.[N] defaults to one.

    Wraps around the end " -"of the document list.

    " +"

    bn,bnext — switch to next document

    Usage: " +"bn[ext] [N]

    Goes to [N]th next document " +"(\"buffer\") in document list.[N] defaults to one.

    Wraps around the end of the document list.

    " msgstr "" #: vimode/appcommands.cpp:486 +#, kde-format msgid "" "

    bf,bfirst — first document

    Usage: bf[irst]

    Goes to the first document (\"buffer\") in document " @@ -8563,6 +7554,7 @@ msgstr "" #: vimode/appcommands.cpp:492 +#, kde-format msgid "" "

    bl,blast — last document

    Usage: bl[ast]

    Goes to the last document (\"buffer\") in document " @@ -8570,6 +7562,7 @@ msgstr "" #: vimode/appcommands.cpp:497 +#, kde-format msgid "

    ls

    list current buffers

    " msgstr "" @@ -8595,19 +7588,23 @@ msgstr "បាត់​អាគុយម៉ង់ ។ ការ​ប្រើ ៖ %1 []" #: vimode/cmds.cpp:155 vimode/cmds.cpp:172 +#, kde-format msgid "Wrong arguments" msgstr "អាគុយម៉ង់​មិន​ត្រឹមត្រូវ" #: vimode/config/configtab.cpp:216 +#, kde-format msgid "Unable to open the config file for reading." msgstr "មិន​អាច​បើក​ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​សម្រាប់​អាន​បាន​ឡើយ ។" #: vimode/config/configtab.cpp:216 +#, kde-format msgid "Unable to open file" msgstr "មិន​អាច​បើក​ឯកសារ​បាន​ឡើយ" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkViCommandsOverride) #: vimode/config/configwidget.ui:35 +#, kde-format msgid "" "When selected, vi commands will override Kate's built-in commands. For " "example: Ctrl+R will redo, and override the standard action (showing the " @@ -8618,12 +7615,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkViCommandsOverride) #: vimode/config/configwidget.ui:38 +#, kde-format msgid "Let Vi commands override Kate shortcuts" msgstr "ឲ្យ​ពាក្យ​បញ្ជា Vi បដិសេធ​ផ្លូវកាត់​របស់ Kate" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkViRelLineNumbers) #: vimode/config/configwidget.ui:45 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show/hide the line numbers on the left hand side of the view." msgid "" "Show the line number relative to the line with the cursor in front of each " @@ -8632,13 +7630,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkViRelLineNumbers) #: vimode/config/configwidget.ui:48 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print line &numbers" msgid "Display relative line numbers" msgstr "បោះពុម្ព​លេខ​បន្ទាត់" #. i18n: ectx: property (whatsThis), widget (QGroupBox, groupBox) #: vimode/config/configwidget.ui:63 +#, kde-format msgid "" "Key mapping is used to change the meaning of typed keys. This allows you to " "move commands to other keys or make special keypresses for doing a series of " @@ -8659,11 +7658,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, groupBox) #: vimode/config/configwidget.ui:66 +#, kde-format msgid "Key Mapping" msgstr "កា​រផ្គូផ្គង​សោ" #. i18n: ectx: attribute (title), widget (QWidget, normalTab) #: vimode/config/configwidget.ui:76 +#, kde-format msgid "Normal mode" msgstr "របៀប​ធម្មតា" @@ -8672,6 +7673,7 @@ #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) #: vimode/config/configwidget.ui:100 vimode/config/configwidget.ui:138 #: vimode/config/configwidget.ui:176 +#, kde-format msgid "Replacement" msgstr "ការ​ជំនួស" @@ -8680,43 +7682,48 @@ #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) #: vimode/config/configwidget.ui:105 vimode/config/configwidget.ui:143 #: vimode/config/configwidget.ui:181 +#, kde-format msgid "Recursive?" msgstr "" #. i18n: ectx: attribute (title), widget (QWidget, insertTab) #: vimode/config/configwidget.ui:114 -#, fuzzy +#, fuzzy, kde-format #| msgid "Insert Tab" msgid "Insert mode" msgstr "បញ្ចូល​ថេប" #. i18n: ectx: attribute (title), widget (QWidget, visualTab) #: vimode/config/configwidget.ui:152 -#, fuzzy +#, fuzzy, kde-format #| msgid "Normal mode" msgid "Visual mode" msgstr "របៀប​ធម្មតា" #. i18n: ectx: property (text), widget (QPushButton, btnRemoveSelectedRows) #: vimode/config/configwidget.ui:195 +#, kde-format msgid "Remove selected" msgstr "យក​អ្វី​ដែលបានជ្រើស​ចេញ" #. i18n: ectx: property (text), widget (QPushButton, btnAddNewRow) #: vimode/config/configwidget.ui:202 +#, kde-format msgid "Add new mapping" msgstr "បន្ថែម​កា​រ​ផ្គូផ្គ​ងថ្មី" #. i18n: ectx: property (toolTip), widget (QPushButton, btnImportNormal) #: vimode/config/configwidget.ui:209 +#, kde-format msgid "" -"Read a vimrc file and attempt to import mappings specified with the \"[n]" -"noremap\" command." +"Read a vimrc file and attempt to import mappings specified with the " +"\"[n]noremap\" command." msgstr "" "អាន​ឯកសារ vimrc ​និង​ប៉ុនប៉ង​​នាំចូល​ការ​គូរ​ផែន​ទី​ដែល​បាន​បញ្ជាក់​ជាមួយ​ពាក្យ​បញ្ជា \"[n]noremap\" ។" #. i18n: ectx: property (text), widget (QPushButton, btnImportNormal) #: vimode/config/configwidget.ui:212 +#, kde-format msgid "Import from vimrc file" msgstr "នាំចូល​ពី​ឯកសារ vimrc " @@ -8727,7 +7734,7 @@ msgstr "សញ្ញា​សម្គាល់​មិន​បានកំណត់ ៖ %1" #: vimode/marks.cpp:168 -#, fuzzy +#, fuzzy, kde-format #| msgid "Go to the next bookmark." msgid "There are no more chars for the next bookmark." msgstr "ទៅ​កាន់​ចំណាំ​បន្ទាប់" @@ -8747,647 +7754,3 @@ #, kde-format msgid "Mark not set: %1" msgstr "សញ្ញា​សម្គាល់​មិន​បានកំណត់ ៖ %1" - -#~ msgctxt "short translation please" -#~ msgid "Auto insert asterisk in doxygen comments." -#~ msgstr "បញ្ចូល​សញ្ញា​ផ្កាយ​ស្វ័យប្រវត្តិ​ក្នុង​មតិ​យោបល់ doxygen ។" - -#~ msgid "File Was Deleted on Disk" -#~ msgstr "ឯកសារ​ត្រូវ​បាន​លុប​នៅ​លើ​ថាស" - -#~ msgid "File Changed on Disk" -#~ msgstr "បាន​ផ្លាស់ប្ដូរ​ឯកសារ​នៅ​លើ​ថាស" - -#~ msgid "" -#~ "Do nothing. Next time you focus the file, or try to save it or close it, " -#~ "you will be prompted again." -#~ msgstr "" -#~ "កុំ​ធ្វើ​អ្វី​ទាំង​អស់ ។ នៅ​ពេល​ដែល​អ្នក​ផ្ដោត​លើ​ឯកសារ​នៅ​ពេល​ក្រោយ ឬ​ព្យាយាម​រក្សា​ទុក​វា ឬ​បិទ​វា នោះ​អ្នក​" -#~ "នឹង​ត្រូវ​បាន​សួរ​ម្ដង​ទៀត ។​" - -#~ msgid "Overwrite the disk file with the editor content." -#~ msgstr "សរសេរ​ជាន់​លើ​ឯកសារ​ថាស​ដែល​មាន​មាតិកា​របស់​កម្មវិធី​​កែសម្រួល ។" - -#, fuzzy -#~| msgid "Close Document" -#~ msgid "Close the document." -#~ msgstr "បិទ​ឯកសារ" - -#, fuzzy -#~| msgid "Besides white space changes, the files are identical." -#~ msgid "Ignoring amount of white space changed, the files are identical." -#~ msgstr "ក្រៅពី​ការ​ផ្លាស់ប្ដូរ​ចន្លោះ​មិនឃើញ ឯកសារ​គឺ​ដូចគ្នា​បេះបិទ ។" - -#~ msgid "" -#~ "Ignoring means that you will not be warned again (unless the disk file " -#~ "changes once more): if you save the document, you will overwrite the file " -#~ "on disk; if you do not save then the disk file (if present) is what you " -#~ "have." -#~ msgstr "" -#~ "ការមិន​អើពើ មាន​ន័យ​ថា​អ្នក​នឹង​មិន​ត្រូវ​បាន​ព្រមានម្ដង​ទៀត​ទេ (លុះត្រា​តែ​ឯកសារ​ថាស​ផ្លាស់ប្ដូរ​ម្ដង​" -#~ "ទៀត) ៖ ប្រសិន​បើ​អ្នក​រក្សា​ទុក​ឯកសារ អ្នក​នឹង​សរសេរ​ជាន់​លើ​ឯកសារ​នៅ​លើ​ថាស ។ ប្រសិន​បើ​អ្នក​មិន​រក្សា​" -#~ "ទុក នោះ​ឯកសារ​ថាស (ប្រសិន​បើមាន​) គឺ​ជា​អ្វី​ដែល​អ្នក​មាន ។" - -#~ msgid "You Are on Your Own" -#~ msgstr "អ្នក​ទទួល​ខុសត្រូវ​ដោយ​ខ្លួន​ឯង" - -#~ msgid "Ignore white space changes" -#~ msgstr "មិន​អើពើ​ការ​ផ្លាស់ប្ដូរ​ចន្លោះ​មិនឃើញ" - -#~ msgid "" -#~ "Calculates the difference between the editor contents and the disk file " -#~ "using diff(1)." -#~ msgstr "គណនា​ភាព​ខុសគ្នា​រវាង​មាតិកា​របស់​កម្មវិធី​និពន្ធ និង​ឯកសារ​ថាស​ដោយ​ប្រើ diff(1) ។" - -#~ msgid "KDE Default" -#~ msgstr "KDE លំនាំដើម" - -#, fuzzy -#~| msgid "Vi Input Mode" -#~ msgid "InputMode" -#~ msgstr "របៀប​បញ្ចូល VI" - -#~ msgid "&Next" -#~ msgstr "បន្ទាប់" - -#~ msgid "&Previous" -#~ msgstr "មុន" - -#~ msgid "&Match case" -#~ msgstr "ប្រកាន់​តួអក្សរ​តូចធំ" - -#~ msgid "Case-sensitive searching" -#~ msgstr "ការ​ស្វែងរក​ដោយ​ប្រកាន់​តួ​អក្សរ​តូច​ធំ" - -#~ msgid "Selection &only" -#~ msgstr "តែ​ជម្រើស​ប៉ុណ្ណោះ" - -#~ msgid "Mo&de:" -#~ msgstr "របៀប ៖" - -#~ msgctxt "Language" -#~ msgid "PostScript Printer Description" -#~ msgstr "សេចក្ដី​ពិពណ៌នា​អំពី​ម៉ាស៊ីន​បោះពុម្ព PostScript" - -#, fuzzy -#~| msgid " character" -#~| msgid_plural " characters" -#~ msgctxt "spinbox special value for 1" -#~ msgid "1 character" -#~ msgstr " តួអក្សរ" - -#, fuzzy -#~| msgid " character" -#~| msgid_plural " characters" -#~ msgctxt "suffix for spinbox >1" -#~ msgid " characters" -#~ msgstr " តួអក្សរ" - -#, fuzzy -#~| msgid " character" -#~| msgid_plural " characters" -#~ msgctxt "suffix for spinbox >1 wrap words at (value is at 20 or larger)" -#~ msgid " characters" -#~ msgstr " តួអក្សរ" - -#~ msgid "Search &depth for config file:" -#~ msgstr "ជម្រៅ​ការ​ស្វែងរក​សម្រាប់ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ ៖" - -#, fuzzy -#~| msgid "&Indentation width:" -#~ msgid "Indentation width" -#~ msgstr "ទំហំ​នៃ​ការ​ចូល​បន្ទាត់ ៖" - -#~ msgid "Function 'action' not found in script: %1" -#~ msgstr "រក​មិនឃើញ​មុខងារ 'សកម្មភាព' នៅ​ក្នុង​ស្គ្រីប ៖ %1" - -#~ msgid "Error calling action(%1)" -#~ msgstr "កំហុស​ក្នុងការ​ហៅ​សកម្មភាព (%1)" - -#~ msgid "Errors!" -#~ msgstr "កំហុស !" - -#~ msgid "Error: %1" -#~ msgstr "កំហុស ៖ %1" - -#~ msgctxt "Language" -#~ msgid "Restructured Text" -#~ msgstr "រៀបចំ​អត្ថបទ​ឡើង​វិញ" - -#~ msgid "" -#~ "

    w/wa — write document(s) to disk

    Usage: w[a]" -#~ "

    Writes the current document(s) to disk. It can be called " -#~ "in two ways:
    w — writes the current document to " -#~ "disk
    wa — writes all document to disk.

    If no " -#~ "file name is associated with the document, a file dialog will be shown." -#~ msgstr "" -#~ "

    w/wa — សរសេរ​ឯកសារ​ចំពោះ​ការ​ប្រើ​ប្រាស់​

    ថាស ៖ w[a]

    សរសេរ​ឯកសារ​បច្ចុប្បន្ន​ទៅ​កាន់​ថាស ។ វា​អាច​ត្រូវ​បាន​ហៅ​នៅ​ក្នុង​វិធី​ពីរ ៖
    " -#~ "w — សរសេរ​ឯកសារ​បច្ចុប្បន្ន​ទៅ​កាន់​ថាស
    wa — " -#~ "សរសេរ​ឯកសារ​ទាំងអស់​ទៅ​កាន់​ថាស ។

    ប្រសិនបើ​គ្មាន​ឈ្មោះ​ឯកសារ​ភ្ជាប់​ជាមួយ​ឯកសារ​ទេ​នោះ ប្រអប់​" -#~ "ឯកសារ​នឹង​ត្រូវ​បាន​បង្ហាញ ។

    " - -#~ msgid "Unable to find '%1'" -#~ msgstr "មិនអាច​រក​ឃើញ '%1'" - -#, fuzzy -#~| msgid "Auto Word Completion" -#~ msgid "A&uto Word Completion HI" -#~ msgstr "ការបំពេញ​ពាក្យ​ដោយ​ស្វ័យ​ប្រវត្តិ" - -#~ msgid "&VI Input Mode" -#~ msgstr "របៀប​បញ្ចូល VI" - -#~ msgid "" -#~ "When selected, the vi input mode will be enabled when opening a new view. " -#~ "You can still toggle the vi input mode on/off for a particular view in " -#~ "the Edit menu." -#~ msgstr "" -#~ "នៅ​ពេល​បាន​ជ្រើស របៀប​បញ្ចូល vi នឹង​ត្រូវ​បាន​បើក​នៅពេល​បើកទិដ្ឋភាព​ថ្មី ។អ្នក​អាច​បិទ/បើក​​របៀប​" -#~ "បញ្ចូល vi សម្រាប់​ទិដ្ឋភាព​ជាក់លាក់​នៅ​ក្នុង​ម៉ឺនុយ​កែសម្រួល ។" - -#~ msgid "Use Vi input mode" -#~ msgstr "ប្រើ​របៀប​បញ្ចូល Vi" - -#, fuzzy -#~| msgctxt "Language Section" -#~| msgid "Other" -#~ msgid "Other" -#~ msgstr "ផ្សេងៗ" - -#~ msgctxt "Language" -#~ msgid "C++" -#~ msgstr "C++" - -#~ msgid "" -#~ "Changing the power user mode affects only newly opened / created " -#~ "documents. In KWrite a restart is recommended." -#~ msgstr "" -#~ "ការ​ផ្លាស់ប្ដូរ​របៀប​គឺ​មាន​ឥទ្ធិពល​លើ​តែ​ឯកសារ​ដែល​បាន​បើក/បង្កើត​ថ្មីៗ​ប៉ុណ្ណោះ ។ នៅ​ក្នុង KWrite ការ​" -#~ "ចាប់ផ្ដើម​ឡើងវិញ គឺ​ត្រូវ​បាន​ផ្ដល់​អានុសាសន៍ ។" - -#~ msgid "Power user mode changed" -#~ msgstr "បានផ្លាស់ប្ដូរ​របៀប​អ្នកប្រើ​ជាន់ខ្ពស់" - -#~ msgid "Editor Plugins" -#~ msgstr "កម្មវិធី​ជំនួយ​របស់​កម្មវិធី​​កែសម្រួល" - -#~ msgid "" -#~ "The editor will search the given number of folder levels upwards for a ." -#~ "kateconfig file and load the settings line from it." -#~ msgstr "" -#~ "កម្មវីធី​និពន្ធ​នឹង​ស្វែងរក​ចំនួន​កម្រិត​ថត​ដែល​បាន​ផ្ដល់​ដាក់ឡើងលើ​សម្រាប់​ឯកសារ .kateconfig ហើយ​ផ្ទុក​" -#~ "បន្ទាត់​ការ​កំណត់​ពី​វា ។" - -#~ msgid "Do not use config file" -#~ msgstr "កុំ​ប្រើ​ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ" - -#~ msgid "Disable swap files syncing" -#~ msgstr "បិទ​ការ​ធ្វើ​សមកាលកម្ម​ឯកសារ​ប្ដូរ" - -#~ msgid "Text Area Background" -#~ msgstr "ផ្ទៃ​ខាង​ក្រោយ​ផ្ទៃ​អត្ថបទ" - -#~ msgid "Normal text:" -#~ msgstr "អត្ថបទ​ធម្មតា ៖" - -#~ msgid "Selected text:" -#~ msgstr "អត្ថបទ​ដែល​បាន​ជ្រើស ៖" - -#~ msgid "" -#~ "

    Sets the background color of the selection.

    To set the text " -#~ "color for selected text, use the \"Configure Highlighting\" dialog." -#~ "

    " -#~ msgstr "" -#~ "

    កំណត់​ពណ៌​ផ្ទៃខាងក្រោយ​របស់ជម្រើស ។

    ដើម្បី​កំណត់​ពណ៌​អត្ថបទ​សម្រាប់​អត្ថបទ​ដែល​បាន​ជ្រើស គឺ​ត្រូវ​" -#~ "ប្រើ​ប្រអប់ \"កំណត់​រចនា​សម្ព័ន្ធ​ការ​រំលេច​\" ។

    " - -#~ msgid "Current line:" -#~ msgstr "បន្ទាត់​បច្ចុប្បន្ន ៖" - -#~ msgid "

    Select the marker type you want to change.

    " -#~ msgstr "

    ជ្រើស​ប្រភេទ​សញ្ញា​​សម្គាល់​ដែល​អ្នក​ចង់​ផ្លាស់​ប្ដូរ ។

    " - -#~ msgid "" -#~ "

    Sets the background color of the selected marker type.

    Note: The marker color is displayed lightly because of transparency.

    " -#~ msgstr "" -#~ "

    កំណត់​ពណ៌​ផ្ទៃខាង​ក្រោយ​នៃ​ប្រភេទ​​សញ្ញា​​សម្គាល់​ដែល​បាន​ជ្រើស ។

    ចំណាំ ៖ ពណ៌​សញ្ញា​​" -#~ "សម្គាល់​ត្រូវ​បាន​បង្ហាញ​យ៉ាង​ស្រាល ដោយ​សារ​តែ​ភាព​ថ្លា ។

    " - -#~ msgid "Additional Elements" -#~ msgstr "ធាតុ​បន្ថែម" - -#~ msgid "Left border background:" -#~ msgstr "ផ្ទៃ​ខាង​ក្រោយ​ស៊ុម​ខាង​ឆ្វេង ៖" - -#~ msgid "Line numbers:" -#~ msgstr "លេខ​បន្ទាត់ ៖" - -#~ msgid "" -#~ "

    This color will be used to draw the line numbers (if enabled) and the " -#~ "lines in the code-folding pane.

    " -#~ msgstr "" -#~ "

    ពណ៌​នេះ​នឹង​ត្រូវ​បាន​ប្រើ​ដើម្បី​គូរ​លេខ​បន្ទាត់ (ប្រសិន​បើ​បាន​បើក) ហើយ​បន្ទាត់​ក្នុង​ស្លាប​ព្រិលផ្នត់​កូដ ។" -#~ "

    " - -#~ msgid "Bracket highlight:" -#~ msgstr "បន្លិច​វង់​តង្កៀប ៖" - -#~ msgid "Word wrap markers:" -#~ msgstr "សញ្ញា​​សម្គាល់​ការ​រុំ​ពាក្យ ៖" - -#~ msgid "Tab and space markers:" -#~ msgstr "សញ្ញា​​សម្គាល់​​ថេប និង​ដកឃ្លា ៖" - -#~ msgid "Spelling mistake line:" -#~ msgstr "បន្ទាត់មាន​កំហុស​អក្ខរាវិរុទ្ធ ៖" - -#~ msgid "" -#~ "Changing this mode affects only newly opened / created documents. In " -#~ "KWrite a restart is recommended." -#~ msgstr "" -#~ "ការ​ផ្លាស់ប្ដូរ​របៀប​គឺ​មាន​ឥទ្ធិពល​លើ​តែ​ឯកសារ​ដែល​បាន​បើក/បង្កើត​ថ្មីៗ​ប៉ុណ្ណោះ ។ នៅ​ក្នុង KWrite ការ​" -#~ "ចាប់ផ្ដើម​ឡើងវិញ គឺ​ត្រូវបាន​ផ្ដល់​អានុសាសន៍" - -#~ msgid "Enable power user mode (KDE 3 mode)" -#~ msgstr "អនុញ្ញាត​របៀប​អ្នកប្រើជាន់ខ្ពស់ (របៀប KDE 3)" - -#~ msgid "" -#~ "The file %1 was opened and contained lines longer than the configured " -#~ "Line Length Limit (%2 characters). Those lines were wrapped and the " -#~ "document is set to read-only mode, as saving will modify its content." -#~ msgstr "" -#~ "ឯកសារ %1 ត្រូវ​បាន​បើក ហើយ​មាន​ប្រវែង​ជួរ​អក្សរ​វែង​ពេក (ច្រើន​ជាង %2 តួអក្សរ) ។ ប្រវែង​ជួរ​" -#~ "អក្សរ​ពេក​ត្រូវ​បាន​រុំ ហើយ​ឯកសារ​ត្រូវ​បាន​កំណត់​ទៅ​ជា​របៀប​បាន​តែ​អាន ដោយ​សារ​ការ​រក្សាទុក​នឹង​កែប្រែ​" -#~ "មាតិកា​របស់​វា ។" - -#~ msgid "Edit Snippet Repository %1" -#~ msgstr "កែសម្រួល​ឃ្លាំង Snippet %1" - -#~ msgid "Create New Snippet Repository" -#~ msgstr "បង្កើត​ឃ្លាំង Snippet ថ្មី" - -#~ msgid "leave empty for general purpose snippets" -#~ msgstr "ទុក​ឲ្យ​នៅ​ទទេ សម្រាប់​ snippets ទូទៅ" - -#~ msgid "" -#~ "The name of the repository. Must not be empty or contain forward slashes " -#~ "(/)." -#~ msgstr "ឈ្មោះ​ឃ្លាំង ។ ត្រូវ​តែ​មិន​ទទេ​ ឬ​មាន​សញ្ញា (/) នៅ​មុខ ។" - -#~ msgid "Na&mespace:" -#~ msgstr "ចន្លោះ​ឈ្មោះ ៖" - -#~ msgid "" -#~ "

    If non-empty this will be used as a prefix for all snippets in this " -#~ "repository during code completion.

    \n" -#~ "

    Note: No spaces allowed.

    " -#~ msgstr "" -#~ "

    ប្រសិនបើ​​មិន​ទទេ វា​នឹង​ត្រូវ​បាន​ប្រើ​ជា​បុព្វបទ​សម្រាប់ snippets ទាំងអស់​នៅ​ក្នុង​ឃ្លាំ​នេះ អំឡុង​ពេល​​​" -#~ "បញ្ចប់​កូដ ។

    \n" -#~ "

    ចំណាំ ៖ គ្មាន​ចន្លោះ​មិន​ឃើញ​ត្រូវ​បាន​អនុញ្ញាត​ឡើយ ។

    " - -#~ msgid "&License:" -#~ msgstr "អាជ្ញាបណ្ណ ៖" - -#~ msgid "&Authors:" -#~ msgstr "ប្រភព ៖" - -#~ msgid "&File types:" -#~ msgstr "ប្រភេទ​​ឯកសារ ៖" - -#~ msgid "Edit Snippet %1 in %2" -#~ msgstr "កែសម្រួល Snippet %1 នៅ​ក្នុង %2" - -#~ msgid "Create New Snippet in Repository %1" -#~ msgstr "បង្កើត​ Snippet ថ្មី​នៅ​ក្នុង​ឃ្លាំង %1" - -#~ msgid "" -#~ "The snippet contains unsaved changes. Do you want to continue and lose " -#~ "all changes?" -#~ msgstr "" -#~ "snippet មាន​ការ​ផ្លាស់​ប្ដូរ​ដែល​មិន​បាន​រក្សាទុក ។ តើ​អ្នក​ចង់​បន្ត​ ហើយ​បោះបង់​ការ​ផ្លាស់​ប្ដូរ​ទាំងអស់​" -#~ "ឬ ?" - -#~ msgid "Warning - Unsaved Changes" -#~ msgstr "ការ​ព្រមាន ការ​ផ្លាស់ប្ដូរ​ដែល​មិន​បាន​រក្សាទុក" - -#~ msgid "" -#~ "

    The name will also be used as the identifier during code completion.\n" -#~ "

    Note: No spaces allowed.

    " -#~ msgstr "" -#~ "

    ឈ្មោះ​នឹង​​ត្រូវ​បាន​ប្រើ​ជា​ឧបករណ៍​សម្គាល់ អំឡុង​ពេល​បញ្ចប់​កូដ ។

    \n" -#~ "

    សម្គាល់ ៖ គ្មាន​ចន្លោះ​មិន​ឃើញ​ត្រូវ​បាន​​ដាក់​​ឡើយ ។

    " - -#~ msgid "Display &Prefix:" -#~ msgstr "បង្ហាញ​បុព្វបទ ៖" - -#~ msgid "The display prefix will be shown during code completion." -#~ msgstr "បុព្វបទ​ការ​បង្ហាញ​នឹង​ត្រូវ​បាន​បង្ហាញ អំឡុង​ពេល​បញ្ចប់​កូដ ។" - -#~ msgid "Display &Arguments:" -#~ msgstr "បង្ហាញ​អគុយម៉ង់ ៖" - -#~ msgid "The arguments will be shown during code completion." -#~ msgstr "អាគុយម៉ង់​នឹង​ត្រូវ​បាន​បង្ហាញ​អំឡុង​ពេល​បញ្ចប់​កូដ ។" - -#~ msgid "Display P&ostfix:" -#~ msgstr "បង្ហាញ​បច្ច័យ ៖" - -#~ msgid "The postfix will be shown during code completion." -#~ msgstr "បច្ច័យ​នឹង​ត្រូវ​បាន​បង្ហាញ​ អំឡុង​ពេល​បញ្ចប់​កូដ ។" - -#~ msgid "Shortcut:" -#~ msgstr "ផ្លូវកាត់ ៖" - -#~ msgid "&Snippet" -#~ msgstr "&Snippet" - -#~ msgid "S&cripts" -#~ msgstr "ស្គ្រីប" - -#~ msgctxt "Autogenerated repository name for a programming language" -#~ msgid "%1 snippets" -#~ msgstr "%1 snippets" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "insert snippet %1" -#~ msgstr "បញ្ចូល snippet %1" - -#~ msgid "Snippets" -#~ msgstr "Snippets" - -#, fuzzy -#~| msgid "" -#~ msgid "" -#~ msgstr "" - -#~ msgid "" -#~ "You have edited a data file not located in your personal data directory; " -#~ "as such, a renamed clone of the original data file has been created " -#~ "within your personal data directory." -#~ msgstr "" -#~ "អ្នក​បាន​កែសម្រួល​ឯកសារ​ទិន្នន័យ​ដែល​មិន​មាន​ទីតាំង​នៅ​ក្នុង​ឃ្លាំង​ទិន្នន័យ​ផ្ទាល់​ខ្លួន​របស់​អ្នក ដូច​ជា ក្លូន​" -#~ "ឯកសារ​ទិន្នន័យ​ដើម​ដែល​បាន​ប្ដូរ​ឈ្មោះ​ត្រូវ​បាន​បង្កើត​នៅ​​ក្នុង​ថត​ទិន្នន័យ​ផ្ទាល់ខ្លួន ។" - -#~ msgid "Output file '%1' could not be opened for writing" -#~ msgstr "មិន​អាច​បើក​ឯកសារ​​លទ្ធផល '%1' សម្រាប់​សរសេរ​បាន​ទេ" - -#, fuzzy -#~| msgid "Cannot open snippet repository %1." -#~ msgid "Cannot open snippet repository %1." -#~ msgstr "មិន​អាច​បើក​ឃ្លាំង snippet %1 បាន​ទេ ។" - -#, fuzzy -#~| msgid "Invalid XML snippet file: %1" -#~ msgid "Invalid XML snippet file: %1" -#~ msgstr "ឯកសារ XML snippet មិន​ត្រឹមត្រូវ ៖ %1" - -#~ msgid "" -#~ "Repository is disabled, the contained snippets will not be shown during " -#~ "code-completion." -#~ msgstr "ឃ្លាំង​ត្រូវ​បាន​បិទ snippets ដែល​មាន​នឹង​មិន​ត្រូវ​បាន​បង្ហាញ អំឡុង​ពេល​បញ្ចប់​កូដ​ឡើយ ។" - -#~ msgid "Applies to all filetypes" -#~ msgstr "អនុវត្ត​​ចំពោះ​ប្រភេទ​ឯកសារ​ទាំងអស់" - -#~ msgid "Applies to the following filetypes: %1" -#~ msgstr "អនុវត្ត​ចំពោះ​ប្រភេទ​ឯកសារ​ដូច​ខាងក្រោម ៖ %1" - -#~ msgid "Add Repository" -#~ msgstr "បន្ថែម​​​ឃ្លាំង" - -#~ msgid "Edit Repository" -#~ msgstr "កែសម្រួល​​ឃ្លាំង" - -#~ msgid "Remove Repository" -#~ msgstr "យក​ឃ្លាំង​ចេញ" - -#~ msgid "Publish Repository" -#~ msgstr "បោះពុម្ព​ឃ្លាំង" - -#~ msgid "Add Snippet" -#~ msgstr "បន្ថែម Snippet" - -#~ msgid "Edit Snippet" -#~ msgstr "កែសម្រួល Snippet" - -#~ msgid "Remove Snippet" -#~ msgstr "យក Snippet ចេញ" - -#~ msgid "Get New Snippets" -#~ msgstr "ទទួល​យក Snippets ថ្មី" - -#~ msgid "Repository: %1" -#~ msgstr "ឃ្លាំង ៖ %1" - -#~ msgid "Do you really want to delete the snippet \"%1\"?" -#~ msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប \"%1\" ឬ ?" - -#~ msgid "" -#~ "Do you really want to delete the repository \"%1\" with all its snippets?" -#~ msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​ថត \"%1\" ជាមួយ snippets របស់​វា​ទាំងអស់​ឬ ?" - -#~ msgid "Define filter here" -#~ msgstr "កំណត់​តម្រង​នៅ​ទី​នេះ" - -#~ msgid "Filter..." -#~ msgstr "តម្រង..." - -#~ msgid "Extensions Manager" -#~ msgstr "កម្មវិធី​​គ្រប់គ្រង​ផ្នែក​បន្ថែម" - -#~ msgid "Create Snippet" -#~ msgstr "បង្កើត Snippet" - -#~ msgid "Snippets..." -#~ msgstr "Snippets..." - -#~ msgid "OVR" -#~ msgstr "លើ" - -#~ msgid "INS" -#~ msgstr "បញ្ចូល" - -#~ msgid "Move To..." -#~ msgstr "ផ្លាស់ទី​ទៅកាន់..." - -#~ msgid "Move Left" -#~ msgstr "ផ្លាស់​ទី​ទៅ​ឆ្វេង" - -#~ msgid "Move Right" -#~ msgstr "ផ្លាស់ទី​ទៅ​ស្ដាំ" - -#~ msgid "Move Up" -#~ msgstr "ផ្លាស់ទី​​ឡើងលើ" - -#~ msgid "Move Down" -#~ msgstr "ផ្លាស់ទី​ចុះក្រោម" - -#, fuzzy -#~| msgid "Error: can't open utils.js" -#~ msgid "Error: cannot open utils.js" -#~ msgstr "កំហុស ៖ មិន​អាច​បើក utils.js" - -#~ msgid "Syntax Error: Parse error" -#~ msgstr "កំហុស​វាក្យសម្ពន្ធ ៖ កំហុស​ញែក" - -#~ msgid "Error: There are bad defined functions" -#~ msgstr "កំហុស ៖ មាន​អនុគមន៍​ដែល​បាន​កំណត់​មិន​ត្រឹមត្រូវ" - -#~ msgid "Execute" -#~ msgstr "​ប្រតិបត្តិ" - -#~ msgid "There's no code to execute" -#~ msgstr "មិន​មាន​កូដ​ដើម្បី​ប្រតិបត្តិ​ឡើយ" - -#~ msgid "Show the JavaScript Console" -#~ msgstr "បង្ហាញ​កុងសូល JavaScript" - -#~ msgid "Show/hide the JavaScript Console on the bottom of the view." -#~ msgstr "បង្ហាញ​/​លាក់​កុងសូល JavaScript នៅ​ខាងក្រោម​នៃ​ទិដ្ឋភាព ។​" - -#, fuzzy -#~| msgid "Always On" -#~ msgid "Always on" -#~ msgstr "បើក​ជានិច្ច" - -#~ msgid "Sorry, but Kate is not able to replace newlines, yet" -#~ msgstr "សូម​អភ័យទោស Kate មិនអាច​ជំនួស​បន្ទាត់​ថ្មីបាន​នៅឡើយទេ" - -#, fuzzy -#~| msgid "Print the current document." -#~ msgid "Modify the current snippet" -#~ msgstr "បោះពុម្ព​ឯកសារ​បច្ចុប្បន្ន ។" - -#, fuzzy -#~| msgid "Create New Snippet Repository" -#~ msgid "Create a new repository file" -#~ msgstr "បង្កើត​ឃ្លាំង Snippet ថ្មី" - -#, fuzzy -#~| msgid "Create Snippet" -#~ msgid "Kate Snippets" -#~ msgstr "បង្កើត Snippet" - -#, fuzzy -#~| msgid "" -#~| "You have edited a data file not located in your personal data directory; " -#~| "as such, a renamed clone of the original data file has been created " -#~| "within your personal data directory." -#~ msgid "" -#~ "You have edited a data file not located in your personal data directory, " -#~ "but a suitable filename could not be generated for storing a clone of the " -#~ "file within your personal data directory." -#~ msgstr "" -#~ "អ្នក​បាន​កែសម្រួល​ឯកសារ​ទិន្នន័យ​ដែល​មិន​មាន​ទីតាំង​នៅ​ក្នុង​ឃ្លាំង​ទិន្នន័យ​ផ្ទាល់​ខ្លួន​របស់​អ្នក ដូច​ជា ក្លូន​" -#~ "ឯកសារ​ទិន្នន័យ​ដើម​ដែល​បាន​ប្ដូរ​ឈ្មោះ​ត្រូវ​បាន​បង្កើត​នៅ​​ក្នុង​ថត​ទិន្នន័យ​ផ្ទាល់ខ្លួន ។" - -#, fuzzy -#~| msgid "Get New Snippets" -#~ msgid "New Snippet" -#~ msgstr "ទទួល​យក Snippets ថ្មី" - -#, fuzzy -#~| msgid "&File types:" -#~ msgid "all file types" -#~ msgstr "ប្រភេទ​​ឯកសារ ៖" - -#, fuzzy -#~| msgid "" -#~| "Do you really want to delete the repository \"%1\" with all its snippets?" -#~ msgid "" -#~ "Do you really want to delete the file '%1' from the repository? This " -#~ "action is irreversible." -#~ msgstr "តើ​អ្នក​ប្រាកដ​ជា​ចង់​លុប​ថត \"%1\" ជាមួយ snippets របស់​វា​ទាំងអស់​ឬ ?" - -#, fuzzy -#~| msgid "Invalid XML snippet file: %1" -#~ msgid "Deleting snippet file" -#~ msgstr "ឯកសារ XML snippet មិន​ត្រឹមត្រូវ ៖ %1" - -#, fuzzy -#~| msgid "Name unspecified" -#~ msgid "No file specified" -#~ msgstr "ឈ្មោះ​ដែល​មិន​បាន​បញ្ជាក់​" - -#, fuzzy -#~| msgid "Output file '%1' could not be opened for writing" -#~ msgid "File could not be copied to repository" -#~ msgstr "មិន​អាច​បើក​ឯកសារ​​លទ្ធផល '%1' សម្រាប់​សរសេរ​បាន​ទេ" - -#, fuzzy -#~| msgid "Edit Snippet Repository %1" -#~ msgid "Snippet Repository:" -#~ msgstr "កែសម្រួល​ឃ្លាំង Snippet %1" - -#, fuzzy -#~| msgid "Snippets..." -#~ msgid "New Snippet File..." -#~ msgstr "Snippets..." - -#, fuzzy -#~| msgid "Get New Snippets" -#~ msgid "Get New Snippets..." -#~ msgstr "ទទួល​យក Snippets ថ្មី" - -#, fuzzy -#~| msgid "Invalid XML snippet file: %1" -#~ msgid "listing by snippet file" -#~ msgstr "ឯកសារ XML snippet មិន​ត្រឹមត្រូវ ៖ %1" - -#, fuzzy -#~| msgid "Create Snippet" -#~ msgid "Kate Part Snippets" -#~ msgstr "បង្កើត Snippet" - -#~ msgid "" -#~ "By default, an extra status bar will be used when the Vi input mode is " -#~ "enabled. This status bar shows commands while they are being typed and " -#~ "messages/errors produced by Vi commands.\n" -#~ "\n" -#~ "Checking this options will hide this extra status line." -#~ msgstr "" -#~ "តាម​លំនាំ​ដើម របារ​ស្ថានភាព​បន្ថែម​នឹង​ត្រូវ​បាន​ប្រើ​នៅពេល​របៀប​បញ្ចូល Vi ត្រូវ​បាន​អនុញ្ញាត ។ របារ​" -#~ "ស្ថានភាព​បង្ហាញ​ពាក្យ​បញ្ជ​ខណៈពេល​ពួកវា​កំពុង​ត្រូវ​បាន​វាយ​បញ្ចូល និង​សារ/កំហុស​បាន​បង្កើត​ដោយ​ពាក្យ​" -#~ "បញ្ជា Vi ។\n" -#~ "\n" -#~ "គូស​ធីកជម្រើស​នេះ​នឹង​លាក់​បន្ទាត់​ស្ថានភាព​បន្ថែម​នេះ ។" - -#~ msgid "Hide the Vi mode status bar" -#~ msgstr "លាក់​របារ​ស្ថានភាព​របៀប Vi" - -#~ msgid "&Keep highlighting" -#~ msgstr "រក្សា​ទុក​ការ​រំលេច" - -#~ msgid "Keep search and replace highlighting marks" -#~ msgstr "រក្សាទុក​ការ​ស្វែងរក និង​ចំនួស​សញ្ញា​សម្គាល់​ការ​រំលច" - -#~ msgid "R/O" -#~ msgstr "R/O" - -#~ msgid "Close message (Escape)" -#~ msgstr "បិទ​​សារ (Escape)" - -#~ msgid "Unfold All Nodes" -#~ msgstr "ត្រដាង​ថ្នាំង​ទាំងអស់" - -#~ msgid "Fold Multiline Comments" -#~ msgstr "វេញ​មតិ​យោបល់​ច្រើន​ជួរ" - -#~ msgid "Fold Nodes in Level %1" -#~ msgstr "វេញ​ថ្នាំង​ក្នុង​កម្រិត %1" - -#~ msgid "Unfold Nodes in Level %1" -#~ msgstr "ត្រដាង​ថ្នាំង​ក្នុង​កម្រិត %1" - -#~ msgid "Show &folding markers (if available)" -#~ msgstr "បង្ហាញសញ្ញា​​សម្គាល់​ផ្នត់ (​ប្រសិន​បើ​មាន)" - -#~ msgid "Plugins" -#~ msgstr "កម្មវិធី​ជំនួយ" diff -Nru ktexteditor-5.28.0/po/ko/ktexteditor5.po ktexteditor-5.31.0/po/ko/ktexteditor5.po --- ktexteditor-5.28.0/po/ko/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ko/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -5,14 +5,14 @@ # KIM KyungHeon , 2001, 2002, 2003, 2004. # Shinjo Park , 2007, 2008, 2009, 2010. # Shinjo Park , 2011, 2012, 2013, 2014, 2015. -# Shinjo Park , 2015, 2016. +# Shinjo Park , 2015, 2016, 2017. # msgid "" msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-02-14 15:19+0100\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-22 19:43+0100\n" "Last-Translator: Shinjo Park \n" "Language-Team: Korean \n" "Language: ko\n" @@ -23,289 +23,345 @@ "X-Generator: Lokalize 2.0\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "코드 완성 설정" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "항상" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "인자-힌트" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "가장 좋은 일치" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "네임스페이스" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "클래스" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "구조체" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "공용체" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "함수" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "변수" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "열거형" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "접두사" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "아이콘" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "범위" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "이름" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "인자" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "접미사" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "공개" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "보호됨" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "개인적" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "정적" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "상수" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "네임스페이스" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "클래스" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "구조체" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "공용체" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "함수" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "변수" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "열거형" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "템플릿" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "가상" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "재정의" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "인라인" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "친구" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "시그널" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "슬롯" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "로컬 범위" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "네임스페이스 범위" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "전역 범위" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "알 수 없는 속성" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "언어 키워드" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "자동 단어 완성" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "셸 완성" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "위에 있는 단어 다시 사용하기" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "아래에 있는 단어 다시 사용하기" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "파일(&F)" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "편집(&E)" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "파생형 찾기" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "이동" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "보기(&V)" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "워드랩" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "경계선" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "코드 접기(&C)" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "도구(&T)" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "단어 완성" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "맞춤법 검사" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "설정(&S)" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "주 도구 모음" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "이 옵션을 선택하면 모든 새 보기에 접기 마커를 나타냅니다." #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "접기 마커 표시(&F)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy -#| msgid "" -#| "

    If this option is checked, every new view will show marks on the " -#| "vertical scrollbar.

    These marks will show bookmarks, for instance." +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." msgstr "" -"

    이 옵션을 선택하면 새 보기를 만들 때마다 수직 스크롤바에 마커를 표시합니" -"다.

    이 마커들은 북마크 등을 표시합니다.

    " +"이 옵션을 선택하면 접은 영역 위를 지나다닐 때 팝업으로 접힌 텍스트를 미리 봅" +"니다." #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy -#| msgid "Show print preview of current document" +#, kde-format msgid "Show preview of folded code" -msgstr "현재 문서의 인쇄 모양 미리 보기" +msgstr "접은 코드 미리 보기" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -316,11 +372,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "아이콘 경계 보이기(&I)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -328,11 +386,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "줄 번호 보이기(&L)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -340,11 +400,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "줄 수정 표시자 표시" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

    If this option is checked, every new view will show marks on the vertical " "scrollbar.

    These marks will show bookmarks, for instance.

    " @@ -354,30 +416,29 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "스크롤 바 마크 보이기(&S)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy -#| msgid "" -#| "

    If this option is checked, every new view will show marks on the " -#| "vertical scrollbar.

    These marks will show bookmarks, for instance." +#, kde-format msgid "" "

    If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

    " msgstr "" -"

    이 옵션을 선택하면 새 보기를 만들 때마다 수직 스크롤바에 마커를 표시합니" -"다.

    이 마커들은 북마크 등을 표시합니다.

    " +"

    이 옵션을 선택하면 수직 스크롤바 위를 지나다닐 때 텍스트를 미리 봅니다." #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" -msgstr "" +msgstr "스크롤바에서 텍스트 미리 보기(&P)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -385,11 +446,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "스크롤 바 미니맵 보이기" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -399,51 +462,56 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "전체 문서 맵 생성" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy -#| msgid "Minimap Width" -msgid "Minim&ap Width" -msgstr "미니맵 너비" +#, kde-format +msgid "Minim&ap Width:" +msgstr "미니맵 너비(&A):" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 -#, fuzzy -#| msgid "Scrollbars visibility:" +#, kde-format msgid "Scro&llbars visibility:" -msgstr "스크롤바 표시:" +msgstr "스크롤바 표시(&L):" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "항상 켬" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "필요할 때 보이기" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "항상 끄기" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "책갈피를 책갈피 메뉴에 정렬할 순서를 선택하십시오." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "책갈피 메뉴 정렬" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -451,59 +519,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy -#| msgid "By c&reation" +#, kde-format msgid "B&y creation" -msgstr "생성 시점 순으로(&R)" +msgstr "생성 시점 순으로(&Y)" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "책갈피는 놓여 있는 줄 순으로 정렬될 것입니다." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy -#| msgid "By &position" +#, kde-format msgid "By posi&tion" -msgstr "위치 순으로(&P)" +msgstr "위치 순으로(&T)" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "명령" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "설명" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "항목 편집..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "항목 삭제" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "항목 추가..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "추가 메모" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    이 아이콘은 메뉴와 도구 모음에 나타납니다.

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "설명(&D):" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "분류(&C):" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "일반" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "자동 완성 사용하기(&A)" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "자동 단어 완성(&U)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "자동 완성할 최소 단어 길이:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "자동 완성 항목을 목록에서 선택했을 때 이전 단어의 뒷 부분 삭제" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "완료 시 뒷부분 삭제" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "키워드 완성(&K)" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -595,31 +684,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "정렬" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "가나다순" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "가나다 역순" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "대소문자 구분" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "상속 깊이" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "그룹 순서 (그룹할 방법을 선택하면 설정 가능):" @@ -628,6 +723,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -636,121 +732,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "거르기" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "문맥에 일치하는 항목만 표시" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "다음 속성을 갖는 자동 완성 숨김:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "최대 상속 깊이:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "무한" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "그룹" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "그룹 방법" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "스코프 (지역, 네임스페이스, 전역)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "스코프 (예. 클래스별)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "접근자 (public 등)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "항목 (function 등)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "접근자 그룹 속성" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "그룹에 const 포함하기" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "그룹에 static 포함하기" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "그룹에 signal과 slot 포함하기" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "항목 그룹 속성" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "그룹에 템플릿 포함하기" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "열 합치기" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "열" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "합쳐짐" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "보임" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "정적 워드랩" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

    Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

    This option does " @@ -766,12 +886,14 @@ "설정 페이지의 보기 기본값에서 동적 워드랩을 활성화하십시오.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "정적 워드랩 사용하기(&W)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -782,17 +904,20 @@ "를 그립니다.

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "정적 워드랩 마커 보이기 (사용 가능하다면)(&P)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "워드랩 지점(&P):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -801,93 +926,111 @@ "겼을 때 자동으로 새 줄을 시작합니다." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "입력 모드" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" -msgstr "기본 입력 모드" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" +msgstr "기본 입력 모드:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "자동 괄호" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "자동 괄호 사용하기" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "복사하고 붙여넣기" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "선택 영역이 없으면 현재 줄 복사/잘라내기" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "파일 형식(&F):" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "변경하려고 하는 파일 형식을 선택하십시오." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "새 파일 형식을 만듭니다." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "새로 만들기(&N)" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "현재 파일 형식을 삭제합니다." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "삭제(&D)" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "속성" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "파일 형식의 이름은 해당하는 메뉴 항목의 텍스트가 됩니다." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "구역(&S):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "메뉴에서 파일 형식을 정리하는 데 사용할 섹션 이름입니다." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "변수(&V):" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -901,21 +1044,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "구문 강조(&H):" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "들여쓰기 모드(&I):" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "파일 확장자(&X):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -927,11 +1074,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME 형식(&T):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -943,16 +1092,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "MIME 형식을 쉽게 선택할 수 있는 마법사를 엽니다." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "우선 순위(&R):" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -962,16 +1114,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "구문 강조 파일 다운로드..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "기본 들여쓰기 모드:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -984,36 +1139,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "들여쓸 방법" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "탭 문자(&T)" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "공백 문자(&S)" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "들여쓰기 너비(&I):" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "탭 문자와 공백 문자(&A)" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "탭 간격(&D):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1026,11 +1188,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "들여쓰기 옵션" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1040,11 +1204,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "빈 공간 남기기(&K)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1054,16 +1220,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "클립보드에서 붙여 넣은 코드의 들여쓰기 조정하기(&P)" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "들여쓰기 동작" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1074,11 +1243,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "줄 처음 빈 공간에서 Backspace 키를 눌렀을 때 들여쓰기(&B)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

    Tab " -#~ "key action (if no selection exists) Tab to " -#~ "align the current line in the current code block like in emacs, make " -#~ "Tab a shortcut to the action Align.\">More ...

    " - -#~ msgid "Overwrite" -#~ msgstr "अधिलेखन गर्नुहोस्" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tab " -#~ "key action (if no selection exists) Tab to " -#~ "align the current line in the current code block like in emacs, make " -#~ "Tab a shortcut to the action Align.\">More ...

    " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "क्षेत्र" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "रङ" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "रङ" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "सामान्य रङ..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "सामान्य रङ..." - -#~ msgid "Template Background" -#~ msgstr "टेम्प्लेट पृष्ठभूमि" - -#~ msgid "Collapse One Local Level" -#~ msgstr "एक स्थानीय स्तर संक्षिप्त गर्नुहोस्" - -#~ msgid "Expand One Local Level" -#~ msgstr "एउटा स्थानीय स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "माथिल्लो स्तर विस्तार गर्नुहोस्" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "माथिल्लो स्तर संक्षिप्त गर्नुहोस्" - -#, fuzzy -#~| msgid "Automatic Completion Popup" -#~ msgid "&Auto completion enabled" -#~ msgstr "स्वचालित समाप्ति पप अप" - -#~ msgid "Form" -#~ msgstr "रुप" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "केडीई पाठ सम्पादक अवयव फेला पार्न सक्ने छैन;\n" -#~ "कृपया तपाईँको केडीई स्थापना जाँच गर्नुहोस् ।" - -#~ msgid "Use this to close the current document" -#~ msgstr "हालको कागजात बन्द गर्न यो प्रयोग गर्नुहोस्" - -#~ msgid "Use this command to create a new document" -#~ msgstr "नयाँ कागजात सिर्जना गर्न यो आदेश प्रयोग गर्नुहोस्" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "सम्पादनका लागि अवस्थित कागजात खोल्न यो आदेश प्रयोग गर्नुहोस्" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "तपाईँले हालै खोलेका फाइल सूचीवद्ध गर्दछ, र फेरि सजिलै तिनीहरूलाई खोल्न अनुमति दिन्छ ।" - -#~ msgid "&New Window" -#~ msgstr "नयाँ सञ्झ्याल" - -#~ msgid "Create another view containing the current document" -#~ msgstr "हालको कागजातको समाविष्ट अर्को दृश्य सिर्जना गर्नुहोस्" - -#~ msgid "Choose Editor..." -#~ msgstr "सम्पादक रोज्नुहोस्..." - -#, fuzzy -#~| msgid "Override the system wide setting for the default editing component" -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "पूर्वनिर्धारित सम्पादन अवयवका लागि प्रत्येक प्रणालीको सेटिङ अधिरोहण गर्दछ" - -#~ msgid "Close the current document view" -#~ msgstr "हालको कागजात दृश्य बन्द गर्नुहोस्" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "दृश्यको स्थितिपट्टी देखाउन वा लुकाउन यो आदेश प्रयोग गर्नुहोस्" - -#~ msgid "Sho&w Path" -#~ msgstr "मार्ग देखाउनुहोस्" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "सञ्झ्याल क्याप्सनमा पूर्ण कागजात मार्ग देखाउनुहोस्" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "अनुप्रयोगको कुञ्जीपाटी सर्टकट कार्य कन्फिगर गर्नुहोस् ।" - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "उपकरणपट्टी(हरू) मा कुन वस्तु देखिनु पर्दछ कन्फिगर गर्नुहोस् ।" - -#~ msgid "&About Editor Component" -#~ msgstr "सम्पादक अवयवका बारेमा" - -#~ msgid " INS " -#~ msgstr " INS " - -#, fuzzy -#~| msgid " INS " -#~ msgid " LINE " -#~ msgstr " INS " - -#~ msgid "Open File" -#~ msgstr "फाइल खोल्नुहोस्" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "दिइएको फाइल पढ्न सकिने छैन, हालको प्रयोगकर्ताका लागि यो अवस्थित भएको वा पढ्न " -#~ "योग्य भएको जाँच गर्नुहोस् ।" - -#, fuzzy -#~| msgid " BLK " -#~ msgid " BLOCK " -#~ msgstr " BLK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "stdin को सामाग्री पढ्नुहोस्" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "फाइल खोल्नका लागि सङ्केतन सेट गर्नुहोस्" - -#~ msgid "Navigate to this line" -#~ msgstr "यो लाइनलाई नेभिगेट गर्नुहोस्" - -#~ msgid "Navigate to this column" -#~ msgstr "यो स्तम्भलाई नेभिगेट गर्नुहोस्" - -#~ msgid "KWrite" -#~ msgstr "केडीई राइट" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "केडीई राइट - पाठ सम्पादक" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2004 केट लेखक" - -#~ msgid "Choose Editor Component" -#~ msgstr "सम्पादक अवयव रोज्नुहोस्" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "परीक्षण, basedir र निर्गत डाइरेक्टरी समाविष्ट डाइरेक्टरी ।" - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "स्न्यापसट बिरुद्धको यो टेस्टरनको असफलता तुलना गर्नुहोस् । नविनतम क्याप्चर " -#~ "असफलता वा यदि कुनै पनि अवस्थित नभएमा कुनै पनि होइन पूर्वनिर्धारित बनाउनुहोस् ।" - -#~ msgid "Do not suppress debug output" -#~ msgstr "त्रुटिमोचन निर्गत नरोक्नुहोस्" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "आधार लाइन (चेकिङको साटोमा) फेरि उत्पन्न गर्नुहोस्" - -#~ msgid "Keep output files even on success" -#~ msgstr "सफल भएता पनि निर्गत फाइल राख्नुहोस्" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "यो परीक्षण चालको असफलतालाई असफल स्न्यापसटको रूपमा बचत गर्नुहोस् " - -#~ msgid "Show the window while running tests" -#~ msgstr "परीक्षण रूपमा चलाउँदा सञ्झ्याल देखाउनुहोस्" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "एकल परीक्षण मात्र गर्नुहोस् । बहुबिध विकल्प अनुमति दिइयो ।" - -#~ msgid "Put output in instead of /output" -#~ msgstr "निर्गतलाई /output को साटोमा मा राख्नुहोस्" - -#, fuzzy -#~| msgid "" -#~| "Directory containing tests,basedir and output directories. Only regarded " -#~| "if -b is not specified." -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "tests,basedir र निर्गत डाइरेक्टरी समाविष्ट डाइरेक्टरी । यदि -b निर्दिष्ट नगरेको " -#~ "भएमा मात्र स्वीकार गरिन्छ ।" - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "परीक्षण केस, वा परीक्षण केसको डाइरेक्टरी चलाउनलाई सम्बन्धित मार्ग (-t सँग समतुल्य " -#~ "हुन्छ) ।" - -#~ msgid "TestRegression" -#~ msgstr "परीक्षण प्रतिगमन" - -#~ msgid "Regression tester for kate" -#~ msgstr "केटका लागि प्रतिगमन परिक्षक" - -#~ msgid "Error: " -#~ msgstr "त्रुटि:" - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "यदि यो सक्षम भएमा, सम्पादकले ट्याब चौडाइ अनुसार परिभाषित पछिल्लो ट्याब " -#~ "स्थितिसम्मको खाली स्थानको सङ्ख्या गणना गर्नेछ, र ट्याब क्यारेक्टरको साटोमा खाली स्थान " -#~ "घुसाउँनेछ ।" - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "टेबुलेटरको सट्टामा खाली स्थान घुसाउनुहोस्" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "भिन्नता हेर्नुहोस्" - -#, fuzzy -#~| msgid "Disabled" -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "अक्षम पारिएको" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy it's " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "फाइल %1 लाई UTF-8 सङ्केतनसँग खोलियो, तर अवैध क्यारेक्टर समावेश गरियो ।यो पढ्ने मात्र " -#~ "मोडमा सेट छ, बचत गर्नाले यसको सामाग्री नष्ट गर्न सक्छ । फाइललाई ठीक सङ्केतन रोजेर " -#~ "फेरि खोल्नुहोस् वा यसलाई सम्पादन गर्न सक्षम हुन मेनुमा पढ्ने लेख्ने मोड फेरि सक्षम पार्नुहोस् " -#~ "।" - -#~ msgid "Binary File Opened" -#~ msgstr "बाइनरी फाइल खोलियो" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "विच्छेद UTF-8 फाइल खोलियो" - -#, fuzzy -#~| msgid "General" -#~ msgid "Universal" -#~ msgstr "साधारण" - -#~ msgid "&Word Wrap Document" -#~ msgstr "शब्द बेर्ने कागजात" - -#, fuzzy -#~| msgid "Editing Options" -#~ msgid "&Options" -#~ msgstr "सम्पादन विकल्प" - -#, fuzzy -#~| msgid "&From cursor" -#~ msgid "From &cursor" -#~ msgstr "कर्सरबाट" - -#, fuzzy -#~| msgid "&Highlight all" -#~ msgid "Hi&ghlight all" -#~ msgstr "सबै हाइलाइट गर्नुहोस्" - -#, fuzzy -#~| msgid "(c) 2000-2005 The Kate Authors" -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2004 केट लेखक" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "विकासकर्ता र हाइलाइट विजार्ड" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "फाइल पढ्न अक्षम: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "स्क्रिप्ट %1, आदेश %2 का लागि अनुवादक सुरु गर्न असफल" - -#~ msgid "Success" -#~ msgstr "सफलता" - -#~ msgid "Move Character Right" -#~ msgstr "क्यारेक्टर दायाँतिर सार्नुहोस्" - -#~ msgid "Move Character Left" -#~ msgstr "क्यारेक्टर बायाँतिर सार्नुहोस्" - -#~ msgid "&Overwrite" -#~ msgstr "अधिलेखन गर्नुहोस्" - -#~ msgid "Case Sensitive" -#~ msgstr "केस सम्वेदनशीलता" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "गतिशील शब्द बेराई" - -#, fuzzy -#~| msgid "(c) 2000-2005 The Kate Authors" -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2004 केट लेखक" - -#~ msgid "Line must be at least 1" -#~ msgstr "रेखा कम्तिमा १ हुनु पर्दछ" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "यो कागजातमा त्यति धेरै रेखा छैनन्" - -#, fuzzy -#~| msgid "&Highlight all" -#~ msgid "Highlight all matches" -#~ msgstr "सबै हाइलाइट गर्नुहोस्" - -#, fuzzy -#~| msgid "&From cursor" -#~ msgid "From cursor" -#~ msgstr "कर्सरबाट" - -#, fuzzy -#~| msgid "&Selection only" -#~ msgid "Selection only " -#~ msgstr "चयन मात्र" - -#, fuzzy -#~| msgid "" -#~| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "

    When selected, vi " -#~ "commands will override Kate's built-in commands. For example: Ctrl+R will " -#~ "redo, and override the standard action (showing the search & replace " -#~ "dialog).

    " -#~ msgstr "" -#~ "\n" -#~ "

    Tab " -#~ "key action (if no selection exists) Tab to " -#~ "align the current line in the current code block like in emacs, make " -#~ "Tab a shortcut to the action Align.\">More ...

    " - -#~ msgid "Shortcuts Configuration" -#~ msgstr "सर्टकट कन्फिगरेसन" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "तपाईँले \"%1\" सङ्केतनका लागि ठीक स्रोत सङ्केतन लाइन निर्दिष्ट नगरिकन, ASCII बिहिन " -#~ "रूपमा पाइथोन फाइल बचत गर्ने प्रयास गर्दै हुनुहुन्छ ।" - -#~ msgid "No encoding header" -#~ msgstr "सङ्केतन हेडर हैन" - -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "हिज्जे कार्यक्रम सुरु हुन सकेन । कृपया तपाईँले ठीक हिज्जे कार्यक्रम सेट गर्नुभएको र त्यो " -#~ "तपाईँको मार्गमा उचित तरिकाले कन्फिगर भएको छ भन्नेमा निश्चित हुनुहोस् ।" - -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "हिज्जे कार्यक्रम नष्ट भएको देखिन्छ ।" - -#~ msgid "unknown" -#~ msgstr "अज्ञात" - -#~ msgid "Context '%1': Incorrect number of arguments in '%2'" -#~ msgstr "सन्दर्भ '%1': यस '%2' मा तर्कको गलत नम्बर" - -#~ msgid "Exception, line %1: %2" -#~ msgstr "अपवाद, रेखा %1: %2" - -#~ msgid "Could not access view." -#~ msgstr "दृश्य पहुँच गर्न सकेन ।" - -#~ msgid "Could not access lookup object." -#~ msgstr "लुकअप वस्तु पहुँच गर्न सकेन ।" - -#~ msgid "Exception: Unable to find function '%1': %2" -#~ msgstr "अपवाद: प्रकार्य '%1': %2 फेला पार्न सकेन" - -#~ msgid "Exception in line %1: %2" -#~ msgstr "लाइन %1: %2 मा अपवाद" - -#~ msgid "Sort: None" -#~ msgstr "क्रमबद्ध: कुनै पनि होइन" - -#~ msgid "Filter: None" -#~ msgstr "फिल्टर: कुनै होइन" - -#~ msgid "Setup" -#~ msgstr "सेटअप" - -#~ msgid "&Maximum undo steps:" -#~ msgstr "अधिकतम पूर्वास्थितिमा फर्काउने चरण:" - -#~ msgid "" -#~ "The file %1 was opened with UTF-8 encoding but contained invalid " -#~ "characters. It is set to read-only mode, as saving might destroy it's " -#~ "content. Either reopen the file with the correct encoding chosen or " -#~ "enable the read-write mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "फाइल %1 लाई UTF-8 सङ्केतनसँग खोलियो, तर अवैध क्यारेक्टर समावेश गरियो ।यो पढ्ने मात्र " -#~ "मोडमा सेट छ, बचत गर्नाले यसको सामाग्री नष्ट गर्न सक्छ । फाइललाई ठीक सङ्केतन रोजेर " -#~ "फेरि खोल्नुहोस् वा यसलाई सम्पादन गर्न सक्षम हुन मेनुमा पढ्ने लेख्ने मोड फेरि सक्षम पार्नुहोस् " -#~ "।" - -#~ msgid " Static" -#~ msgstr " स्थीर" - -#~ msgid "Print syntax &guide" -#~ msgstr "वाक्य संरचना मार्गदर्शक मुद्रण गर्नुहोस्" - -#~ msgid "" -#~ "

    Access " -#~ "Grouping properties

    " -#~ msgstr "" -#~ "

    पहुँच " -#~ "वर्गीकरण गुण

    " - -#~ msgid "" -#~ "

    Item " -#~ "Grouping properties

    " -#~ msgstr "" -#~ "

    वस्तु " -#~ "समूहवद्ध गर्ने विशेषता

    " - -#~ msgid "Print &selected text only" -#~ msgstr "चयन गरिएका पाठ मात्र मुद्रण गर्नुहोस्" - -#~ msgid "" -#~ "

    This option is only available if some text is selected in the document." -#~ "

    If available and enabled, only the selected text is printed.

    " -#~ msgstr "" -#~ "

    यदि कागजातमा केही पाठ चयन गरिए मात्र यो विकल्प उपलब्ध हुन्छ ।

    यदि " -#~ "उपलब्ध भएर सक्षम पारिएमा, चयन गरिएका पाठ मात्र मुद्रण हुन्छ ।

    " - -#~ msgid "Print %1" -#~ msgstr "%1 मुद्रण गर्नुहोस्" - -#~ msgid "Nowhere" -#~ msgstr "कतै पनि होइन" - -#~ msgid "Selection, then Current Word" -#~ msgstr "चयन, त्यसपछि हालको शब्द" - -#~ msgid "Current Word Only" -#~ msgstr "हालको शब्द मात्र" - -#~ msgid "Current Word, then Selection" -#~ msgstr "हालको शब्द, त्यसपछि चयन" - -#~ msgid "Smart search t&ext from:" -#~ msgstr "पाठबाट छरितो खोजी:" - -#~ msgid "" -#~ "

    This determines where a view will get the search text from \n" -#~ "(this will be automatically entered into the Find Text dialog): \n" -#~ "

    \n" -#~ "

    \n" -#~ "

      \n" -#~ "
    • Nowhere: Don't guess the search text.\n" -#~ "
    • \n" -#~ "
    • Selection Only: Use the current text selection, \n" -#~ "if available.\n" -#~ "
    • \n" -#~ "
    • Selection, then Current Word: Use the current \n" -#~ "selection if available, otherwise use the current word.\n" -#~ "
    • \n" -#~ "
    • Current Word Only: Use the word that the cursor \n" -#~ "is currently resting on, if available.\n" -#~ "
    • \n" -#~ "
    • Current Word, then Selection: Use the current \n" -#~ "word if available, otherwise use the current selection.\n" -#~ "
    • \n" -#~ "
    \n" -#~ "

    \n" -#~ "

    \n" -#~ "Note that, in all the above modes, if a search string has \n" -#~ "not been or cannot be determined, then the Find Text Dialog \n" -#~ "will fall back to the last search text.\n" -#~ "

    " -#~ msgstr "" -#~ "

    यसले खोजी पाठबाट दृश्य प्राप्त हुने ठाउँ निर्धारण गर्दछ । \n" -#~ "(यो खोजी पाठ संवादमा स्वचालित रूपले प्रविष्टि हुन्छ): \n" -#~ "

    \n" -#~ "

    \n" -#~ "

      \n" -#~ "
    • कतै पनि होइन: खोजी पाठ अनुमान नगर्नुहोस् ।\n" -#~ "
    • \n" -#~ "
    • चयन मात्र: उपलब्ध भएमा, \n" -#~ "हालको पाठ चयन मात्र प्रयोग गर्नुहोस् ।\n" -#~ "
    • \n" -#~ "
    • चयन, त्यसपछि हालको शब्द: उपलब्ध भएमा \n" -#~ "हालको चयन, अन्यथा हालको शब्द प्रयोग गर्नुहोस् ।\n" -#~ "
    • \n" -#~ "
    • हालको शब्द मात्र: उपलब्ध भएमा, कर्सर \n" -#~ "हाल रहिराखेको शब्द प्रयोग गर्नुहोस् ।\n" -#~ "
    • \n" -#~ "
    • हालको शब्द, त्यसपछि चयन: उपलब्ध भएमा, हालको \n" -#~ "शब्द अन्यथा हालको चयन प्रयोग गर्नुहोस् ।\n" -#~ "
    • \n" -#~ "
    \n" -#~ "

    \n" -#~ "

    \n" -#~ "याद गर्नुहोस्, माथि उल्लेखित सबै मोडमा यदि खोजी गरिएको स्ट्रिङ \n" -#~ "नभएमा वा निर्धारण गर्न नसकिएमा, पाठ फेला पार्नुहोस् संवाद \n" -#~ "पहिले खोजीएको पाठलाई देखाउनेछ ।\n" -#~ "

    " - -#~ msgid "NORM" -#~ msgstr "NORM" - -#~ msgid " NORM " -#~ msgstr " NORM " - -#~ msgid "Unspecified Scope" -#~ msgstr "निर्दिष्ट नगरिएको क्षेत्र" - -#~ msgid "Unspecified Access" -#~ msgstr "निर्दिष्ट नगरिएको पहुँच" - -#~ msgid "Unspecified Item Type" -#~ msgstr "निर्दिष्ट नगरिएको वस्तु प्रकार" - -#~ msgid "Word Completion Plugin" -#~ msgstr "शब्द समाप्ति प्लगइन" - -#~ msgid "Configure the Word Completion Plugin" -#~ msgstr "शब्द समाप्ति प्लगइन कन्फिगर गर्नुहोस्" - -#~ msgid "Pop Up Completion List" -#~ msgstr "पप अप समाप्ति सूची" - -#~ msgid "Automatically &show completion list" -#~ msgstr "स्वचालित रूपमा समाप्ति सूची देखाउनुहोस्" - -#~ msgctxt "" -#~ "Translators: This is the first part of two strings which will comprise " -#~ "the sentence 'Show completions when a word is at least N characters'. The " -#~ "first part is on the right side of the N, which is represented by a " -#~ "spinbox widget, followed by the second part: 'characters long'. " -#~ "Characters is a ingeger number between and including 1 and 30. Feel free " -#~ "to leave the second part of the sentence blank if it suits your language " -#~ "better. " -#~ msgid "Show completions &when a word is at least" -#~ msgstr "कम्तिमा N क्यारेक्टर हुँदा समाप्ति देखाउनुहोस्" - -#~ msgctxt "" -#~ "This is the second part of two strings that will comprise the sentence " -#~ "'Show completions when a word is at least N characters'" -#~ msgid "characters long." -#~ msgstr "क्यारेक्टर लम्बाइ ।" - -#~ msgid "" -#~ "Enable the automatic completion list popup as default. The popup can be " -#~ "disabled on a view basis from the 'Tools' menu." -#~ msgstr "" -#~ "पूर्वनिर्धारितको रूपमा स्वचालित समाप्ति सूची पपअप सक्षम पार्नुहोस् । 'उपकरण' मेनुबाट " -#~ "दृश्य आधारमा पप अपलाई अक्षम पार्न सकिन्छ ।" - -#~ msgid "" -#~ "Define the length a word should have before the completion list is " -#~ "displayed." -#~ msgstr "समाप्ति सूची प्रदर्शित हुनुभन्दा पहिले हुनुपर्ने शब्दको लम्बाइ परिभाषित गर्नुहोस् ।" - -#~ msgid "Choose File to Insert" -#~ msgstr "घुसाउनका लागि फाइल रोज्नुहोस्" - -#~ msgid "" -#~ "Failed to load file:\n" -#~ "\n" -#~ msgstr "" -#~ "फाइल लोड गर्न असफल:\n" -#~ "\n" - -#~ msgid "Insert File Error" -#~ msgstr "फाइल त्रुटि घुसाउनुहोस्" - -#~ msgid "" -#~ "

    The file %1 does not exist or is not readable, " -#~ "aborting." -#~ msgstr "" -#~ "

    फाइल %1 अवस्थित छैन वा पढ्न योग्य छैन, परित्याग गर्दैछ ।" - -#~ msgid "

    Unable to open file %1, aborting." -#~ msgstr "

    फाइल %1 खोल्न अक्षम, परित्याग गर्दैछ ।" - -#~ msgid "

    File %1 had no contents." -#~ msgstr "

    फाइल %1मा सामाग्री थिएन ।" - -#~ msgid "Data Tools" -#~ msgstr "डेटा उपकरण" - -#~ msgid "(not available)" -#~ msgstr "(उपलब्ध छैन)" - -#~ msgid "" -#~ "Data tools are only available when text is selected, or when the right " -#~ "mouse button is clicked over a word. If no data tools are offered even " -#~ "when text is selected, you need to install them. Some data tools are part " -#~ "of the KOffice package." -#~ msgstr "" -#~ "पाठ चयन गरिएको बेलामा वा दायाँ माउस बटन शब्द माथि क्लिक गरिएको बेलामा मात्र डेटा " -#~ "उपकरण उपलब्ध हुन्छ । पाठ चयन गरेको बेलामा पनि डेटा उपकरण प्रस्ताव गरिएन भने, तपाईँले " -#~ "तिनीहरूलाई स्थापना गर्नु पर्दछ । केही डेटा उपकरण केडीई अफिस प्याकेजका भाग हुन् ।" - -#~ msgid "AutoBookmarks" -#~ msgstr "स्वचालित पुस्तकचिनोहरू" - -#~ msgid "Configure AutoBookmarks" -#~ msgstr "स्वचालित पुस्तकचिनो कन्फिगर गर्नुहोस्" - -#~ msgid "&Pattern:" -#~ msgstr "बाँन्की:" - -#~ msgid "

    A regular expression. Matching lines will be bookmarked.

    " -#~ msgstr "

    एउटा नियमित अभिव्यक्ति । मिल्दो रेखा पुस्तकचिनो गरिनेछ ।

    " - -#~ msgid "" -#~ "

    If enabled, the pattern matching will be case sensitive, otherwise not." -#~ "

    " -#~ msgstr "

    यदि सक्षम पारिएमा, बाँन्की मिल्दो केस सम्बेदनशिलता हुनेछ, अन्यथा हुदैन ।

    " - -#~ msgid "" -#~ "

    If enabled, the pattern matching will use minimal matching; if you do " -#~ "not know what that is, please read the appendix on regular expressions in " -#~ "the kate manual.

    " -#~ msgstr "" -#~ "

    यदि सक्षम भएमा, मिल्दो बाँन्कीले न्यून जोडा प्रयोग गर्नेछ; तपाईँलाई त्यो के हो भन्ने " -#~ "थाहा नभएमा, कृपया त्यो केट म्यानुअलको नियमित अभिव्यक्तिको परिशिष्ट पढ्नुहोस् ।

    " - -#~ msgid "&File mask:" -#~ msgstr "फाइल मास्क:" - -#~ msgid "" -#~ "

    A list of filename masks, separated by semicolons. This can be used to " -#~ "limit the usage of this entity to files with matching names.

    Use " -#~ "the wizard button to the right of the mimetype entry below to easily fill " -#~ "out both lists.

    " -#~ msgstr "" -#~ "

    अर्धविरामद्वारा विभाजित, फाइलनाम मास्कको सूची । नाम मिल्ने फाइलमा यसतत्वको " -#~ "उपयोग सिमित गर्न यसलाई प्रयोग गर्न सकिन्छ ।

    दुबै सूची सजिलै भर्न माइमप्रकार " -#~ "प्रविष्टि तलको दायाँ विजार्ड बटन प्रयोग गर्नुहोस् ।

    " - -#~ msgid "" -#~ "

    A list of mime types, separated by semicolon. This can be used to " -#~ "limit the usage of this entity to files with matching mime types.

    Use the wizard button on the right to get a list of existing file " -#~ "types to choose from, using it will fill in the file masks as well.

    " -#~ msgstr "" -#~ "

    अर्धविरामद्वारा विभाजित, माइम प्रकारका सूची । माइमप्रकार मिल्ने फाइलमा " -#~ "यसतत्वको उपयोग सिमित गर्न यसलाई प्रयोग गर्न सकिन्छ ।

    यसबाट अवस्थित फाइल " -#~ "प्रकारको सूची रोज्न दायाँको विजार्ड बटन प्रयोग गर्नुहोस्, त्यस्तै यसको प्रयोगले फाइल " -#~ "मास्क भित्र पनि भरिन्छ ।

    " - -#~ msgid "" -#~ "

    Click this button to display a checkable list of mimetypes available " -#~ "on your system. When used, the file masks entry above will be filled in " -#~ "with the corresponding masks.

    " -#~ msgstr "" -#~ "

    तपाईँको प्रणालीमा उपलब्ध माइमप्रकारको जाँचयोग्य सूची प्रर्दशन गर्न यो बटन क्लिक " -#~ "गर्नुहोस् । जब प्रयोग गरिन्छ, माथिको फाइल मास्क प्रविष्टि अनुकूल मास्कले भरिन्छ ।

    " - -#~ msgid "" -#~ "Select the MimeTypes for this pattern.\n" -#~ "Please note that this will automatically edit the associated file " -#~ "extensions as well." -#~ msgstr "" -#~ "यो बाँन्कीका लागि माइम प्रकार चयन गर्नुहोस्\n" -#~ "कृपया याद गर्नुहोस् यसले सम्बन्धित फाइल विस्तार पनि स्वचालित रूपमा सम्पादन गर्नेछ ।" - -#~ msgid "&Patterns" -#~ msgstr "बाँन्की" - -#~ msgid "Pattern" -#~ msgstr "बाँन्की" - -#~ msgid "Mime Types" -#~ msgstr "माइम प्रकार" - -#~ msgid "" -#~ "

    This list shows your configured autobookmark entities. When a document " -#~ "is opened, each entity is used in the following way:

    1. The entity " -#~ "is dismissed, if a mime and/or filename mask is defined, and neither " -#~ "matches the document.
    2. Otherwise each line of the document is " -#~ "tried against the pattern, and a bookmark is set on matching lines.
    3. Use the buttons below to manage your collection of entities.

      " -#~ msgstr "" -#~ "

      यो सूचीले तपाईँले कन्फिगर गरेका स्वत: पुस्तकचिनो प्रविष्टि देखाउँछ । जब एउटा कागजात " -#~ "खोलिन्छ, प्रत्येक तत्व निम्न तरिकाले प्रयोग गरिन्छ:

      1. यदि माइम र/वा फाइलनाम " -#~ "मास्क परिभाषित गरिएमा, र कागजात नमिलेमा, तत्व खारेज गरिन्छ ।
      2. अन्यथा " -#~ "कागजातका प्रत्येक रेखा बाँन्कीको विपरित बनाउने प्रयास गरिन्छ, र एउटा पुस्तकचिनो " -#~ "मिल्दो रेखामा सेट गरिन्छ ।
      3. तपाईँका प्रविष्टि सङ्ग्रहको व्यवस्थापन गर्न " -#~ "तलका बटन क्लिक गर्नुहोस् ।

        " - -#~ msgid "Press this button to create a new autobookmark entity." -#~ msgstr "एउटा नयाँ पुस्तकचिनो तत्व सिर्जना गर्न यो बटन थिच्नुहोस् ।" - -#~ msgid "Press this button to delete the currently selected entity." -#~ msgstr "हाल चयन गरिएको तत्व मेट्न यो बटन थिच्नुहोस् ।" - -#~ msgid "&Edit..." -#~ msgstr "सम्पादन..." - -#~ msgid "Press this button to edit the currently selected entity." -#~ msgstr "हालै चयन गरिएको तत्व सम्पादन गर्न यो बटन थिच्नुहोस् ।" diff -Nru ktexteditor-5.28.0/po/nl/ktexteditor5.po ktexteditor-5.31.0/po/nl/ktexteditor5.po --- ktexteditor-5.28.0/po/nl/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/nl/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -1,13 +1,13 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Freek de Kruijf , 2014, 2015, 2016. +# Freek de Kruijf , 2014, 2015, 2016, 2017. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-16 13:53+0200\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-21 12:51+0100\n" "Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -18,257 +18,316 @@ "X-Generator: Lokalize 1.5\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Code-aanvullen instellen" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Altijd" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Argument-hints" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Beste overeenkomsten" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Naamruimtes" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Klassen" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Structuren" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unies" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Functies" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variabelen" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumeraties" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Voorvoegsel" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Pictogram" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Bereik" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Naam" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumenten" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Publiek" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Beveiligd" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Privé" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statisch" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Constant" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Naamruimte" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Klasse" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struct" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Vereniging" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Functie" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variabele" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumeratie" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Sjabloon" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtueel" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Overschrijven" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Inline" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Vriend" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signaal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Lokaal bereik" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Namespace-bereik" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Globaal bereik" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Onbekende eigenschap" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Sleutelwoorden in taal" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Automatische woordaanvulling" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Shell-aanvulling" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Bovenstaand woord hergebruiken" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Onderstaand woord hergebruiken" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Bestand" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "B&ewerken" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Varianten zoeken" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Ga naar" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Beeld" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Regelafbreking" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Randen" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Code-invouwing" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Hulpmiddelen" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Woordaanvulling" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Spellingcontrole" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "In&stellingen" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Hoofdwerkbalk" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -277,11 +336,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Invouw&markeringen tonen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -291,11 +352,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Voorbeeld van de ingevouwen code tonen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -307,11 +370,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "P&ictogramrand tonen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -321,11 +386,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Rege&lnummering tonen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -335,11 +402,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Markeringen voor wijzigingen in regels tonen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -350,11 +419,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "&Schuifbalkmarkeringen tonen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

        If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

        " @@ -364,11 +435,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "&Voorbeeld van tekst laten zien op de schuifbalk" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -378,11 +451,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Schuifbalk van mini-weergave tonen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -392,36 +467,43 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Het gehele document in mini-weergave tonen" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" -msgstr "Breedte van mini-weerg&ave" +#, kde-format +msgid "Minim&ap Width:" +msgstr "Breedte van mini-weerg&ave:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Zichtbaarheid van schuifba&lken:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Altijd aan" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Indien nodig tonen" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Altijd uit" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -430,11 +512,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Bladwijzermenu sorteren" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -444,11 +528,13 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "Op &aanmaakmoment" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "De bladwijzers zullen geordend worden volgens de regelnummers waarin ze " @@ -456,45 +542,53 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "Op posi&tie" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Commando" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Beschrijving" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Item bewerken..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Item verwijderen" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Item toevoegen..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Verdere notities" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "" "

        Dit pictogram zal worden weergegeven in het menu en in de werkbalk.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "B&eschrijving:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Categorie:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Algemeen" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "&Automatisch aanvullen activeren" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "A&utomatische woordaanvulling" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Minimale woordlengte voor aanvullen:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Verwijder het achterste deel van een vorig woord bij het aangevulde item " @@ -573,16 +679,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Achterste gedeelte bij aanvullen verwijderen" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "Aanvulling van &sleutelwoorden" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -592,31 +701,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Sorteren" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabetisch" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Omgekeerd" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Hoofdlettergevoelig" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Overervingsdiepte" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Sorteren van de groeperingen ( kies een groepenmethode):" @@ -625,6 +740,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -633,121 +749,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filteren" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Alleen in passende context" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Aanvullingen met de volgende attributen verbergen:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Maximale overervingsdiepte:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Oneindig" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Groepering" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Groeperingsmethode" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Bereiktype (lokaal, namespace, globaal)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Bereik (bijv. per klasse)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Toegangstype (publiek etc.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Itemtype (functie etc.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Toegangseigenschappen voor groepering" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Const in groepering invoegen" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Static in groepering invoegen" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Signals en slots in groepering invoegen" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Itemeigenschappen voor groepering" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Sjablonen in groepering invoegen" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Kolommen samenvoegen" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Kolommen" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Samengevoegd" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Getoonde" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Statische regelafbreking" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -766,12 +906,14 @@ "sectie Uiterlijk.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Statische regelafbreking acti&veren" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -783,17 +925,20 @@ "getoond wanneer er een lettertype met vaste breedte gebruikt wordt.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Statische-regelafbrekin&g-markering tonen (indien van toepassing)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Regels a&fbreken op:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -803,72 +948,86 @@ "wordt afgebroken en de editor op een nieuwe regel doorgaat." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Invoermodus" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" msgstr "Standaard invoermodus:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Automatische blokhaakjes" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Automatische vierkante haakje inschakelen" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Knippen en plakken" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Kopieer/knip de huidige regel als er geen selectie is" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Bestandstype:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Selecteer het bestandstype dat u wilt wijzigen." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Maak een nieuw bestandstype aan." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nieuw" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Verwijder het huidige bestandstype." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "Verwij&deren" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Eigenschappen" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -877,21 +1036,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Sectie:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "De sectienaam wordt gebruikt om de bestandstypen in menu's te ordenen." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variabelen:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -906,21 +1069,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "Accent&uering:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Inspringmodus:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Bestandse&xtensies:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -933,11 +1100,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME-bestands&typen:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -949,16 +1118,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Toont een assistent waarmee u gemakkelijk mime-typen kunt selecteren." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "P&rioriteit:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -969,16 +1141,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Accentueerbestanden downloaden..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Standaard inspringmodus:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -992,36 +1167,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Inspringen gebruikt" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulators" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Spaties" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Inspringbreedte:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabulators &en spaties" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Tabbree&dte:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1035,11 +1217,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Inspringeigenschappen" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1050,11 +1234,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Extra spaties be&houden" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1064,16 +1250,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Inspringen van code ge&plakt van het klembord aanpassen" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Inspringacties" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1084,11 +1273,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "&Backspace-toets in eerste witruimte maakt inspringen ongedaan" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        ਡਾਟਾ ਰਿਕਵਰੀ (ਮੱਦਦ)

        ਸਭ ਡਾਟਾ " -#~ "ਰਿਕਵਰ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ। ਸ਼ਾਇਦ ਸਵੈਪ ਫਾਈਲ ਪੂਰੀ ਨਹੀਂ ਹੈ।

        " - -#~ msgid "OK" -#~ msgstr "ਠੀਕ ਹੈ" - -#~ msgid "Overwrite" -#~ msgstr "ਉੱਤੇ ਲਿਖੋ" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        ਡਾਟਾ ਰਿਕਵਰੀ (ਮੱਦਦ)

        ਫਾਈਲ ਠੀਕ ਤਰ੍ਹਾਂ ਬੰਦ ਨਹੀਂ ਸੀ ਕੀਤੀ ਗਈ। ਕੀ ਤੁਸੀਂ ਡਾਟਾ ਰਿਕਵਰ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?

        " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "ਸਕੋਪ" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "ਰੰਗ" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "ਰੰਗ" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "ਸਧਾਰਨ ਰੰਗ(&C)..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "ਸਧਾਰਨ ਰੰਗ(&C)..." - -#~ msgid "Template Background" -#~ msgstr "ਟੈਪਲੇਟ ਬੈਕਗਰਾਊਂਡ" - -#~ msgid "Collapse One Local Level" -#~ msgstr "ਇੱਕ ਲੋਕਲ ਪੱਧਰ ਸਮੇਟੋ" - -#~ msgid "Expand One Local Level" -#~ msgstr "ਇੱਕ ਲੋਕਲ ਪੱਧਰ ਫੈਲਾਓ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਫੈਲਾਉ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "ਉਪਰੀ ਪੱਧਰ ਸਮੇਟੋ" - -#~ msgid "&Auto completion enabled" -#~ msgstr "ਆਟੋ ਮੁਕੰਮਲ ਯੋਗ(&A)" - -#~ msgid "Form" -#~ msgstr "ਫਾਰਮ" - -#~ msgid "Use this to close the current document" -#~ msgstr "ਮੌਜੂਦਾ ਡੌਕੂਮੈਂਟ ਨੂੰ ਬੰਦ ਕਰਨ ਲਈ ਇਹ ਵਰਤੋਂ" - -#~ msgid "Use this command to create a new document" -#~ msgstr "ਇੱਕ ਨਵਾਂ ਡੌਕੂਮੈਂਟ ਬਣਾਉਣ ਲਈ ਇਹ ਕਮਾਂਡ ਵਰਤੋਂ" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "ਇੱਕ ਮੌਜੂਦਾ ਡੌਕੂਮੈਂਟ ਨੂੰ ਸੋਧਣ ਵਾਸਤੇ ਖੋਲ੍ਹਣ ਲਈ ਇਹ ਕਮਾਂਡ ਵਰਤੋਂ" - -#~ msgid "&New Window" -#~ msgstr "ਨਵੀਂ ਵਿੰਡੋ(&N)" - -#~ msgid "Create another view containing the current document" -#~ msgstr "ਮੌਜੂਦਾ ਡੌਕੂਮੈਂਟ ਰੱਖਣ ਵਾਲੀ ਹੋਰ ਝਲਕ ਬਣਾਓ" - -#~ msgid "Choose Editor..." -#~ msgstr "ਐਡੀਟਰ ਚੁਣੋ..." - -#~ msgid "Close the current document view" -#~ msgstr "ਮੌਜੂਦਾ ਡੌਕੂਮੈਂਟ ਝਲਕ ਬੰਦ ਕਰੋ" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "ਝਲਕ ਵਿੱਚ ਹਾਲਤ-ਪੱਟੀ ਵੇਖਣ ਜਾਂ ਓਹਲੇ ਕਰਨ ਲਈ ਇਹ ਕਮਾਂਡ ਵਰਤੋਂ" - -#~ msgid "Sho&w Path" -#~ msgstr "ਮਾਰਗ ਵੇਖੋ(&w)" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "ਵਿੰਡੋ ਸੁਰਖੀ ਵਿੱਚ ਪੂਰਾ ਡੌਕੂਮੈਂਟ ਪਾਥ ਵੇਖੋ" - -#~ msgid "&About Editor Component" -#~ msgstr "ਐਡੀਟਰ ਭਾਗ ਬਾਰੇ(&A)" - -#~ msgid " INS " -#~ msgstr " ਸ਼ਾਮਿਲ " - -#~ msgid " LINE " -#~ msgstr " ਲਾਈਨ" - -#~ msgid "Open File" -#~ msgstr "ਫਾਈਲ ਖੋਲ੍ਹੋ" - -#~ msgid " BLOCK " -#~ msgstr " ਬਲੌਕ " - -#~ msgid "Read the contents of stdin" -#~ msgstr "stdin ਦੀ ਸਮੱਗਰੀ ਪੜ੍ਹੋ" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "ਫਾਈਲ ਖੋਲ੍ਹਣ ਲਈ ਇੰਕੋਡਿੰਗ ਦਿਓ" - -#~ msgid "Navigate to this line" -#~ msgstr "ਇਹ ਲਾਈਨ ਉੱਤੇ ਜਾਓ" - -#~ msgid "Navigate to this column" -#~ msgstr "ਇਹ ਕਾਲਮ ਉੱਤੇ ਜਾਓ" - -#~ msgid "KWrite" -#~ msgstr "ਕੇ-ਰਾਈਟ" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - ਟੈਕਸਟ ਐਡੀਟਰ" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) ੨੦੦੦-੨੦੦੫ ਕੇਟ ਲੇਖਕ" - -#~ msgid "Choose Editor Component" -#~ msgstr "ਐਡੀਟਰ ਭਾਗ ਚੁਣੋ" - -#~ msgid "Show the window while running tests" -#~ msgstr "ਟੈਸਟ ਚਲਾਉਣ ਦੌਰਾਨ ਵਿੰਡੋ ਵੇਖੋ" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "ਕੇਵਲ ਇੱਕ ਹੀ ਟੈਸਟ ਮਨਜ਼ੂਰ ਹੈ। ਕਈ ਚੋਣਾਂ ਮਨਜ਼ੂਰ ਹਨ।" - -#~ msgid "TestRegression" -#~ msgstr "ਟੈਸਟ-ਰੈਗ਼ਰੇਸ਼ਨ" - -#~ msgid "Regression tester for kate" -#~ msgstr "ਕੇਟ ਲਈ ਰੈਗਰੇਸ਼ਨ ਟੈਸਟਰ" - -#~ msgid "Error: " -#~ msgstr "ਗਲਤੀ:" - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "ਸਾਰਣੀ ਦੀ ਬਜਾਏ ਖਾਲੀ ਥਾਂ ਵਰਤੋਂ(&s)" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "ਅੰਤਰ ਵੇਖੋ(&V)" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "ਆਯੋਗ" - -#~ msgid "Binary File Opened" -#~ msgstr "ਬਾਈਨਰੀ ਫਾਈਲ ਖੋਲ੍ਹੀ ਗਈ ਹੈ" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "ਖਰਾਬ UTF-8 ਫਾਈਲ ਖੋਲ੍ਹੀ" - -#~ msgid "Universal" -#~ msgstr "ਯੂਨੀਵਰਸਲ" - -#~ msgid "&Word Wrap Document" -#~ msgstr "ਸ਼ਬਦ ਸਮੇਟਣ ਦਸਤਾਵੇਜ਼(&W)" - -#~ msgid "Modify search behavior" -#~ msgstr "ਖੋਜ ਰਵੱਈਆ ਸੋਧ" - -#~ msgid "&Options" -#~ msgstr "ਚੋਣਾਂ(&O)" - -#~ msgid "From &cursor" -#~ msgstr "ਕਰਸਰ ਤੋਂ(&c)" - -#~ msgid "Hi&ghlight all" -#~ msgstr "ਸਭ ਹਾਈਲਾਈਟ(&g)" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) ੨੦੦੦-੨੦੦੮ ਕੇਟ ਲੇਖਕ" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "ਡਿਵੈਲਪਰ ਅਤੇ ਹਾਈਲਾਈਟ ਸਹਾਇਕ" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "ਫਾਈਲ ਪੜ੍ਹਨ ਲਈ ਅਸਫ਼ਲ: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "ਸਕ੍ਰਿਪਟ %1, ਕਮਾਂਡ %2 ਲਈ ਇੰਟਰਪਰੈਟਰ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "ਇਹ ਕੇਟ ਵਿੱਚ ਮੌਜੂਦਾ ਡੌਕੂਮੈਂਟ ਨੂੰ ਜਾਵਾਸਕ੍ਰਿਪਟ ਵਾਂਗ ਚਲਾਏਗਾ।" - -#~ msgid "Success" -#~ msgstr "ਸਫਲ" - -#~ msgid "Move Character Right" -#~ msgstr "ਅੱਖਰ ਸੱਜੇ ਭੇਜੋ" - -#~ msgid "Move Character Left" -#~ msgstr "ਅੱਖਰ ਖੱਬੇ ਭੇਜੋ" - -#~ msgid "&Overwrite" -#~ msgstr "ਉੱਤੇ ਲਿਖੋ(&O)" diff -Nru ktexteditor-5.28.0/po/pl/ktexteditor5.po ktexteditor-5.31.0/po/pl/ktexteditor5.po --- ktexteditor-5.28.0/po/pl/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/pl/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -11,13 +11,13 @@ # Robert Gomulka , 2006. # Marta Rybczyńska , 2008, 2009, 2010, 2013. # Artur Chłond , 2010. -# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 2015, 2016. +# Łukasz Wojniłowicz , 2011, 2012, 2013, 2014, 2015, 2016, 2017. msgid "" msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-22 07:41+0100\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-22 08:12+0100\n" "Last-Translator: Łukasz Wojniłowicz \n" "Language-Team: Polish \n" "Language: pl\n" @@ -30,257 +30,316 @@ "|| n%100>=20) ? 1 : 2);\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Ustawienia uzupełniania kodu" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Zawsze" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Argumenty-podpowiedzi" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Najlepiej pasujące" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Przestrzenie nazw" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Klasy" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Struktury" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Unie" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funkcje" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Zmienne" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Wyliczenia" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Przedrostek" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Ikona" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Zakres" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nazwa" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumenty" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Przyrostek" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Publiczny" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Chroniony" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Prywatny" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statyczny" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Stała" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Przestrzeń nazw" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Klasa" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struktura" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Unia" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funkcja" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Zmienna" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Wyliczenie" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Szablon" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Wirtualne" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Zastąp" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Wewnętrzny" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Przyjaciel" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Sygnał" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Zakres lokalny" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Zakres przestrzeni nazw" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Zakres globalny" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Nieznana właściwość" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Słowa kluczowe języka" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Samoczynne uzupełnianie słów" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Uzupełnianie słów w powłoce" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Użyj ponownie słowa powyżej" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Użyj ponownie słowa poniżej" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Plik" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Edycja" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Warianty znajdywania" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Przejdź do" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Widok" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Zawijanie słów" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Ramka" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Z&wijanie kodu" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Narzędzia" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Uzupełnianie słów" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Sprawdzanie pisowni" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "U&stawienia" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Główny pasek narzędzi" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -288,11 +347,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Pokaż &znaczniki zwijania" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -302,11 +363,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Pokaż podgląd zwiniętego kodu" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -317,11 +380,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Pokaż pasek &ikon" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -331,11 +396,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Pokaż &numery wierszy" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -345,11 +412,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Pokaż znaczniki zmian w wierszach" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -359,11 +428,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Pokaż znaki pa&ska przewijania" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

        If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

        " @@ -373,11 +444,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Pokaż podgląd tekstu na pasku &przewijania" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -387,11 +460,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Pokaż mini-mapę na pasku przewijania" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -401,47 +476,56 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Zmapuj cały dokument" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" -msgstr "Szerokość minim&apy" +#, kde-format +msgid "Minim&ap Width:" +msgstr "Szerokość minim&apy:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Widoczność pasków &przewijania:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Zawsze włączone" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Pokaż tylko, gdy potrzebne" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Zawsze wyłączone" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "Wybierz sposób porządkowania zakładek w menu Zakładki." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Uszereguj menu zakładek" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -451,11 +535,13 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "Według utwo&rzenia" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Zakładki zostaną uszeregowane według numerów wierszy, przy których są " @@ -463,45 +549,53 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "Według &położenia" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Polecenie" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Opis" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Edytuj wpis..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Usuń wpis" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Dodaj wpis..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Dalsze notatki" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "

        Ta ikona zostanie pokazana w menu i pasku narzędzi.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Opis:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategoria:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Ogólne" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Włącz &auto-uzupełnianie" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Samoczynne &uzupełnianie słów" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Uzupełnianie słów nie krótszych niż:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Usuń końcówkę poprzedniego słowa, gdy wybrano element uzupełniający z listy" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Usuń końcówkę po uzupełnieniu" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "Uzupełnianie słów &kluczowych" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -596,31 +705,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Szeregowanie" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabetyczne" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Odwrócone" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Rozróżniaj wielkość znaków" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Głębokość dziedziczenia" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Kolejność grupowania (wybierz metodę grupowania by ustawić):" @@ -629,6 +744,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -637,121 +753,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtrowanie" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Pasujące tylko odpowiedniego kontekstu" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Ukryj uzupełnienia z następującymi atrybutami:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Maksymalna głębokość dziedziczenia:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Nieskończoność" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Grupowanie" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Sposób grupowania" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Typ zakresu (lokalny, przestrzeni nazw, globalny)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Zakres (np. na klasę)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Typ dostępu (publiczny, itd.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Rodzaj elementu (funkcja, itd.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Właściwości grupowania dostępu" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Uwzględniaj const przy grupowaniu" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Uwzględniaj static przy grupowaniu" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Włączaj sygnały i sloty w grupowanie" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Właściwości grupowania elementu" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Uwzględniaj szablony przy grupowaniu" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Scalanie kolumn" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Kolumny" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Scalone" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Pokazane" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Statyczne zawijanie słów" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -769,12 +909,14 @@ "p>" #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Włącz statyczne za&wijanie słów" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -786,17 +928,20 @@ "wtedy, kiedy używasz czcionki o stałej szerokości.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "&Pokaż znaczniki statycznego zawijania słów (jeśli możliwe)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Zawijaj słowa &przy:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -806,93 +951,111 @@ "nowej linii." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Tryby wprowadzania" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" -msgstr "Domyślny tryb wprowadzania" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" +msgstr "Domyślny tryb wprowadzania:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Auto-nawiasy" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Włącz auto-nawiasy" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Kopiuj i wklej" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Kopiuj/Wytnij bieżący wiersz jeśli brak zaznaczenia" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Rodzaj pliku:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Wybierz rodzaj pliku, który chcesz zmienić." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Utwórz nowy rodzaj pliku." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nowy" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Usuń bieżący rodzaj pliku." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Usuń" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Właściwości" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Nazwą rodzaju pliku będzie tekst odpowiedniego wpisu w menu." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Sekcja:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Nazwa dziale jest używana do uporządkowania typów plików w menu." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "Z&mienne:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -906,21 +1069,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Podświetlanie:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Tryb &wcięć:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "&Rozszerzenia nazw pliku:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -932,11 +1099,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Typy MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -948,16 +1117,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Uruchamia asystenta, który pozwala łatwo wybrać typy MIME." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "P&riorytet:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -968,16 +1140,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Pobierz pliki podświetlania..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Domyślny tryb wcięć:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -990,36 +1165,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Wcięcia tekstu przy użyciu" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulatorów" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "Od&stępów" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "S&zerokość wcięć:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "T&abulatorów i odstępów" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "S&zerokość tabulacji:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1033,11 +1215,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Właściwości wcięć" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1047,11 +1231,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Pozostaw dodat&kowe odstępy" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1061,16 +1247,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Do&pasuj wcięcie kodu wklejonego ze schowka" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Działania wcięć" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1081,11 +1270,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "Klawisz &Backspace usuwa wcięcie złożone z odstępów" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        Data Recovery (Pomoc)

        Nie można przywrócić wszystkich danych. Plik wymiany jest " -#~ "prawdopodobnie niekompletny.

        " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Zastąp" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        Odzyskiwanie danych (Pomoc)

        Plik nie został " -#~ "poprawnie zamknięty. Czy chcesz odzyskać dane?

        " - -#~ msgid "Cancel" -#~ msgstr "Anuluj" - -#~ msgid "Stop" -#~ msgstr "Zatrzymaj" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Kolory" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Kolory" - -#~ msgid "Export HlColors..." -#~ msgstr "Eksport HlColors..." - -#~ msgid "Import HlColors..." -#~ msgstr "Import HlColors..." - -#~ msgid "Template Background" -#~ msgstr "Tło szablonu" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Zwiń jeden poziom lokalny" - -#~ msgid "Expand One Local Level" -#~ msgstr "Rozwiń jeden poziom lokalny" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Zwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Rozwiń szczytowy poziom" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Zwiń szczytowy poziom" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Uzupełnianie wyrazów włączone" - -#~ msgid "Error: " -#~ msgstr "Błąd: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Błąd podczas wywoływania '%1'. Proszę sprawdzić błędy składni." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Jeśli ta opcja jest włączona, edytor wyliczy liczbę spacji do następnej " -#~ "pozycji tabulacji, jak zdefiniowano w szerokości tabulacji, i wstawi " -#~ "odpowiednią liczbę spacji zamiast znaku tabulacji." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Wstaw spacje zam&iast tabulatorów" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Nie można znaleźć komponentu edytora tekstu dla KDE;\n" -#~ "proszę sprawdzić instalację KDE." - -#~ msgid "Use this to close the current document" -#~ msgstr "Użyj do zamknięcia bieżącego dokumentu" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Wciśnij przycisk, by stworzyć nowy dokument" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Użyj polecenia aby otworzyć istniejący plik do edycji" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "To jest lista plików jakie ostatnio zostały otwarte, pozwala je łatwo " -#~ "otworzyć ponownie." - -#~ msgid "&New Window" -#~ msgstr "&Nowe okno" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Utwórz nowy widok zawierający bieżący dokument" - -#~ msgid "Choose Editor..." -#~ msgstr "Wybierz edytora..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Zmienia systemowe ustawienie domyślnego komponentu edycji" - -#~ msgid "Close the current document view" -#~ msgstr "Zamknij bieżący widok dokumentu" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "Użyj polecenia by pokazać lub ukryć pasek stanu widoku" - -#~ msgid "Sho&w Path" -#~ msgstr "Po&każ ścieżkę" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Pokaż całkowitą ścieżkę dokumentu w tytule okna" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Konfiguruj skróty klawiaturowe programu." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Konfiguruj, które elementy powinny pojawić się w paskach narzędzi." - -#~ msgid "&About Editor Component" -#~ msgstr "&O komponencie edytora" - -#~ msgid " INS " -#~ msgstr " WST " - -#~ msgid " LINE " -#~ msgstr " LINIA " - -#~ msgid "Open File" -#~ msgstr "Otwórz plik" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Nie można odczytać pliku, sprawdź czy istnieje lub czy bieżący użytkownik " -#~ "może go odczytać." - -#~ msgid " BLOCK " -#~ msgstr " BLOK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Wczytaj z stdin" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Ustaw kodowanie dla pliku" - -#~ msgid "Navigate to this line" -#~ msgstr "Idź do tej linii" - -#~ msgid "Navigate to this column" -#~ msgstr "Idź do tej kolumny" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - edytor tekstu" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 Autorzy Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "Wybierz komponent edytora" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Katalog zawierający testy, katalogi podstawowy i wyników." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Porównuj porażki tego testu ze zrzutem . Domyślnie porównuj do " -#~ "ostatnich zrzutów porażki lub nie porównuj jeśli takowe nie istnieją." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Pokaż wynik debugowania" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Odtwórz punkt kontrolny (zamiast sprawdzania)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Zachowuj pliki wynikowe także w przypadku sukcesu" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Zapisz porażki tego testu jako zrzut porażki " - -#~ msgid "Show the window while running tests" -#~ msgstr "Pokaż okno podczas testów" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Uruchom tylko pojedynczy test. Możliwe jest wiele opcji." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Umieść wynik w zamiast w /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Uruchom każdy test jako oddzielny proces." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Katalog zawierający testy, katalog bazowy i katalog wyników. Brany pod " -#~ "uwagę tylko jeśli określono -b." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "Względna ścieżka do testu lub katalogu testów (równoważne z -t)." - -#~ msgid "TestRegression" -#~ msgstr "Test regresji" - -#~ msgid "Regression tester for kate" -#~ msgstr "Tester regresji dla Kate" - -#~ msgid "Universal" -#~ msgstr "Uniwersalne" - -#~ msgid "From &cursor" -#~ msgstr "Od &kursora" - -#~ msgid "Hi&ghlight all" -#~ msgstr "&Podświetl wszystko" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Zawiń wyrazy" - -#~ msgid "Add &BOM" -#~ msgstr "Dodaj &BOM" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Wyłączone" - -#~ msgid "Binary File Opened" -#~ msgstr "Otwarto plik binarny" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Otwarto uszkodzony plik UTF-8" - -#~ msgid "&Options" -#~ msgstr "&Opcje" - -#~ msgid "Modify search behavior" -#~ msgstr "Zmień zachowanie wyszukiwania" - -#~ msgid "Success" -#~ msgstr "Sukces" - -#~ msgid "Move Character Right" -#~ msgstr "Przenieś o jeden znak w prawo" - -#~ msgid "Move Character Left" -#~ msgstr "Przenieś o jeden znak w lewo" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 The Kate Authors" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Asystent developera i podświetlania" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Nie mogę odczytać pliku: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Nie można uruchomić interpretera dla skryptu %1, polecenia %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "" -#~ "To powoduje uruchomienie bieżącego dokumentu jako JavaScript w Kate." - -#~ msgid "&Overwrite" -#~ msgstr "&Nadpisz" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2007 Autorzy Kate" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "Konfiguracja skrótów" - -#~ msgid "Line must be at least 1" -#~ msgstr "Wiersz musi być co najmniej 1" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "Nie ma tylu wierszy w tym dokumencie" - -#~ msgid "Add special item to search pattern" -#~ msgstr "Dodaj specjalny znak do wzorca wyszukiwania" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "Rozwiń zastępstwa (\\0 - \\9) i sekwencje unikowe (\\n, \\t, ...)" - -#~ msgid "Add special item to replacement text" -#~ msgstr "Dodaj specjalny element do zamieniającego tekstu" - -#~ msgid "Highlight all matches" -#~ msgstr "Podświetl wszystkie dopasowania" - -#~ msgid "Match case" -#~ msgstr "Dopasuj wielkość znaków" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "Zacznij wyszukiwanie od kursora, nie początku dokumentu" - -#~ msgid "From cursor" -#~ msgstr "Od kursora" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Dynamiczne zawijanie wyrazów" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "Próbujesz zapisać plik pythona jako nie-ASCII bez prawidłowej linii " -#~ "kodowania źródła \"%1\"" - -#~ msgid "No encoding header" -#~ msgstr "Brak nagłówka kodowania" diff -Nru ktexteditor-5.28.0/po/pt/ktexteditor5.po ktexteditor-5.31.0/po/pt/ktexteditor5.po --- ktexteditor-5.28.0/po/pt/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/pt/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -2,11 +2,11 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-16 12:55+0100\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-21 11:43+0000\n" "Last-Translator: José Nuno Pires \n" "Language-Team: pt \n" -"Language: \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -73,257 +73,316 @@ "X-POFile-SpellExtra: FASTQ Bitbake Praat STL OBJ Wavefront PLY\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Configuração da Completação de Código" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Sempre" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Sugestões de argumentos" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Melhores correspondências" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Espaços de nomes" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Classes" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Estruturas" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Uniões" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funções" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variáveis" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enumerados" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Prefixo" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Ícone" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Âmbito" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Nome" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumentos" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Sufixo" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Público" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protegido" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Privado" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Estático" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Constante" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Espaço de nomes" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Classe" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Estrutura" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "União" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Função" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variável" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumerado" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Modelo" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtual" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Substituto" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Incorporado" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Amigo" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Sinal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "'Slot'" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Âmbito Local" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Âmbito do Espaço de Nomes" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Âmbito Global" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Propriedade Desconhecida" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Palavras-chave da linguagem" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Completação Automática de Palavras" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Completação da Linha de Comandos" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Reutilizar a Palavra Acima" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Reutilizar a Palavra Abaixo" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Ficheiro" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Editar" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Procurar Variantes" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Ir Para" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Ver" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Mudança de Linha" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Contornos" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Dobragem do &Código" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "Ferramen&tas" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Completação de Palavras" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Ortografia" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Configuração" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Barra Principal" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -332,11 +391,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Mostrar as &marcações de dobragem" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -346,11 +407,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Mostrar uma antevisão do código dobrado" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -362,11 +425,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Mostrar o contorno dos &ícones" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -376,11 +441,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Mostrar os números de &linha" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -390,11 +457,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Mostrar as marcações de modificações das linhas" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -405,11 +474,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Mostrar as marcações na &barra de posicionamento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

        If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

        " @@ -419,11 +490,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Mostrar a &antevisão do texto na barra de posicionamento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -433,11 +506,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Mostrar o mini-mapa da barra de deslocamento" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -447,36 +522,43 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Criar um mapa de todo o documento" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" -msgstr "L&argura do Mini-Mapa" +#, kde-format +msgid "Minim&ap Width:" +msgstr "L&argura do Mini-Mapa:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Visibi&lidade das barras de deslocamento:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Sempre Activos" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Mostrar Quando Necessário" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Sempre Desligados" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -484,11 +566,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Ordenar o Menu de Favoritos" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -498,11 +582,13 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "Por c&riação" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Os favoritos serão ordenados de acordo com os números de linha onde se " @@ -510,45 +596,53 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "Por &posição" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Comando" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Descrição" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Editar o Item..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Remover o Item" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Adicionar um Item..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Notas Posteriores" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "

        Este ícone irá aparecer no menu e na barra de ferramentas.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Descrição:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Categoria:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Geral" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "&Activar a completação automática" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Completação A&utomática de Palavras" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Tamanho mínimo da palavra a completar:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Remover o fim de uma palavra anterior quando o item de completação for " @@ -626,16 +732,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Remover o fim com a completação" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "Completação de &palavras-chave" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -645,31 +754,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Ordenação" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabética" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Inversa" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Distinguir capitalização" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Profundidade da herança" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" "Ordem dos agrupamentos (seleccione um método de agrupamento para configurar):" @@ -679,6 +794,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -687,121 +803,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtragem" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Apenas ocorrências de contexto adequadas" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Esconder as completações com os seguintes atributos:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Profundidade máxima da herança:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Infinito" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Agrupamento" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Método de Agrupamento" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Tipo de âmbito (local, espaço de nomes, global)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Âmbito (p.ex., por classe)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Tipo de acesso (público, etc.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Tipo de item (função, etc.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Propriedades do Agrupamento de Acessos" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Incluir o 'const' no agrupamento" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Incluir o 'static' no agrupamento" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Incluir os 'signals' e 'slots' no agrupamento" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Propriedades do Agrupamento dos Itens" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Incluir os modelos no agrupamento" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Junção de Colunas" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Colunas" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Reunidas" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Visíveis" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Mudança de Linha Estática" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -819,12 +959,14 @@ "de configuração da Aparência.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Activar a &mudança de linha estática" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -836,17 +978,20 @@ "só é desenhado se usar um tipo de letra monoespaçado.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Mostrar o marcador estático de mudança de &linha (se for aplicado)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Muda&r de linha em:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -856,72 +1001,86 @@ "linha nova." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Modo de Entrada" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" -msgstr "Modo de entrada predefinido" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" +msgstr "Modo de entrada predefinido:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Parêntesis Automáticos" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Activar os parêntesis automáticos" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Copiar e Colar" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Copiar/cortar a linha actual se não existir selecção" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "Tipo de &ficheiro:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Seleccione o tipo de ficheiro que deseja alterar." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Cria um novo tipo de ficheiro." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Novo" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Apaga o tipo de ficheiro actual." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Apagar" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Propriedades" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" @@ -929,22 +1088,26 @@ #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Secção:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" "O nome da secção é usado para organizar os tipos de ficheiros nos menus." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variáveis:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -959,21 +1122,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Realce:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Modo de &Indentação:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "E&xtensões dos ficheiros:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -986,11 +1153,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Tipos MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1002,17 +1171,20 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "Mostra um assistente que lhe permite escolher facilmente os tipos MIME." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "P&rioridade:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1022,16 +1194,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Obter Ficheiros de Realce..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Modo de indentação predefinido:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1045,36 +1220,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Indentação com" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabulações" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "E&spaços" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Largura de &indentação:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabul&ações e Espaços" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Largura &da tabulação:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1088,11 +1270,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Propriedades de Indentação" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1103,11 +1287,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Manter os espaços extra" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1117,16 +1303,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Ajustar a &indentação do código colado da área de transferência" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Acções de Indentação" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1137,11 +1326,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "A tecla &Backspace nos espaços iniciais remove a indentação" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        Recuperarea datelor Ajutor

        Nu s-au " -#~ "putut recupera toate datele. Fișierul interschimbabil a fost incomplet." - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Suprascrie" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        Recuperarea datelor Ajutor

        Fișierul " -#~ "nu a fost închis corespunzător. Doriți să recuperați datele?

        " - -#~ msgid "Cancel" -#~ msgstr "Renunță" - -#~ msgid "Stop" -#~ msgstr "Stop" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Culori" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Culori" - -#~ msgid "Export HlColors..." -#~ msgstr "Exportă HlColors..." - -#~ msgid "Import HlColors..." -#~ msgstr "Importă HlColors..." - -#~ msgid "Template Background" -#~ msgstr "Fundal șablon" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Restrânge un nivel local" - -#~ msgid "Expand One Local Level" -#~ msgstr "Desfășoară un nivel local" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Restrânge nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Desfășoară nivelul superior" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Restrânge nivelul superior" - -#~ msgid "&Auto completion enabled" -#~ msgstr "Completare automată &activată" diff -Nru ktexteditor-5.28.0/po/ru/ktexteditor5.po ktexteditor-5.31.0/po/ru/ktexteditor5.po --- ktexteditor-5.28.0/po/ru/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ru/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -6,7 +6,7 @@ # Andrey Cherepanov , 2001-2009. # Leonid Kanter , 2005. # Nick Shaforostoff , 2004-2011, 2015, 2016. -# Alexander Potashev , 2010, 2011, 2014, 2015, 2016. +# Alexander Potashev , 2010, 2011, 2014, 2015, 2016, 2017. # Yury G. Kudryashov , 2012. # Yuri Efremov , 2013. # Alexander Lakhin , 2013. @@ -15,8 +15,8 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-28 22:28+0300\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-02-04 16:14+0300\n" "Last-Translator: Alexander Potashev \n" "Language-Team: Russian \n" "Language: ru\n" @@ -31,269 +31,330 @@ "X-Text-Markup: kde4\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Настройка автодополнения кода" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Всегда" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Подсказки по параметрам" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Лучшие совпадения" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Пространства имён" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Классы" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Структуры" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Объединения" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Функции" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Переменные" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Перечисления" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Префикс" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Значок" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Область" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Имя" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Аргументы" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Окончание" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Public" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protected" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Private" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Static" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Константа" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Пространство имён" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Класс" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Структура" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Объединение" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Функция" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Переменная" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Перечисление" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Шаблон" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtual" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Override" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Inline" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Friend" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Сигнал" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Слот" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Локально" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Пространство имён" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Глобально" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Неизвестное свойство" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Ключевые слова языка" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Автодополнение слов" # со списком вариантов? #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Автодополнение как в командной оболочке" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Использовать вышестоящее слово" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Использовать нижестоящее слово" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Файл" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Правка" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Варианты поиска" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Перейти" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Вид" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Перенос строк" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Границы" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Сворачивание &блоков кода" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "С&ервис" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Автодополнение слов" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Орфография" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Настройка" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Панель инструментов" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "Этот флажок включает полосу сворачивания блоков для всех новых окон." #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Полоса сворачивания &блоков" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -303,11 +364,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Предварительный просмотр свёрнутого кода" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -318,11 +381,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Показывать полосу &отметок" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -330,11 +395,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Показывать &номера строк" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -344,11 +411,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Показывать маркеры изменённых строк" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -358,11 +427,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Показывать &отметки на полосе прокрутки" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

        If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

        " @@ -372,11 +443,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Предварительный просмотр &текста в полосе прокрутки" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -386,11 +459,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Мини-карта в полосе прокрутки" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -400,47 +475,56 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Карта всего документа" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" +#, kde-format +msgid "Minim&ap Width:" msgstr "&Ширина мини-карты:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "&Видимость полос прокрутки:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Видны всегда" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Видны при необходимости" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Всегда скрыты" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "Выберите порядок показа закладок в меню Закладки." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Сортировка в меню «Закладки»" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -450,55 +534,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "По времени &создания" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "Закладки будут отсортированы по номерам строк, где они установлены." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "По &позиции" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Команда" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Описание" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Изменить..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Удалить" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Добавить..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Примечание" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "" "

        Указанный значок будет показываться в меню и на панели инструментов.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Описание:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Категория:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Главное" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Включить &автодополнение" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Авто&дополнение слов" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Минимальная длина слова для автодополнения:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Удалять окончание предыдущего слова при выборе предложенного завершения из " @@ -576,16 +682,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Удалять окончание при завершении" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "Автодополнение &ключевых слов" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -595,31 +704,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Сортировка" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "По алфавиту" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "В обратном порядке" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "С учётом регистра" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Глубина вложения" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Порядок группировки (выберите метод группировки):" @@ -628,6 +743,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -636,121 +752,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Фильтр" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Только соответствующие контексту" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Убрать дополнение следующих атрибутов:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Максимальная глубина вложения" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Без ограничений" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Группировка" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Метод группировки" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Область видимости (локальная, пространство имён, глобальная)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Область видимости (например, в классе)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Тип доступа (например, public)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Тип элемента (например, функция)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Свойства доступа к группировке" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Включить const в группировку" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Включить static в группировку" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Включить сигналы и слоты в группировку" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Свойства группировки" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Включить шаблоны в группировку" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Объединение столбцов" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Столбцы" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Объединённые" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Видимые" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Статичный перенос строк" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -768,12 +908,14 @@ "меню Вид.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Пе&реносить строки" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -784,17 +926,20 @@ "применяться только при использовании шрифта с фиксированной шириной.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Показывать маркеры &статичного переноса строк" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "П&ереносить слова на новую строку после:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -803,63 +948,75 @@ "составляющих ширину страницы." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Режим ввода" # BUGME: please add colon at the end --aspotashev #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" msgstr "Режим ввода по умолчанию:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Автоматическая вставка парной скобки" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Автоматически вставлять закрывающую скобку" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Буфер обмена" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Выреза́ть или копировать текущую строку, если ничего не выделено" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Тип файла:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Выберите тип файла, параметры работы с которым необходимо изменить." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Добавить новый тип файлов." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "Созд&ать" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Удалить тип файлов." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Удалить" @@ -867,32 +1024,38 @@ # gdsg dsg #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Свойства" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Название типа файлов, которое будет показано в меню." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Раздел:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Название раздела для группировки типов файлов в меню." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Переменные:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -906,21 +1069,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Подсветка:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Режим расстановки отступов:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Рас&ширения файлов:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -932,11 +1099,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Типы MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -948,16 +1117,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Запустить мастер выбора типов MIME." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "&Приоритет:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -967,16 +1139,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Загрузить файлы подсветки синтаксиса..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Режим расстановки отступов по умолчанию:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -989,36 +1164,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Отступы" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Табуляция" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Пробелы" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Ширина &отступа:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Табуляция &и пробелы" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "&Ширина табуляции:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1032,11 +1214,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Правила расстановки отступов" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1046,11 +1230,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Сохранять лишние пробелы" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1061,16 +1247,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Выполнять расстановку отступов для &вставляемого из буфера обмена кода" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Работа с отступами" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1081,11 +1270,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "У&меньшение отступа клавишей Backspace" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        Восстановление данных " -#~ "(справка)

        Не удалось восстановить все данные. Возможно, " -#~ "автоматически сохранённый файл содержит неполную информацию.

        " - -#~ msgid "OK" -#~ msgstr "ОК" - -#~ msgid "Overwrite" -#~ msgstr "Заменить" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        Восстановление данных (справка)

        Файл не был правильно закрыт. " -#~ "Восстановить данные?

        " - -#~ msgid "Cancel" -#~ msgstr "Отмена" - -#~ msgid "Stop" -#~ msgstr "Остановить" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Цвета" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Цвета" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "&Цвет текста..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "&Цвет текста..." - -#~ msgid "Template Background" -#~ msgstr "Фон вхождения" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Свернуть один уровень" - -#~ msgid "Expand One Local Level" -#~ msgstr "Развернуть один уровень" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Свернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Развернуть все" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Свернуть все" - -#~ msgid "&Auto completion enabled" -#~ msgstr "Включить &автодополнение" - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "&Формат:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Компонент текстового редактора KDE не найден;\n" -#~ "Возможно, среда KDE установлена неправильно." - -#~ msgid "Use this to close the current document" -#~ msgstr "Закрыть текущий документ" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Создать новый документ" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "Открыть существующий файл для редактирования" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "Список последних открытых файлов." - -#~ msgid "&New Window" -#~ msgstr "&Новое окно" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Создание нового окна с текущим документом" - -#~ msgid "Choose Editor..." -#~ msgstr "Выбрать редактор..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Выбор редактора, отличного от компонента редактора по умолчанию" - -#~ msgid "Close the current document view" -#~ msgstr "Закрыть окно" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "Показать/скрыть строку состояния вида" - -#~ msgid "Sho&w Path" -#~ msgstr "Показывать п&уть" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Показать полный путь к файлу документа в заголовке окна" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "" -#~ "Настройка комбинаций клавиш, связанных с различными действиями в " -#~ "программе." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Выбор элементов для панели инструментов." - -#~ msgid "&About Editor Component" -#~ msgstr "&О компоненте редактирования" - -#~ msgid " INS " -#~ msgstr " ВСТАВКА " - -#~ msgid " LINE " -#~ msgstr " ПОСТРОЧНОЕ" - -#~ msgid "Open File" -#~ msgstr "Открыть файл" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Невозможно открыть файл. Проверьте, существует ли этот файл и доступен ли " -#~ "он для чтения." - -#~ msgid " BLOCK " -#~ msgstr " БЛОЧНОЕ" - -#~ msgid "Read the contents of stdin" -#~ msgstr "Читать со стандартного ввода" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Кодировка открываемого файла" - -#~ msgid "Navigate to this line" -#~ msgstr "Перейти к строке" - -#~ msgid "Navigate to this column" -#~ msgstr "Перейти к столбцу" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "Текстовый редактор KWrite" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "© Авторы Kate, 2000-2005" - -#~ msgid "Choose Editor Component" -#~ msgstr "Выбор компонента редактора" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "" -#~ "Каталог, содержащий тесты, базовый каталог и каталоги для сохранения " -#~ "выводимых данных." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Сравнить сбои в результате этого тестирования со снимком . По " -#~ "умолчанию будет использован самый последний снимок или ничего, если нет " -#~ "сохранённых снимков." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Показывать отладочные сообщения" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Восстановить исходный (вместо проверки)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Сохранить файлы вывода даже при успешном прохождении" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Сохранить снимок прохождения тестов" - -#~ msgid "Show the window while running tests" -#~ msgstr "Показывать окно при выполнении тестов" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Запустить один тест. Можно указать несколько таких параметров." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Сохранить вывод в <каталог> вместо файла <базовый_каталог>/output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Запускать каждый тест в отдельном процессе." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Каталог, содержащий тесты, базовый каталог и каталоги для сохранения " -#~ "выводимых данных. Используется, если не указан параметр -b." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "Относительный путь к тестам или каталог с тестами (эквивалент -t)." - -#~ msgid "TestRegression" -#~ msgstr "TestRegression" - -#~ msgid "Regression tester for kate" -#~ msgstr "Проверка регрессии в kate" - -#~ msgid "Error: " -#~ msgstr "Ошибка:" - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "При включении этого параметра будут заменены символы табуляции пробелами " -#~ "таким образом, чтобы обеспечить такую же ширину отступа." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Отступы &пробелами вместо символов табуляции" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "Просмотреть &различия" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "По умолчанию" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "Файл %1 был открыт в кодировке UTF-8, но он содержит недопустимые " -#~ "символы. Установлен режим «только чтение», так как сохранение может " -#~ "повредить файл. Либо откройте данный файл, выбрав правильную кодировку, " -#~ "либо отключите защиту от изменений в меню «Сервис»." - -#~ msgid "Binary File Opened" -#~ msgstr "Открыт двоичный файл" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Открыт повреждённый файл в UTF-8" - -#~ msgid "Universal" -#~ msgstr "Универсальная" - -#~ msgid "&Word Wrap Document" -#~ msgstr "Перенести строки в &документе" - -#~ msgid "Modify search behavior" -#~ msgstr "Изменить тип поиска" - -#~ msgid "&Options" -#~ msgstr "П&араметры" - -#~ msgid "From &cursor" -#~ msgstr "От &курсора" - -#~ msgid "Hi&ghlight all" -#~ msgstr "Подсветить &все вхождения" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "© Авторы Kate, 2000-2008" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Разработка и мастер подсветки синтаксиса" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Невозможно открыть файл «%1»" - -#~ msgid "Success" -#~ msgstr "Успешно" - -#~ msgid "Move Character Right" -#~ msgstr "Перейти на один символ справа" - -#~ msgid "Move Character Left" -#~ msgstr "Перейти на один символ слева" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Невозможно запустить интерпретатор для скрипта %1 (команда %2)" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "Запустить открытый в Kate документ как JavaScript." - -#~ msgid "&Overwrite" -#~ msgstr "&Заменить" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "© Авторы Kate, 2000-2007" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "Настройка комбинаций клавиш" - -#~ msgid "Line must be at least 1" -#~ msgstr "Номер строки должен быть больше или равен 1" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "В документе нет такой строки" - -#~ msgid "Add special item to search pattern" -#~ msgstr "Добавить элемент регулярного выражения" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "" -#~ "Использовать обратные ссылки (\\0 — \\9) и управляющие последовательности " -#~ "(\\n, \\t, ...)" - -#~ msgid "Add special item to replacement text" -#~ msgstr "Вызвать меню с доступными заполнителями для текста замены" - -#~ msgid "Highlight all matches" -#~ msgstr "Подсветить все вхождения" - -#~ msgid "Match case" -#~ msgstr "С учётом регистра" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "Начать поиск от курсора, а не от начала документа" - -#~ msgid "From cursor" -#~ msgstr "От курсора" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Динамический перенос строк" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "Вы пытаетесь сохранить файл исходного кода Python, как не ASCII, без " -#~ "указания кодировки для «%1»" - -#~ msgid "No encoding header" -#~ msgstr "Отсутствует заголовок с кодировкой" diff -Nru ktexteditor-5.28.0/po/se/ktexteditor5.po ktexteditor-5.31.0/po/se/ktexteditor5.po --- ktexteditor-5.28.0/po/se/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/se/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-16 07:08+0000\n" +"POT-Creation-Date: 2017-01-10 07:47+0100\n" "PO-Revision-Date: 2010-08-28 22:06+0200\n" "Last-Translator: Børre Gaup \n" "Language-Team: Northern Sami \n" @@ -20,268 +20,329 @@ "X-Text-Markup: kde4\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Kodaollášuhttinheivehus" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Álo" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Argumeanta-veahkki" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Buoremus deaivamat" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Nammalanjat" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Luohkát" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Structs" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Uniovnnat" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funkšuvnnat" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Variábelat" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Prefiksa" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Govaš" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Viidodat" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Namma" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumeanttat" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfiks" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Almmolaš" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Suddjejuvvon" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Priváhta" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statalaš" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Bistevaš" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Namespace" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Luohkká" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Struktuvra" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Uniovdna" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Doaibma" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Variábel" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enumeration" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Málle" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtuála" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Badjelgeahča" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "Inline" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Ustit" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signála" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Báikkálaš viidodat" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Namespace viidodat" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Globála viiddodat" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Amas iešvuohta" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Automáhtalaš sátneollašuhttin" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Skálžoollašuhttin" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Geavat sáni bajábealde ođđasit" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Geavat sáni vuolábealde ođđasit" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Fiila" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Doaimmat" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Mana dása" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "Čá&jet" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Linnjámolsun" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Ravddat" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "&Kodamáhccun" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Reaiddut" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Sátneollašuhttin" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Čállindárkkisteapmi" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Heivehusat" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Váldoreaidoholga" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -289,11 +350,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -304,11 +367,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Čájet &govašrámma" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -318,11 +383,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Čájet &linnjánummiriid" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -330,11 +397,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -344,11 +413,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Čájet &rullengieddemearkkaid" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

        If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

        " @@ -356,11 +427,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -368,11 +441,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -380,47 +455,56 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 +#, kde-format msgid "Minim&ap Width" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Álo alde" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "Vállje mo girjemearkkat erohallojuvvojit Girjemearkkat fálus." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Erohala girjemearkafálu" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -430,55 +514,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "Girjemearkkat erohallojuvvojit linnjánummiriid bokte." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Gohččun" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Válddahus" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Doaimmat merkoša …" #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Váldde eret merkoša" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Lasit merkoša …" #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Eanet notáhtat" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "

        Dát govaš čájehuvvo fálus ja reaidoholggas.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Válddahus:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Láhki:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Oppalaš" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format msgid "A&uto Word Completion" msgstr "Automáhtalaš sátneollašuhttin" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Unnimus sátneguhkkodat maid galgá ollášuhttit:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format msgid "&Keyword completion" msgstr "Sátneollašuhttin" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -572,31 +679,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Sorteren" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabehtalaš" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Maŋos guvlui" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Earut smávva ja stuorra bustávaid" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Árbenčikŋodat" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Joavkkustanortnet (vállje joavkkustanvuogi maid háliidat heivehit):" @@ -605,6 +718,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -613,121 +727,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Sillen" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Dušše deaivamat mas lea heivvolaš konteaksta" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Čiega ollášuhttimiid mas leat dát attribuhtat:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Maksimála árbenčikŋodat:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Rájáhis" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Joavkkusteapmi" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Joavkkustanvuohki" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Doaibmanšládja (báikkálaš, nammasadji, globála)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Nammasadji (omd. juohke luohkkái)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Beassanšládja (omd. almmolaš)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Mearkkuššládja (funkšuvnnat jna.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Beassanjoavkkusteami iešvuođat" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Váldde fárrui const joavkkusteapmái" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Váldde fárrui static joavkkusteapmái" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Váldde fárrui signals ja slots joavkkusteapmái" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Mearkkušjoavkkusteami iešvuođat" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Váldde fárrui málliid joavkkusteapmái" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Čuoldabárgideapmi" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Čuolddat" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Bárgiduvvon" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Čájehuvvon" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) #: dialogs/editconfigwidget.ui:17 +#, kde-format msgid "Static Word Wrap" msgstr "Statálaš linnjámolsun" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) #: dialogs/editconfigwidget.ui:23 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -739,11 +877,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) #: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "Enable static &word wrap" msgstr "Bija &stáhtalaš linnjámolsun doaibmat" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) #: dialogs/editconfigwidget.ui:33 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -756,16 +896,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) #: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Čájet stahtálaš &máhccunmearkkaid (jos olámuttus)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) #: dialogs/editconfigwidget.ui:57 +#, kde-format msgid "Wra&p words at:" msgstr "" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) #: dialogs/editconfigwidget.ui:67 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -775,93 +918,110 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) #: dialogs/editconfigwidget.ui:101 +#, kde-format msgid "Input Mode" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) #: dialogs/editconfigwidget.ui:107 -#, fuzzy +#, fuzzy, kde-format msgid "Default input mode" msgstr "Standárda siskkildanmodus:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) #: dialogs/editconfigwidget.ui:133 +#, kde-format msgid "Auto Brackets" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) #: dialogs/editconfigwidget.ui:139 +#, kde-format msgid "Enable automatic brackets" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) #: dialogs/editconfigwidget.ui:149 +#, kde-format msgid "Copy and Paste" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) #: dialogs/editconfigwidget.ui:155 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Máŋge dahje čuohpa dálá linnjá jus ii mihkke lea merkejuvvon" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Fiilašládja:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Vállje makkár fiilašlája háliidat rievdadit." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Ráhkat ođđa fiilašlája." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Ođđa" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Sihko dán fiilašlája." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Sihko" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Iešvuođat" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Fiilašlája namma šaddá fállomerkoša namma." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Oassi:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Sekšuvdnanamma organisere fiilašlájaid fáluin." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Variábelat:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -874,21 +1034,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Syntáksamerken:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "&Siskkildanmodus:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Fiila&dovddaldagat:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -897,11 +1061,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&MIME-šlájat:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -913,16 +1079,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Čájeha ofelačča mii álkit veahkeha du válljet MIME-šlájaid." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Ov&davuorru:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -932,16 +1101,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Viečča syntáksamerkennjuolggadusfiillaid …" #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Standárda siskkildanmodus:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -955,36 +1127,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Siskkidahte dáid mearkkaiguin" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Tabuláhtorat" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Gaskamearkkat" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Siskkideami govdodat:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabuláhtorat &ja gaskamearkkat" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "&Tabuláhtorgovdodat:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -998,11 +1177,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Siskkildaniešvuođat" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1012,11 +1193,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Doalat liige gaskamearkkaid" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1026,16 +1209,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Mudde siskkildeami go teaksta &liibmejuvvo čuohposbeavddis" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Siskkildandoaimmat" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1046,12 +1232,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "" "&Sihkkunboallu linnjáálggu gaskamearkkaid siskkobealde sihko siskkideami" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        දත්ත ආපසු ලබා ගැනීම (උදව්)

        සියළු දත්ත නැවත ලබාගත නොහැකි විය. පෙනෙන විදියට " -#~ "swap ගොනුව අසම්පූර්ණයි.

        " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "මත ලියන්න" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        දත්ත ආපසු ලබා ගැනීම (උදව්)

        ගොනුව නිසි ලෙස නොවසන ලදි. ඔබට දත්ත නැවත ලබා " -#~ "ගැනීමට අවශ්‍යද?

        " - -#~ msgid "Cancel" -#~ msgstr "අවලංගු කරන්න" - -#~ msgid "Stop" -#~ msgstr "නවත්වන්න" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "වර්ණ" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "වර්ණ" - -#~ msgid "Export HlColors..." -#~ msgstr "HlColors නිර්යාත කරන්න..." - -#~ msgid "Import HlColors..." -#~ msgstr "HlColors ආයාත කරන්න..." - -#~ msgid "Template Background" -#~ msgstr "අව්වු පසුබිම" - -#~ msgid "Collapse One Local Level" -#~ msgstr "එක් පෙදෙසි මට්ටමක් අකුලන්න" - -#~ msgid "Expand One Local Level" -#~ msgstr "එක් පෙදෙසි මට්ටමක් විහිදන්න" diff -Nru ktexteditor-5.28.0/po/sk/ktexteditor5.po ktexteditor-5.31.0/po/sk/ktexteditor5.po --- ktexteditor-5.28.0/po/sk/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/sk/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: ktexteditor5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-08 10:02+0100\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2016-11-21 20:35+0100\n" "Last-Translator: Roman Paholik \n" "Language-Team: Slovak \n" "Language: sk\n" @@ -16,257 +16,316 @@ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Nastavenie kompletizácie kódu" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Vždy" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Body argumentu" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Najlepšie zhody" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Menné priestory" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Triedy" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Štruktúry" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Únie" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Funkcie" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Premenné" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Vymenované hodnoty" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Predpona" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Ikona" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Rozsah" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Názov" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argumenty" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Verejné" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Chránené" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Súkromné" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Statické" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Konštanta" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Menný priestor" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Trieda" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Štruktúra" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Spolok" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Funkcia" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Premenná" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Vymenovaná hodnota" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Šablóna" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Virtuálny" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Prepísať" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "V riadku" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Priateľ" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Signál" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Lokálny rozsah platnosti" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Cieľ oblasti mien" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Globálny cieľ" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Neznámý majetok" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Jazykové kľúčové slová" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Automatické ukončovanie slov" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Dokončovanie shellu" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Použiť slovo nad" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Použiť slovo pod" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Súbor" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Upraviť" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Hľadať varianty" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Prejsť na" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Zobraziť" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Zalomiť slová" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Orámovanie" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Za&baľovanie kódu" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Nástroje" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Dopĺňanie slov" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Pravopis" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Nastavenia" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Hlavný panel nástrojov" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -275,11 +334,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Zobraziť zabaľovacie značky" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -287,13 +348,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show print preview of current document" msgid "Show preview of folded code" msgstr "Zobraziť náhľad tlače aktuálneho dokumentu" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -304,11 +366,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Zobraziť okraje &ikony" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -318,11 +382,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Zobraziť čís&la riadkov" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -332,11 +398,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Zobraziť označníky modifikácií riadku" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -346,12 +414,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Zobraziť značky &posuvníka" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

        If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

        These marks will show bookmarks, for instance.Bookmarks menu." msgstr "Zvoľte si ako budú záložky usporiadané v menu Záložky." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Zoradiť menu záložiek" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -443,55 +526,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "Podľa vytvo&renia" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "Záložky budú usporiadané podľa čisla riadku kde sú umiestnené." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "Podľa &pozície" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Príkaz" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Popis" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Upraviť položku..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Odstrániť položku" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Pridať položku..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Ostatné poznámky" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "

        Táto ikona bude zobrazená v menu a na paneli nástrojov.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Popis:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategória:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Všeobecné" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Povoliť automatické dopĺňanie" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "Automatické ukončovanie slov" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Minimálna dĺžka slova na ukončenie:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Odstrániť chvost predošlého slova pri ukončení položky vybranej zo zoznamu" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Odstrániť chvost pri ukončení" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "Dopĺňanie kľúčových slov" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -586,31 +694,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Triedenie" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Abecedné" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Otočené" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Rozlišovať veľkosť písmen" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Hĺbka dedičnosti" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Poradie radenia do skupín (označit metódu radenia pre nastavenie):" @@ -619,6 +733,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -627,121 +742,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtrovanie" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Zhodný len primeraný kontext" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Skryť kompletnosť s nasledujúcimi atribútmi:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Maximálna hĺbka dedičnosti:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Nekonečno" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Zoskupovanie" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Metóda zoskupovania" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Typ oblasti (lokálna, oblasť mien, globálna)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Oblasť (tj. pre triedu)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Typ prístupu (verejný atď.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Typ veci (funkcia atď.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Vlastnosti zoskupovania prístupu" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Vrátane const v skupinách" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Vrátane static v skupinách" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Vráatané signálov an slotov v skupinách" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Vlastnosti zoskupovania položiek" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Vrátane šablón v skupinách" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Spájanie stĺpcov" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Stĺpce" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Spojené" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Ukázaný" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Statické zalamovanie slov" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -758,12 +897,14 @@ "Vzhľad

        ." #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Povoliť statické &zalamovanie slov" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -774,17 +915,20 @@ "značka je vykreslená iba pre písmo s pevnou šírkou znakov.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Zobraziť &statické zalamovacie značky (ak sú aplikovateľné)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Zalomiť slová na:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -793,93 +937,112 @@ "ktorej editor automaticky začne nový riadok." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Vstupný režim" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format +#| msgid "Default input mode" +msgid "Default input mode:" msgstr "Predvolený vstupný režim" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Automatické zátvorky" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Povoliť automatické zátvorky" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Kopírovať a vložiť" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Kopírovať/vystrihnúť aktuálny riadok, ak nie je výber" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Typ súboru:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Vyberte typ súboru, ktorý chcete zmeniť." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Vytvoriť nový typ súboru." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Nové" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Odstrániť aktuálny typ súboru." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "O&dstrániť" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Vlastnosti" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Meno typu súboru bude text zobrazený v menu." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Sekcia:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Meno sekcie sa používa pre utriedenie typov súborov do podmenu." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Premenné:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -893,21 +1056,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Zvýraznenie:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Režim odsadenia:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Príp&ony súborov:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -919,11 +1086,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Typy MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -935,16 +1104,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "Zobrazí sprievodcu, ktorý zjednodušuje výber typov MIME." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Prio&rita:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -954,16 +1126,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Stiahnúť zvýraznené súbory..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Predvolený režim odsadenia:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -976,36 +1151,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Odsadiť použitím" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "Tabulátory" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "Medzery" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "Šírka odsadenia:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tabulátory a medzery" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Šírka karty:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1018,11 +1200,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Nastavenie odsadzovania" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1032,11 +1216,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "Ponechať extra medzery" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1046,16 +1232,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Prispôsobiť odsadenie kódu vloženého zo schránky" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Akcie odsadenia" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1066,11 +1255,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "Kláves Backspace po prázdnom mieste ruší odsadenie" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        Dataåterställning (Hjälp)

        Kunde inte återställa all data. Växlingsfilen är troligen " -#~ "ofullständig.

        " - -#~ msgid "OK" -#~ msgstr "Ok" - -#~ msgid "Overwrite" -#~ msgstr "Skriv över" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        Dataåterställning (Hjälp)

        Filen stängdes inte på ett riktigt " -#~ "sätt. Vill du återställa data?

        " - -#~ msgid "Cancel" -#~ msgstr "Avbryt" - -#~ msgid "Stop" -#~ msgstr "Stoppa" - -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Färgroll" - -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Färg" - -#~ msgctxt "@title:column reset color" -#~ msgid "Reset" -#~ msgstr "Återställ" - -#~ msgid "Export HlColors..." -#~ msgstr "Exportera färgläggningsfärg..." - -#~ msgid "Import HlColors..." -#~ msgstr "Importera färgläggningsfärg..." - -#~ msgid "Template Background" -#~ msgstr "Mallbakgrund" - -#~ msgid "Collapse One Local Level" -#~ msgstr "Fäll ihop en lokal nivå" - -#~ msgid "Expand One Local Level" -#~ msgstr "Expandera en lokal nivå" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Fäll ihop nivå 1" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Fäll ihop nivå 2" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Fäll ihop nivå 3" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Fäll ihop nivå 4" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Fäll ihop nivå 5" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Fäll ihop nivå 6" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Fäll ihop nivå 7" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Fäll ihop nivå 8" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Fäll ihop nivå 9" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Expandera nivå 1" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Expandera nivå 2" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Expandera nivå 3" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Expandera nivå 4" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Expandera nivå 5" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Expandera nivå 6" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Expandera nivå 7" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Expandera nivå 8" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Expandera nivå 9" - -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "&Fäll ihop" - -#~ msgid "&Expand" -#~ msgstr "&Expandera" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Automatisk komplettering aktiverad" - -#~ msgid "Sort the selected text or whole document in natural order.
        " -#~ msgstr "Sortera markerad text eller hela dokumentet i naturlig ordning.
        " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "" -#~ "Med en Javascript-funktion som argument, anropa den för listan av " -#~ "(markerade) rader och" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "" -#~ "Med en Javascript-funktion som argument, anropa den för listan av " -#~ "(markerade) rader " - -#~ msgid "Form" -#~ msgstr "Formulär" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Någon KDE-texteditorkomponent kunde inte hittas.\n" -#~ "Kontrollera KDE-installationen." - -#~ msgid "Use this to close the current document" -#~ msgstr "Använd det här för att stänga aktuellt dokument" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Använd det här kommandot för att skapa ett nytt dokument" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "" -#~ "Använd det här kommandot för att öppna ett befintligt dokument för " -#~ "redigering" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "Det här visar filer som du nyligen öppnat, och låter dig enkelt öppna dem " -#~ "igen." - -#~ msgid "&New Window" -#~ msgstr "&Nytt fönster" - -#~ msgid "Create another view containing the current document" -#~ msgstr "Skapa en ny vy som innehåller aktuellt dokument" - -#~ msgid "Choose Editor..." -#~ msgstr "Välj editor..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "Överskrid systemets inställningar för förvald redigeringskomponent" - -#~ msgid "Close the current document view" -#~ msgstr "Stänger aktuell dokumentvy" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Använd det här kommandot för att visa eller dölja fönstrets statusrad" - -#~ msgid "Sho&w Path" -#~ msgstr "Visa &sökväg" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Visa den fullständiga sökvägen till dokumentet i fönstrets namnlist" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "Anpassa programmets tilldelning av snabbtangenter." - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "Anpassa vilka objekt som ska visas i verktygsrader." - -#~ msgid "&About Editor Component" -#~ msgstr "&Om editorkomponenten" - -#~ msgid " INS " -#~ msgstr " INFOGA " - -#~ msgid " LINE " -#~ msgstr " RAD " - -#~ msgid "Open File" -#~ msgstr "Öppna fil" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "Den angivna filen kunde inte läsas. Kontrollera att den finns och att den " -#~ "är läsbara av aktuell användare." - -#~ msgid " BLOCK " -#~ msgstr " BLOCK " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Läs innehåll från standardinmatning" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Ange kodning för filen som ska öppnas" - -#~ msgid "Navigate to this line" -#~ msgstr "Flytta till den här raden" - -#~ msgid "Navigate to this column" -#~ msgstr "Flytta till den här kolumnen" - -#~ msgid "KWrite" -#~ msgstr "Kwrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "Kwrite - Texteditor" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "© 2000-2005 Kate-upphovsmännen" - -#~ msgid "Choose Editor Component" -#~ msgstr "Välj en editorkomponent" - -#~ msgid "The swap file is broken. Recovery might be incomplete." -#~ msgstr "Växlingsfilen är skadad. Återställning kan vara ofullständig." - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "" -#~ "Kataloger som innehåller tester, baskatalog och utmatningskataloger." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Jämför fel från den här testkörningen mot versionen . Förval är " -#~ "den senast sparade felaktiga versionen eller ingen om det inte finns " -#~ "någon." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Dölj inte felsökningsutmatning" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Återställ standardversion (istället för att kontrollera)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Behåll utdatafiler även vid lyckat resultat" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Spara fel från testkörningen som felaktig version " - -#~ msgid "Show the window while running tests" -#~ msgstr "Visa fönstret medan tester körs" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Kör bara en enstaka test. Flera väljare tillåtna." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Lägg resultat i istället för i /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Kör varje testfall i en separat process." - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Katalog som innehåller tester, baskatalog och utdatakataloger. Tas bara " -#~ "hänsyn till om inte -b anges." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Relativ sökväg till testfall, eller katalog med testfall att köra " -#~ "(motsvarar -t)." - -#~ msgid "TestRegression" -#~ msgstr "Regressionstest" - -#~ msgid "Regression tester for kate" -#~ msgstr "Regressionstester för Kate" - -#~ msgid "Error: " -#~ msgstr "Fel: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Fel vid anrop av '%1'. Kontrollera om det finns syntaxfel." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Om det här är aktiverat, beräknar editorn antal mellanslag till nästa " -#~ "tabulatorposition som definierat av tabulatorbredden, och infogar så " -#~ "många mellanslag istället för ett tabulatortecken." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "Infoga mellan&slag i stället för tabulatorer" - -#~ msgid "There has been a swap file. Do you want to recover it?" -#~ msgstr "En växlingsfil har funnits. Vill du återställa den?" - -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "Visa skillnader" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Inaktiverad" - -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "Filen %1 öppnades med kodningen 2 men innehöll ogiltiga tecken. Den har " -#~ "skrivskyddats, eftersom dess innehåll kan förstöras genom att spara den. " -#~ "Öppna antingen filen igen med rätt kodning vald, eller stäng av " -#~ "skrivskyddet i menyn för att kunna redigera den." - -#~ msgid "Binary File Opened" -#~ msgstr "Binärfil öppnad" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Felaktig UTF-8-fil öppnad" - -#~ msgid "Universal" -#~ msgstr "Allmän" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&Bryt rader mellan ord i dokumentet" - -#~ msgid "KSqueezedTextLabel" -#~ msgstr "KSqueezedTextLabel" - -#~ msgid "Modify search behavior" -#~ msgstr "Ändra sökbeteende" - -#~ msgid "&Options" -#~ msgstr "&Alternativ" - -#~ msgid "From &cursor" -#~ msgstr "Från &markören" - -#~ msgid "Hi&ghlight all" -#~ msgstr "&Markera alla" - -#~ msgid "Add &BOM" -#~ msgstr "Lägg till &BOM" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "© 2000-2008 Kate-upphovsmännen" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Utvecklare och färgläggningstrollkarl" - -#~ msgid "Unable to find 'katepartapi.js'" -#~ msgstr "Kunde inte hitta 'katepartapi.js'" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Kan inte läsa fil: '%1'" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Misslyckades starta tolk för skript %1, kommando %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "Kör aktuellt dokument som Javascript inne i Kate." - -#~ msgid "On-the-Fly Spellcheck enabled" -#~ msgstr "Stavningskontroll i farten aktiverad" diff -Nru ktexteditor-5.28.0/po/ta/ktexteditor5.po ktexteditor-5.31.0/po/ta/ktexteditor5.po --- ktexteditor-5.28.0/po/ta/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ta/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2010-08-05 07:55+0530\n" "Last-Translator: amachu \n" "Language-Team: Tamil \n" @@ -24,282 +24,327 @@ "X-Generator: Lokalize 1.0\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "நிரல் பூர்த்தி வடிவமைப்பு" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "எப்பொழுதும்" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "பெயர்வெளிகள்" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "" #: completion/katecompletionmodel.cpp:800 -#, fuzzy +#, fuzzy, kde-format msgid "Structs" msgstr "குறுக்குவழிகள்" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "செயற்பாடுகள்" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "மாறிகள்" #: completion/katecompletionmodel.cpp:808 -#, fuzzy +#, fuzzy, kde-format msgid "Enumerations" msgstr "" "_: Language Section\n" "வடிவமைத்தல்" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "பகுதி" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "" #: completion/katecompletionmodel.cpp:1324 -#, fuzzy +#, fuzzy, kde-format msgid "Scope" msgstr "& நிறுத்து" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "பெயர்" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "தனிப்பட்ட" #: completion/katecompletionmodel.cpp:2045 -#, fuzzy +#, fuzzy, kde-format msgid "Static" msgstr "" "_: Language\n" "Stata" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "மாறிலி" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "பெயர்வெளி" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "" #: completion/katecompletionmodel.cpp:2057 -#, fuzzy +#, fuzzy, kde-format msgid "Struct" msgstr "குறுக்காக அ&டித்தல்" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "கூட்டு" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "செயல்" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "மாறி" #: completion/katecompletionmodel.cpp:2069 -#, fuzzy +#, fuzzy, kde-format msgid "Enumeration" msgstr "" "_: Language Section\n" "வடிவமைத்தல்" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "வார்ப்பு" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "புறக்கணி" #: completion/katecompletionmodel.cpp:2081 -#, fuzzy +#, fuzzy, kde-format msgid "Inline" msgstr "&அடிக்கோடு" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "நண்பன்" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "" #: completion/katecompletionmodel.cpp:2093 -#, fuzzy +#, fuzzy, kde-format msgid "Local Scope" msgstr "&உள் கோப்பு" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "இனந்தெரியாதப் பண்பு" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "Auto Word Completion" msgstr "வார்த்தை முடிவு சொருகல்" #: completion/katewordcompletion.cpp:341 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "Shell Completion" msgstr "வார்த்தை முடிவு சொருகல்" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&கோப்பு" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&தொகுக்க" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&காட்சி" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "நிலையான வார்த்தை மடிப்பு" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 -#, fuzzy +#, fuzzy, kde-format #| msgid "Borders" msgid "Borders" msgstr "விளிம்புகள்" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "பிழை தரும் குறிப்புரை" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "் கருவிகள்" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "Word Completion" msgstr "வார்த்தை முடிவு சொருகல்" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&அமைப்புகள்ுகள்" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -311,14 +356,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "மடிப்புக்குறிகளைக் காட்டு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will show marks on the vertical " #| "scrollbar.

        These marks will, for instance, show bookmarks." @@ -331,14 +376,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show preview of folded code" msgstr "தற்போதுள்ள ஆவணத்தை அச்சடிக்கவும்" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display an icon border on " #| "the left hand side.

        The icon border shows bookmark signs, for " @@ -353,11 +398,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "விளிம்பு சின்னத்தை காட்டு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -366,12 +413,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "வரி எண்களை காட்டு." #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -383,14 +431,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "மடிப்புக்குறிகளைக் காட்டு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will show marks on the vertical " #| "scrollbar.

        These marks will, for instance, show bookmarks." @@ -403,12 +451,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "உருள்பட்டி குறிகளை காட்டு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will show marks on the vertical " #| "scrollbar.

        These marks will, for instance, show bookmarks." @@ -421,12 +470,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -438,14 +488,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgid "Show scrollbar mini-map" msgstr "உருள்பட்டி குறிகளை காட்டு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -457,42 +507,46 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save the current document" msgid "Map the whole document" msgstr "தற்போதுள்ள ஆவணத்தை சேமி " #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tab width:" -msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "தத்தல் அகலம்:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "எப்போதும் இயக்கு" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy +#, fuzzy, kde-format #| msgid "Always" msgid "Always Off" msgstr "எப்பொழுதும்" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "" @@ -501,11 +555,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "புத்தகக்குறிகள் பட்டியை வரிசைப்படுத்து" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -514,63 +570,69 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "உருவாக்குவதால்" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "புத்தக குறியீடுகள் சேமித்து வைக்கப்பட்ட அதன் வரி எண்கள் மூலம் கட்டளையிடப்படும்" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "இருப்பிடத்தால்" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "ஆணை" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "விவரம்" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit entry..." msgid "Edit Entry..." msgstr "பதிவைத் தொகுக்கதொகு" #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit entry..." msgid "Add Entry..." msgstr "பதிவைத் தொகுக்கதொகு" #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "மேற்கொண்டு குறிப்புகள்" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&விவரம்:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&வகை:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "பொதுவான" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "Enable &auto completion" msgstr "வார்த்தை முடிவு சொருகல்" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "A&uto Word Completion" msgstr "வார்த்தை முடிவு சொருகல்" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "பின் இடைவெளிகளை நீக்கு" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion Plugin" msgid "&Keyword completion" msgstr "வார்த்தை முடிவு சொருகல்" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -667,34 +740,38 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 -#, fuzzy +#, fuzzy, kde-format #| msgid "String" msgid "Sorting" msgstr "சரம்" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format msgid "Case sensitive" msgstr "வகையுணர்வுள்ள" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "" @@ -703,6 +780,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "" @@ -711,130 +789,149 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 -#, fuzzy +#, fuzzy, kde-format #| msgid "String" msgid "Filtering" msgstr "சரம்" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Access Grouping Properties" msgstr "அடிக்குறிப்பு பண்புகள்" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Item Grouping properties" msgstr "அடிக்குறிப்பு பண்புகள்" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 -#, fuzzy +#, fuzzy, kde-format #| msgid "Colors" msgid "Columns" msgstr "நிறங்கள்" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "நிலையான வார்த்தை மடிப்பு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 -#, fuzzy +#: dialogs/editconfigwidget.ui:26 +#, fuzzy, kde-format #| msgid "" #| "Automatically start a new line of text when the current line exceeds the " #| "length specified by the Wrap words at: option.

        This option does " @@ -858,13 +955,14 @@ "பக்கத்தில் செயல்படுத்தவும்." #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "நிலையான வார்த்தை மடிப்பை செயல்படுத்து" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 -#, fuzzy +#: dialogs/editconfigwidget.ui:36 +#, fuzzy, kde-format #| msgid "" #| "

        If this option is checked, a vertical line will be drawn at the word " #| "wrap column as defined in the Editing properties.

        Note " @@ -879,21 +977,22 @@ "மடிப்பு குறிப்பான் வரையப்படும்." #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 -#, fuzzy +#: dialogs/editconfigwidget.ui:39 +#, fuzzy, kde-format #| msgid "&Show static word wrap marker (if applicable)" msgid "Show static word wra&p marker (if applicable)" msgstr "நிலையான வார்த்தை மடிப்புக் குறிகளை காட்டு (இருந்தால்)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "Wrap words at:" msgid "Wra&p words at:" msgstr "இங்கே வார்த்தைகளை மடி:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -902,101 +1001,115 @@ "வரியின் எண்ணிக்கையை (வார்த்தையில்) கண்டுபிடிக்கும்." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "&Indentation" msgid "Input Mode" msgstr "&உள்தள்ளுதல்" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "&Indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "உள்ளடக்கம் அமைத்தலின் முறை" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "தானியக்க அடைப்புகுறிகள்" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "பொருந்தும் அடைப்புக்குறிக்கு தேர்ந்தெடு" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&கோப்பு வகை:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "மாற்ற வேண்டிய கோப்பு வகையை தேர்வு செய்க." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "புதிய கோப்பு வகையை உருவாக்குக" #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&புதிய" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "தற்போதைய கோப்பு வகையை அகற்றுக.சேமி " #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&அகற்றுக" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr " பண்புகள்" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&பிரிவு" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&மாறிகள்:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -1006,23 +1119,26 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&பளிச்சிடுதல்:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation" msgid "&Indentation Mode:" msgstr "&உள்தள்ளுதல்" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "கோப்பு &விகுதிகள்" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -1031,11 +1147,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "மைம் வகைகள்:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1044,16 +1162,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "&முன்னுரிமை:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1061,18 +1182,20 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "வெளிச்சிடப்பட்ட கோப்புகளைப் பதிவிறக்குக..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation mode:" msgid "Default indentation mode:" msgstr "உள்ளடக்கம் அமைத்தலின் முறை" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1082,47 +1205,48 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "உள்ளமைவு" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "அட்டவணைப்படுத்தி" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format msgid "&Spaces" msgstr "மாற்று" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation with Spaces" msgid "&Indentation width:" msgstr "இடைவெளியைக் கொண்டு உள்ளடக்கம் அமை" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "அட்டவணைப்படுத்தி" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tab width:" msgid "Tab wi&dth:" msgstr "தத்தல் அகலம்:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1132,13 +1256,14 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation Rules" msgid "Indentation Properties" msgstr "உள்ளமைவு விதிகள்" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1146,13 +1271,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Keep extra spaces" msgid "&Keep extra spaces" msgstr "கூடுதல் இடைவெளிகளை வைத்திரு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1160,18 +1286,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indentation Actions" msgstr "உள்ளமைவு" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1180,13 +1308,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Backspace key indents" msgid "&Backspace key in leading blank space unindents" msgstr "பின்நகர்வு விசை உள்ளடக்கம் அமைத்தல்" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        การกู้คืนข้อมูล (ช่วยเหลือ)

        ไม่สามารถ กู้คืนข้อมูลทั้งหมดได้ แฟ้มสับค่าอาจจะไม่สมบูรณ์

        " - -#~ msgid "OK" -#~ msgstr "ใช้ได้" - -#~ msgid "Overwrite" -#~ msgstr "เขียนทับ" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        กู้คืนข้อมูล (ช่วยเหลือ)

        แฟ้มถูกปิดอย่างไม่เหมาะสม คุณต้องการจะกู้คืนข้อมูลหรือไม่?

        " - -#, fuzzy -#~| msgid "Scope" -#~ msgid "Stop" -#~ msgstr "ขอบเขต" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "สี" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "สี" - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Export HlColors..." -#~ msgstr "&สีปกติ..." - -#, fuzzy -#~| msgid "Normal &Color..." -#~ msgid "Import HlColors..." -#~ msgstr "&สีปกติ..." - -#~ msgid "Template Background" -#~ msgstr "พื้นหลังของแม่แบบ" - -#~ msgid "Collapse One Local Level" -#~ msgstr "ยุบระดับภายในหนึ่งระดับ" - -#~ msgid "Expand One Local Level" -#~ msgstr "ขยายระดับภายในหนึ่งระดับ" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "ยุบระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "ขยายระดับบนสุด" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "ยุบระดับบนสุด" - -#~ msgid "&Auto completion enabled" -#~ msgstr "เปิดใช้งานการเติมให้สมบูรณ์&อัตโนมัติ" - -#, fuzzy -#~| msgid "&Format:" -#~ msgid "Form" -#~ msgstr "รูปแ&บบ:" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "ไม่พบส่วนโปรแกรมแก้ไขข้อความของ KDE\n" -#~ "โปรดตรวจสอบการติดตั้งง KDE ของคุณ" - -#~ msgid "Use this to close the current document" -#~ msgstr "ใช้นี่เพื่อปิดเอกสารที่ใช้อยู่ในปัจจุบัน" - -#~ msgid "Use this command to create a new document" -#~ msgstr "ใช้คำสั่งนี้ เพื่อสร้างเอกสารใหม่" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "ใช้คำสั่งนี้ เพื่อเปิดเอกสารที่มีอยู่แล้วขึ้นมาเพื่อทำการแก้ไข" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "รายการแฟ้มซึ่งคุณได้ทำการเปิดเมื่อเร็ว ๆ นี้ และทำให้คุณเปิดแฟ้มเหล่านั้นอีกครั้งได้ง่าย ๆ" - -#~ msgid "&New Window" -#~ msgstr "&หน้าต่างใหม่" - -#~ msgid "Create another view containing the current document" -#~ msgstr "สร้างมุมมองอีกมุมมองหนึ่งโดยมีเอกสารปัจจุบันอยู่ด้วย" - -#~ msgid "Choose Editor..." -#~ msgstr "เลือกส่วนแก้ไขข้อความ..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "แทนที่การตั้งค่าส่วนแก้ไขข้อความปริยายของระบบ" - -#~ msgid "Close the current document view" -#~ msgstr "ปิดมุมมองเอกสารปัจจุบัน" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "ใช้คำสั่งนี้เพื่อแสดงหรือซ่อนแถบสถานะของมุมมอง" - -#~ msgid "Sho&w Path" -#~ msgstr "แสดง&ที่อยู่แฟ้ม" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "แสดงที่อยู่ของแฟ้มแบบสมบูรณ์ของเอกสารบนหัวหน้าต่าง" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "ปรับแต่งการตั้งค่าปุ่มพิมพ์ลัดของโปรแกรม" - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "ปรับแต่งว่าจะให้รายการใดปรากฎบนแถบเครื่องมือบ้าง" - -#~ msgid "&About Editor Component" -#~ msgstr "เ&กี่ยวกับส่วนแก้ไขข้อความ" - -#~ msgid " INS " -#~ msgstr " แทรก " - -#~ msgid " LINE " -#~ msgstr " โหมดบรรทัด " - -#~ msgid "Open File" -#~ msgstr "เปิดแฟ้ม" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "ไม่สามารถอ่านแฟ้มที่ให้มาได้ โปรดตรวจสอบว่ามีแฟ้มอยู่หรือไม่ หรือว่าแฟ้มนั้น " -#~ "สามารถอ่านได้โดยผู้ใช้ปัจจุบันหรือไม่" - -#~ msgid " BLOCK " -#~ msgstr " โหมดบล็อก " - -#~ msgid "Read the contents of stdin" -#~ msgstr "อ่านเนื้อหาจากอุปกรณ์ป้อนข้อมูลมาตรฐาน" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "ตั้งค่ารหัสภาษาของแฟ้มที่จะเปิด" - -#~ msgid "Navigate to this line" -#~ msgstr "นำมายังบรรทัดนี้" - -#~ msgid "Navigate to this column" -#~ msgstr "นำมายังคอลัมน์นี้" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - เครื่องมือแก้ไขข้อความ" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "สงวนลิขสิทธิ์ (c) 2000-2005 กลุ่มผู้พัฒนา Kate" - -#~ msgid "Choose Editor Component" -#~ msgstr "เลือกส่วนแก้ไขข้อความ" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "ไดเรกทอรีมีการทดสอบ, ไดเรกทอรีหลัก และไดเรกทอรีผลลัพธ์บรรจุอยู่" - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "ความล้มเหลวในการเปรียบเทียบของการทดสอบนี้ ขัดแย้งกับตัวที่จับเก็บไว้ " -#~ "ใช้ค่าปริยายของการจับเก็บที่ล้มเหลวมาก่อนหน้านี้ หรือไม่ใช้เลยหากไม่มีอะไรอยู่" - -#~ msgid "Do not suppress debug output" -#~ msgstr "อย่าปิดบังการแสดงผลของการดีบั๊ก" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "สร้างเส้นฐานใหม่ (แทนการตรวจสอบ)" - -#~ msgid "Keep output files even on success" -#~ msgstr "คงแฟ้มผลลัพธ์เอาไว้แม้ว่าจะทดสอบเสร็จแล้วก็ตาม" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "จัดเก็บความล้มเหลวของการทดสอบนี้ เป็นตัวจับเก็บความล้มเหลว " - -#~ msgid "Show the window while running tests" -#~ msgstr "แสดงหน้าต่างระหว่างทำการทดสอบ" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "ทำการทดสอบเดี่ยวเท่านั้น แต่อนุญาตให้มีหลายตัวเลือกได้" - -#~ msgid "Put output in instead of /output" -#~ msgstr "เก็บผลลัพธ์ไว้ใน แทนที่จะเป็น /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "ทำการทดสอบแต่ละกรณีแยกเป็นแต่ละโพรเซส" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "ไดเรกทอรีสำหรับจัดเก็บการทดสอบ, ไดเรกทอรีพื้นฐาน และไดเรกทอรีผลลัพธ์ " -#~ "โดยจะพิจารณาถ้าไม่ได้ระบุตัวเลือก -b ไว้เท่านั้น" - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "พาธสัมพัทธ์กับการทดสอบ หรือไดเรกทอรีการทดสอบที่จะสั่งทำงาน (ให้ค่าแบบเดียวกับตัวเลือก -t)" - -#~ msgid "TestRegression" -#~ msgstr "การทดสอบความถดถอย" - -#~ msgid "Regression tester for kate" -#~ msgstr "การทดสอบความถดถอยสำหรับ katel" - -#~ msgid "Error: " -#~ msgstr "ข้อผิดพลาด: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "ผิดพลาดในการเรียก %1 โปรดตรวจสอบว่าใช้ไวยากรณ์ถูกหรือไม่" - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "หากเปิดใช้ตัวเลือกนี้ " -#~ "ตัวแก้ไขข้อความจะทำการคำนวนหาจำนวนของช่องว่างก่อนถึงตำแหน่งแท็บถัดไป " -#~ "จากค่าความกว้างระยะแท็บที่ได้กำหนดไว้ แล้วทำการแทรกช่องว่างตามจำนวนที่คำนวณได้ " -#~ "แทนการใช้อักขระแท็บเพียงตัวเดียว" - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "แ&ทรกช่องว่างแทนการใช้อักขระแท็บ" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "แส&ดงความแตกต่าง" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "ปิดการใช้งาน" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "แฟ้ม %1 ถูกเปิดใช้ด้วยรหัสภาษาแบบยูนิโค้ด UTF-8 แต่มีอักขระที่ใช้งานไม่ได้บางตัวอยู่ " -#~ "มันถูกตั้งให้ใช้โหมดอ่านได้อย่างเดียวเท่านั้น การจัดบันทึกอาจจะทำลายข้อมูลของมันได้ " -#~ "โปรดเปิดแฟ้มใหม่อีกครั้งเพื่อแก้ไขรหัสภาษาให้ถูกต้อง หรือเปิดโหมดอ่านและเขียนได้ " -#~ "อีกครั้งจากเมนู เพื่อให้สามารถแก้ไขมันได้" - -#~ msgid "Binary File Opened" -#~ msgstr "แฟ้มไบนารีถูกเปิดอยู่" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "แฟ้ม UTF-8 ที่เสียหายถูกเปิดอยู่" - -#~ msgid "Universal" -#~ msgstr "รูปแบบสากล" - -#~ msgid "&Word Wrap Document" -#~ msgstr "&ตัดคำเอกสาร" - -#~ msgid "Modify search behavior" -#~ msgstr "แก้ไขพฤติกรรมการค้นหา" - -#~ msgid "&Options" -#~ msgstr "ตัวเ&ลือก" - -#~ msgid "From &cursor" -#~ msgstr "จากเ&คอร์เซอร์" - -#~ msgid "Hi&ghlight all" -#~ msgstr "ทำแถบเ&น้นทั้งหมด" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "สงวนลิขสิทธิ์ (c) 2000-2008 กลุ่มผู้พัฒนา Kate" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "ผู้พัฒนา & ตัวช่วยการเน้น" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "ไม่สามารถอ่านแฟ้ม: '%1' ได้" - -#~ msgid "Success" -#~ msgstr "สำเร็จ" - -#~ msgid "Move Character Right" -#~ msgstr "ย้ายอักขระไปด้านขวา" - -#~ msgid "Move Character Left" -#~ msgstr "ย้ายอักขระไปทางซ้าย" - -#~ msgid "&Overwrite" -#~ msgstr "เขียน&ทับ" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "ตัดคำแบบไม่ตายตัว" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "สงวนลิขสิทธิ์ (c) 2000-2007 กลุ่มผู้พัฒนา Kate" - -#~ msgid "Line must be at least 1" -#~ msgstr "บรรทัดต้องมีอย่างน้อย 1 บรรทัด" - -#~ msgid "Add special item to search pattern" -#~ msgstr "เพิ่มรายการพิเศษไปยังรูปแบบการค้นหา" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "แยกแยะตัวจดจำตำแหน่ง (\\0 ถึง \\9) และ escape sequences (\\n, \\t, ..)" - -#~ msgid "Add special item to replacement text" -#~ msgstr "เพิ่มรายการพิเศษไปยังข้อความที่ใช้แทนที่" - -#~ msgid "Highlight all matches" -#~ msgstr "ทำการเน้นตัวที่เข้าคู่ทั้งหมด" - -#~ msgid "Match case" -#~ msgstr "แยกแยะตัวพิมพ์ใหญ่เล็ก" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "เริ่มค้นหาจากตำแหน่งที่เคอร์เซอร์อยู่ ไม่ใช่จากตอนต้นเอกสาร" - -#~ msgid "From cursor" -#~ msgstr "จากตำแหน่งเคอร์เซอร์" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "ปรับแต่งปุ่มพิมพ์ลัด" - -#, fuzzy -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "ไม่สามารถให้ ISpell ทำงานได้\n" -#~ "โปรดตรวจสอบว่าคุณได้ปรับแต่ง ISpell และปรับแต่งพาธการทำงานของคุณแล้ว" - -#, fuzzy -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "ISpell อาจจะหยุดการทำงาน" - -#~ msgid "unknown" -#~ msgstr "ไม่ทราบ" - -#, fuzzy -#~ msgid "Setup" -#~ msgstr "&หยุด" - -#, fuzzy -#~| msgid "Maximum undo steps:" -#~ msgid "&Maximum undo steps:" -#~ msgstr "ระดับการเรียกคืน:" diff -Nru ktexteditor-5.28.0/po/tr/ktexteditor5.po ktexteditor-5.31.0/po/tr/ktexteditor5.po --- ktexteditor-5.28.0/po/tr/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/tr/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2015-08-10 15:06+0000\n" "Last-Translator: Kaan \n" "Language-Team: Turkish \n" @@ -28,257 +28,316 @@ "X-Generator: Lokalize 1.5\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Kod Tamamlama Yapılandırması" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Her Zaman" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Argüman-ipuçları" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "En uygun eşleşen" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "İsimlendirmeler" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Sınıflar" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Kısayollar" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Bileşimler" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Fonksiyonlar" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Değişkenler" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Sayımlar" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Önek" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Simge" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Alan" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "İsim" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Argümanlar" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Postfix" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Genel" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Korumalı" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Özel" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Durağan" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Sabit" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "İsimlendirme" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Sınıf" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Yapı" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Birleşim" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Fonksiyon" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Değişken" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Sayım" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Şablon" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Sanal" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Üzerine Yaz" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "İçeride" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Arkadaş" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Sinyal" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Slot" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Yerel Alan" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "İsimlendirme Alanı" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Genel Alan" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Bilinmeyen Özellik" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Dil anahtar kelimeleri" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Otomatik Sözcük Tamamlama" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Kabuk Tamamlama" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Yukarıdaki Sözcüğü Yeniden Kullan" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Aşağıdaki Sözcüğü Yeniden Kullan" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Dosya" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "&Düzen" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Benzerlerini Bul" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Git" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "&Görünüm" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Sözcük Kaydırma" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Kenarlıklar" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Kod &Gizleme" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Araçlar" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Sözcük Tamamlama" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Yazım Denetimi" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "&Ayarlar" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Ana Araç Çubuğu" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -287,12 +346,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "&Gizleme işaretleyicilerini göster" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

        If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

        These marks will show bookmarks, for instance.If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -325,11 +386,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "S&imge kenarlığını göster" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -339,11 +402,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "&Satır numaralarını göster" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -353,11 +418,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Satır değişimi işaretlerini göster" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -368,12 +435,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Kaydır&ma çubuğu işaretlerini göster" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

        If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "

        Bu simge menüde ve araç çubuğunda gösterilecek.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Tanım:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Kategori:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Genel" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "&Otomatik tamamlamayı etkinleştir" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "O&tomatik Sözcük Tamamlama" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Tamamlanacak olan kelimenin asgari uzunluğu:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Bir listeden tamamlama ögesi seçildiğinde önceki kelimenin sonunu kaldır" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Tamamlandığında son boşlukları kaldır" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "&Sözcük Tamamlama" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -618,31 +720,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Sıralama" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "Alfabetik" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "Ters Sıralama" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "Büyük küçük harf duyarlı" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Kapsama derinliği:" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Gruplama Sırası (yapılandırmak için bir gruplama yöntemi seçin):" @@ -651,6 +759,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -659,121 +768,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Filtreleme" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Sadece uygun bağlam eşleşmeleri" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Aşağıdaki niteliklere sahip tamamlamaları gizle:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "En yüksek kapsama derinliği:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Sonsuzluk" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Gruplama" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Gruplama Yöntemi" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Kapsam türü (yerel, isimlendirme, genel)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Kapsam (her bir sınıf gibi)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Erişim türü (genel vs.)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Öge türü (fonksiyon vs.)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Erişim Gruplaması Özellikleri" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Gruplamada const'u içer" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Gruplandırmada static'i içer" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Gruplamada sinyalleri ve slotları içer" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Öge Gruplama özellikleri" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Gruplamada şablonları içer" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Sütun Birleştirmesi" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Sütunlar" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Birleştirilen" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Gösterilen" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Durağan Sözcük Kaydırma" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -791,12 +924,14 @@ "b> seçeneğini seçin.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Durağan sözcük kaydırmayı etkinleştir " #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -808,19 +943,21 @@ "çizilecektir.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Durağan &sözcük kaydırma işaretleyicisini göster (uygulanabilirse)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "Sözcükleri bu sütunda kaydı&r:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -830,101 +967,116 @@ "belirleyecektir. " #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "Input Modes" msgid "Input Mode" msgstr "Girdi Kipleri" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format +#| msgid "Default input mode" +msgid "Default input mode:" msgstr "Öntanımlı girinti kipi" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "Otomatik &Parantezler" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Flash matching brackets" msgid "Enable automatic brackets" msgstr "Eşleşen parantezleri yakıp söndür" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "Roland Pabel" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Seçim yoksa geçerli satırı kopyala/kes" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Dosya türü:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Değiştirmek istediğiniz dosya türünü seçin." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Yeni bir dosya türü oluştur." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Yeni" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Geçerli dosya türünü sil." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Sil" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Özellikler" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "DosyaTipi'nin adı, karşılık gelen menü seçeneğinin metni olacak." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Seçim:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Bölüm adı, menülerdeki dosya tiplerini yönetmek için kullanılacaktır" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Değişkenler:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -938,21 +1090,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Renklendirme:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "G&irintileme Kipi:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Dosya u&zantıları:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -965,11 +1121,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "Mime &türleri:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -981,17 +1139,20 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "Mime-tip'lerini kolayca seçmenize yardım edecek bir sihirbaz görüntüler." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Ö&ncelik:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1002,16 +1163,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Renklendirme Dosyaları İndir..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "&Öntanımlı girinti kipi:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1025,36 +1189,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Kullanılan girintileme" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "Tablolayıcılar" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Boşluklar" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Girinti genişliği:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Tablolayıcılar ve &Boşluklar" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "Sekme &genişliği:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1068,11 +1239,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Girinti Özellikleri" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1083,11 +1256,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Ek boşlukları koru" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1097,16 +1272,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "&Panodan yapıştırılan kodun girintilemesini ayarla" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Girinti Eylemleri" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1117,11 +1295,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "&Baştaki boşlukta Gerisilme (Backspace) tuşu girintiyi azaltır" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        سانلىق-مەلۇمات ئەسلىگە كەلتۈرۈش (ياردەم)

        ھەممە سانلىق-مەلۇماتلارنى ئەسلىگە كەلتۈرەلمەيدۇ. " -#~ "ئالماشتۇرۇش ھۆججىتى مۇكەممەل بولماسلىقى مۇمكىن.

        " - -#~ msgid "OK" -#~ msgstr "تامام" - -#~ msgid "Overwrite" -#~ msgstr "قاپلا" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        سانلىق-مەلۇمات ئەسلىگە كەلتۈرۈش " -#~ "(ياردەم)

        بۇ ھۆججەت ئادەتتىكىدەك يېپىلمىغان. سانلىق-" -#~ "مەلۇماتنى ئەسلىگە كەلتۈرەمسىز؟

        " - -#~ msgid "Cancel" -#~ msgstr "ئەمەلدىن قالدۇرۇش" - -#~ msgid "Stop" -#~ msgstr "توختا" - -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "رەڭلەر" - -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "رەڭلەر" - -#~ msgid "Export HlColors..." -#~ msgstr "HlColors چىقار…" - -#~ msgid "Import HlColors..." -#~ msgstr "HlColors ئەكىر…" - -#~ msgid "Template Background" -#~ msgstr "قېلىپ تەگلىكى" - -#~ msgid "Collapse One Local Level" -#~ msgstr "يەرلىك بىر قەۋەتنى قاتلا" - -#~ msgid "Expand One Local Level" -#~ msgstr "يەرلىك بىر قەۋەتنى ياي" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "چوققا قەۋەتنى قاتلا" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "چوققا قەۋەتنى ياي" - -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "چوققا قەۋەتنى قاتلا" diff -Nru ktexteditor-5.28.0/po/uk/ktexteditor5.po ktexteditor-5.31.0/po/uk/ktexteditor5.po --- ktexteditor-5.28.0/po/uk/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/uk/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -1,18 +1,18 @@ # Translation of ktexteditor5.po to Ukrainian -# Copyright (C) 2014-2016 This_file_is_part_of_KDE +# Copyright (C) 2014-2017 This_file_is_part_of_KDE # This file is distributed under the license LGPL version 2.1 or # version 3 or later versions approved by the membership of KDE e.V. # # Eugene Onischenko , 2002, 2003, 2004, 2005, 2006. # Andriy Rysin , 2002, 2003, 2006, 2007. # Ivan Petrouchtchak , 2005, 2006, 2007, 2008. -# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016. +# Yuri Chornoivan , 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017. msgid "" msgstr "" "Project-Id-Version: ktexteditor5\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-16 15:04+0300\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-21 08:16+0200\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "Language: uk\n" @@ -24,257 +24,316 @@ "%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "Налаштування завершення слів" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "Завжди" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "Підказки щодо параметрів" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "Найкращі відповідники" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "Простори імен" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "Класи" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "Структури" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "Об’єднання" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "Функції" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "Змінні" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Нумерації" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "Префікс" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "Піктограма" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "Обсяг" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "Назва" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "Аргументи" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "Суфікс" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Публічний" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Захищений" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Private" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Static" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "Константа" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "Простір назв" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "Клас" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "Структура" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "Об'єднання" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "Функція" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "Змінна" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Перелік" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Шаблон" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "Віртуальний" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "Перезаписати" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "В рядку" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "Друг" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "Сигнал" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "Слот" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "Локальний обсяг" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "Обсяг простору назв" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "Глобальний обсяг" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "Невідома властивість" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "Ключові слова мови" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "Автозавершення слів" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Завершення, як в оболонці" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "Повторно використати слово вище" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "Повторно використати слово нижче" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "&Файл" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "З&міни" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "Знайти варіанти" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "Перейти" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "П&ерегляд" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "Перенесення слів" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "Межі" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "Згортання &коду" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "&Інструменти" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "Завершення слів" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "Правопис" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "П&араметри" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "Головний пенал" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "" @@ -283,11 +342,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "Показувати &маркери згортання" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -298,11 +359,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "Попередній перегляд згорнутого коду" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -314,11 +377,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "Показувати рамку &піктограм" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -328,11 +393,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "Показати номери &рядків" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -342,11 +409,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "Показувати маркери змін у рядках" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -356,11 +425,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "Показувати &позначки на смужці гортання" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

        If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

        " @@ -371,11 +442,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "Показувати з&разок тексту поруч із смужкою гортання" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -385,11 +458,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "Показувати мінікарту на смужці гортання" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -399,47 +474,56 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "Побудувати карту всього документа" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" -msgstr "&Ширина мінікарти" +#, kde-format +msgid "Minim&ap Width:" +msgstr "&Ширина мінікарти:" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "Видимість см&ужок гортання:" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "Завжди ввімкнено" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "Показувати за потреби" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "Завжди вимкнено" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "Вибрати як повинні бути впорядковані закладки у меню Закладки." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Впорядкувати меню закладок" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -449,55 +533,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "За с&творенням" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "Закладки буде впорядковано за номерами рядків, на які вони вказують." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "За &розташуванням" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Команда" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Опис" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Редагувати запис…" #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Вилучити запис" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Додати запис…" #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Додаткові примітки" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "

        Цю піктограму буде показано в меню і пеналі.

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "&Опис:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "&Категорія:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "Загальне" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "Увімкнути &автозавершення" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "А&втозавершення слів" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "Мінімальна довжина слова для завершення:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" "Вилучати кінець попереднього слова, якщо вибрано пункт автодоповнення зі " @@ -574,16 +680,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "Вилучати кінець під час доповнення" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "З&авершення ключових слів" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -593,31 +702,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "Впорядкування" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "За алфавітом" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "У зворотному порядку" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "З врахуванням регістру" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "Глибина успадкування" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "Порядок групування (виберіть метод групування для налаштування):" @@ -626,6 +741,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -634,121 +750,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "Фільтрування" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "Тільки ті збіги, що відповідають контексту" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "Ховати завершення з наступними атрибутами:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "Максимальна глибина успадкування:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "Нескінченність" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "Групування" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "Метод групування" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "Тип обсягу (локальний, простір назв, глобальний)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "Обсяг (напр., в класі)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "Тип доступу (публічний тощо)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "Тип елемента (функція тощо)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "Властивості групування доступу" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "Включати константи в групування" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "Включати статичні в групування" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "Включати сигнали і слоти в групування" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "Властивості групування елементів" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "Включати шаблони в групування" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "Об’єднання колонок" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "Колонки" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "Об’єднано" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "Показано" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "Статичне перенесення слів" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -767,12 +907,14 @@ "Вигляд.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "Ввімкнути статичне пере&несення слів" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -784,17 +926,20 @@ "якщо ви використовуєте шрифт зі фіксованою шириною символів.

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "Показувати позначки статичного &перенесення слів (якщо ввімкнено)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "Пере&носити слова на:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -803,93 +948,111 @@ "символах), при якій редактор автоматично почне новий рядок." #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "Режим введення" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" -msgstr "Типовий режим введення" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" +msgstr "Типовий режим введення:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "Автоматичні дужки" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "Увімкнути автоматичне доповнення дужок" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "Копіювання і вставлення" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "Копіювати/Вирізати поточний рядок, якщо нічого не обрано" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "&Тип файла:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "Виберіть тип файла, який ви хочете змінити." #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "Створити новий тип файлів." #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "&Створити" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "Вилучити поточний тип файла." #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "&Вилучити" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "Властивості" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "Текст відповідного елемента меню буде назвою типу файла." #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "&Розділ:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "Назва розділу використовується для організації типів файлів в меню." #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "&Змінні:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -904,21 +1067,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "&Підсвічування:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "Режим &відступів:" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "Су&фікси назв файлів:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -930,11 +1097,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "&Типи MIME:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -946,17 +1115,20 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "" "Показує майстер, за допомогою якого можна дуже просто вибирати типи MIME." #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "Пр&іоритет:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -966,16 +1138,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "Отримати файли підсвічування…" #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "Типовий режим відступу:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -989,36 +1164,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "Створювати відступ за допомогою" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "&Табуляторів" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "&Пробілів" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "&Ширина відступу:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "Табуляторів &і пробілів" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "&Ширина табуляції:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1032,11 +1214,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "Властивості відступу" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1046,11 +1230,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "&Залишати додаткові пробіли" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1060,16 +1246,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "Ко&ригувати відступ для коду, вставленого з кишені" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "Дії відступу" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1080,12 +1269,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "" "К&лавіша Backspace зменшує рівень відступу, якщо перший символ — пробіл" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        数据恢复 (帮助)

        无法恢复全部数" -#~ "据。 交换文件可能不完整。

        " - -#~ msgid "OK" -#~ msgstr "确定" - -#~ msgid "Overwrite" -#~ msgstr "覆盖" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        数据恢复 (帮助)

        这个文件没" -#~ "有正常关闭。您想要恢复数据吗?

        " - -#~ msgid "Cancel" -#~ msgstr "取消" - -#~ msgid "Stop" -#~ msgstr "停止" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "颜色" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "颜色" - -#~ msgid "Export HlColors..." -#~ msgstr "导出突出颜色.." - -#~ msgid "Import HlColors..." -#~ msgstr "导入突出颜色..." - -#~ msgid "Template Background" -#~ msgstr "模板背景" - -#~ msgid "Collapse One Local Level" -#~ msgstr "折叠一层当前级别" - -#~ msgid "Expand One Local Level" -#~ msgstr "展开一层当前级别" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "折叠顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "展开顶层" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "折叠顶层" - -#~ msgid "&Auto completion enabled" -#~ msgstr "启用自动补全(&A)" - -#~ msgid "Sort the selected text or whole document in natural order.
        " -#~ msgstr "以自然顺序排序选中的文本或整个文档。
        " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "给定一个 JavaScript 函数作为参数,调用方为选中的行和" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "给定一个 JavaScript 函数作为参数,调用方为选中的行 " - -#~ msgid "Form" -#~ msgstr "表单" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "不能找到 KDE 文本编辑器组件;\n" -#~ "请检查您的 KDE 安装。" - -#~ msgid "Use this to close the current document" -#~ msgstr "使用此命令关闭当前文档" - -#~ msgid "Use this command to create a new document" -#~ msgstr "使用此命令创建一个新文档" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "使用此命令打开一个已经存在的文档进行编辑" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "此列表列出了您最近打开过的文件,并且允许您很容易地再次打开它们。" - -#~ msgid "&New Window" -#~ msgstr "新建窗口(&N)" - -#~ msgid "Create another view containing the current document" -#~ msgstr "创建包含当前文档的另一个视图" - -#~ msgid "Choose Editor..." -#~ msgstr "选择编辑器..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "取代系统级的默认编辑器组件设置" - -#~ msgid "Close the current document view" -#~ msgstr "关闭当前文档视图" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "使用此命令显示或者隐藏视图的状态栏" - -#~ msgid "Sho&w Path" -#~ msgstr "显示路径(&W)" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "在窗口标题栏中显示完整的文档路径" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "配置应用程序的键盘快捷键指派。" - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "配置在工具栏中显示的项。" - -#~ msgid "&About Editor Component" -#~ msgstr "关于编辑器组件(&A)" - -#~ msgid " INS " -#~ msgstr " 插入 " - -#~ msgid " LINE " -#~ msgstr " 行 " - -#~ msgid "Open File" -#~ msgstr "打开文件" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "无法读取给定的文件,请检查该文件是否存在或者对当前用户是否可读。" - -#~ msgid " BLOCK " -#~ msgstr " 块 " - -#~ msgid "Read the contents of stdin" -#~ msgstr "从标准输入中读取内容" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "设定要打开的文件的编码" - -#~ msgid "Navigate to this line" -#~ msgstr "定位到这一行" - -#~ msgid "Navigate to this column" -#~ msgstr "定位到这一列" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - 文本编辑器" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 Kate 作者" - -#~ msgid "Choose Editor Component" -#~ msgstr "选择编辑器部件" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "目录包含测试、基本目录和输出目录。" - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "和快照 比较这次测试运行的失败。默认是和最近的失败快照比较,如果" -#~ "不存在,就不进行比较。" - -#~ msgid "Do not suppress debug output" -#~ msgstr "不禁止调试输出" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "重新生成基线(代替检查)" - -#~ msgid "Keep output files even on success" -#~ msgstr "即便成功也保留输出文件" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "把本次测试运行的失败保存为失败快照 " - -#~ msgid "Show the window while running tests" -#~ msgstr "运行测试的时候显示窗口" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "只运行一个单独测试。允许多个选项。" - -#~ msgid "Put output in instead of /output" -#~ msgstr "把输出放到 ,而不是/output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "在单独进程中运行每项测试用例。" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "目录包含测试、基本目录和输出目录。只有在 -b 没有被指定的时候使用它。" - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "相对于测试用例的路径,或者要运行测试用例的目录(和 -t 等价)。" - -#~ msgid "TestRegression" -#~ msgstr "回归测试" - -#~ msgid "Regression tester for kate" -#~ msgstr "Kate 的回归测试人员" - -#~ msgid "Error: " -#~ msgstr "错误:" - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "调用“%1”时出错。请检查是否有语法错误。" diff -Nru ktexteditor-5.28.0/po/zh_TW/ktexteditor5.po ktexteditor-5.31.0/po/zh_TW/ktexteditor5.po --- ktexteditor-5.28.0/po/zh_TW/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/zh_TW/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -10,13 +10,13 @@ # Franklin Weng , 2008, 2010, 2012. # Frank Weng (a.k.a. Franklin) , 2009. # Franklin Weng , 2010, 2011, 2012, 2013, 2014, 2015. -# Jeff Huang , 2016. +# Jeff Huang , 2016, 2017. msgid "" msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" -"PO-Revision-Date: 2016-10-18 19:57+0800\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" +"PO-Revision-Date: 2017-01-23 21:46+0800\n" "Last-Translator: Jeff Huang \n" "Language-Team: Chinese \n" "Language: zh_TW\n" @@ -27,268 +27,329 @@ "Plural-Forms: nplurals=1; plural=0;\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "程式碼自動補完設定" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "永遠" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "參數提示" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "最佳符合" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "命名空間" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "類別" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "結構" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "聯合" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "函式" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "變數" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "Enum" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "前置字串" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "圖示" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "範圍" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "名稱" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "參數" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "後置字串" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "Public" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "Protected" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "Private" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "Static" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "常數" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "命名空間" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "類別" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "結構" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "聯合" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "功能" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "變數" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "Enum" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "Template" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "虛擬" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "覆寫" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "內含" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "朋友" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "信號" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "信號槽" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "本地範圍" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "命名空間範圍" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "全域範圍" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "未知屬性" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "語言關鍵字" #: completion/katewordcompletion.cpp:90 +#, kde-format msgid "Auto Word Completion" msgstr "自動文字補完" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "Shell 補完" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "重新使用上方的單字" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "重新使用下方的單字" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "檔案(&F)" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "編輯(&E)" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "尋找變異" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "跳到" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "檢視(&V)" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 +#, kde-format msgid "Word Wrap" msgstr "文字折行" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "邊框" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "程式碼摺疊(&C)" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "工具(&T)" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "文字補完" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "拼字" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "設定(&S)" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "主工具列" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 +#, kde-format msgid "" "If this option is checked, every new view will display marks for folding." msgstr "開啟此選項的話,每個新檢視都會顯示程式折疊標記。" #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 +#, kde-format msgid "Show &folding markers" msgstr "顯示折疊記號" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 +#, kde-format msgid "" "If checked, hovering over a folded region shows a preview of the folded text " "in a popup." @@ -297,11 +358,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 +#, kde-format msgid "Show preview of folded code" msgstr "顯示被折疊的程式碼的預覽" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

        If this option is checked, every new view will display an icon border on " "the left hand side.

        The icon border shows bookmark signs, for instance." @@ -312,11 +375,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "顯示圖示邊框(&I)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -324,11 +389,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "顯示行號(&L)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 +#, kde-format msgid "" "If this option is checked, a small indicator for modified and saved lines is " "shown on the left hand side." @@ -336,11 +403,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 +#, kde-format msgid "Show line modification markers" msgstr "顯示行變更標記" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 +#, kde-format msgid "" "

        If this option is checked, every new view will show marks on the vertical " "scrollbar.

        These marks will show bookmarks, for instance.

        " @@ -350,11 +419,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "顯示捲動軸標記(&S)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 +#, kde-format msgid "" "

        If this option is checked, hovering over the vertical scrollbar will show " "a preview of the text.

        " @@ -362,11 +433,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "在捲動軸上顯示文字預覽(&P)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map on the " "vertical scrollbar." @@ -374,11 +447,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 +#, kde-format msgid "Show scrollbar mini-map" msgstr "顯示捲動軸小地圖" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 +#, kde-format msgid "" "If this option is checked, every new view will show a mini map of the whole " "document on the vertical scrollbar." @@ -386,47 +461,56 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 +#, kde-format msgid "Map the whole document" msgstr "映射整份文件" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -msgid "Minim&ap Width" -msgstr "小地圖寬度(&A)" +#, kde-format +msgid "Minim&ap Width:" +msgstr "小地圖寬度(&A):" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "捲動軸可見度:(&L)" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "永遠開啟" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "需要時顯示" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 +#, kde-format msgid "Always Off" msgstr "永遠關閉" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "選擇在「書籤」選單中怎麼排序這些書籤。" #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "排序書籤選單" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -434,55 +518,65 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "依建立先後順序(&Y)" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "書籤會依據它們擺放的行號來排序。" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "依位置(&T)" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "指令" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "描述" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "編輯項目..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "移除項目" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "新增項目..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "詳細備註" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

        The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

        " msgstr "

        此圖示會顯示在選單與工具列上。

        " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "描述(&D):" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "類別(&C):" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "一般" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 +#, kde-format msgid "Enable &auto completion" msgstr "開啟文字補完(&A)" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 +#, kde-format msgid "A&uto Word Completion" msgstr "自動文字補完(&U)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "要補完的最小單字長度:" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "當選擇補完項目時,移除前一個單字的尾端" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 +#, kde-format msgid "Remove tail on complete" msgstr "完成時移除尾端" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 +#, kde-format msgid "&Keyword completion" msgstr "關鍵字補完(&K)" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -573,31 +682,37 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "排序" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "依字母" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "反序" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 +#, kde-format msgid "Case sensitive" msgstr "區分大小寫" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 +#, kde-format msgid "Inheritance depth" msgstr "繼承深度" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 +#, kde-format msgid "Order of Groupings (select a grouping method to configure):" msgstr "群組順序(選取要設定的群組方法):" @@ -606,6 +721,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -614,121 +730,145 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "過濾中" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "只比對合適的文字" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "依以下屬性隱藏補完:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 +#, kde-format msgid "Maximum inheritance depth:" msgstr "最大繼承深度:" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "無限" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "群組中" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 +#, kde-format msgid "Grouping Method" msgstr "群組方法" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "範圍型態(本地端,命名空間,全域)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "範圍(如類別)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "存取型態(如 public)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "項目型態(如函式等)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 +#, kde-format msgid "Access Grouping Properties" msgstr "存取群組屬性" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "在群組時引入常數(const)" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "在群組時引入靜態變數(static)" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "在群組時引入信號與信號槽(signal and slots)" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 +#, kde-format msgid "Item Grouping properties" msgstr "項目群組屬性" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "在群組時引入樣本(templates)" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "欄位合併" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "欄位" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "已合併" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "已顯示" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "靜態文字折行" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 +#: dialogs/editconfigwidget.ui:26 +#, kde-format msgid "" "

        Automatically start a new line of text when the current line exceeds the " "length specified by the Wrap words at: option.

        This option does " @@ -743,12 +883,14 @@ "

        " #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "開啟靜態文字折行(&W)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

        If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

        Note " @@ -758,110 +900,131 @@ "固定字型時才會出現。

        " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "顯示靜態文字折行標記(&W)" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 +#: dialogs/editconfigwidget.ui:60 +#, kde-format msgid "Wra&p words at:" msgstr "文字折行於(&P):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." msgstr "如果選擇要做文字折行,此選項可以決定每行的長度超過多少時折行。" #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 +#: dialogs/editconfigwidget.ui:104 +#, kde-format msgid "Input Mode" msgstr "輸入模式" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -msgid "Default input mode" -msgstr "預設輸入模式" +#: dialogs/editconfigwidget.ui:110 +#, kde-format +msgid "Default input mode:" +msgstr "預設輸入模式:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 +#: dialogs/editconfigwidget.ui:136 +#, kde-format msgid "Auto Brackets" msgstr "自動補齊括號" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 +#: dialogs/editconfigwidget.ui:142 +#, kde-format msgid "Enable automatic brackets" msgstr "啟用自動補齊括號" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 +#: dialogs/editconfigwidget.ui:152 +#, kde-format msgid "Copy and Paste" msgstr "複製並貼上" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "若未選取,則複製/剪下目前這一行" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "檔案類型(&F):" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 +#, kde-format msgid "Select the filetype you want to change." msgstr "選擇你想要變更的檔案型態。" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "建立新的檔案型態。" #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "新增(&N)" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "刪除目前的檔案型態。" #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "刪除(&D)" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "屬性" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "檔案型態的名稱就會是相關選單項目的文字。" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "區段(&S):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "此區段名稱用於在選單中組織檔案型態。" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "變數(&V):" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

        This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -874,21 +1037,25 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "語法突顯(&H):" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 +#, kde-format msgid "&Indentation Mode:" msgstr "縮排模式(&I):" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "副檔名(&X):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -899,11 +1066,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "MIME 類型(&T):" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -914,16 +1083,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "顯示協助您選取 MIME 型態的精靈。" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "優先權(&R):" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -933,16 +1105,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "下載突顯支援檔..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "預設縮排模式:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -954,36 +1129,43 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 +#, kde-format msgid "Indent using" msgstr "縮排使用" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 +#, kde-format msgid "&Tabulators" msgstr "定位點(&T)" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 +#, kde-format msgid "&Spaces" msgstr "空格(&S)" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 +#, kde-format msgid "&Indentation width:" msgstr "縮排寬度(&I):" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 +#, kde-format msgid "Tabulators &and Spaces" msgstr "定位點與空白(&A)" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "定位點寬度(&D):" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -995,11 +1177,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "縮排內容" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1007,11 +1191,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 +#, kde-format msgid "&Keep extra spaces" msgstr "保持額外空白(&K)" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1021,16 +1207,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 +#, kde-format msgid "Adjust indentation of code &pasted from the clipboard" msgstr "從剪貼簿貼上程式碼時自動縮排(&P)" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "縮排動作" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1040,11 +1229,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 +#, kde-format msgid "&Backspace key in leading blank space unindents" msgstr "Backspace 鍵減少縮排等級(&B)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 +#, kde-format msgid "" "\n" -#~ "

        Data Recovery (Help)

        Could " -#~ "not recover all data. The swap file was probably incomplete.

        " -#~ msgstr "" -#~ "\n" -#~ "

        資料回復 (說明)

        無法回復所有的資料。交換檔可能不完整。

        " - -#~ msgid "OK" -#~ msgstr "確定" - -#~ msgid "Overwrite" -#~ msgstr "覆寫" - -#~ msgid "" -#~ "\n" -#~ "

        Data Recovery (Help)

        The file was not closed appropriately. Do you want to recover the " -#~ "data?

        " -#~ msgstr "" -#~ "\n" -#~ "

        資料回復 (說明)

        此檔案並未" -#~ "正確關閉。您要試著回復資料嗎?

        " - -#~ msgid "Cancel" -#~ msgstr "取消" - -#~ msgid "Stop" -#~ msgstr "停止" - -#~ msgid "Template Background" -#~ msgstr "樣本背景" - -#~ msgid "Export HlColors..." -#~ msgstr "匯出突顯色彩..." - -#~ msgid "Import HlColors..." -#~ msgstr "匯入突顯色彩..." - -#~ msgid "Collapse One Local Level" -#~ msgstr "收起一個層級" - -#~ msgid "Expand One Local Level" -#~ msgstr "展開一個層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "收起頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "展開頂端層級" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "收起頂端層級" - -#~ msgid "&Auto completion enabled" -#~ msgstr "文字補完啟動(&A)" - -#~ msgid "Sort the selected text or whole document in natural order.
        " -#~ msgstr "將選取的文字或整份文件以自然順序排列。
        " - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines and" -#~ msgstr "傳一個 JavaScript 的函式做為參數,對(選取的)行的清單做動作" - -#~ msgid "" -#~ "Given a JavaScript function as argument, call that for the list of " -#~ "(selected) lines " -#~ msgstr "傳一個 JavaScript 的函式做為參數,對(選取的)行的清單做動作" - -#~ msgid "Form" -#~ msgstr "表單F):" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "找不到 KDE 文字編輯器元件;\n" -#~ "請檢查您的 KDE 安裝。" - -#~ msgid "Use this to close the current document" -#~ msgstr "使用此項關閉目前的文件" - -#~ msgid "Use this command to create a new document" -#~ msgstr "使用這個指令來建立新的文件" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "使用這個指令來開啟既存文件以供編輯" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "這是您最近開啟的檔案清單,並且讓您可以很容易的再次開啟它們。" - -#~ msgid "&New Window" -#~ msgstr "開新視窗(&N)" - -#~ msgid "Create another view containing the current document" -#~ msgstr "建立另一個包含目前文件的檢視" - -#~ msgid "Choose Editor..." -#~ msgstr "選擇編輯器..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "覆蓋系統的預設編輯元件設定" - -#~ msgid "Close the current document view" -#~ msgstr "關閉目前文件檢視" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "使用這個指令來顯示或隱藏檢示的狀態列" - -#~ msgid "Sho&w Path" -#~ msgstr "顯示路徑(&W)" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "在視窗說明中顯示完整的文件路徑" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "設定該應用程式的鍵盤快速鍵配置。" - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "設定那些項目應該出現在工具列中。" - -#~ msgid "&About Editor Component" -#~ msgstr "關於編輯器元件(&A)" - -#~ msgid " INS " -#~ msgstr "插入" - -#~ msgid " LINE " -#~ msgstr " 行 " - -#~ msgid "Open File" -#~ msgstr "開啟檔案" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "無法讀取指定的檔案,請檢查它是否存在或者目前使用者是否可以讀取。" - -#~ msgid " BLOCK " -#~ msgstr " 區塊 " - -#~ msgid "Read the contents of stdin" -#~ msgstr "讀取 stdin 的內容" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "設定要開啟檔案的編碼" - -#~ msgid "Navigate to this line" -#~ msgstr "導覽至這一行" - -#~ msgid "Navigate to this column" -#~ msgstr "導覽至這一欄" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - 文字編輯器" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005 Kate 作者群" - -#~ msgid "Choose Editor Component" -#~ msgstr "選擇編輯器元件" - -#~ msgid "The swap file is broken. Recovery might be incomplete." -#~ msgstr "暫存檔已損毀。修復可能不完整。" - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "目錄包含測試、基本與輸出目錄。" - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "將此次測試的結果與此快照點 做比較。預設是與最近抓到的失敗快照點" -#~ "做比較,如果不存在失敗快照點的話就不做比較。" - -#~ msgid "Do not suppress debug output" -#~ msgstr "不要省略除錯輸出" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "重新產生 baseline(而不檢查)" - -#~ msgid "Keep output files even on success" -#~ msgstr "即使成功也保留輸出檔" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "儲存此次執行的失敗結果為失敗快照點 " - -#~ msgid "Show the window while running tests" -#~ msgstr "執行測試時顯示視窗" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "只執行單一測試。允許多個選項。" - -#~ msgid "Put output in instead of /output" -#~ msgstr "將輸出放在 而不是 /output" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "每個測試條件都在不同的行程執行。" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "目錄包含測試、基本與輸出目錄。只有在未指定 -b 時才有作用。" - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "測試的相對路徑,或是要執行的測試(與 -t 相同)。" - -#~ msgid "TestRegression" -#~ msgstr "測試正規表示式" - -#~ msgid "Regression tester for kate" -#~ msgstr "Kate 的正規表示式測試器" - -#~ msgid "Error: " -#~ msgstr "錯誤:" - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "呼叫 %1 時發生錯誤。請檢查是否有語法錯誤。" - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "開啟此選項的話,編輯器會根據定位點寬度來計算要插入的空白數量,而不直接插" -#~ "入 Tab 字元。" - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "插入空白而非 Tab(&I)" - -#, fuzzy -#~| msgid "&View Difference" -#~ msgid "View Differences" -#~ msgstr "檢視差異(&V)" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "已關閉" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "檔案 %1 已用 UTF-8 編碼開啟,但是裡面有不合法的字元。所以目前此檔案設定為" -#~ "唯讀模式,因為若是做儲存的動作可能會將其內容損毀。請選用正確的編碼來重新開" -#~ "啟此檔案,或是在選單中開啟讀寫模式來編輯。" - -#~ msgid "Binary File Opened" -#~ msgstr "開啟了二進位檔案" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "有問題的 UTF-8 檔案已開啟" - -#~ msgid "Universal" -#~ msgstr "一般" - -#~ msgid "&Word Wrap Document" -#~ msgstr "文件自動折行(&W)" - -#~ msgid "KSqueezedTextLabel" -#~ msgstr "KSqueezedTextLabel" - -#~ msgid "Modify search behavior" -#~ msgstr "變更搜尋行為" - -#~ msgid "&Options" -#~ msgstr "選項(&O)" - -#~ msgid "From &cursor" -#~ msgstr "從游標處起(&C)" - -#~ msgid "Hi&ghlight all" -#~ msgstr "全部突顯(&G)" - -#~ msgid "Add &BOM" -#~ msgstr "新增位元順序標記(&B)" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008 Kate 作者群" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "開發者與突顯功能精靈" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "無法讀取檔案 %1" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "啟動文稿 %1 的直譯器失敗,指令為 %2" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "這會將目前 Kate 裡的文件當成 javascript 執行" - -#~ msgid "On-the-Fly Spellcheck enabled" -#~ msgstr "即時拼字檢查已開啟" - -#~ msgid "Success" -#~ msgstr "成功" - -#~ msgid "Move Character Right" -#~ msgstr "右移字元" - -#~ msgid "Move Character Left" -#~ msgstr "左移字元" - -#~ msgid "&Overwrite" -#~ msgstr "覆寫(&O)" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "動態文字折行(&D)" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2007 Kate 作者群" - -#~ msgid "Line must be at least 1" -#~ msgstr "行必須最少為 1。" - -#~ msgid "There is not that many lines in this document" -#~ msgstr "此文件中沒有那麼多行" - -#~ msgid "Add special item to search pattern" -#~ msgstr "在搜尋樣式中新增特殊項目" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "解析替換字元(\\0 到 \\9)及跳脫序列(\\n、\\t )等" - -#~ msgid "Add special item to replacement text" -#~ msgstr "在取代樣式中新增特殊項目" - -#~ msgid "Highlight all matches" -#~ msgstr "把符合處全部突顯" - -#~ msgid "Match case" -#~ msgstr "符合大小寫" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "從游標處開始搜尋,而非從文件起始處" - -#~ msgid "From cursor" -#~ msgstr "從游標處起" - -#~ msgctxt "Language" -#~ msgid "Ddoc" -#~ msgstr "Ddoc" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "

        When selected, vi " -#~ "commands will override Kate's built-in commands. For example: Ctrl+R will " -#~ "redo, and override the standard action (showing the search & replace " -#~ "dialog).

        " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "

        選取此選項的話,vi 的命" -#~ "令會覆蓋 Kate 的內建命令。例如,Ctrl-R 會做復原的動作,而不是內建的出現搜" -#~ "尋與取代對話框。)

        " - -#~ msgid "-- VI: COMMAND LINE --" -#~ msgstr "-- VI:命令列模式 --" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "快捷鍵組態" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "您正試著以非 ASCII 編碼儲存 python 檔,而且檔案中沒有為編碼 %1 指定正確的" -#~ "編碼行。" - -#~ msgid "No encoding header" -#~ msgstr "沒有編碼標頭" diff -Nru ktexteditor-5.28.0/src/buffer/katetextbuffer.cpp ktexteditor-5.31.0/src/buffer/katetextbuffer.cpp --- ktexteditor-5.28.0/src/buffer/katetextbuffer.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/buffer/katetextbuffer.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -61,8 +61,8 @@ , m_editingMinimalLineChanged(-1) , m_editingMaximalLineChanged(-1) , m_encodingProberType(KEncodingProber::Universal) - , m_fallbackTextCodec(0) - , m_textCodec(0) + , m_fallbackTextCodec(nullptr) + , m_textCodec(nullptr) , m_generateByteOrderMark(false) , m_endOfLineMode(eolUnix) , m_newLineAtEof(false) @@ -78,7 +78,7 @@ TextBuffer::~TextBuffer() { // remove document pointer, this will avoid any notifyAboutRangeChange to have a effect - m_document = 0; + m_document = nullptr; // not allowed during editing Q_ASSERT(m_editingTransactions == 0); @@ -297,7 +297,7 @@ * the previous one could even end up with zero lines * this call will trigger fixStartLines */ - m_blocks.at(blockIndex)->unwrapLine(line, (blockIndex > 0) ? m_blocks.at(blockIndex - 1) : 0, firstLineInBlock ? (blockIndex - 1) : blockIndex); + m_blocks.at(blockIndex)->unwrapLine(line, (blockIndex > 0) ? m_blocks.at(blockIndex - 1) : nullptr, firstLineInBlock ? (blockIndex - 1) : blockIndex); --m_lines; // decrement index for later fixup, if we modified the block in front of the found one @@ -572,7 +572,7 @@ /** * triple play, maximal three loading rounds * 0) use the given encoding, be done, if no encoding errors happen - * 1) use BOM to decided if unicode or if that fails, use encoding prober, if no encoding errors happen, be done + * 1) use BOM to decided if Unicode or if that fails, use encoding prober, if no encoding errors happen, be done * 2) use fallback encoding, be done, if no encoding errors happen * 3) use again given encoding, be done in any case */ @@ -601,7 +601,7 @@ */ QTextCodec *codec = m_textCodec; if (i == 1) { - codec = 0; + codec = nullptr; } else if (i == 2) { codec = m_fallbackTextCodec; } @@ -627,7 +627,7 @@ break; } - // get unicode data for this line + // get Unicode data for this line const QChar *unicodeData = file.unicode() + offset; diff -Nru ktexteditor-5.28.0/src/buffer/katetextcursor.cpp ktexteditor-5.31.0/src/buffer/katetextcursor.cpp --- ktexteditor-5.28.0/src/buffer/katetextcursor.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/buffer/katetextcursor.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -29,8 +29,8 @@ TextCursor::TextCursor(TextBuffer &buffer, const KTextEditor::Cursor &position, InsertBehavior insertBehavior) : m_buffer(buffer) - , m_range(0) - , m_block(0) + , m_range(nullptr) + , m_block(nullptr) , m_line(-1) , m_column(-1) , m_moveOnInsert(insertBehavior == MoveOnInsert) @@ -42,7 +42,7 @@ TextCursor::TextCursor(TextBuffer &buffer, TextRange *range, const KTextEditor::Cursor &position, InsertBehavior insertBehavior) : m_buffer(buffer) , m_range(range) - , m_block(0) + , m_block(nullptr) , m_line(-1) , m_column(-1) , m_moveOnInsert(insertBehavior == MoveOnInsert) @@ -96,7 +96,7 @@ if (!m_range) { m_buffer.m_invalidCursors.insert(this); } - m_block = 0; + m_block = nullptr; m_line = m_column = -1; return; } diff -Nru ktexteditor-5.28.0/src/buffer/katetextfolding.cpp ktexteditor-5.31.0/src/buffer/katetextfolding.cpp --- ktexteditor-5.28.0/src/buffer/katetextfolding.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/buffer/katetextfolding.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -31,7 +31,7 @@ TextFolding::FoldingRange::FoldingRange(TextBuffer &buffer, const KTextEditor::Range &range, FoldingRangeFlags _flags) : start(new TextCursor(buffer, range.start(), KTextEditor::MovingCursor::MoveOnInsert)) , end(new TextCursor(buffer, range.end(), KTextEditor::MovingCursor::MoveOnInsert)) - , parent(0) + , parent(nullptr) , flags(_flags) , id(-1) { @@ -123,7 +123,7 @@ */ if (!newRange->start->isValid() || !newRange->end->isValid() - || !insertNewFoldingRange(0 /* no parent here */, m_foldingRanges, newRange)) { + || !insertNewFoldingRange(nullptr /* no parent here */, m_foldingRanges, newRange)) { /** * cleanup and be done */ diff -Nru ktexteditor-5.28.0/src/buffer/katetextfolding.h ktexteditor-5.31.0/src/buffer/katetextfolding.h --- ktexteditor-5.28.0/src/buffer/katetextfolding.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/buffer/katetextfolding.h 2017-02-05 11:12:49.000000000 +0000 @@ -117,7 +117,7 @@ * @param foldedRangeId if the line is not visible and that pointer is not 0, will be filled with id of range hiding the line or -1 * @return is that line visible? */ - bool isLineVisible(int line, qint64 *foldedRangeId = 0) const; + bool isLineVisible(int line, qint64 *foldedRangeId = nullptr) const; /** * Ensure that a given line will be visible. diff -Nru ktexteditor-5.28.0/src/buffer/katetextloader.h ktexteditor-5.31.0/src/buffer/katetextloader.h --- ktexteditor-5.28.0/src/buffer/katetextloader.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/buffer/katetextloader.h 2017-02-05 11:12:49.000000000 +0000 @@ -51,7 +51,7 @@ * @param proberType prober type */ TextLoader(const QString &filename, KEncodingProber::ProberType proberType) - : m_codec(0) + : m_codec(nullptr) , m_eof(false) // default to not eof , m_lastWasEndOfLine(true) // at start of file, we had a virtual newline , m_lastWasR(false) // we have not found a \r as last char @@ -60,7 +60,7 @@ , m_eol(TextBuffer::eolUnknown) // no eol type detected atm , m_buffer(KATE_FILE_LOADER_BS, 0) , m_digest(QCryptographicHash::Sha1) - , m_converterState(0) + , m_converterState(nullptr) , m_bomFound(false) , m_firstRead(true) , m_proberType(proberType) @@ -156,8 +156,8 @@ } /** - * internal unicode data array - * @return internal unicode data + * internal Unicode data array + * @return internal Unicode data */ const QChar *unicode() const { @@ -174,8 +174,8 @@ } /** - * read a line, return length + offset in unicode data - * @param offset offset into internal unicode data for read line + * read a line, return length + offset in Unicode data + * @param offset offset into internal Unicode data for read line * @param length length of read line * @return true if no encoding errors occurred */ @@ -213,12 +213,12 @@ // update hash sum m_digest.addData(m_buffer.data(), c); - // detect byte order marks & codec for byte order markers on first read + // detect byte order marks & codec for byte order marks on first read int bomBytes = 0; if (m_firstRead) { // use first 16 bytes max to allow BOM detection of codec QByteArray bom(m_buffer.data(), qMin(16, c)); - QTextCodec *codecForByteOrderMark = QTextCodec::codecForUtfText(bom, 0); + QTextCodec *codecForByteOrderMark = QTextCodec::codecForUtfText(bom, nullptr); // if codec != null, we found a BOM! if (codecForByteOrderMark) { @@ -248,13 +248,13 @@ m_codec = codecForByteOrderMark; } else { /** - * no unicode BOM found, trigger prober + * no Unicode BOM found, trigger prober */ /** * first: try to get HTML header encoding */ - if (QTextCodec *codecForHtml = QTextCodec::codecForHtml (m_buffer, 0)) { + if (QTextCodec *codecForHtml = QTextCodec::codecForHtml (m_buffer, nullptr)) { m_codec = codecForHtml; } diff -Nru ktexteditor-5.28.0/src/buffer/katetextrange.cpp ktexteditor-5.31.0/src/buffer/katetextrange.cpp --- ktexteditor-5.28.0/src/buffer/katetextrange.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/buffer/katetextrange.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -31,8 +31,8 @@ : m_buffer(buffer) , m_start(buffer, this, range.start(), (insertBehavior &ExpandLeft) ? Kate::TextCursor::StayOnInsert : Kate::TextCursor::MoveOnInsert) , m_end(buffer, this, range.end(), (insertBehavior &ExpandRight) ? Kate::TextCursor::MoveOnInsert : Kate::TextCursor::StayOnInsert) - , m_view(0) - , m_feedback(0) + , m_view(nullptr) + , m_feedback(nullptr) , m_zDepth(0.0) , m_attributeOnlyForViews(false) , m_invalidateIfEmpty(emptyBehavior == InvalidateIfEmpty) @@ -49,7 +49,7 @@ /** * reset feedback, don't want feedback during destruction */ - m_feedback = 0; + m_feedback = nullptr; // remove range from m_ranges fixLookup(m_start.line(), m_end.line(), -1, -1); @@ -279,7 +279,7 @@ * notify all views (can be optimized later) */ if (m_attribute || m_feedback) { - m_buffer.notifyAboutRangeChange(0, m_start.line(), m_end.line(), m_attribute); + m_buffer.notifyAboutRangeChange(nullptr, m_start.line(), m_end.line(), m_attribute); } } diff -Nru ktexteditor-5.28.0/src/buffer/katetextrange.h ktexteditor-5.31.0/src/buffer/katetextrange.h --- ktexteditor-5.28.0/src/buffer/katetextrange.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/buffer/katetextrange.h 2017-02-05 11:12:49.000000000 +0000 @@ -189,7 +189,7 @@ * This will trigger update of the relevant view parts, if the view changed. * Set view before the attribute, that will avoid not needed redraws. * - * \param attribute View to assign to this range. If null, simply + * \param view View to assign to this range. If null, simply * removes the previous view. */ void setView(KTextEditor::View *view) Q_DECL_OVERRIDE; @@ -236,7 +236,7 @@ * Sets the currently active MovingRangeFeedback for this range. * This will trigger evaluation if feedback must be send again (for example if mouse is already inside range). * - * \param attribute MovingRangeFeedback to assign to this range. If null, simply + * \param feedback MovingRangeFeedback to assign to this range. If null, simply * removes the previous MovingRangeFeedback. */ void setFeedback(KTextEditor::MovingRangeFeedback *feedback) Q_DECL_OVERRIDE; diff -Nru ktexteditor-5.28.0/src/CMakeLists.txt ktexteditor-5.31.0/src/CMakeLists.txt --- ktexteditor-5.28.0/src/CMakeLists.txt 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/CMakeLists.txt 2017-02-05 11:12:49.000000000 +0000 @@ -1,9 +1,6 @@ # handle data files, .desktop & .cmake add_subdirectory(data) -# syntax highlighting data files -add_subdirectory( syntax/data ) - # jscripts for the part add_subdirectory( script/data ) @@ -214,20 +211,6 @@ inputmode/kateabstractinputmodefactory.cpp inputmode/katenormalinputmode.cpp inputmode/katenormalinputmodefactory.cpp - -# syntax hl files as resource file -"${CMAKE_CURRENT_BINARY_DIR}/syntax_resource.cpp" -) - -# tool to create json index of highlightings, will validate all highlightings, too! -add_executable(katehighlightingindexer syntax/data/katehighlightingindexer.cpp) -target_link_libraries(katehighlightingindexer Qt5::XmlPatterns) - -# generate the hl index resource -add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/syntax_resource.cpp" - COMMAND katehighlightingindexer "${CMAKE_CURRENT_BINARY_DIR}/syntax/data/index.json" "${CMAKE_CURRENT_SOURCE_DIR}/syntax/data/language.xsd" "${CMAKE_CURRENT_BINARY_DIR}/syntax/data/index.qrc" - COMMAND ${Qt5Core_RCC_EXECUTABLE} -o "${CMAKE_CURRENT_BINARY_DIR}/syntax_resource.cpp" "${CMAKE_CURRENT_BINARY_DIR}/syntax/data/index.qrc" - DEPENDS GeneratePhpXmlFiles ${ALL_HIGHLIGHTERS_DEPS} ) ki18n_wrap_ui(ktexteditor_LIB_SRCS @@ -318,6 +301,7 @@ KF5::IconThemes KF5::ItemViews KF5::SonnetCore + KF5::SyntaxHighlighting ${KTEXTEDITOR_OPTIONAL_LIBS} ) diff -Nru ktexteditor-5.28.0/src/completion/expandingtree/expandingdelegate.h ktexteditor-5.31.0/src/completion/expandingtree/expandingdelegate.h --- ktexteditor-5.28.0/src/completion/expandingtree/expandingdelegate.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/expandingtree/expandingdelegate.h 2017-02-05 11:12:49.000000000 +0000 @@ -38,7 +38,7 @@ Q_OBJECT public: - explicit ExpandingDelegate(ExpandingWidgetModel *model, QObject *parent = 0L); + explicit ExpandingDelegate(ExpandingWidgetModel *model, QObject *parent = nullptr); // Overridden to create highlighting for current index void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const Q_DECL_OVERRIDE; diff -Nru ktexteditor-5.28.0/src/completion/expandingtree/expandingwidgetmodel.cpp ktexteditor-5.31.0/src/completion/expandingtree/expandingwidgetmodel.cpp --- ktexteditor-5.28.0/src/completion/expandingtree/expandingwidgetmodel.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/expandingtree/expandingwidgetmodel.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -361,7 +361,7 @@ edit->resize(200, 50); //Make the widget small so it embeds nicely. m_expandingWidgets[idx] = edit; } else { - m_expandingWidgets[idx] = 0; + m_expandingWidgets[idx] = nullptr; } } @@ -394,7 +394,7 @@ { QModelIndex idx(firstColumn(idx_)); - QWidget *w = 0; + QWidget *w = nullptr; if (m_expandingWidgets.contains(idx)) { w = m_expandingWidgets[idx]; } @@ -462,7 +462,7 @@ if (m_expandingWidgets.contains(idx)) { return m_expandingWidgets[idx]; } else { - return 0; + return nullptr; } } diff -Nru ktexteditor-5.28.0/src/completion/kateargumenthinttree.cpp ktexteditor-5.31.0/src/completion/kateargumenthinttree.cpp --- ktexteditor-5.28.0/src/completion/kateargumenthinttree.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/kateargumenthinttree.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -32,7 +32,7 @@ #include "kateview.h" #include -KateArgumentHintTree::KateArgumentHintTree(KateCompletionWidget *parent) : ExpandingTree(0), m_parent(parent) //Do not use the completion-widget as widget-parent, because the argument-hint-tree will be rendered separately +KateArgumentHintTree::KateArgumentHintTree(KateCompletionWidget *parent) : ExpandingTree(nullptr), m_parent(parent) //Do not use the completion-widget as widget-parent, because the argument-hint-tree will be rendered separately { setFrameStyle(QFrame::Box | QFrame::Plain); diff -Nru ktexteditor-5.28.0/src/completion/katecompletionconfig.cpp ktexteditor-5.31.0/src/completion/katecompletionconfig.cpp --- ktexteditor-5.28.0/src/completion/katecompletionconfig.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/katecompletionconfig.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -325,7 +325,7 @@ m_model->setFilterContextMatchesOnly(ui->filteringContextMatchOnly->isChecked()); m_model->setFilterByAttribute(ui->filteringHideAttributes->isChecked()); - CodeCompletionModel::CompletionProperties attributes = 0; + CodeCompletionModel::CompletionProperties attributes = nullptr; for (int i = 0; i < ui->filteringAttributesList->count(); ++i) { QListWidgetItem *item = ui->filteringAttributesList->item(i); if (item->checkState() == Qt::Checked) { @@ -339,7 +339,7 @@ // Grouping m_model->setGroupingEnabled(ui->grouping->isChecked()); - KateCompletionModel::GroupingMethods groupingMethod = 0; + KateCompletionModel::GroupingMethods groupingMethod = nullptr; if (m_groupingScopeType->checkState(0) == Qt::Checked) { groupingMethod = KateCompletionModel::ScopeType; } diff -Nru ktexteditor-5.28.0/src/completion/katecompletionconfig.h ktexteditor-5.31.0/src/completion/katecompletionconfig.h --- ktexteditor-5.28.0/src/completion/katecompletionconfig.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/katecompletionconfig.h 2017-02-05 11:12:49.000000000 +0000 @@ -41,7 +41,7 @@ Q_OBJECT public: - explicit KateCompletionConfig(KateCompletionModel *model, QWidget *parent = 0L); + explicit KateCompletionConfig(KateCompletionModel *model, QWidget *parent = nullptr); virtual ~KateCompletionConfig(); /** diff -Nru ktexteditor-5.28.0/src/completion/katecompletionmodel.cpp ktexteditor-5.31.0/src/completion/katecompletionmodel.cpp --- ktexteditor-5.28.0/src/completion/katecompletionmodel.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/katecompletionmodel.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -365,7 +365,7 @@ Qt::ItemFlags KateCompletionModel::flags(const QModelIndex &index) const { if (!hasCompletionModel() || !index.isValid()) { - return 0; + return nullptr; } if (!hasGroups() || groupOfParent(index)) { @@ -843,12 +843,12 @@ if (!hasGroups()) { return m_ungrouped; } else { - return 0L; + return nullptr; } } if (groupOfParent(index)) { - return 0L; + return nullptr; } if (index.row() < 0 || index.row() >= m_rowTable.count()) { @@ -1857,7 +1857,7 @@ // @todo Make this faster bool doHide = false; - CodeCompletionModel *hideModel = 0; + CodeCompletionModel *hideModel = nullptr; foreach (Group *group, m_rowTable) foreach (const Item &item, group->filtered) diff -Nru ktexteditor-5.28.0/src/completion/katecompletionmodel.h ktexteditor-5.31.0/src/completion/katecompletionmodel.h --- ktexteditor-5.28.0/src/completion/katecompletionmodel.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/katecompletionmodel.h 2017-02-05 11:12:49.000000000 +0000 @@ -50,7 +50,7 @@ Q_OBJECT public: - explicit KateCompletionModel(KateCompletionWidget *parent = 0L); + explicit KateCompletionModel(KateCompletionWidget *parent = nullptr); ~KateCompletionModel(); QList completionModels() const; diff -Nru ktexteditor-5.28.0/src/completion/katecompletionwidget.cpp ktexteditor-5.31.0/src/completion/katecompletionwidget.cpp --- ktexteditor-5.28.0/src/completion/katecompletionwidget.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/katecompletionwidget.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -133,7 +133,7 @@ m_entryList->setVerticalScrollMode(QAbstractItemView::ScrollPerItem); - m_argumentHintTree->setParent(0, Qt::ToolTip); + m_argumentHintTree->setParent(nullptr, Qt::ToolTip); m_argumentHintTree->setModel(m_argumentHintModel); // trigger completion on double click on completion list @@ -925,7 +925,7 @@ { if (!model) { if (m_completionRanges.isEmpty()) { - return 0; + return nullptr; } KTextEditor::MovingRange *ret = m_completionRanges.begin()->range; @@ -939,7 +939,7 @@ if (m_completionRanges.contains(model)) { return m_completionRanges[model].range; } else { - return 0; + return nullptr; } } @@ -1136,7 +1136,7 @@ { QModelIndex index = selectedIndex(); if (!index.isValid()) { - return 0; + return nullptr; } if (qobject_cast(index.model())) { const ExpandingWidgetModel *model = static_cast(index.model()); @@ -1144,7 +1144,7 @@ return model->expandingWidget(index); } } - return 0; + return nullptr; } void KateCompletionWidget::cursorDown() diff -Nru ktexteditor-5.28.0/src/completion/katecompletionwidget.h ktexteditor-5.31.0/src/completion/katecompletionwidget.h --- ktexteditor-5.28.0/src/completion/katecompletionwidget.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/katecompletionwidget.h 2017-02-05 11:12:49.000000000 +0000 @@ -93,7 +93,7 @@ void setAutomaticInvocationDelay(int delay); struct CompletionRange { - CompletionRange() : range(0) + CompletionRange() : range(nullptr) { } explicit CompletionRange(KTextEditor::MovingRange *r) : range(r) @@ -110,7 +110,7 @@ KTextEditor::Cursor leftBoundary; }; - KTextEditor::MovingRange *completionRange(KTextEditor::CodeCompletionModel *model = 0) const; + KTextEditor::MovingRange *completionRange(KTextEditor::CodeCompletionModel *model = nullptr) const; QMap completionRanges() const; // Navigation diff -Nru ktexteditor-5.28.0/src/completion/katewordcompletion.cpp ktexteditor-5.31.0/src/completion/katewordcompletion.cpp --- ktexteditor-5.28.0/src/completion/katewordcompletion.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/completion/katewordcompletion.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -542,7 +542,7 @@ disconnect(m_view, SIGNAL(cursorPositionChanged(KTextEditor::View*,KTextEditor::Cursor)), this, SLOT(slotCursorMoved())); - d->liRange->setView(0); + d->liRange->setView(nullptr); d->liRange->setRange(KTextEditor::Range::invalid()); } diff -Nru ktexteditor-5.28.0/src/data/ktexteditor.desktop ktexteditor-5.31.0/src/data/ktexteditor.desktop --- ktexteditor-5.28.0/src/data/ktexteditor.desktop 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/data/ktexteditor.desktop 2017-02-05 11:12:49.000000000 +0000 @@ -4,7 +4,7 @@ X-KDE-Derived=KParts/ReadWritePart Comment=Embeddable Text Editor Component (with Doc/View Separation) Comment[ar]=مكوّن محرّر نصوص يمكن تضمينه (يفصل بين Doc والمناظير) -Comment[ast]=Componente d'editor de testos incrustáu (con separtación de vista/documentu) +Comment[ast]=Componente d'editor de testu empotrable (con separtación de documentos/vista) Comment[bg]=Текстов редактор (с разделение между Doc/View) Comment[bs]=Ugradiva komponenta uređivača teksta (s razdvajanjem dokumenta i pogleda) Comment[ca]=Component incrustable de l'editor de text (amb separació Doc/Vista) diff -Nru ktexteditor-5.28.0/src/data/ktexteditorplugin.desktop ktexteditor-5.31.0/src/data/ktexteditorplugin.desktop --- ktexteditor-5.28.0/src/data/ktexteditorplugin.desktop 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/data/ktexteditorplugin.desktop 2017-02-05 11:12:49.000000000 +0000 @@ -3,8 +3,8 @@ X-KDE-ServiceType=KTextEditor/Plugin X-KDE-Derived= Comment=KTextEditor Plugin -Comment[ar]=ملحقة محرّر نصوصك -Comment[ast]=Complementu KTextEditor +Comment[ar]=ملحقة «محرّر نصوصك» +Comment[ast]=Complementu de KTextEditor Comment[bg]=Приставка за KTextEditor Comment[bs]=Priključak za KTextEditor Comment[ca]=Connector del KTextEditor diff -Nru ktexteditor-5.28.0/src/dialogs/bordersappearanceconfigwidget.ui ktexteditor-5.31.0/src/dialogs/bordersappearanceconfigwidget.ui --- ktexteditor-5.28.0/src/dialogs/bordersappearanceconfigwidget.ui 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/dialogs/bordersappearanceconfigwidget.ui 2017-02-05 11:12:49.000000000 +0000 @@ -142,7 +142,7 @@ - Minim&ap Width + Minim&ap Width: spBoxMiniMapWidth diff -Nru ktexteditor-5.28.0/src/dialogs/editconfigwidget.ui ktexteditor-5.31.0/src/dialogs/editconfigwidget.ui --- ktexteditor-5.28.0/src/dialogs/editconfigwidget.ui 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/dialogs/editconfigwidget.ui 2017-02-05 11:12:49.000000000 +0000 @@ -11,6 +11,9 @@ + + 0 + @@ -104,7 +107,7 @@ - Default input mode + Default input mode: diff -Nru ktexteditor-5.28.0/src/dialogs/kateconfigpage.h ktexteditor-5.31.0/src/dialogs/kateconfigpage.h --- ktexteditor-5.28.0/src/dialogs/kateconfigpage.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/dialogs/kateconfigpage.h 2017-02-05 11:12:49.000000000 +0000 @@ -26,7 +26,7 @@ Q_OBJECT public: - explicit KateConfigPage(QWidget *parent = 0, const char *name = 0); + explicit KateConfigPage(QWidget *parent = nullptr, const char *name = nullptr); virtual ~KateConfigPage(); virtual void reload() = 0; diff -Nru ktexteditor-5.28.0/src/dialogs/katedialogs.cpp ktexteditor-5.31.0/src/dialogs/katedialogs.cpp --- ktexteditor-5.28.0/src/dialogs/katedialogs.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/dialogs/katedialogs.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -1133,7 +1133,7 @@ doc.setContent(listData); QDomElement DocElem = doc.documentElement(); QDomNode n = DocElem.firstChild(); - KateHighlighting *hl = 0; + KateHighlighting *hl = nullptr; if (n.isNull()) { qCDebug(LOG_KTE) << QStringLiteral("There is no usable childnode"); @@ -1155,7 +1155,7 @@ installedVersion = QLatin1String(" ") + hl->version(); break; } else { - hl = 0; + hl = nullptr; } } @@ -1188,7 +1188,7 @@ void KateHlDownloadDialog::slotInstall() { - const QString destdir = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QLatin1String("/katepart5/syntax/"); + const QString destdir = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation) + QLatin1String("/org.kde.syntax-highlighting/syntax/"); QDir(destdir).mkpath(QStringLiteral(".")); // make sure the dir is there foreach (QTreeWidgetItem *it, list->selectedItems()) { @@ -1214,7 +1214,7 @@ : KateViewBarWidget(true, parent) , m_view(view) { - Q_ASSERT(m_view != 0); // this bar widget is pointless w/o a view + Q_ASSERT(m_view != nullptr); // this bar widget is pointless w/o a view QHBoxLayout *topLayout = new QHBoxLayout(centralWidget()); topLayout->setMargin(0); @@ -1278,7 +1278,7 @@ : KateViewBarWidget(true, parent) , m_view(view) { - Q_ASSERT(m_view != 0); // this bar widget is pointless w/o a view + Q_ASSERT(m_view != nullptr); // this bar widget is pointless w/o a view QHBoxLayout *topLayout = new QHBoxLayout(centralWidget()); topLayout->setMargin(0); @@ -1373,11 +1373,11 @@ KateModOnHdPrompt::~KateModOnHdPrompt() { delete m_proc; - m_proc = 0; + m_proc = nullptr; if (m_diffFile) { m_diffFile->setAutoRemove(true); delete m_diffFile; - m_diffFile = 0; + m_diffFile = nullptr; } delete m_message; } @@ -1425,7 +1425,7 @@ const QProcess::ExitStatus es = m_proc->exitStatus(); delete m_proc; - m_proc = 0; + m_proc = nullptr; if (es != QProcess::NormalExit) { KMessageBox::sorry(nullptr, @@ -1433,7 +1433,7 @@ "diff(1) is installed and in your PATH."), i18n("Error Creating Diff")); delete m_diffFile; - m_diffFile = 0; + m_diffFile = nullptr; return; } @@ -1442,14 +1442,14 @@ i18n("The files are identical."), i18n("Diff Output")); delete m_diffFile; - m_diffFile = 0; + m_diffFile = nullptr; return; } m_diffFile->setAutoRemove(false); QUrl url = QUrl::fromLocalFile(m_diffFile->fileName()); delete m_diffFile; - m_diffFile = 0; + m_diffFile = nullptr; // KRun::runUrl should delete the file, once the client exits KRun::runUrl(url, QStringLiteral("text/x-patch"), nullptr, true); diff -Nru ktexteditor-5.28.0/src/dialogs/katedialogs.h ktexteditor-5.31.0/src/dialogs/katedialogs.h --- ktexteditor-5.28.0/src/dialogs/katedialogs.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/dialogs/katedialogs.h 2017-02-05 11:12:49.000000000 +0000 @@ -86,7 +86,7 @@ Q_OBJECT public: - explicit KateGotoBar(KTextEditor::View *view, QWidget *parent = 0); + explicit KateGotoBar(KTextEditor::View *view, QWidget *parent = nullptr); void updateData(); @@ -106,7 +106,7 @@ Q_OBJECT public: - explicit KateDictionaryBar(KTextEditor::ViewPrivate *view, QWidget *parent = NULL); + explicit KateDictionaryBar(KTextEditor::ViewPrivate *view, QWidget *parent = nullptr); virtual ~KateDictionaryBar(); public Q_SLOTS: diff -Nru ktexteditor-5.28.0/src/dialogs/opensaveconfigadvwidget.ui ktexteditor-5.31.0/src/dialogs/opensaveconfigadvwidget.ui --- ktexteditor-5.28.0/src/dialogs/opensaveconfigadvwidget.ui 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/dialogs/opensaveconfigadvwidget.ui 2017-02-05 11:12:49.000000000 +0000 @@ -124,7 +124,7 @@ - Directory + Directory: kurlSwapDirectory diff -Nru ktexteditor-5.28.0/src/dialogs/opensaveconfigwidget.ui ktexteditor-5.31.0/src/dialogs/opensaveconfigwidget.ui --- ktexteditor-5.28.0/src/dialogs/opensaveconfigwidget.ui 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/dialogs/opensaveconfigwidget.ui 2017-02-05 11:12:49.000000000 +0000 @@ -64,7 +64,7 @@ - This defines the fallback encoding to try for opening files if neither the encoding chosen as standard above, nor the encoding specified in the open/save dialog, nor the encoding specified on command line match the content of the file. Before this is used, an attempt will be made to determine the encoding to use by looking for a byte order marker at start of file: if one is found, the right unicode encoding will be chosen; otherwise encoding detection will run, if both fail fallback encoding will be tried. + This defines the fallback encoding to try for opening files if neither the encoding chosen as standard above, nor the encoding specified in the open/save dialog, nor the encoding specified on command line match the content of the file. Before this is used, an attempt will be made to determine the encoding to use by looking for a byte order mark at start of file: if one is found, the right Unicode encoding will be chosen; otherwise encoding detection will run, if both fail the fallback encoding will be tried. @@ -112,10 +112,10 @@ - The byte order mark is a special sequence at the beginning of unicode encoded documents. It helps editors to open text documents with the correct unicode encoding. The byte order mark is not visible in the displayed document. + The byte order mark is a special sequence at the beginning of Unicode encoded documents. It helps editors to open text documents with the correct Unicode encoding. The byte order mark is not visible in the displayed document. - Enable byte order marker + Enable byte order mark (BOM) diff -Nru ktexteditor-5.28.0/src/document/katebuffer.cpp ktexteditor-5.31.0/src/document/katebuffer.cpp --- ktexteditor-5.28.0/src/document/katebuffer.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/document/katebuffer.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -52,7 +52,7 @@ m_brokenEncoding(false), m_tooLongLinesWrapped(false), m_longestLineLoaded(0), - m_highlight(0), + m_highlight(nullptr), m_tabWidth(8), m_lineHighlighted(0), m_maxDynamicContexts(KATE_MAX_DYNAMIC_CONTEXTS) @@ -225,7 +225,7 @@ { QTextCodec *codec = m_doc->config()->codec(); - // hardcode some unicode encodings which can encode all chars + // hardcode some Unicode encodings which can encode all chars if ((QString::fromLatin1(codec->name()) == QLatin1String("UTF-8")) || (QString::fromLatin1(codec->name()) == QLatin1String("ISO-10646-UCS-2"))) { return true; } diff -Nru ktexteditor-5.28.0/src/document/katebuffer.h ktexteditor-5.31.0/src/document/katebuffer.h --- ktexteditor-5.28.0/src/document/katebuffer.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/document/katebuffer.h 2017-02-05 11:12:49.000000000 +0000 @@ -238,7 +238,7 @@ * * @param from first line in range * @param to last line in range - * @param invalidat should the rehighlighted lines be tagged ? + * @param invalidate should the rehighlighted lines be tagged? */ void doHighlight(int from, int to, bool invalidate); diff -Nru ktexteditor-5.28.0/src/document/katedocument.cpp ktexteditor-5.31.0/src/document/katedocument.cpp --- ktexteditor-5.28.0/src/document/katedocument.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/document/katedocument.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -181,13 +181,13 @@ : KTextEditor::Document (this, parent), m_bSingleViewMode(bSingleViewMode), m_bReadOnly(bReadOnly), - m_activeView(0), + m_activeView(nullptr), editSessionNumber(0), editIsRunning(false), m_undoMergeAllEdits(false), m_undoManager(new KateUndoManager(this)), m_editableMarks(markType01), - m_annotationModel(0), + m_annotationModel(nullptr), m_buffer(new KateBuffer(this)), m_indenter(new KateAutoIndent(this)), m_hlSetByUser(false), @@ -204,7 +204,7 @@ m_reloading(false), m_config(new KateDocumentConfig(this)), m_fileChangedDialogsActivated(false), - m_onTheFlyChecker(0), + m_onTheFlyChecker(nullptr), m_documentState(DocumentIdle), m_readWriteStateBeforeLoading(false), m_isUntitled(true), @@ -233,7 +233,7 @@ m_buffer->setHighlight(0); // swap file - m_swapfile = (config()->swapFileMode() == KateDocumentConfig::DisableSwapFile) ? 0L : new Kate::SwapFile(this); + m_swapfile = (config()->swapFileMode() == KateDocumentConfig::DisableSwapFile) ? nullptr : new Kate::SwapFile(this); // important, fill in the config into the indenter we use... m_indenter->updateConfig(); @@ -314,7 +314,7 @@ // kill it early, it has ranges! delete m_onTheFlyChecker; - m_onTheFlyChecker = NULL; + m_onTheFlyChecker = nullptr; clearDictionaryRanges(); @@ -392,7 +392,7 @@ { // no singleViewMode -> no widget()... if (!singleViewMode()) { - return 0; + return nullptr; } // does a widget exist already? use it! @@ -401,7 +401,7 @@ } // create and return one... - KTextEditor::View *view = (KTextEditor::View *)createView(0); + KTextEditor::View *view = (KTextEditor::View *)createView(nullptr); insertChildClient(view); view->setContextMenu(view->defaultContextMenu()); setWidget(view); @@ -2150,10 +2150,10 @@ = new KTextEditor::Message(i18n("The file %1 could not be loaded, as it was not possible to read from it.
        Check if you have read access to this file.", this->url().toDisplayString(QUrl::PreferLocalFile)), KTextEditor::Message::Error); message->setWordWrap(true); - QAction *tryAgainAction = new QAction(QIcon::fromTheme(QStringLiteral("view-refresh")), i18nc("translators: you can also translate 'Try Again' with 'Reload'", "Try Again"), 0); + QAction *tryAgainAction = new QAction(QIcon::fromTheme(QStringLiteral("view-refresh")), i18nc("translators: you can also translate 'Try Again' with 'Reload'", "Try Again"), nullptr); connect(tryAgainAction, SIGNAL(triggered()), SLOT(documentReload()), Qt::QueuedConnection); - QAction *closeAction = new QAction(QIcon::fromTheme(QStringLiteral("window-close")), i18n("&Close"), 0); + QAction *closeAction = new QAction(QIcon::fromTheme(QStringLiteral("window-close")), i18n("&Close"), nullptr); closeAction->setToolTip(i18n("Close message")); // add try again and close actions @@ -2357,7 +2357,7 @@ // if (!m_buffer->canEncode() && (KMessageBox::warningContinueCancel(dialogParent(), - i18n("The selected encoding cannot encode every unicode character in this document. Do you really want to save it? There could be some data lost."), i18n("Possible Data Loss"), KGuiItem(i18n("Save Nevertheless"))) != KMessageBox::Continue)) { + i18n("The selected encoding cannot encode every Unicode character in this document. Do you really want to save it? There could be some data lost."), i18n("Possible Data Loss"), KGuiItem(i18n("Save Nevertheless"))) != KMessageBox::Continue)) { return false; } @@ -2828,7 +2828,7 @@ m_views.remove(view); if (activeView() == view) { - setActiveView(0L); + setActiveView(nullptr); } } @@ -4583,7 +4583,7 @@ m_config->setEol(n); m_config->setAllowEolDetection(false); } - } else if (var == QLatin1String("bom") || var == QLatin1String("byte-order-marker")) { + } else if (var == QLatin1String("bom") || var == QLatin1String("byte-order-mark") || var == QLatin1String("byte-order-marker")) { if (checkBoolValue(val, &state)) { m_config->setBom(state); } @@ -4800,9 +4800,9 @@ * libgit2 docs state that UTF-8 is the right encoding, even on windows * I hope that is correct! */ - git_repository *repository = Q_NULLPTR; + git_repository *repository = nullptr; const QByteArray utf8Path = url().toLocalFile().toUtf8(); - if (git_repository_open_ext(&repository, utf8Path.constData(), 0, Q_NULLPTR) == 0) { + if (git_repository_open_ext(&repository, utf8Path.constData(), 0, nullptr) == 0) { /** * if we have repo, convert the git hash to an OID */ @@ -4811,7 +4811,7 @@ /** * finally: is there a blob for this git hash? */ - git_blob *blob = Q_NULLPTR; + git_blob *blob = nullptr; if (git_blob_lookup(&blob, repository, &oid) == 0) { /** * this hash exists still in git => just reload @@ -5371,7 +5371,7 @@ * if around job: add cancel action */ if (m_loadingJob) { - QAction *cancel = new QAction(i18n("&Abort Loading"), 0); + QAction *cancel = new QAction(i18n("&Abort Loading"), nullptr); connect(cancel, SIGNAL(triggered()), this, SLOT(slotAbortLoading())); m_loadingMessage->addAction(cancel); } @@ -5396,7 +5396,7 @@ * signal results! */ m_loadingJob->kill(KJob::EmitResult); - m_loadingJob = 0; + m_loadingJob = nullptr; } void KTextEditor::DocumentPrivate::slotUrlChanged(const QUrl &url) @@ -5583,11 +5583,11 @@ } if (enable) { - Q_ASSERT(m_onTheFlyChecker == 0); + Q_ASSERT(m_onTheFlyChecker == nullptr); m_onTheFlyChecker = new KateOnTheFlyChecker(this); } else { delete m_onTheFlyChecker; - m_onTheFlyChecker = 0; + m_onTheFlyChecker = nullptr; } foreach (KTextEditor::ViewPrivate *view, m_views) { @@ -5597,7 +5597,7 @@ bool KTextEditor::DocumentPrivate::isOnTheFlySpellCheckingEnabled() const { - return m_onTheFlyChecker != 0; + return m_onTheFlyChecker != nullptr; } QString KTextEditor::DocumentPrivate::dictionaryForMisspelledRange(const KTextEditor::Range &range) const @@ -5781,7 +5781,7 @@ { KTextEditor::Attribute::Ptr attrib(new KTextEditor::Attribute()); - KTextEditor::ViewPrivate *view = m_views.empty() ? Q_NULLPTR : m_views.begin().value(); + KTextEditor::ViewPrivate *view = m_views.empty() ? nullptr : m_views.begin().value(); if (!view) { qCWarning(LOG_KTE) << "ATTENTION: cannot access lineAttributes() without any View (will be fixed eventually)"; return attrib; @@ -5925,7 +5925,7 @@ // if there are no actions, add a close action by default if widget does not auto-hide if (message->actions().count() == 0 && message->autoHide() < 0) { - QAction *closeAction = new QAction(QIcon::fromTheme(QStringLiteral("window-close")), i18n("&Close"), 0); + QAction *closeAction = new QAction(QIcon::fromTheme(QStringLiteral("window-close")), i18n("&Close"), nullptr); closeAction->setToolTip(i18n("Close message")); message->addAction(closeAction); } @@ -5935,7 +5935,7 @@ // reparent actions, as we want full control over when they are deleted foreach (QAction *action, message->actions()) { - action->setParent(0); + action->setParent(nullptr); m_messageHash[message].append(QSharedPointer(action)); } diff -Nru ktexteditor-5.28.0/src/document/katedocument.h ktexteditor-5.31.0/src/document/katedocument.h --- ktexteditor-5.28.0/src/document/katedocument.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/document/katedocument.h 2017-02-05 11:12:49.000000000 +0000 @@ -96,7 +96,7 @@ public: explicit DocumentPrivate(bool bSingleViewMode = false, bool bReadOnly = false, - QWidget *parentWidget = 0, QObject * = 0); + QWidget *parentWidget = nullptr, QObject * = nullptr); ~DocumentPrivate(); using ReadWritePart::closeUrl; @@ -136,7 +136,7 @@ // KTextEditor::Document stuff // public: - KTextEditor::View *createView(QWidget *parent, KTextEditor::MainWindow *mainWindow = Q_NULLPTR) Q_DECL_OVERRIDE; + KTextEditor::View *createView(QWidget *parent, KTextEditor::MainWindow *mainWindow = nullptr) Q_DECL_OVERRIDE; QList views() const Q_DECL_OVERRIDE { @@ -295,7 +295,7 @@ * @param newLineAdded return value is true, if new line was added (may be 0) * @return true on success */ - bool editWrapLine(int line, int col, bool newLine = true, bool *newLineAdded = 0); + bool editWrapLine(int line, int col, bool newLine = true, bool *newLineAdded = nullptr); /** * Unwrap @p line. If @p removeLine is true, we force to join the lines. If * @p removeLine is true, @p length is ignored (eg not needed). @@ -456,18 +456,18 @@ */ bool setHighlightingMode(const QString &name) Q_DECL_OVERRIDE; /** - * Returns the name of the section for a highlight given its index in the highlight + * Returns the name of the section for a highlight given its @p index in the highlight * list (as returned by highlightModes()). * You can use this function to build a tree of the highlight names, organized in sections. - * \param name the name of the highlight for which to find the section name. + * \param index in the highlight list for which to find the section name. */ QString highlightingModeSection(int index) const Q_DECL_OVERRIDE; /** - * Returns the name of the section for a mode given its index in the highlight + * Returns the name of the section for a mode given its @p index in the highlight * list (as returned by modes()). * You can use this function to build a tree of the mode names, organized in sections. - * \param name the name of the highlight for which to find the section name. + * \param index index in the highlight list for which to find the section name. */ QString modeSection(int index) const Q_DECL_OVERRIDE; @@ -933,7 +933,7 @@ * Ask the user what to do, if the file has been modified on disk. * Reimplemented from KTextEditor::Document. */ - virtual void slotModifiedOnDisk(KTextEditor::View *v = 0); + virtual void slotModifiedOnDisk(KTextEditor::View *v = nullptr); /** * Reloads the current document from disk if possible diff -Nru ktexteditor-5.28.0/src/export/abstractexporter.h ktexteditor-5.31.0/src/export/abstractexporter.h --- ktexteditor-5.28.0/src/export/abstractexporter.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/export/abstractexporter.h 2017-02-05 11:12:49.000000000 +0000 @@ -37,7 +37,7 @@ AbstractExporter(KTextEditor::View *view, QTextStream &output, const bool encapsulate = false) : m_view(view), m_output(output), m_encapsulate(encapsulate), - m_defaultAttribute(0) + m_defaultAttribute(nullptr) { QColor defaultBackground; if (KTextEditor::ConfigInterface *ciface = qobject_cast< KTextEditor::ConfigInterface * >(m_view)) { diff -Nru ktexteditor-5.28.0/src/export/exporter.cpp ktexteditor-5.31.0/src/export/exporter.cpp --- ktexteditor-5.28.0/src/export/exporter.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/export/exporter.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -83,7 +83,7 @@ exporter.reset(new HTMLExporter(m_view, output, !useSelection)); - const KTextEditor::Attribute::Ptr noAttrib(0); + const KTextEditor::Attribute::Ptr noAttrib(nullptr); for (int i = range.start().line(); (i <= range.end().line()) && (i < m_view->document()->lines()); ++i) { const QString &line = m_view->document()->line(i); diff -Nru ktexteditor-5.28.0/src/include/ktexteditor/codecompletionmodelcontrollerinterface.h ktexteditor-5.31.0/src/include/ktexteditor/codecompletionmodelcontrollerinterface.h --- ktexteditor-5.28.0/src/include/ktexteditor/codecompletionmodelcontrollerinterface.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/include/ktexteditor/codecompletionmodelcontrollerinterface.h 2017-02-05 11:12:49.000000000 +0000 @@ -169,7 +169,7 @@ /** * Called whenever an item in the completion-list perfectly matches the current filter text. - * \param The index that is matched + * \param matched The index that is matched * \return Whether the completion-list should be hidden on this event. The default-implementation always returns HideListIfAutomaticInvocation */ virtual MatchReaction matchingItem(const QModelIndex &matched); diff -Nru ktexteditor-5.28.0/src/include/ktexteditor/command.h ktexteditor-5.31.0/src/include/ktexteditor/command.h --- ktexteditor-5.28.0/src/include/ktexteditor/command.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/include/ktexteditor/command.h 2017-02-05 11:12:49.000000000 +0000 @@ -93,7 +93,7 @@ * Constructor with \p parent. * Will register this command for the commands names given in \p cmds at the global editor instance. */ - Command(const QStringList &cmds, QObject *parent = Q_NULLPTR); + Command(const QStringList &cmds, QObject *parent = nullptr); /** * Virtual destructor. diff -Nru ktexteditor-5.28.0/src/include/ktexteditor/document.h ktexteditor-5.31.0/src/include/ktexteditor/document.h --- ktexteditor-5.28.0/src/include/ktexteditor/document.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/include/ktexteditor/document.h 2017-02-05 11:12:49.000000000 +0000 @@ -228,7 +228,7 @@ * @param mainWindow the main window responsible for this view, if any * @return the new view */ - virtual View *createView(QWidget *parent, KTextEditor::MainWindow *mainWindow = Q_NULLPTR) = 0; + virtual View *createView(QWidget *parent, KTextEditor::MainWindow *mainWindow = nullptr) = 0; /** * Returns the views pre-casted to KTextEditor::View%s diff -Nru ktexteditor-5.28.0/src/include/ktexteditor/markinterface.h ktexteditor-5.31.0/src/include/ktexteditor/markinterface.h --- ktexteditor-5.28.0/src/include/ktexteditor/markinterface.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/include/ktexteditor/markinterface.h 2017-02-05 11:12:49.000000000 +0000 @@ -388,7 +388,6 @@ * The \p document emits this signal whenever the \p mark is left-clicked. * \param document the document which emitted the signal * \param mark mark that was right-clicked - * \param pos position where the menu should be started * \param handled set this to 'true' if this event was handled externally, and kate should not do own handling of the left click. */ void markClicked(KTextEditor::Document *document, KTextEditor::Mark mark, bool &handled); diff -Nru ktexteditor-5.28.0/src/include/ktexteditor/movingrange.h ktexteditor-5.31.0/src/include/ktexteditor/movingrange.h --- ktexteditor-5.28.0/src/include/ktexteditor/movingrange.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/include/ktexteditor/movingrange.h 2017-02-05 11:12:49.000000000 +0000 @@ -244,7 +244,7 @@ * This will trigger update of the relevant view parts, if the view changed. * Set view before the attribute, that will avoid not needed redraws. * - * \param attribute View to assign to this range. If null, simply + * \param view View to assign to this range. If null, simply * removes the previous view. */ virtual void setView(View *view) = 0; @@ -289,7 +289,7 @@ * Sets the currently active MovingRangeFeedback for this range. * This will trigger evaluation if feedback must be send again (for example if mouse is already inside range). * - * \param attribute MovingRangeFeedback to assign to this range. If null, simply + * \param feedback MovingRangeFeedback to assign to this range. If null, simply * removes the previous MovingRangeFeedback. */ virtual void setFeedback(MovingRangeFeedback *feedback) = 0; @@ -379,7 +379,7 @@ /** * qDebug() stream operator. Writes this range to the debug output in a nicely formatted way. * @param s debug stream - * @param cursor range to print + * @param range range to print * @return debug stream */ inline friend QDebug operator<< (QDebug s, const MovingRange *range) { diff -Nru ktexteditor-5.28.0/src/include/ktexteditor/sessionconfiginterface.h ktexteditor-5.31.0/src/include/ktexteditor/sessionconfiginterface.h --- ktexteditor-5.28.0/src/include/ktexteditor/sessionconfiginterface.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/include/ktexteditor/sessionconfiginterface.h 2017-02-05 11:12:49.000000000 +0000 @@ -99,7 +99,6 @@ * this function should emit ReadOnlyPart::completed * * \param config read the session settings from this KConfigGroup - * \param flags additional flags set * \see writeSessionConfig() */ virtual void readSessionConfig(const KConfigGroup &config) = 0; diff -Nru ktexteditor-5.28.0/src/include/ktexteditor/view.h ktexteditor-5.31.0/src/include/ktexteditor/view.h --- ktexteditor-5.28.0/src/include/ktexteditor/view.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/include/ktexteditor/view.h 2017-02-05 11:12:49.000000000 +0000 @@ -219,7 +219,7 @@ * This can be used to detect the view's current mode. For * example \NormalInputMode, \ViInputMode or whatever other input modes are * supported. \see viewModeHuman() for translated version. - * \return + * \return current view mode/state * \see viewModeChanged() */ virtual ViewMode viewMode() const = 0; @@ -232,7 +232,7 @@ * translated (i18n), as this is a user aimed representation of the view * state, which should be shown in the GUI, for example in the status bar. * This string may be rich-text. - * \return + * \return Human-readable version of the view mode state * \see viewModeChanged() */ virtual QString viewModeHuman() const = 0; @@ -370,7 +370,7 @@ * \param menu the menu to be populated, or null to create a new menu. * \return the menu, whether created or passed initially */ - virtual QMenu *defaultContextMenu(QMenu *menu = 0L) const = 0; + virtual QMenu *defaultContextMenu(QMenu *menu = nullptr) const = 0; Q_SIGNALS: /** @@ -644,7 +644,7 @@ * object defined in @p script. You can pass arguments to the function by just * writing any constant expression or a field name. * \param insertPosition where to insert the template - * \param templateScript template to insert using the above syntax + * \param templateString template to insert using the above syntax * \param script script with functions which can be used in @p templateScript * \return true on success, false if insertion failed (e.g. read-only mode) */ diff -Nru ktexteditor-5.28.0/src/inputmode/katenormalinputmode.cpp ktexteditor-5.31.0/src/inputmode/katenormalinputmode.cpp --- ktexteditor-5.28.0/src/inputmode/katenormalinputmode.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/inputmode/katenormalinputmode.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -26,8 +26,8 @@ KateNormalInputMode::KateNormalInputMode(KateViewInternal *viewInternal) : KateAbstractInputMode(viewInternal) - , m_searchBar(0) - , m_cmdLine(0) + , m_searchBar(nullptr) + , m_cmdLine(nullptr) { } diff -Nru ktexteditor-5.28.0/src/inputmode/katenormalinputmodefactory.cpp ktexteditor-5.31.0/src/inputmode/katenormalinputmodefactory.cpp --- ktexteditor-5.28.0/src/inputmode/katenormalinputmodefactory.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/inputmode/katenormalinputmodefactory.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -39,7 +39,7 @@ KateConfigPage *KateNormalInputModeFactory::createConfigPage(QWidget *) { - return Q_NULLPTR; + return nullptr; } KTextEditor::View::InputMode KateNormalInputModeFactory::inputMode() diff -Nru ktexteditor-5.28.0/src/inputmode/kateviinputmode.cpp ktexteditor-5.31.0/src/inputmode/kateviinputmode.cpp --- ktexteditor-5.28.0/src/inputmode/kateviinputmode.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/inputmode/kateviinputmode.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -62,7 +62,7 @@ KateViInputMode::KateViInputMode(KateViewInternal *viewInternal, KateVi::GlobalState *global) : KateAbstractInputMode(viewInternal) - , m_viModeEmulatedCommandBar(0) + , m_viModeEmulatedCommandBar(nullptr) , m_viGlobal(global) , m_caret(KateRenderer::Block) , m_nextKeypressIsOverriddenShortCut(false) diff -Nru ktexteditor-5.28.0/src/Messages.sh ktexteditor-5.31.0/src/Messages.sh --- ktexteditor-5.28.0/src/Messages.sh 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/Messages.sh 2017-02-05 11:12:49.000000000 +0000 @@ -1,6 +1,6 @@ #! /usr/bin/env bash $EXTRACTRC `find . -name \*.rc -o -name \*.ui` >> rc.cpp || exit 11 -$EXTRACTATTR --attr=language,name,Language --attr="language,section,Language Section" syntax/data/*.xml >> rc.cpp || exit 12 +#$EXTRACTATTR --attr=language,name,Language --attr="language,section,Language Section" syntax/data/*.xml >> rc.cpp || exit 12 grep -n -e '^ *"name":' script/data/indentation/*.js | sed 's!^\(.*\):.*"name": *"\(.*\)".*$!// i18n: file: \1\ni18nc("Autoindent mode", "\2");!' | sed 's/ \+")/")/' >>rc.cpp || exit 13 grep -n -e '^ *"name":' script/data/commands/*.js | sed 's!^\(.*\):.*"name": *"\(.*\)".*$!// i18n: file: \1\ni18nc("Script command name", "\2");!' | sed 's/ \+")/")/' >>rc.cpp || exit 13 grep -n -e '^ *"category":' script/data/commands/*.js | sed 's!^\(.*\):.*"category": *"\(.*\)".*$!// i18n: file: \1\ni18nc("Script command category", "\2");!' | sed 's/ \+")/")/' >>rc.cpp || exit 13 diff -Nru ktexteditor-5.28.0/src/mode/katemodemanager.cpp ktexteditor-5.31.0/src/mode/katemodemanager.cpp --- ktexteditor-5.28.0/src/mode/katemodemanager.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/mode/katemodemanager.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -37,6 +37,14 @@ #include //END Includes +static QStringList vectorToList(const QVector &v) +{ + QStringList l; + l.reserve(v.size()); + std::copy(v.begin(), v.end(), std::back_inserter(l)); + return l; +} + KateModeManager::KateModeManager() { update(); @@ -93,32 +101,35 @@ } // try if the hl stuff is up to date... - const KateSyntaxModeList &modes = KateHlManager::self()->modeList(); + const auto modes = KateHlManager::self()->modeList(); for (int i = 0; i < modes.size(); ++i) { - KateFileType *type = 0; + KateFileType *type = nullptr; bool newType = false; - if (m_name2Type.contains(modes[i]->name)) { - type = m_name2Type[modes[i]->name]; + if (m_name2Type.contains(modes[i].name())) { + type = m_name2Type[modes[i].name()]; } else { newType = true; type = new KateFileType(); - type->name = modes[i]->name; + type->name = modes[i].name(); type->priority = 0; m_types.append(type); m_name2Type.insert(type->name, type); } - if (newType || type->version != modes[i]->version) { - type->name = modes[i]->name; - type->section = modes[i]->section; - type->wildcards = modes[i]->extension.split(QLatin1Char(';'), QString::SkipEmptyParts); - type->mimetypes = modes[i]->mimetype.split(QLatin1Char(';'), QString::SkipEmptyParts); - type->priority = modes[i]->priority.toInt(); - type->version = modes[i]->version; - type->indenter = modes[i]->indenter; - type->hl = modes[i]->name; + if (newType || type->version != QString::number(modes[i].version())) { + type->name = modes[i].name(); + type->section = modes[i].section(); + type->wildcards = vectorToList(modes[i].extensions()); + type->mimetypes = vectorToList(modes[i].mimeTypes()); + type->priority = modes[i].priority(); + type->version = QString::number(modes[i].version()); + type->indenter = modes[i].indenter(); + type->hl = modes[i].name(); type->hlGenerated = true; } + + type->translatedName = modes[i].translatedName(); + type->translatedSection = modes[i].translatedSection(); } // sort the list... @@ -253,7 +264,7 @@ QString KateModeManager::wildcardsFind(const QString &fileName) { - KateFileType *match = NULL; + KateFileType *match = nullptr; int minPrio = -1; foreach (KateFileType *type, m_types) { if (type->priority <= minPrio) { @@ -269,7 +280,7 @@ } } - return (match == NULL) ? QString() : match->name; + return (match == nullptr) ? QString() : match->name; } const KateFileType &KateModeManager::fileType(const QString &name) const diff -Nru ktexteditor-5.28.0/src/mode/katemodemanager.h ktexteditor-5.31.0/src/mode/katemodemanager.h --- ktexteditor-5.28.0/src/mode/katemodemanager.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/mode/katemodemanager.h 2017-02-05 11:12:49.000000000 +0000 @@ -46,20 +46,17 @@ QString version; QString indenter; + QString translatedName; + QString translatedSection; + QString nameTranslated() const { - // use "Language" as for highlightings, to avoid double work! - return hlGenerated ? i18nc("Language", name.toUtf8().data()) : name; + return translatedName.isEmpty() ? name : translatedName; } QString sectionTranslated() const { - // empty string => no section to translate - if (section.isEmpty()) - return QString(); - - // use "Language Section" as for highlightings, to avoid double work! - return hlGenerated ? i18nc("Language Section", section.toUtf8().data()) : section; + return translatedSection.isEmpty() ? section : translatedSection; } KateFileType() diff -Nru ktexteditor-5.28.0/src/mode/katemodemenu.cpp ktexteditor-5.31.0/src/mode/katemodemenu.cpp --- ktexteditor-5.28.0/src/mode/katemodemenu.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/mode/katemodemenu.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -32,7 +32,7 @@ void KateModeMenu::init() { - m_doc = 0; + m_doc = nullptr; connect(menu(), SIGNAL(triggered(QAction*)), this, SLOT(setType(QAction*))); diff -Nru ktexteditor-5.28.0/src/part/katepart.desktop ktexteditor-5.31.0/src/part/katepart.desktop --- ktexteditor-5.28.0/src/part/katepart.desktop 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/part/katepart.desktop 2017-02-05 11:12:49.000000000 +0000 @@ -1,7 +1,7 @@ [Desktop Entry] Name=Embedded Advanced Text Editor Name[ar]=محرّر نصوص مضمّن متقدّم -Name[ast]=Editor de testos avanzáu ya incrustáu +Name[ast]=Editor de testu empotráu avanzáu Name[bg]=Вграден усъвършенстван текстов редактор Name[bs]=Ugrađeni napredni uređivač teksta Name[ca]=Editor de text avançat incrustat diff -Nru ktexteditor-5.28.0/src/printing/kateprinter.cpp ktexteditor-5.31.0/src/printing/kateprinter.cpp --- ktexteditor-5.28.0/src/printing/kateprinter.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/printing/kateprinter.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -44,7 +44,7 @@ { Q_OBJECT public: - KatePrinterPrivate(KTextEditor::DocumentPrivate *doc, KTextEditor::ViewPrivate *view = 0); + KatePrinterPrivate(KTextEditor::DocumentPrivate *doc, KTextEditor::ViewPrivate *view = nullptr); ~KatePrinterPrivate(); bool print(QPrinter *printer); diff -Nru ktexteditor-5.28.0/src/printing/printconfigwidgets.cpp ktexteditor-5.31.0/src/printing/printconfigwidgets.cpp --- ktexteditor-5.28.0/src/printing/printconfigwidgets.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/printing/printconfigwidgets.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -363,7 +363,7 @@ } QMenu *const contextMenu = lineEdit->createStandardContextMenu(); - if (contextMenu == NULL) { + if (contextMenu == nullptr) { return; } contextMenu->addSeparator(); diff -Nru ktexteditor-5.28.0/src/printing/printconfigwidgets.h ktexteditor-5.31.0/src/printing/printconfigwidgets.h --- ktexteditor-5.28.0/src/printing/printconfigwidgets.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/printing/printconfigwidgets.h 2017-02-05 11:12:49.000000000 +0000 @@ -46,7 +46,7 @@ { Q_OBJECT public: - explicit KatePrintTextSettings(QWidget *parent = 0); + explicit KatePrintTextSettings(QWidget *parent = nullptr); ~KatePrintTextSettings(); bool printLineNumbers(); @@ -74,7 +74,7 @@ { Q_OBJECT public: - explicit KatePrintHeaderFooter(QWidget *parent = 0); + explicit KatePrintHeaderFooter(QWidget *parent = nullptr); ~KatePrintHeaderFooter(); QFont font(); @@ -126,7 +126,7 @@ { Q_OBJECT public: - explicit KatePrintLayout(QWidget *parent = 0); + explicit KatePrintLayout(QWidget *parent = nullptr); ~KatePrintLayout(); QString colorScheme(); diff -Nru ktexteditor-5.28.0/src/render/katelayoutcache.cpp ktexteditor-5.31.0/src/render/katelayoutcache.cpp --- ktexteditor-5.28.0/src/render/katelayoutcache.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/render/katelayoutcache.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -281,7 +281,7 @@ if (realLine < m_renderer->doc()->lines()) { l = line(realLine, virtualLine); } else { - l = 0; + l = nullptr; } } } diff -Nru ktexteditor-5.28.0/src/render/katelinelayout.cpp ktexteditor-5.31.0/src/render/katelinelayout.cpp --- ktexteditor-5.28.0/src/render/katelinelayout.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/render/katelinelayout.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -31,11 +31,11 @@ KateLineLayout::KateLineLayout(KateRenderer &renderer) : m_renderer(renderer) - , m_textLine(0L) + , m_textLine(nullptr) , m_line(-1) , m_virtualLine(-1) , m_shiftX(0) - , m_layout(0L) + , m_layout(nullptr) , m_layoutDirty(true) , m_usePlainTextLine(false) { @@ -54,7 +54,7 @@ m_shiftX = 0; // not touching dirty delete m_layout; - m_layout = 0L; + m_layout = nullptr; // not touching layout dirty } @@ -147,7 +147,7 @@ void KateLineLayout::invalidateLayout() { - setLayout(0L); + setLayout(nullptr); } bool KateLineLayout::isDirty(int viewLine) const diff -Nru ktexteditor-5.28.0/src/render/katerenderer.cpp ktexteditor-5.31.0/src/render/katerenderer.cpp --- ktexteditor-5.28.0/src/render/katerenderer.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/render/katerenderer.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -376,7 +376,7 @@ QList newHighlight; // Don't compute the highlighting if there isn't going to be any highlighting - QList rangesWithAttributes = m_doc->buffer().rangesForLine(line, m_printerFriendly ? 0 : m_view, true); + QList rangesWithAttributes = m_doc->buffer().rangesForLine(line, m_printerFriendly ? nullptr : m_view, true); if (selectionsOnly || !textLine->attributesList().isEmpty() || !rangesWithAttributes.isEmpty()) { RenderRangeList renderRanges; @@ -391,8 +391,8 @@ if (!completionHighlight) { // check for dynamic hl stuff - const QSet *rangesMouseIn = m_view ? m_view->rangesMouseIn() : 0; - const QSet *rangesCaretIn = m_view ? m_view->rangesCaretIn() : 0; + const QSet *rangesMouseIn = m_view ? m_view->rangesMouseIn() : nullptr; + const QSet *rangesCaretIn = m_view ? m_view->rangesCaretIn() : nullptr; bool anyDynamicHlsActive = m_view && (!rangesMouseIn->empty() || !rangesCaretIn->empty()); // sort all ranges, we want that the most specific ranges win during rendering, multiple equal ranges are kind of random, still better than old smart rangs behavior ;) diff -Nru ktexteditor-5.28.0/src/render/katerenderer.h ktexteditor-5.31.0/src/render/katerenderer.h --- ktexteditor-5.28.0/src/render/katerenderer.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/render/katerenderer.h 2017-02-05 11:12:49.000000000 +0000 @@ -79,7 +79,7 @@ * @param folding folding information * @param view view which is output (0 for example for rendering to print) */ - explicit KateRenderer(KTextEditor::DocumentPrivate *doc, Kate::TextFolding &folding, KTextEditor::ViewPrivate *view = 0); + explicit KateRenderer(KTextEditor::DocumentPrivate *doc, Kate::TextFolding &folding, KTextEditor::ViewPrivate *view = nullptr); /** * Destructor @@ -275,10 +275,9 @@ /** * The ultimate decoration creation function. * - * \param range line to return decoration for * \param selectionsOnly return decorations for selections and/or dynamic highlighting. */ - QList decorationsForLine(const Kate::TextLine &textLine, int line, bool selectionsOnly = false, KateRenderRange *completionHighlight = 0L, bool completionSelected = false) const; + QList decorationsForLine(const Kate::TextLine &textLine, int line, bool selectionsOnly = false, KateRenderRange *completionHighlight = nullptr, bool completionSelected = false) const; // Width calculators qreal spaceWidth() const; @@ -333,7 +332,7 @@ * @param cursor position of the caret, if placed on the current line. * @param flags flags for customizing the drawing of the line */ - void paintTextLine(QPainter &paint, KateLineLayoutPtr range, int xStart, int xEnd, const KTextEditor::Cursor *cursor = 0L, PaintTextLineFlags flags = PaintTextLineFlags()); + void paintTextLine(QPainter &paint, KateLineLayoutPtr range, int xStart, int xEnd, const KTextEditor::Cursor *cursor = nullptr, PaintTextLineFlags flags = PaintTextLineFlags()); /** * Paint the background of a line diff -Nru ktexteditor-5.28.0/src/schema/katecategorydrawer.cpp ktexteditor-5.31.0/src/schema/katecategorydrawer.cpp --- ktexteditor-5.28.0/src/schema/katecategorydrawer.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/katecategorydrawer.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -24,7 +24,7 @@ #include #include -KateCategoryDrawer::KateCategoryDrawer() : KCategoryDrawer(0) +KateCategoryDrawer::KateCategoryDrawer() : KCategoryDrawer(nullptr) { } diff -Nru ktexteditor-5.28.0/src/schema/katecolortreewidget.cpp ktexteditor-5.31.0/src/schema/katecolortreewidget.cpp --- ktexteditor-5.28.0/src/schema/katecolortreewidget.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/katecolortreewidget.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -39,7 +39,7 @@ class KateColorTreeItem : public QTreeWidgetItem { public: - KateColorTreeItem(const KateColorItem &colorItem, QTreeWidgetItem *parent = 0) + KateColorTreeItem(const KateColorItem &colorItem, QTreeWidgetItem *parent = nullptr) : QTreeWidgetItem(parent) , m_colorItem(colorItem) { @@ -209,7 +209,7 @@ opt.rect.adjust(1, 1, -1, -1); painter->fillRect(opt.rect, color); - qDrawShadePanel(painter, opt.rect, opt.palette, true, 1, NULL); + qDrawShadePanel(painter, opt.rect, opt.palette, true, 1, nullptr); } //END: draw color button @@ -325,7 +325,7 @@ void KateColorTreeWidget::addColorItem(const KateColorItem &colorItem) { - QTreeWidgetItem *categoryItem = 0; + QTreeWidgetItem *categoryItem = nullptr; for (int i = 0; i < topLevelItemCount(); ++i) { if (topLevelItem(i)->text(0) == colorItem.category) { categoryItem = topLevelItem(i); diff -Nru ktexteditor-5.28.0/src/schema/katecolortreewidget.h ktexteditor-5.31.0/src/schema/katecolortreewidget.h --- ktexteditor-5.28.0/src/schema/katecolortreewidget.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/katecolortreewidget.h 2017-02-05 11:12:49.000000000 +0000 @@ -46,7 +46,7 @@ friend class KateColorTreeDelegate; public: - explicit KateColorTreeWidget(QWidget *parent = 0); + explicit KateColorTreeWidget(QWidget *parent = nullptr); public: void addColorItem(const KateColorItem &colorItem); diff -Nru ktexteditor-5.28.0/src/schema/kateschemaconfig.cpp ktexteditor-5.31.0/src/schema/kateschemaconfig.cpp --- ktexteditor-5.28.0/src/schema/kateschemaconfig.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/kateschemaconfig.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -590,7 +590,7 @@ { if (!event->spontaneous() && !m_currentSchema.isEmpty()) { KateAttributeList *l = attributeList(m_currentSchema); - Q_ASSERT(l != 0); + Q_ASSERT(l != nullptr); updateColorPalette(l->at(0)->foreground().color()); } @@ -783,7 +783,7 @@ { QString schemaNameForLoading(fromSchemaName); QString hlName; - bool doManage = (cfg == 0); + bool doManage = (cfg == nullptr); if (schema.isEmpty()) { schema = m_schema; } @@ -835,7 +835,7 @@ if (cfg && doManage) { apply(); delete cfg; - cfg = 0; + cfg = nullptr; if ((hl != -1) && (!schemaNameForLoading.isEmpty())) { hlChanged(m_hl); KMessageBox::information( @@ -849,7 +849,7 @@ void KateSchemaConfigHighlightTab::exportHl(QString schema, int hl, KConfig *cfg) { - bool doManage = (cfg == 0); + bool doManage = (cfg == nullptr); if (schema.isEmpty()) { schema = m_schema; } @@ -887,7 +887,7 @@ { if (!event->spontaneous()) { KateAttributeList *l = m_defaults->attributeList(m_schema); - Q_ASSERT(l != 0); + Q_ASSERT(l != nullptr); updateColorPalette(l->at(0)->foreground().color()); } diff -Nru ktexteditor-5.28.0/src/schema/kateschemaconfig.h ktexteditor-5.31.0/src/schema/kateschemaconfig.h --- ktexteditor-5.28.0/src/schema/kateschemaconfig.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/kateschemaconfig.h 2017-02-05 11:12:49.000000000 +0000 @@ -147,8 +147,8 @@ void hlChanged(int z); public Q_SLOTS: - void exportHl(QString schema = QString(), int hl = -1, KConfig *cfg = 0); - void importHl(const QString &fromSchemaName = QString(), QString schema = QString(), int hl = -1, KConfig *cfg = 0); + void exportHl(QString schema = QString(), int hl = -1, KConfig *cfg = nullptr); + void importHl(const QString &fromSchemaName = QString(), QString schema = QString(), int hl = -1, KConfig *cfg = nullptr); protected: void showEvent(QShowEvent *event) Q_DECL_OVERRIDE; diff -Nru ktexteditor-5.28.0/src/schema/kateschema.cpp ktexteditor-5.31.0/src/schema/kateschema.cpp --- ktexteditor-5.28.0/src/schema/kateschema.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/kateschema.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -78,8 +78,8 @@ //BEGIN SCHEMA ACTION -- the 'View->Schema' menu action void KateViewSchemaAction::init() { - m_group = 0; - m_view = 0; + m_group = nullptr; + m_view = nullptr; last = 0; connect(menu(), SIGNAL(aboutToShow()), this, SLOT(slotAboutToShow())); diff -Nru ktexteditor-5.28.0/src/schema/katestyletreewidget.cpp ktexteditor-5.31.0/src/schema/katestyletreewidget.cpp --- ktexteditor-5.28.0/src/schema/katestyletreewidget.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/katestyletreewidget.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -414,7 +414,7 @@ KateStyleTreeWidgetItem::KateStyleTreeWidgetItem(QTreeWidgetItem *parent, const QString &stylename, KTextEditor::Attribute::Ptr defaultAttribute, KTextEditor::Attribute::Ptr actualAttribute) : QTreeWidgetItem(parent), - currentStyle(0L), + currentStyle(nullptr), defaultStyle(defaultAttribute), actualStyle(actualAttribute) { @@ -425,7 +425,7 @@ KateStyleTreeWidgetItem::KateStyleTreeWidgetItem(QTreeWidget *parent, const QString &stylename, KTextEditor::Attribute::Ptr defaultAttribute, KTextEditor::Attribute::Ptr actualAttribute) : QTreeWidgetItem(parent), - currentStyle(0L), + currentStyle(nullptr), defaultStyle(defaultAttribute), actualStyle(actualAttribute) { diff -Nru ktexteditor-5.28.0/src/schema/katestyletreewidget.h ktexteditor-5.31.0/src/schema/katestyletreewidget.h --- ktexteditor-5.28.0/src/schema/katestyletreewidget.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/schema/katestyletreewidget.h 2017-02-05 11:12:49.000000000 +0000 @@ -39,7 +39,7 @@ friend class KateStyleListItem; public: - explicit KateStyleTreeWidget(QWidget *parent = 0, bool showUseDefaults = false); + explicit KateStyleTreeWidget(QWidget *parent = nullptr, bool showUseDefaults = false); void emitChanged(); diff -Nru ktexteditor-5.28.0/src/script/data/commands/utils.js ktexteditor-5.31.0/src/script/data/commands/utils.js --- ktexteditor-5.28.0/src/script/data/commands/utils.js 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/data/commands/utils.js 2017-02-05 11:12:49.000000000 +0000 @@ -386,7 +386,7 @@ } else if (cmd == "filter") { return i18n("Given a JavaScript function as argument, call that for the list of (selected) lines and remove those where the callback returns false.
        Example (see also rmblank):
        filter 'function(l){return l.length > 0;}'
        To save you some typing, you can also do this to achieve the same:
        filter 'line.length > 0'"); } else if (cmd == "map") { - return i18n("Given a JavaScript function as argument, call that for the list of (selected) lines and replace the line with the return value of the callback.
        Example (see also ltrim):
        map 'function(line){return line.replace(/^\s+/, \"\");}'
        To save you some typing, you can also do this to achieve the same:
        map 'line.replace(/^\s+/, \"\")'"); + return i18n("Given a JavaScript function as argument, call that for the list of (selected) lines and replace the line with the return value of the callback.
        Example (see also ltrim):
        map 'function(line){return line.replace(/^\\s+/, \"\");}'
        To save you some typing, you can also do this to achieve the same:
        map 'line.replace(/^\\s+/, \"\")'"); } else if (cmd == "duplicateLinesUp") { return i18n("Duplicates the selected lines up."); } else if (cmd == "duplicateLinesDown") { diff -Nru ktexteditor-5.28.0/src/script/katescript.cpp ktexteditor-5.31.0/src/script/katescript.cpp --- ktexteditor-5.28.0/src/script/katescript.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/katescript.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -76,9 +76,9 @@ : m_loaded(false) , m_loadSuccessful(false) , m_url(inputType == InputURL ? urlOrScript : QString()) - , m_engine(0) - , m_document(0) - , m_view(0) + , m_engine(nullptr) + , m_document(nullptr) + , m_view(nullptr) , m_inputType(inputType) , m_script(inputType == InputSCRIPT ? urlOrScript : QString()) { @@ -257,7 +257,7 @@ displayBacktrace(object, i18n("Error loading script %1\n", file)); m_errorMessage = i18n("Error loading script %1", file); delete m_engine; - m_engine = 0; + m_engine = nullptr; m_loadSuccessful = false; return true; } diff -Nru ktexteditor-5.28.0/src/script/katescriptdocument.cpp ktexteditor-5.31.0/src/script/katescriptdocument.cpp --- ktexteditor-5.28.0/src/script/katescriptdocument.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/katescriptdocument.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -32,7 +32,7 @@ #include KateScriptDocument::KateScriptDocument(QObject *parent) - : QObject(parent), m_document(0) + : QObject(parent), m_document(nullptr) { } diff -Nru ktexteditor-5.28.0/src/script/katescriptdocument.h ktexteditor-5.31.0/src/script/katescriptdocument.h --- ktexteditor-5.28.0/src/script/katescriptdocument.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/katescriptdocument.h 2017-02-05 11:12:49.000000000 +0000 @@ -49,7 +49,7 @@ // Note: we have no Q_PROPERTIES due to consistency: everything is a function. public: - KateScriptDocument(QObject *parent = 0); + KateScriptDocument(QObject *parent = nullptr); void setDocument(KTextEditor::DocumentPrivate *document); KTextEditor::DocumentPrivate *document(); diff -Nru ktexteditor-5.28.0/src/script/katescriptmanager.cpp ktexteditor-5.31.0/src/script/katescriptmanager.cpp --- ktexteditor-5.28.0/src/script/katescriptmanager.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/katescriptmanager.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -42,7 +42,7 @@ #include "katecmd.h" #include "katepartdebug.h" -KateScriptManager *KateScriptManager::m_instance = 0; +KateScriptManager *KateScriptManager::m_instance = nullptr; KateScriptManager::KateScriptManager() : KTextEditor::Command(QStringList() << QStringLiteral("reload-scripts")) @@ -55,12 +55,12 @@ { qDeleteAll(m_indentationScripts); qDeleteAll(m_commandLineScripts); - m_instance = 0; + m_instance = nullptr; } KateIndentScript *KateScriptManager::indenter(const QString &language) { - KateIndentScript *highestPriorityIndenter = 0; + KateIndentScript *highestPriorityIndenter = nullptr; foreach (KateIndentScript *indenter, m_languageToIndenters.value(language.toLower())) { // don't overwrite if there is already a result with a higher priority if (highestPriorityIndenter && indenter->indentHeader().priority() < highestPriorityIndenter->indentHeader().priority()) { diff -Nru ktexteditor-5.28.0/src/script/katescriptmanager.h ktexteditor-5.31.0/src/script/katescriptmanager.h --- ktexteditor-5.28.0/src/script/katescriptmanager.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/katescriptmanager.h 2017-02-05 11:12:49.000000000 +0000 @@ -84,7 +84,7 @@ static KateScriptManager *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new KateScriptManager(); } return m_instance; diff -Nru ktexteditor-5.28.0/src/script/katescriptview.cpp ktexteditor-5.31.0/src/script/katescriptview.cpp --- ktexteditor-5.28.0/src/script/katescriptview.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/katescriptview.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -25,7 +25,7 @@ #include "katescript.h" KateScriptView::KateScriptView(QObject *parent) - : QObject(parent), m_view(0) + : QObject(parent), m_view(nullptr) { } diff -Nru ktexteditor-5.28.0/src/script/katescriptview.h ktexteditor-5.31.0/src/script/katescriptview.h --- ktexteditor-5.28.0/src/script/katescriptview.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/script/katescriptview.h 2017-02-05 11:12:49.000000000 +0000 @@ -46,7 +46,7 @@ Q_OBJECT public: - KateScriptView(QObject *parent = 0); + KateScriptView(QObject *parent = nullptr); void setView(KTextEditor::ViewPrivate *view); KTextEditor::ViewPrivate *view(); diff -Nru ktexteditor-5.28.0/src/search/kateplaintextsearch.h ktexteditor-5.31.0/src/search/kateplaintextsearch.h --- ktexteditor-5.28.0/src/search/kateplaintextsearch.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/search/kateplaintextsearch.h 2017-02-05 11:12:49.000000000 +0000 @@ -51,8 +51,6 @@ * * \param text text to search for * \param inputRange Range to search in - * \param casesensitive if \e true, the search is performed case - * sensitive, otherwise case insensitive * \param backwards if \e true, the search will be backwards * \return The valid range of the matched text if \p text was found. If * the \p text was not found, the returned range is not valid diff -Nru ktexteditor-5.28.0/src/search/kateregexpsearch.h ktexteditor-5.31.0/src/search/kateregexpsearch.h --- ktexteditor-5.28.0/src/search/kateregexpsearch.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/search/kateregexpsearch.h 2017-02-05 11:12:49.000000000 +0000 @@ -49,11 +49,11 @@ // public: /** - * Search for the regular expression \p regexp inside the range + * Search for the regular expression \p pattern inside the range * \p inputRange. If \p backwards is \e true, the search direction will * be reversed. * - * \param regexp text to search for + * \param pattern text to search for * \param inputRange Range to search in * \param backwards if \e true, the search will be backwards * \return Vector of ranges, one for each capture. The first range (index zero) diff -Nru ktexteditor-5.28.0/src/search/katesearchbar.cpp ktexteditor-5.31.0/src/search/katesearchbar.cpp --- ktexteditor-5.28.0/src/search/katesearchbar.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/search/katesearchbar.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -78,11 +78,11 @@ : m_insertBefore(QVector(expectedItemCount)), m_insertAfter(QVector(expectedItemCount)), m_indexWalker(0), - m_menu(NULL) + m_menu(nullptr) { - Q_ASSERT(parent != NULL); + Q_ASSERT(parent != nullptr); m_menu = parent->addMenu(i18n("Add...")); - if (m_menu == NULL) { + if (m_menu == nullptr) { return; } m_menu->setIcon(QIcon::fromTheme(QStringLiteral("list-add"))); @@ -90,7 +90,7 @@ void enableMenu(bool enabled) { - if (m_menu == NULL) { + if (m_menu == nullptr) { return; } m_menu->setEnabled(enabled); @@ -100,7 +100,7 @@ const QString description, const QString &realBefore = QString(), const QString &realAfter = QString()) { - if (m_menu == NULL) { + if (m_menu == nullptr) { return; } QAction *const action = m_menu->addAction(before + after + QLatin1Char('\t') + description); @@ -112,7 +112,7 @@ void addSeparator() { - if (m_menu == NULL) { + if (m_menu == nullptr) { return; } m_menu->addSeparator(); @@ -141,10 +141,10 @@ m_view(view), m_config(config), m_layout(new QVBoxLayout()), - m_widget(NULL), - m_incUi(NULL), + m_widget(nullptr), + m_incUi(nullptr), m_incInitCursor(view->cursorPosition()), - m_powerUi(NULL), + m_powerUi(nullptr), highlightMatchAttribute(new Attribute()), highlightReplacementAttribute(new Attribute()), m_incHighlightAll(false), @@ -257,7 +257,7 @@ const bool found = find(); if (found) { - QComboBox *combo = m_powerUi != 0 ? m_powerUi->pattern : m_incUi->pattern; + QComboBox *combo = m_powerUi != nullptr ? m_powerUi->pattern : m_incUi->pattern; // Add to search history addCurrentTextToHistory(combo); @@ -269,7 +269,7 @@ const bool found = find(SearchBackward); if (found) { - QComboBox *combo = m_powerUi != 0 ? m_powerUi->pattern : m_incUi->pattern; + QComboBox *combo = m_powerUi != nullptr ? m_powerUi->pattern : m_incUi->pattern; // Add to search history addCurrentTextToHistory(combo); @@ -337,7 +337,7 @@ } // Update status label - if (m_incUi != NULL) { + if (m_incUi != nullptr) { QPalette foreground(m_incUi->status->palette()); switch (matchResult) { case MatchFound: // FALLTHROUGH @@ -444,7 +444,7 @@ { sendConfig(); - if (m_incUi != 0) { + if (m_incUi != nullptr) { // Re-search with new settings const QString pattern = m_incUi->pattern->currentText(); onIncPatternChanged(pattern); @@ -572,7 +572,7 @@ match.searchText(inputRange, searchPattern()); if (match.isValid() && match.range() == selection) { // Same match again - if (replacement != 0) { + if (replacement != nullptr) { // Selection is match -> replace KTextEditor::MovingRange *smartInputRange = m_view->doc()->newMovingRange(inputRange, KTextEditor::MovingRange::ExpandLeft | KTextEditor::MovingRange::ExpandRight); afterReplace = match.replace(*replacement, m_view->blockSelection()); @@ -583,10 +583,10 @@ if (!selectionOnly()) { // Find, second try after old selection if (searchDirection == SearchForward) { - const Cursor start = (replacement != 0) ? afterReplace.end() : selection.end(); + const Cursor start = (replacement != nullptr) ? afterReplace.end() : selection.end(); inputRange.setRange(start, inputRange.end()); } else { - const Cursor end = (replacement != 0) ? afterReplace.start() : selection.start(); + const Cursor end = (replacement != nullptr) ? afterReplace.start() : selection.start(); inputRange.setRange(inputRange.start(), end); } } @@ -608,7 +608,7 @@ if (askWrap) { QString question = searchDirection == SearchForward ? i18n("Bottom of file reached. Continue from top?") : i18n("Top of file reached. Continue from bottom?"); - wrap = (KMessageBox::questionYesNo(0, question, i18n("Continue search?"), KStandardGuiItem::yes(), KStandardGuiItem::no(), + wrap = (KMessageBox::questionYesNo(nullptr, question, i18n("Continue search?"), KStandardGuiItem::yes(), KStandardGuiItem::no(), QStringLiteral("DoNotShowAgainContinueSearchDialog")) == KMessageBox::Yes); } @@ -665,7 +665,7 @@ Range inputRange = (m_view->selection() && selectionOnly()) ? m_view->selectionRange() : m_view->document()->documentRange(); - const int occurrences = findAll(inputRange, NULL); + const int occurrences = findAll(inputRange, nullptr); // send passive notification to view showInfoMessage(i18ncp("short translation", "1 match found", "%1 matches found", occurrences)); @@ -732,7 +732,7 @@ const long pastFlags = m_config->searchFlags(); long futureFlags = pastFlags; - if (m_powerUi != NULL) { + if (m_powerUi != nullptr) { const bool OF_POWER = true; backupConfig(OF_POWER); @@ -754,7 +754,7 @@ ? KateViewConfig::PowerModeWholeWords : KateViewConfig::PowerModePlainText))); - } else if (m_incUi != NULL) { + } else if (m_incUi != nullptr) { const bool OF_INCREMENTAL = false; backupConfig(OF_INCREMENTAL); @@ -826,7 +826,7 @@ bool const originalMatchEmpty = match.isEmpty(); // Work with the match - if (replacement != NULL) { + if (replacement != nullptr) { if (matchCounter == 0) { static_cast(m_view->document())->startEditing(); } @@ -870,12 +870,12 @@ // After last match if (matchCounter > 0) { - if (replacement != NULL) { + if (replacement != nullptr) { static_cast(m_view->document())->finishEditing(); } } - if (replacement == NULL) + if (replacement == nullptr) foreach (Range r, highlightRanges) { highlightMatch(r); } @@ -938,7 +938,7 @@ QString KateSearchBar::searchPattern() const { - return (m_powerUi != 0) ? m_powerUi->pattern->currentText() + return (m_powerUi != nullptr) ? m_powerUi->pattern->currentText() : m_incUi->pattern->currentText(); } @@ -971,7 +971,7 @@ enabledOptions |= Backwards; } - if (m_powerUi != NULL) { + if (m_powerUi != nullptr) { switch (m_powerUi->searchMode->currentIndex()) { case MODE_WHOLE_WORDS: enabledOptions |= WholeWords; @@ -1078,7 +1078,7 @@ QComboBox *comboBox = forPattern ? m_powerUi->pattern : m_powerUi->replacement; QMenu *const contextMenu = comboBox->lineEdit()->createStandardContextMenu(); - if (contextMenu == NULL) { + if (contextMenu == nullptr) { return; } @@ -1179,7 +1179,7 @@ // Show menu QAction *const result = contextMenu->exec(comboBox->mapToGlobal(pos)); - if (result != NULL) { + if (result != nullptr) { addMenuManager.handle(result, comboBox->lineEdit()); } } @@ -1267,34 +1267,34 @@ // If there's no new selection, we'll use the existing pattern if (initialPattern.isNull()) { // Coming from power search? - const bool fromReplace = (m_powerUi != NULL) && (m_widget->isVisible()); + const bool fromReplace = (m_powerUi != nullptr) && (m_widget->isVisible()); if (fromReplace) { QLineEdit *const patternLineEdit = m_powerUi->pattern->lineEdit(); - Q_ASSERT(patternLineEdit != NULL); + Q_ASSERT(patternLineEdit != nullptr); patternLineEdit->selectAll(); m_powerUi->pattern->setFocus(Qt::MouseFocusReason); return; } // Coming from incremental search? - const bool fromIncremental = (m_incUi != NULL) && (m_widget->isVisible()); + const bool fromIncremental = (m_incUi != nullptr) && (m_widget->isVisible()); if (fromIncremental) { initialPattern = m_incUi->pattern->currentText(); } } // Create dialog - const bool create = (m_powerUi == NULL); + const bool create = (m_powerUi == nullptr); if (create) { // Kill incremental widget - if (m_incUi != NULL) { + if (m_incUi != nullptr) { // Backup current settings const bool OF_INCREMENTAL = false; backupConfig(OF_INCREMENTAL); // Kill widget delete m_incUi; - m_incUi = NULL; + m_incUi = nullptr; m_layout->removeWidget(m_widget); m_widget->deleteLater(); // I didn't get a crash here but for symmetrie to the other mutate slot^ } @@ -1311,13 +1311,13 @@ m_powerUi->pattern->setMaxCount(m_config->maxHistorySize()); m_powerUi->pattern->setModel(KTextEditor::EditorPrivate::self()->searchHistoryModel()); m_powerUi->pattern->lineEdit()->setClearButtonEnabled(true); - m_powerUi->pattern->setCompleter(0); + m_powerUi->pattern->setCompleter(nullptr); m_powerUi->replacement->setDuplicatesEnabled(false); m_powerUi->replacement->setInsertPolicy(QComboBox::InsertAtTop); m_powerUi->replacement->setMaxCount(m_config->maxHistorySize()); m_powerUi->replacement->setModel(KTextEditor::EditorPrivate::self()->replaceHistoryModel()); m_powerUi->replacement->lineEdit()->setClearButtonEnabled(true); - m_powerUi->replacement->setCompleter(0); + m_powerUi->replacement->setCompleter(nullptr); // Icons m_powerUi->mutate->setIcon(QIcon::fromTheme(QStringLiteral("games-config-options"))); @@ -1346,13 +1346,13 @@ // Set initial search pattern QLineEdit *const patternLineEdit = m_powerUi->pattern->lineEdit(); - Q_ASSERT(patternLineEdit != NULL); + Q_ASSERT(patternLineEdit != nullptr); patternLineEdit->setText(initialPattern); patternLineEdit->selectAll(); // Set initial replacement text QLineEdit *const replacementLineEdit = m_powerUi->replacement->lineEdit(); - Q_ASSERT(replacementLineEdit != NULL); + Q_ASSERT(replacementLineEdit != nullptr); replacementLineEdit->setText(QString()); // Propagate settings (slots are still inactive on purpose) @@ -1407,7 +1407,7 @@ // If there's no new selection, we'll use the existing pattern if (initialPattern.isNull()) { // Coming from incremental search? - const bool fromIncremental = (m_incUi != NULL) && (m_widget->isVisible()); + const bool fromIncremental = (m_incUi != nullptr) && (m_widget->isVisible()); if (fromIncremental) { m_incUi->pattern->lineEdit()->selectAll(); m_incUi->pattern->setFocus(Qt::MouseFocusReason); @@ -1415,7 +1415,7 @@ } // Coming from power search? - const bool fromReplace = (m_powerUi != NULL) && (m_widget->isVisible()); + const bool fromReplace = (m_powerUi != nullptr) && (m_widget->isVisible()); if (fromReplace) { initialPattern = m_powerUi->pattern->currentText(); } @@ -1428,17 +1428,17 @@ } // Create dialog - const bool create = (m_incUi == NULL); + const bool create = (m_incUi == nullptr); if (create) { // Kill power widget - if (m_powerUi != NULL) { + if (m_powerUi != nullptr) { // Backup current settings const bool OF_POWER = true; backupConfig(OF_POWER); // Kill widget delete m_powerUi; - m_powerUi = NULL; + m_powerUi = nullptr; m_layout->removeWidget(m_widget); m_widget->deleteLater(); //deleteLater, because it's not a good idea too delete the widget and there for the button triggering this slot } @@ -1473,7 +1473,7 @@ m_incUi->pattern->setMaxCount(m_config->maxHistorySize()); m_incUi->pattern->setModel(KTextEditor::EditorPrivate::self()->searchHistoryModel()); m_incUi->pattern->lineEdit()->setClearButtonEnabled(true); - m_incUi->pattern->setCompleter(0); + m_incUi->pattern->setCompleter(nullptr); } // Restore previous settings @@ -1553,7 +1553,7 @@ void KateSearchBar::showEvent(QShowEvent *event) { // Update init cursor - if (m_incUi != NULL) { + if (m_incUi != nullptr) { m_incInitCursor = m_view->cursorPosition(); } @@ -1563,7 +1563,7 @@ void KateSearchBar::updateSelectionOnly() { - if (m_powerUi == NULL) { + if (m_powerUi == nullptr) { return; } @@ -1579,7 +1579,7 @@ void KateSearchBar::updateIncInitCursor() { - if (m_incUi == NULL) { + if (m_incUi == nullptr) { return; } @@ -1611,7 +1611,7 @@ bool KateSearchBar::isPower() const { - return m_powerUi != 0; + return m_powerUi != nullptr; } void KateSearchBar::slotReadWriteChanged() diff -Nru ktexteditor-5.28.0/src/search/katesearchbar.h ktexteditor-5.31.0/src/search/katesearchbar.h --- ktexteditor-5.28.0/src/search/katesearchbar.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/search/katesearchbar.h 2017-02-05 11:12:49.000000000 +0000 @@ -149,7 +149,7 @@ private: // Helpers - bool find(SearchDirection searchDirection = SearchForward, const QString *replacement = 0); + bool find(SearchDirection searchDirection = SearchForward, const QString *replacement = nullptr); int findAll(KTextEditor::Range inputRange, const QString *replacement); bool isPatternValid() const; diff -Nru ktexteditor-5.28.0/src/spellcheck/ontheflycheck.cpp ktexteditor-5.31.0/src/spellcheck/ontheflycheck.cpp --- ktexteditor-5.28.0/src/spellcheck/ontheflycheck.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/spellcheck/ontheflycheck.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -51,9 +51,9 @@ KateOnTheFlyChecker::KateOnTheFlyChecker(KTextEditor::DocumentPrivate *document) : QObject(document), m_document(document), - m_backgroundChecker(NULL), + m_backgroundChecker(nullptr), m_currentlyCheckedItem(invalidSpellCheckQueueItem()), - m_refreshView(NULL) + m_refreshView(nullptr) { ON_THE_FLY_DEBUG << "created"; @@ -515,7 +515,7 @@ ON_THE_FLY_DEBUG << range; // remove it from all our structures removeRangeFromEverything(range); - range->setFeedback(NULL); + range->setFeedback(nullptr); foreach (KTextEditor::View *view, m_document->views()) { static_cast(view)->spellingMenu()->rangeDeleted(range); } @@ -846,7 +846,7 @@ if (m_refreshView) { updateInstalledMovingRanges(m_refreshView); } - m_refreshView = NULL; + m_refreshView = nullptr; } void KateOnTheFlyChecker::restartViewRefreshTimer(KTextEditor::ViewPrivate *view) @@ -860,7 +860,7 @@ void KateOnTheFlyChecker::deleteMovingRangeQuickly(KTextEditor::MovingRange *range) { - range->setFeedback(NULL); + range->setFeedback(nullptr); foreach (KTextEditor::View *view, m_document->views()) { static_cast(view)->spellingMenu()->rangeDeleted(range); } diff -Nru ktexteditor-5.28.0/src/spellcheck/spellcheckbar.cpp ktexteditor-5.31.0/src/spellcheck/spellcheckbar.cpp --- ktexteditor-5.28.0/src/spellcheck/spellcheckbar.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/spellcheck/spellcheckbar.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -108,7 +108,7 @@ } else { progressDialog->deleteLater(); } - progressDialog = NULL; + progressDialog = nullptr; } } }; @@ -123,7 +123,7 @@ d->showCompletionMessageBox = false; d->spellCheckContinuedAfterReplacement = true; d->progressDialogTimeout = -1; - d->progressDialog = NULL; + d->progressDialog = nullptr; initGui(); initConnections(); diff -Nru ktexteditor-5.28.0/src/spellcheck/spellcheckbar.h ktexteditor-5.31.0/src/spellcheck/spellcheckbar.h --- ktexteditor-5.28.0/src/spellcheck/spellcheckbar.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/spellcheck/spellcheckbar.h 2017-02-05 11:12:49.000000000 +0000 @@ -119,7 +119,7 @@ * Emitted when the user changes the language used for spellchecking, * which is shown in a combobox of this dialog. * - * @param dictionary the new language the user selected + * @param language the new language the user selected * @since 4.1 */ void languageChanged(const QString &language); diff -Nru ktexteditor-5.28.0/src/spellcheck/spellcheckdialog.cpp ktexteditor-5.31.0/src/spellcheck/spellcheckdialog.cpp --- ktexteditor-5.28.0/src/spellcheck/spellcheckdialog.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/spellcheck/spellcheckdialog.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -42,11 +42,11 @@ KateSpellCheckDialog::KateSpellCheckDialog(KTextEditor::ViewPrivate *view) : QObject(view) , m_view(view) - , m_spellcheckSelection(NULL) - , m_speller(NULL) - , m_backgroundChecker(NULL) - , m_sonnetDialog(NULL) - , m_globalSpellCheckRange(NULL) + , m_spellcheckSelection(nullptr) + , m_speller(nullptr) + , m_backgroundChecker(nullptr) + , m_sonnetDialog(nullptr) + , m_globalSpellCheckRange(nullptr) , m_spellCheckCancelledByUser(false) { } @@ -311,7 +311,7 @@ void KateSpellCheckDialog::objectDestroyed(QObject *object) { Q_UNUSED(object); - m_sonnetDialog = NULL; + m_sonnetDialog = nullptr; } void KateSpellCheckDialog::languageChanged(const QString &language) diff -Nru ktexteditor-5.28.0/src/spellcheck/spellcheck.h ktexteditor-5.31.0/src/spellcheck/spellcheck.h --- ktexteditor-5.28.0/src/spellcheck/spellcheck.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/spellcheck/spellcheck.h 2017-02-05 11:12:49.000000000 +0000 @@ -39,7 +39,7 @@ typedef QPair RangeDictionaryPair; public: - KateSpellCheckManager(QObject *parent = NULL); + KateSpellCheckManager(QObject *parent = nullptr); virtual ~KateSpellCheckManager(); QStringList suggestions(const QString &word, const QString &dictionary); diff -Nru ktexteditor-5.28.0/src/spellcheck/spellingmenu.cpp ktexteditor-5.31.0/src/spellcheck/spellingmenu.cpp --- ktexteditor-5.28.0/src/spellcheck/spellingmenu.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/spellcheck/spellingmenu.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -31,16 +31,16 @@ KateSpellingMenu::KateSpellingMenu(KTextEditor::ViewPrivate *view) : QObject(view), m_view(view), - m_spellingMenuAction(NULL), - m_ignoreWordAction(NULL), - m_addToDictionaryAction(NULL), - m_spellingMenu(NULL), - m_currentMisspelledRange(NULL), // we have to use 'm_currentMisspelledRange' + m_spellingMenuAction(nullptr), + m_ignoreWordAction(nullptr), + m_addToDictionaryAction(nullptr), + m_spellingMenu(nullptr), + m_currentMisspelledRange(nullptr), // we have to use 'm_currentMisspelledRange' // as QSignalMapper doesn't work with pairs of objects; // it just points to the object pointed to by either // 'm_currentMouseMisspelledRange' or 'm_currentCaretMisspelledRange' - m_currentMouseMisspelledRange(NULL), - m_currentCaretMisspelledRange(NULL), + m_currentMouseMisspelledRange(nullptr), + m_currentCaretMisspelledRange(nullptr), m_useMouseForMisspelledRange(false), m_suggestionsSignalMapper(new QSignalMapper(this)) { @@ -50,12 +50,12 @@ KateSpellingMenu::~KateSpellingMenu() { - m_currentMisspelledRange = NULL; // it shouldn't be accessed anymore as it could + m_currentMisspelledRange = nullptr; // it shouldn't be accessed anymore as it could // point to a non-existing object (bug 226724) // (for example, when it pointed to m_currentCaretMisspelledRange // and that range got deleted after the caret had left) - m_currentCaretMisspelledRange = NULL; - m_currentMouseMisspelledRange = NULL; + m_currentCaretMisspelledRange = nullptr; + m_currentMouseMisspelledRange = nullptr; } bool KateSpellingMenu::isEnabled() const @@ -114,7 +114,7 @@ if (m_currentCaretMisspelledRange == range) { return; } - m_currentCaretMisspelledRange = NULL; + m_currentCaretMisspelledRange = nullptr; setEnabled(true); m_currentCaretMisspelledRange = range; } @@ -125,7 +125,7 @@ return; // was wrong } setEnabled(false); - m_currentCaretMisspelledRange = NULL; + m_currentCaretMisspelledRange = nullptr; } void KateSpellingMenu::mouseEnteredMisspelledRange(KTextEditor::MovingRange *range) @@ -141,30 +141,30 @@ if (range != m_currentMouseMisspelledRange) { // order of 'exit' and 'entered' signals return; // was wrong } - m_currentMouseMisspelledRange = NULL; + m_currentMouseMisspelledRange = nullptr; } void KateSpellingMenu::rangeDeleted(KTextEditor::MovingRange *range) { if (m_currentCaretMisspelledRange == range) { - m_currentCaretMisspelledRange = NULL; + m_currentCaretMisspelledRange = nullptr; } if (m_currentMouseMisspelledRange == range) { - m_currentMouseMisspelledRange = NULL; + m_currentMouseMisspelledRange = nullptr; } if (m_currentMisspelledRange == range) { - m_currentMisspelledRange = NULL; + m_currentMisspelledRange = nullptr; } - setEnabled(m_currentCaretMisspelledRange != NULL); + setEnabled(m_currentCaretMisspelledRange != nullptr); } void KateSpellingMenu::setUseMouseForMisspelledRange(bool b) { m_useMouseForMisspelledRange = b; if (m_useMouseForMisspelledRange) { - setEnabled(m_currentMouseMisspelledRange != NULL); + setEnabled(m_currentMouseMisspelledRange != nullptr); } else if (!m_useMouseForMisspelledRange) { - setEnabled(m_currentCaretMisspelledRange != NULL); + setEnabled(m_currentCaretMisspelledRange != nullptr); } } diff -Nru ktexteditor-5.28.0/src/swapfile/kateswapdiffcreator.cpp ktexteditor-5.31.0/src/swapfile/kateswapdiffcreator.cpp --- ktexteditor-5.28.0/src/swapfile/kateswapdiffcreator.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/swapfile/kateswapdiffcreator.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -34,7 +34,7 @@ SwapDiffCreator::SwapDiffCreator(Kate::SwapFile *swapFile) : QObject(swapFile) , m_swapFile(swapFile) - , m_proc(0) + , m_proc(nullptr) { } @@ -129,11 +129,11 @@ // get the exit status to check whether diff command run successfully const QProcess::ExitStatus es = m_proc->exitStatus(); delete m_proc; - m_proc = 0; + m_proc = nullptr; // check exit status if (es != QProcess::NormalExit) { - KMessageBox::sorry(0, + KMessageBox::sorry(nullptr, i18n("The diff command failed. Please make sure that " "diff(1) is installed and in your PATH."), i18n("Error Creating Diff")); @@ -143,7 +143,7 @@ // sanity check: is there any diff content? if (m_diffFile.size() == 0) { - KMessageBox::information(0, + KMessageBox::information(nullptr, i18n("The files are identical."), i18n("Diff Output")); deleteLater(); diff -Nru ktexteditor-5.28.0/src/swapfile/kateswapfile.cpp ktexteditor-5.31.0/src/swapfile/kateswapfile.cpp --- ktexteditor-5.28.0/src/swapfile/kateswapfile.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/swapfile/kateswapfile.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -55,7 +55,7 @@ namespace Kate { -QTimer *SwapFile::s_timer = 0; +QTimer *SwapFile::s_timer = nullptr; SwapFile::SwapFile(KTextEditor::DocumentPrivate *document) : QObject(document) @@ -238,7 +238,7 @@ bool success = recover(m_stream); // close swap file - m_stream.setDevice(0); + m_stream.setDevice(nullptr); m_swapfile.close(); if (!success) { @@ -451,7 +451,7 @@ // write checksum m_stream << m_document->checksum(); - } else if (m_stream.device() == 0) { + } else if (m_stream.device() == nullptr) { m_swapfile.open(QIODevice::Append); m_swapfile.setPermissions(QFileDevice::ReadOwner|QFileDevice::WriteOwner); m_stream.setDevice(&m_swapfile); @@ -542,7 +542,7 @@ return false; } - return !m_swapfile.fileName().isEmpty() && m_swapfile.exists() && m_stream.device() == 0; + return !m_swapfile.fileName().isEmpty() && m_swapfile.exists() && m_stream.device() == nullptr; } void SwapFile::discard() @@ -560,7 +560,7 @@ void SwapFile::removeSwapFile() { if (!m_swapfile.fileName().isEmpty() && m_swapfile.exists()) { - m_stream.setDevice(0); + m_stream.setDevice(nullptr); m_swapfile.close(); m_swapfile.remove(); } @@ -612,7 +612,7 @@ QTimer *SwapFile::syncTimer() { - if (s_timer == 0) { + if (s_timer == nullptr) { s_timer = new QTimer(QApplication::instance()); s_timer->setSingleShot(true); } @@ -642,9 +642,9 @@ KTextEditor::Message::Warning); m_swapMessage->setWordWrap(true); - QAction *diffAction = new QAction(QIcon::fromTheme(QStringLiteral("split")), i18n("View Changes"), 0); - QAction *recoverAction = new QAction(QIcon::fromTheme(QStringLiteral("edit-redo")), i18n("Recover Data"), 0); - QAction *discardAction = new QAction(KStandardGuiItem::discard().icon(), i18n("Discard"), 0); + QAction *diffAction = new QAction(QIcon::fromTheme(QStringLiteral("split")), i18n("View Changes"), nullptr); + QAction *recoverAction = new QAction(QIcon::fromTheme(QStringLiteral("edit-redo")), i18n("Recover Data"), nullptr); + QAction *discardAction = new QAction(KStandardGuiItem::discard().icon(), i18n("Discard"), nullptr); m_swapMessage->addAction(diffAction, false); m_swapMessage->addAction(recoverAction); diff -Nru ktexteditor-5.28.0/src/syntax/data/4dos.xml ktexteditor-5.31.0/src/syntax/data/4dos.xml --- ktexteditor-5.28.0/src/syntax/data/4dos.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/4dos.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,926 +0,0 @@ - - - - - -]> - - - - - todo - attention - attn - fixme - achtung - info - - - DOSMEM - EMS - EXTENDED - XMS - CDROM - CLUSTSIZE - CODEPAGE - COM - DEVICE - DISKFREE - DISKTOTAL - DISKUSED - DRIVETYPE - HDDSIZE - LPT - READY - REMOTE - REMOVABLE - ATTRIB - COMPARE - FILEAGE - FILECLOSE - FILEOPEN - FILEREAD - FILEREADB - FILES - FILESEEK - FILESEEKL - FILESIZE - FILEWRITE - FILEWRITEB - FINDCLOSE - LINES - ASCII - COUNT - FIELDS - INDEX - ISALNUM - ISALPHA - ISASCII - ISCNTRL - ISDIGIT - ISLOWER - ISPRINT - ISPUNCT - ISSPACE - ISUPPER - ISXDIGIT - LEN - SIMILAR - WILD - WORDS - ABS - AVERAGE - CEILING - CONVERT - DEC - DECIMAL - DIGITS - EVAL - FLOOR - INC - INT - MAX - MIN - NUMERIC - RANDOM - DATE - DAY - DOWI - DOY - ISODOWI - ISOWEEK - ISOWYEAR - MAKEAGE - MONTH - TIME - YEAR - EXEC - INIWRITE - - - DDCSTR - MASTER - READSCR - SMBSTR - CWD - CWDS - FSTYPE - LABEL - SERIAL - ATTRIB - FILEDATE - FILETIME - FINDFIRST - FINDNEXT - LINE - MD5 - SEARCH - SHA1 - TRUENAME - UNIQUE - ALTNAME - EXPAND - EXT - FILENAME - FULL - LFN - NAME - PATH - QUOTE - SFN - UNQUOTE - UNQUOTES - ASCII - CAPS - CHAR - FIELD - FORMAT - INSERT - INSTR - LCS - LEFT - LOWER - LTRIM - REPEAT - REPLACE - RIGHT - RTRIM - REVERSE - STRIP - SUBST - SUBSTR - TRIM - UPPER - WORD - COMMA - AGEDATE - DATECONV - DOW - DOWF - MAKEDATE - MAKETIME - MONTHF - ALIAS - CLIP - CLIPW - EXECSTR - FUNCTION - HISTORY - IF - INIREAD - SELECT - TIMER - - if - iff - text - input - inkey - do - enddo - - iterate - leave - - switch - errorlevel - - defined - isalias - isfunction - isinternal - islabel - - - set - function - alias - - - ENDLOCAL - UNALIAS - UNFUNCTION - UNSET - - - for - else - elseiff - endiff - enddo - endtext - case - endswitch - default - - - - - BREAK - IDLE - LFNFOR - LOADBTM - SWAPPING - TRANSIENT - VERIFY - - - CALL - CD - CHDIR - CDD - DIR - ERASE - DEL - DESCRIBE - HEAD - MD - MKDIR - RD - RMDIR - PUSHD - REN - RENAME - TOUCH - - - BEEP - CANCEL - DATE /T - FREE - KEYBD - ELSE - PAUSE - POPD - QUIT - SETDOS - SHIFT - TAIL - TEE - TIME - TIMER - TYPE - - - CHCP - DELAY - COUNTRY - SETERROR - - - CLS - COLOR - - - ATTRIB - COPY - FFIND - MOVE - - - DRAWBOX - DRAWHLINE - DRAWVLINE - SCREEN - SCRPUT - VSCRPUT - - - EXCEPT - GLOBAL - - - SETLOCAL - - - on - off - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/abap.xml ktexteditor-5.31.0/src/syntax/data/abap.xml --- ktexteditor-5.28.0/src/syntax/data/abap.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/abap.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,285 +0,0 @@ - - - - - - - - ADD - ADJACENT - ALL - AND - APPEND - APPENDING - AS - ASCENDING - AT - BEGIN - BETWEEN - BINARY - BLOCK - BY - CASE - CENTERED - CHAIN - CHANGING - CHECK - CHECKBOX - CLEAR - COL_BACKGROUND - COL_HEADING - COL_NORMAL - COL_TOTAL - COLOR - COMMENT - COMMIT - COMPARING - COMPUTE - CONCATENATE - CONDENSE - CONSTANTS - CONTINUE - CONTROLS - COUNTRY - DATA - DECIMALS - DEFAULT - DELETE - DELETING - DESCENDING - DESCRIBE - DO - DUPLICATES - EDIT - ELSE - ELSEIF - END - ENDCASE - ENDCHAIN - ENDDO - ENDIF - ENDLOOP - ENDMODULE - ENDSELECT - ENDWHILE - ENTRIES - EQ - EXCEPTIONS - EXCLUDING - EXIT - EXIT-COMMAND - EXPORT - EXPORTING - FIELD - FIRST - FOR - FORMAT - FRAME - FREE - FROM - GE - GROUP - GT - HEADER - HEADING - HIDE - HOTSPOT - ID - IF - IMPORT - IMPORTING - IN - INDEX - INITIAL - INNER - INPUT - INSERT - INTENSIFIED - INTERVALS - INTO - IS - JOIN - KEY - LE - LEAVE - LEFT - LEFT-JUSTIFIED - LIKE - LINE - LINE-COUNT - LINES - LINES - LINE-SIZE - LIST-PROCESSING - LOOP - LT - MASK - MEMORY - MESSAGE - MESSAGE-ID - MOD - MODIFY - MODULE - MOVE - MOVE-CORRESPONDING - NE - NEW-LINE - NEW-PAGE - NO - NO-EXTENSION - NO-GAP - NO-SCROLLING - NOT - NO-ZERO - NUMBER - OBLIGATORY - OCCURS - OF - OFF - ON - OR - OTHERS - OUTPUT - PAGE - PARAMETER - PARAMETERS - PERFORM - PF-STATUS - POS_HIGH - POS_LOW - POSITION - PROGRAM - RADIOBUTTON - RANGES - READ - REFRESH - REPORT - RESERVE - RESET - RIGHT - RIGHT-JUSTIFIED - ROLLBACK - ROWS - SCREEN - SCREEN-GROUP1 - SCREEN-GROUP2 - SCREEN-GROUP3 - SCREEN-GROUP4 - SCREEN-GROUP5 - SCREEN-INPUT - SCREEN-INTENSIFIED - SEARCH - SELECT - SELECTION - SELECTION-SCREEN - SELECT-OPTIONS - SEPARATED - SET - SHIFT - SINGLE - SKIP - SORT - SPACE - SPLIT - STANDARD - STARTING - STOP - STRLEN - STRUCTURE - SUBTRACT - SY-CUCOL - SY-DATUM - SY-DYNNR - SY-LINSZ - SY-LOOPC - SY-LSIND - SY-MSGID - SY-MSGTY - SY-MSGV1 - SY-MSGV2 - SY-MSGV3 - SY-MSGV4 - SY-PAGNO - SY-REPID - SY-STEPL - SY-SUBRC - SY-TABIX - SY-TCODE - SY-TMAXL - SY-UCOMM - SY-ULINE - SY-UNAME - SY-UZEIT - SY-VLINE - TABLE - TABLES - TABLEVIEW - TIMES - TITLE - TITLEBAR - TO - TRAILING - TRANSPORTING - TYPE - TYPE-POOLS - TYPES - ULINE - UP - UPDATE - USING - VALUE - WHEN - WHERE - WHILE - WITH - WORK - WRITE - AFTER - BEFORE - CALL - DURING - ENDFORM - END-OF-SELECTION - FORM - FUNCTION - INCLUDE - LINE-SELECTION - PROCESS - START-OF-SELECTION - TOP-OF-PAGE - TRANSACTION - USER-COMMAND - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/abc.xml ktexteditor-5.31.0/src/syntax/data/abc.xml --- ktexteditor-5.28.0/src/syntax/data/abc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/abc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/actionscript.xml ktexteditor-5.31.0/src/syntax/data/actionscript.xml --- ktexteditor-5.28.0/src/syntax/data/actionscript.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/actionscript.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,334 +0,0 @@ - - - - - - - _accProps - _focusrect - _global - _highquality - _level - _parent - _quality - _root - _soundbuftime - maxscroll - scroll - this - - - - asfunction - call - chr - clearInterval - duplicateMovieClip - escape - eval - fscommand - getProperty - getTimer - getURL - getVersion - gotoAndPlay - gotoAndStop - ifFrameLoaded - int - isFinite - isNaN - length - loadMovie - loadMovieNum - loadVariables - loadVariablesNum - mbchr - mblength - mbord - mbsubstring - nextFrame - nextScene - on - onClipEvent - ord - parseFloat - parseInt - play - prevFrame - prevScene - print - printAsBitmap - printAsBitmapNum - printNum - random - removeMovieClip - setInterval - setProperty - showRedrawRegions - startDrag - stop - stopAllSounds - stopDrag - substring - targetPath - tellTarget - toggleHighQuality - trace - typeof - unescape - unloadMovie - unloadMovieNum - updateAfterEvent - - - - Accessibility - Accordion - Alert - Binding - Button - Camera - CellRenderer - CheckBox - Collection - Color - ComboBox - ComponentMixins - ContextMenu - ContextMenuItem - CustomActions - CustomFormatter - CustomValidator - DataGrid - DataHolder - DataProvider - DataSet - DataType - Date - DateChooser - DateField - Delta - DeltaItem - DeltaPacket - DepthManager - EndPoint - Error - FaultEvent - FocusManager - Form - Function - Iterator - Key - Label - List - LoadVars - Loader - LocalConnection - Log - Math - Media - Menu - MenuBar - Microphone - Mouse - MovieClip - MovieClipLoader - NetConnection - NetStream - Number - NumericStepper - PendingCall - PopUpManager - PrintJob - ProgressBar - RDBMSResolver - RadioButton - RelayResponder - SOAPCall - Screen - ScrollPane - Selection - SharedObject - Slide - Sound - Stage - StyleManager - System - TextArea - TextField - TextFormat - TextInput - TextSnapshot - TransferObject - Tree - TreeDataProvider - TypedValue - UIComponent - UIEventDispatcher - UIObject - Video - WebService - WebServiceConnector - Window - XML - XMLConnector - XUpdateResolver - - - - add - and - break - case - catch - class - continue - default - delete - do - dynamic - else - eq - extends - finally - for - function - ge - get - gt - if - implements - import - in - instanceof - interface - intrinsic - le - lt - ne - new - not - or - private - public - return - set - static - switch - throw - try - var - void - while - with - - - - false - Infinity - -Infinity - NaN - newline - null - true - undefined - - - - Array - Boolean - Number - Object - String - Void - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/ada.xml ktexteditor-5.31.0/src/syntax/data/ada.xml --- ktexteditor-5.28.0/src/syntax/data/ada.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ada.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,202 +0,0 @@ - - - - - - abort - abs - abstract - accept - access - aliased - all - and - array - at - begin - body - constant - declare - delay - delta - digits - do - else - elsif - end - entry - exception - exit - for - function - generic - goto - in - interface - is - limited - mod - new - not - null - of - or - others - out - overriding - package - pragma - private - procedure - protected - raise - range - rem - record - renames - requeue - return - reverse - separate - subtype - tagged - task - terminate - then - type - until - use - when - while - with - xor - - - all_calls_remote - assert - assertion_policy - asynchronous - atomic - atomic_components - attach_handler - controlled - convention - detect_blocking - discard_names - elaborate - elaborate_all - elaborate_body - export - import - inline - inspection_point - interrupt_handler - interrupt_priority - linker_options - list - locking_policy - no_return - normalize_scalars - optimize - pack - page - partition_elaboration_policy - preelaborable_initialization - preelaborate - priority - priority_specific_dispatching - profile - pure - queuing_policy - relative_deadline - remote_call_interface - remote_types - restrictions - reviewable - shared_passive - storage_size - suppress - task_dispatching_policy - unchecked_union - unsuppress - volatile - volatile_components - - - boolean - character - float - integer - long_float - long_integer - long_long_float - long_long_integer - short_float - short_integer - string - wide_string - wide_character - wide_wide_character - wide_wide_string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/agda.xml ktexteditor-5.31.0/src/syntax/data/agda.xml --- ktexteditor-5.28.0/src/syntax/data/agda.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/agda.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,107 +0,0 @@ - - - -]> - - - - abstract - codata - coinductive - constructor - data - field - forall - hiding - import - in - inductive - infix - infixl - infixr - let - open - pattern - postulate - primitive - private - public - module - mutual - quote - quoteGoal - quoteTerm - record - renaming - rewrite - syntax - to - unquote - using - where - with - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ahdl.xml ktexteditor-5.31.0/src/syntax/data/ahdl.xml --- ktexteditor-5.28.0/src/syntax/data/ahdl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ahdl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,145 +0,0 @@ - - - - - - assert - bidir - bits - buried - case - clique - connected_pins - constant - defaults - define - design - device - else - elsif - for - function - generate - gnd - help_id - in - include - input - is - machine - node - of - options - others - output - parameters - returns - states - subdesign - then - title - to - tri_state_node - variable - vcc - when - with - - - carry - cascade - dffe - dff - exp - global - jkffe - jkff - latch - lcell - mcell - memory - opendrn - soft - srffe - srff - tffe - tff - tri - wire - x - - - not - and - nand - or - nor - xor - xnor - mod - div - log2 - used - ceil - floor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ahk.xml ktexteditor-5.31.0/src/syntax/data/ahk.xml --- ktexteditor-5.28.0/src/syntax/data/ahk.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ahk.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1139 +0,0 @@ - - - - - - - if - ifequal - ifexist - ifgreater - ifgreaterorequal - ifinstring - ifless - iflessorequal - ifmsgbox - ifnotequal - ifnotexist - ifnotinstring - ifwinactive - ifwinexist - ifwinnotactive - ifwinnotexist - break - continue - else - exit - exitapp - gosub - goto - loop - onexit - pause - repeat - return - settimer - sleep - suspend - static - global - local - byref - while - until - for - - - autotrim - blockinput - clipwait - control - controlclick - controlfocus - controlget - controlgetfocus - controlgetpos - controlgettext - controlmove - controlsend - controlsendraw - controlsettext - coordmode - critical - detecthiddentext - detecthiddenwindows - drive - driveget - drivespacefree - edit - endrepeat - envadd - envdiv - envget - envmult - envset - envsub - envupdate - fileappend - filecopy - filecopydir - filecreatedir - filecreateshortcut - filedelete - filegetattrib - filegetshortcut - filegetsize - filegettime - filegetversion - fileinstall - filemove - filemovedir - fileread - filereadline - filerecycle - filerecycleempty - fileremovedir - fileselectfile - fileselectfolder - filesetattrib - filesettime - formattime - getkeystate - groupactivate - groupadd - groupclose - groupdeactivate - gui - guicontrol - guicontrolget - hideautoitwin - hotkey - imagesearch - inidelete - iniread - iniwrite - input - inputbox - keyhistory - keywait - listhotkeys - listlines - listvars - menu - mouseclick - mouseclickdrag - mousegetpos - mousemove - msgbox - outputdebug - pixelgetcolor - pixelsearch - postmessage - process - progress - random - regdelete - regread - regwrite - reload - run - runas - runwait - send - sendevent - sendinput - sendmessage - sendmode - sendplay - sendraw - setbatchlines - setcapslockstate - setcontroldelay - setdefaultmousespeed - setenv - setformat - setkeydelay - setmousedelay - setnumlockstate - setscrolllockstate - setstorecapslockmode - settitlematchmode - setwindelay - setworkingdir - shutdown - sort - soundbeep - soundget - soundgetwavevolume - soundplay - soundset - soundsetwavevolume - splashimage - splashtextoff - splashtexton - splitpath - statusbargettext - statusbarwait - stringcasesense - stringgetpos - stringleft - stringlen - stringlower - stringmid - stringreplace - stringright - stringsplit - stringtrimleft - stringtrimright - stringupper - sysget - thread - tooltip - transform - traytip - urldownloadtofile - winactivate - winactivatebottom - winclose - winget - wingetactivestats - wingetactivetitle - wingetclass - wingetpos - wingettext - wingettitle - winhide - winkill - winmaximize - winmenuselectitem - winminimize - winminimizeall - winminimizeallundo - winmove - winrestore - winset - winsettitle - winshow - winwait - winwaitactive - winwaitclose - winwaitnotactive - fileencoding - - - abs - acos - asc - asin - atan - ceil - chr - cos - dllcall - exp - fileexist - floor - getkeystate - numget - numput - registercallback - il_add - il_create - il_destroy - instr - islabel - isfunc - ln - log - lv_add - lv_delete - lv_deletecol - lv_getcount - lv_getnext - lv_gettext - lv_insert - lv_insertcol - lv_modify - lv_modifycol - lv_setimagelist - mod - onmessage - round - regexmatch - regexreplace - sb_seticon - sb_setparts - sb_settext - sin - sqrt - strlen - substr - tan - tv_add - tv_delete - tv_getchild - tv_getcount - tv_getnext - tv_get - tv_getparent - tv_getprev - tv_getselection - tv_gettext - tv_modify - varsetcapacity - winactive - winexist - trim - ltrim - rtrim - fileopen - strget - strput - object - array - isobject - objinsert - objremove - objminindex - objmaxindex - objsetcapacity - objgetcapacity - objgetaddress - objnewenum - objaddref - objrelease - objhaskey - objclone - _insert - _remove - _minindex - _maxindex - _setcapacity - _getcapacity - _getaddress - _newenum - _addref - _release - _haskey - _clone - comobjcreate - comobjget - comobjconnect - comobjerror - comobjactive - comobjenwrap - comobjunwrap - comobjparameter - comobjmissing - comobjtype - comobjvalue - comobjarray - comobjquery - comobjflags - - - allowsamelinecomments - clipboardtimeout - commentflag - errorstdout - escapechar - hotkeyinterval - hotkeymodifiertimeout - hotstring - if - iftimeout - ifwinactive - ifwinexist - include - includeagain - installkeybdhook - installmousehook - keyhistory - ltrim - maxhotkeysperinterval - maxmem - maxthreads - maxthreadsbuffer - maxthreadsperhotkey - menumaskkey - noenv - notrayicon - persistent - singleinstance - usehook - warn - winactivateforce - - - shift - lshift - rshift - alt - lalt - ralt - control - lcontrol - rcontrol - ctrl - lctrl - rctrl - lwin - rwin - appskey - altdown - altup - shiftdown - shiftup - ctrldown - ctrlup - lwindown - lwinup - rwindown - rwinup - lbutton - rbutton - mbutton - wheelup - wheeldown - xbutton1 - xbutton2 - joy1 - joy2 - joy3 - joy4 - joy5 - joy6 - joy7 - joy8 - joy9 - joy10 - joy11 - joy12 - joy13 - joy14 - joy15 - joy16 - joy17 - joy18 - joy19 - joy20 - joy21 - joy22 - joy23 - joy24 - joy25 - joy26 - joy27 - joy28 - joy29 - joy30 - joy31 - joy32 - joyx - joyy - joyz - joyr - joyu - joyv - joypov - joyname - joybuttons - joyaxes - joyinfo - space - tab - enter - escape - esc - backspace - bs - delete - del - insert - ins - pgup - pgdn - home - end - up - down - left - right - printscreen - ctrlbreak - pause - scrolllock - capslock - numlock - numpad0 - numpad1 - numpad2 - numpad3 - numpad4 - numpad5 - numpad6 - numpad7 - numpad8 - numpad9 - numpadmult - numpadadd - numpadsub - numpaddiv - numpaddot - numpaddel - numpadins - numpadclear - numpadup - numpaddown - numpadleft - numpadright - numpadhome - numpadend - numpadpgup - numpadpgdn - numpadenter - f1 - f2 - f3 - f4 - f5 - f6 - f7 - f8 - f9 - f10 - f11 - f12 - f13 - f14 - f15 - f16 - f17 - f18 - f19 - f20 - f21 - f22 - f23 - f24 - browser_back - browser_forward - browser_refresh - browser_stop - browser_search - browser_favorites - browser_home - volume_mute - volume_down - volume_up - media_next - media_prev - media_stop - media_play_pause - launch_mail - launch_media - launch_app1 - launch_app2 - blind - click - raw - wheelleft - wheelright - - - a_ahkpath - a_ahkversion - a_appdata - a_appdatacommon - a_autotrim - a_batchlines - a_caretx - a_carety - a_computername - a_controldelay - a_cursor - a_dd - a_ddd - a_dddd - a_defaultmousespeed - a_desktop - a_desktopcommon - a_detecthiddentext - a_detecthiddenwindows - a_endchar - a_eventinfo - a_exitreason - a_formatfloat - a_formatinteger - a_gui - a_guievent - a_guicontrol - a_guicontrolevent - a_guiheight - a_guiwidth - a_guix - a_guiy - a_hour - a_iconfile - a_iconhidden - a_iconnumber - a_icontip - a_index - a_ipaddress1 - a_ipaddress2 - a_ipaddress3 - a_ipaddress4 - a_isadmin - a_iscompiled - a_issuspended - a_keydelay - a_language - a_lasterror - a_linefile - a_linenumber - a_loopfield - a_loopfileattrib - a_loopfiledir - a_loopfileext - a_loopfilefullpath - a_loopfilelongpath - a_loopfilename - a_loopfileshortname - a_loopfileshortpath - a_loopfilesize - a_loopfilesizekb - a_loopfilesizemb - a_loopfiletimeaccessed - a_loopfiletimecreated - a_loopfiletimemodified - a_loopreadline - a_loopregkey - a_loopregname - a_loopregsubkey - a_loopregtimemodified - a_loopregtype - a_mday - a_min - a_mm - a_mmm - a_mmmm - a_mon - a_mousedelay - a_msec - a_mydocuments - a_now - a_nowutc - a_numbatchlines - a_ostype - a_osversion - a_priorhotkey - a_programfiles - a_programs - a_programscommon - a_screenheight - a_screenwidth - a_scriptdir - a_scriptfullpath - a_scriptname - a_sec - a_space - a_startmenu - a_startmenucommon - a_startup - a_startupcommon - a_stringcasesense - a_tab - a_temp - a_thishotkey - a_thismenu - a_thismenuitem - a_thismenuitempos - a_tickcount - a_timeidle - a_timeidlephysical - a_timesincepriorhotkey - a_timesincethishotkey - a_titlematchmode - a_titlematchmodespeed - a_username - a_wday - a_windelay - a_windir - a_workingdir - a_yday - a_year - a_yweek - a_yyyy - clipboard - clipboardall - comspec - errorlevel - programfiles - true - false - a_thisfunc - a_thislabel - a_ispaused - a_iscritical - a_isunicode - a_ptrsize - - - ltrim - rtrim - join - ahk_id - ahk_pid - ahk_class - ahk_group - processname - minmax - controllist - statuscd - filesystem - setlabel - alwaysontop - mainwindow - nomainwindow - useerrorlevel - altsubmit - hscroll - vscroll - imagelist - wantctrla - wantf2 - vis - visfirst - wantreturn - backgroundtrans - minimizebox - maximizebox - sysmenu - toolwindow - exstyle - check3 - checkedgray - readonly - notab - lastfound - lastfoundexist - alttab - shiftalttab - alttabmenu - alttabandmenu - alttabmenudismiss - controllisthwnd - hwnd - deref - pow - bitnot - bitand - bitor - bitxor - bitshiftleft - bitshiftright - sendandmouse - mousemove - mousemoveoff - hkey_local_machine - hkey_users - hkey_current_user - hkey_classes_root - hkey_current_config - hklm - hku - hkcu - hkcr - hkcc - reg_sz - reg_expand_sz - reg_multi_sz - reg_dword - reg_qword - reg_binary - reg_link - reg_resource_list - reg_full_resource_descriptor - reg_resource_requirements_list - reg_dword_big_endian - regex - pixel - mouse - screen - relative - rgb - low - belownormal - normal - abovenormal - high - realtime - between - contains - in - is - integer - float - number - digit - xdigit - integerfast - floatfast - alpha - upper - lower - alnum - time - date - not - or - and - topmost - top - bottom - transparent - transcolor - redraw - region - id - idlast - count - list - capacity - eject - lock - unlock - label - serial - type - status - seconds - minutes - hours - days - read - parse - logoff - close - error - single - shutdown - menu - exit - reload - tray - add - rename - check - uncheck - togglecheck - enable - disable - toggleenable - default - nodefault - standard - nostandard - color - delete - deleteall - icon - noicon - tip - click - show - edit - progress - hotkey - text - picture - pic - groupbox - button - checkbox - radio - dropdownlist - ddl - combobox - statusbar - treeview - listbox - listview - datetime - monthcal - updown - slider - tab - tab2 - iconsmall - tile - report - sortdesc - nosort - nosorthdr - grid - hdr - autosize - range - xm - ym - ys - xs - xp - yp - font - resize - owner - submit - nohide - minimize - maximize - restore - noactivate - na - cancel - destroy - center - margin - owndialogs - guiescape - guiclose - guisize - guicontextmenu - guidropfiles - tabstop - section - wrap - border - top - bottom - buttons - expand - first - lines - number - uppercase - lowercase - limit - password - multi - group - background - bold - italic - strike - underline - norm - theme - caption - delimiter - flash - style - checked - password - hidden - left - right - center - section - move - focus - hide - choose - choosestring - text - pos - enabled - disabled - visible - notimers - interrupt - priority - waitclose - unicode - tocodepage - fromcodepage\ - yes - no - ok - cancel - abort - retry - ignore - force - on - off - all - send - wanttab - monitorcount - monitorprimary - monitorname - monitorworkarea - pid - base - __get - __set - __call - __delete - useunsetlocal - useunsetglobal - useenv - localsameasglobal - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/alert_indent.xml ktexteditor-5.31.0/src/syntax/data/alert_indent.xml --- ktexteditor-5.28.0/src/syntax/data/alert_indent.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/alert_indent.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/alert.xml ktexteditor-5.31.0/src/syntax/data/alert.xml --- ktexteditor-5.28.0/src/syntax/data/alert.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/alert.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ample.xml ktexteditor-5.31.0/src/syntax/data/ample.xml --- ktexteditor-5.28.0/src/syntax/data/ample.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ample.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3814 +0,0 @@ - - - - - - - break - builtin - case - continue - do - else - extern - local - for - function - if - return - switch - while - - - void - undefined - $abort_enable - $dofile_arg1 - $dofile_arg2 - $dofile_arg3 - $dofile_arg4 - $dofile_arg5 - $dofile_arg6 - $dofile_arg7 - $dofile_arg8 - $dofile_arg9 - $dofile_arg10 - $dofile_arg11 - $dofile_arg12 - $dofile_arg13 - $dofile_arg14 - $dofile_arg15 - $dofile_arg16 - $dofile_arg17 - $dofile_arg18 - $dofile_arg19 - $dofile_arg20 - $dofile_arg_count - $dofile_result - false - off - on - pi - $stderr - $stdin - $stdout - true - two_pi - - - - - - abs - acos - $add_complex - $add_status_args - asin - atan - atan2 - $bad_status - ceil - $clear_file_error - $close_file - $complex_imaginary - $complex_real - $conjugate_complex - $constrain_value - cos - cosh - cot - $create_complex - $create_string_registry - $create_vector - csc - $current_user - $cvt_exist_file - $cvt_read_variable - $cvt_type - $cvt_write_variable - $date - deg - $divide_complex - $dofile - $e - $eof - exp - $expand_rest - $f - $file_error - $file_exist - $file_pos - $file_status - floor - $flush_file - $format - $free_stream_id - $function_help - $function_ref_help - $function_signature - $g - $generate_rand - $get_ample_status - $get_app_name - $get_app_ver - $get_env - $i - $integer_divide - length - $list_overwritten_functions - $load_library - log - log10 - $lower_string - $magnitude_complex - $multiply_complex - $n - $number_string - $open_file - $ord_to_string - $phase_complex - $pop_ample_status - pow - $qsort - rad - $raise_status - $read_file - $reads_file - $real_time - $register_alias - $register_args - $register_command - $resolve_mgc_path - $round - $round_prec - $s - sec - $seek_file - $set_function_status - $set_rand - $set_status - $set_thousands - $set_transcript_mode - sin - sinh - sqrt - $sscanf - $strcat - $strftime - $string_locate - $string_status - $string_to_ord - $subtract_complex - $suspend - $sys_time - $system - tan - tanh - $time - $traceback - $truncate - $type - $undefine_id - $upper_string - $vector_count_range - $vector_element_divide - $vector_element_multiply - $vector_find - $vector_histogram - $vector_integrate - $vector_max - $vector_min - $vector_search - $vector_slope - $vector_sum - $vendor_cpu - $where_is - $write_file - $writeln_file - $writes_file - - - $acquire_license - $activate_net - $activate_net_by_handle - $activate_net_by_name - $activate_port - $activate_port_by_handle - $activate_port_by_name - $add_cell - $add_contacts - $add_device - $add_fp_shape - $add_group_property - $add_metal - $add_multiple_text - $add_net_members_to_ports - $add_overflow - $add_overflow_by_handle - $add_panel - $add_path - $add_path_device - $add_point_device - $add_property - $add_property_group_members - $add_property_group_selections - $add_property_text - $add_route - $add_row - $add_rows_by_area - $add_ruler - $add_shape - $add_shape_device - $add_text - $add_text_on_ports - $add_to_library - $add_to_net - $add_to_port - $add_via - $align - $apply_print_vector_attributes - $attach_library - $autofloorplan - $autoplace_blocks - $autoplace_corner_cells - $autoplace_group - $autoplace_pins - $autoplace_ports - $autoplace_power_vias - $autoplace_standard_cells - $autoroute_all - $autoroute_nets - $autoroute_overflow - $backannotate_net_parameters - $build_hotplot_setup - $build_lib - $build_ports - $build_ports_shapes - $build_ports_text_location - $build_power_strap_shapes - $build_power_straps - $build_read_gdsii_optfile - $change_array - $change_aspect - $change_cursor_status - $change_device - $change_from_object_template - $change_group_property - $change_layer - $change_net - $change_object_attributes - $change_object_template - $change_overflow - $change_overflow_by_handle - $change_path - $change_port - $change_property - $change_property_group_members - $change_property_group_selections - $change_property_text - $change_row - $change_text - $change_via_type - $change_window - $checkpoint_cell - $checkpoint_cell_by_name - $check_drc - $check_fn - $check_instances - $check_overflows - $check_polygons - $check_power_pins - $check_preconditions - $check_shorts_all - $check_shorts_selected - $clear_clipboard - $close_layout_library - $close_logic - $close_selection - $close_session - $close_window - $compact - $compose_groups - $compose_layer_geometries - $compose_layer_selections - $connect_instance - $convert_dracula - $copy - $copy_edit_hotkey_settings - $copy_relative - $copy_to_clipboard - $copy_to_fp_layer - $copy_to_layer - $create_cell - $create_def_from_layout_view - $create_layout_library - $create_layout_view - $create_layout_view_from_def - $create_layout_view_from_lef - $create_layout_view_from_verilog - $create_lef_from_layout_library - $create_lef_from_layout_view - $create_library - $create_process - $create_toolbar - $create_via_cell - $create_viewpoint - $cut - $cut_stretch - $deactivate - $define_hotkey - $define_layer_alias - $define_layer_name - $define_layer_set - $define_max_gate_width - $define_mos_site_type - $define_must_connect - $define_net_pair - $define_net_shield - $define_route_transform - $delete - $delete_area - $delete_connectivity - $delete_drc_all - $delete_drc_area - $delete_drc_check - $delete_drc_current - $delete_drc_point - $delete_drc_scan - $delete_from_library - $delete_group_property - $delete_lvs_results - $delete_panel - $delete_property - $delete_property_group_members - $delete_property_group_selections - $delete_routing - $delete_ruler - $delete_rulers_all - $detach_library - $display_channels - $does_cell_exist - $edit_library - $edit_process - $edit_process_override - $enable_edit_layout_library - $export_drc_check - $extract_cell_connectivity - $extract_direct_distributed_parameters - $extract_direct_lumped_parameters - $extract_mask_distributed_parameters - $extract_mask_lumped_parameters - $fillet - $fillet_area - $filter_group - $fit_fp_shape - $flatten - $flatten_hierarchy - $flip - $flip_in_place - $flip_on_axis - $form_ic_action_buttons_gadget - $form_ic_color_paint_chip_gadget - $form_ic_display_gadget - $form_ic_layer_palette_gadget - $form_ic_patterns_list_box_gadget - $form_single_check_box_gadget - $fracture - $freeze_window - $get_absolute_points - $get_acap_info - $get_active_ic_window - $get_active_net - $get_active_port - $get_arc - $get_area - $get_area_estimate - $get_array_value - $get_auto_checkpoint - $get_basepoint - $get_bottom_orient_set - $get_boundary - $get_cap_extent - $get_cap_neg_pin - $get_cap_pos_pin - $get_cell_boundary - $get_cell_configuration - $get_cell_equivalents - $get_cell_info - $get_cell_list_dts - $get_cell_path - $get_cell_refs - $get_cell_xrefs - $get_circle - $get_closed_polygon - $get_closest_object_location - $get_closest_object_points - $get_compact_add_blkgs - $get_compact_jog_power - $get_compose_layer_geometries - $get_compose_layer_selections - $get_connectivity_layers - $get_containment - $get_context_contrast - $get_context_from_world - $get_crosshair_target_radius - $get_crosshair_target_style - $get_def_bus_bit_characters - $get_def_bus_bit_characters - $get_def_divider_character - $get_def_divider_character - $get_def_non_orthogonal - $set_def_non_orthogonal - $get_design_layers - $get_design_path - $get_design_refs - $get_dev_info - $get_dev_layer - $get_dev_rule - $get_device_alias - $get_device_iobj - $get_device_name - $get_drc_check_current_count - $get_drc_check_original_count - $get_drc_check_polygon_count - $get_drc_check_scan_count - $get_drc_current_result_check_name - $get_drc_current_result_number - $get_drc_current_result_points - $get_drc_current_result_type - $get_drc_default_layer_directory_name - $get_drc_default_summary_report_file_name - $get_drc_results_database_check_count - $get_drc_results_database_check_names - $get_drc_results_database_nonempty_check_names - $get_drc_results_database_result_count - $get_drc_results_database_scan_check_names - $get_drc_results_database_scan_result_count - $get_endangered_nets - $get_externals_info - $get_fp_compute_num_rows - $get_fp_compute_route_area_ratio - $get_fp_extend_row - $get_fractured_rectangles - $get_gadget_value - $get_graphic_preempt_list - $get_group_members - $get_group_names - $get_group_property_names - $get_highlight_count - $get_hotkey_settings - $get_ic_cell_windows - $get_ic_location - $get_ic_window_names - $get_instance_extent - $get_instance_fp_extent - $get_instance_version - $get_internal_row_layout - $get_internal_row_sequence - $get_layer_info - $get_layer_minimum_spacing - $get_layer_minimum_width - $get_layer_names - $get_layer_number - $get_layer_palette_height - $get_layers - $get_layout_counterpart - $get_layout_window - $get_lef_bus_bit_characters - $get_lef_bus_bit_characters - $get_lef_divider_character - $get_lef_divider_character - $get_lef_non_orthogonal - $set_lef_non_orthogonal - $get_lef_overlap_boundary - $set_lef_overlap_boundary - $get_left_orient_set - $get_library_cells - $get_licenses - $get_loaded_logic - $get_logic_counterpart - $get_mark - $get_mask_device_count - $get_mask_discrepancy_count - $get_mask_net_count - $get_mos_gate_pin - $get_mos_sd_extent - $get_mos_sd_pin - $get_nearest_edge - $get_net_members - $get_new_object_handles - $get_object_extent - $get_object_info - $get_outdated_cells - $get_outline - $get_panel_extent - $get_panel_names - $get_parameter_default - $get_peek_protected - $get_perimeter - $get_pid - $get_pin_members - $get_pins - $get_points - $get_port_members - $get_process - $get_process_override - $get_property_handles - $get_property_names - $get_property_value - $get_report_obj_types - $get_report_options - $get_res_extent - $get_res_neg_pin - $get_res_pos_pin - $get_reserved - $get_right_orient_set - $get_rotation_point - $get_router_add_blkgs - $get_router_align_cells - $get_router_align_mode - $get_router_block_feed_percent - $get_router_block_stub_mode - $get_router_cell_feed_percent - $get_router_channel_ocr - $get_router_connect_blk_pwr - $get_router_constrain_power - $get_router_create_power_grid - $get_router_limit_area - $get_router_overflow_mode - $get_router_pre_route - $get_router_preserve_power_width - $get_router_probe_extent_margin - $get_router_x_margin - $get_router_y_margin - $get_row_members - $get_rule_file_check_count - $get_rule_file_check_names - $get_rule_file_select_check_count - $get_rule_file_select_check_names - $get_select_area - $get_select_cell - $get_select_count - $get_select_extent - $get_select_set - $get_selectable_layers - $get_selected_edges - $get_short_segment - $get_snapped_points - $get_status_line_info - $get_top_orient_set - $get_traced_properties_numeric - $get_traced_properties_string - $get_visible_layers - $get_window_cell - $get_window_info - $get_world_from_context - $get_world_from_screen - $group - $group_by_name - $group_by_property - $group_on_selected - $group_text - $hide_layer_palette - $hide_status_line - $hide_system_toolbar - $hide_toolbar - $hide_tooltips - $highlight_all - $highlight_all_discrepancies - $highlight_all_incorrect - $highlight_all_unmatched - $highlight_by_location - $highlight_by_name - $highlight_by_property - $highlight_current_discrepancy - $highlight_discrepancy - $highlight_first_discrepancy - $highlight_group - $highlight_hierarchical_net - $highlight_next_discrepancy - $highlight_on_selected - $highlight_previous_discrepancy - $highlight_protected - $hotplot - $hotplot_invoke - $insert_posts - $iroute - $is_cell_outdated - $is_cell_reserved - $is_cell_salvage_pending - $is_edge_selected - $is_history_active - $is_layer_palette_visible - $is_library_reserved - $is_licensed - $is_process_reserved - $is_select_set_closed - $is_status_line_visible - $is_toolbar_visible - $link_floorplan_shape - $list_drc_all - $list_drc_check - $list_drc_selected - $load_design_hierarchy - $load_hotkey_settings - $load_logic - $load_mask_results - $load_process - $load_rules - $loc - $lvs_direct - $lvs_mask - $make_array - $make_cell - $make_font - $make_keypad_panels - $make_net - $make_port - $mark_instances_as_ignored - $measure_distance - $merge - $mgc_scope_name_pre_init - $minimize_levels - $minimize_vias - $modify_centerline - $move - $move_acap - $move_cursor_down - $move_cursor_left - $move_cursor_right - $move_cursor_up - $move_in_row - $move_on_row - $move_relative - $msg_cell_route_hierarchy_mode - $notch - $notch_special - $open_cell - $open_cell_map - $open_clipboard - $open_context_cell - $open_group_window - $open_hierarchy_window - $open_layout_library - $open_layout_view - $open_logic - $open_logic_by_name - $open_mask_logic - $open_selected_cell - $partition_hierarchy - $paste - $peek - $peek_area - $place - $place_on_row - $place_schematic_instances - $place_schematic_ports - $polygon_to_path - $print_cell - $prompt_for_ic_line - $prompt_for_ic_location - $prompt_for_ic_polygon - $prompt_for_ic_polyline - $prompt_for_ic_rectangle - $prompt_for_ic_route - $protect - $protect_group - $protect_nets - $read_def - $read_gdsii - $read_lef - $read_spice - $read_verilog - $read_xml - $redo - $redraw - $redraw_area - $regenerate_device - $release_license - $reload_cell - $reload_cell_by_name - $remove_contacts_by_area - $remove_contacts_by_m2 - $remove_contacts_by_via - $remove_from_net - $remove_from_port - $remove_metal_by_area - $reopen_selection - $repeat_fn - $repeat_objects - $replace_cell - $replace_toolbar - $report_active_context - $report_all_mask_devices - $report_all_mask_nets - $report_capacitor_type - $report_cell - $report_cell_list_dts - $report_current_direct_net - $report_current_discrepancy - $report_current_mask_device - $report_current_mask_discrepancy - $report_current_mask_net - $report_design_layers - $report_design_tree - $report_design_xref - $report_direct_thresholds - $report_drc_all - $report_drc_area - $report_drc_check - $report_drc_current - $report_drc_point - $report_drc_scan - $report_eco_results - $report_gb_type - $report_group - $report_group_names - $report_hotkey_settings - $report_layer_attributes - $report_layer_sets - $report_library - $report_licenses - $report_logic - $report_lvs_results - $report_mask_results - $report_mask_thresholds - $report_mos_type - $report_net_parameters - $report_nets - $report_outdated_cells - $report_panels - $report_paired_nets - $report_peek_protected - $report_place_route - $report_ports - $report_process - $report_property_names - $report_reserved - $report_resistor_type - $report_row_capacity - $report_scoring - $report_selected - $report_shown_mask_devices - $report_shown_mask_discrepancies - $report_shown_mask_nets - $report_text_file - $report_via_type - $report_windows - $reselect - $reserve_cell - $reserve_cell_by_name - $reserve_library - $reserve_process - $reset_basepoint - $reset_licensing - $resize - $restore_defaults - $restore_drc_results - $restructure_nets - $resync_cell - $resync_cell_by_name - $resync_library - $resync_viewpoint - $rotate - $route_point_to_point - $rule_file_loaded - $run_eco - $salvage_cell - $salvage_reference - $save_cell - $save_cell_as - $save_cell_by_name - $save_drc_results - $save_layout_library - $save_library - $save_process - $save_process_by_name - $save_setup - $scale_cells - $scale_context - $scan_drc_all - $scan_drc_check - $sdl_cleanup - $sdl_create_cell - $select_all - $select_area - $select_area_polygon - $select_by_name - $select_by_property - $select_drc_all - $select_drc_check - $select_edge - $select_fixed_routes - $select_folds - $select_group - $select_highlighted - $select_ignored_instances - $select_on_selected - $select_one - $select_range - $select_text - $select_unplaced_schematic_instances - $select_unplaced_schematic_ports - $send_to_prompt - $set_active_port_style - $get_active_port_style - $set_active_ruler_layer - $get_active_ruler_layer - $set_add_route_alignment - $get_add_route_alignment - $set_add_route_checking - $get_add_route_checking - $set_add_route_padding - $get_add_route_padding - $set_angle_mode - $set_angle_mode_enforcement - $get_angle_mode_enforcement - $set_anneal_cooling_factor - $get_anneal_cooling_factor - $set_arc_segments - $get_arc_segments - $set_array_display_style - $get_array_display_style - $set_auto_focus_active_window - $get_auto_focus_active_window - $set_auto_outline_mode - $get_auto_outline_mode - $set_auto_restructure - $get_auto_restructure - $set_autonotch - $get_autonotch - $set_autoselect - $get_autoselect - $set_basepoint - $set_cell_configuration - $set_cell_logical_name - $set_cell_origin - $set_cell_process - $set_cell_route_hierarchy_mode - $set_cell_type - $set_check_drc_message_mode - $set_circle_input_style - $get_circle_input_style - $set_click_distance - $get_click_distance - $set_compact_center_wires - $get_compact_center_wires - $set_compact_corner_spacing - $get_compact_corner_spacing - $set_compact_cost_factor - $get_compact_cost_factor - $set_compact_ext_cells - $get_compact_ext_cells - $set_compact_ext_rows - $get_compact_ext_rows - $set_compact_jogs - $get_compact_jogs - $set_compact_offset_vias - $get_compact_offset_vias - $set_compact_path_mini - $get_compact_path_mini - $set_compact_route_levels - $get_compact_route_levels - $set_compact_suppress_output - $get_compact_suppress_output - $set_compact_to - $get_compact_to - $set_compact_wires_mode - $get_compact_wires_mode - $set_contact_count - $set_context - $set_context_up - $set_copy_ports_on_copy - $get_copy_ports_on_copy - $set_cross_probe - $get_cross_probe - $set_cross_probe_mode - $set_crosshair_style - $get_crosshair_style - $set_crosshair_target - $set_crosshair_target_radius - $set_cull - $set_def_bus_bit_characters - $set_def_divider_character - $set_def_non_orthogonal - $set_direct_thresholds - $set_display_window_title - $get_display_window_title - $set_drag_complexity - $get_drag_complexity - $set_drag_ruler_mode - $get_drag_ruler_mode - $set_drc_check - $set_drc_first - $set_drc_fit_factor - $set_drc_jump - $set_drc_last - $set_drc_next - $set_drc_previous - $set_drc_result - $set_drc_skip - $set_duplicate_ports_policy - $set_dynamic_drc - $get_dynamic_drc - $set_dynamic_drc_complexity - $get_dynamic_drc_complexity - $set_dynamic_hotkey_mode - $get_dynamic_hotkey_mode - $set_dynamic_loading - $get_dynamic_loading - $set_dynamic_message_mode - $get_dynamic_message_mode - $set_dynamic_pre_locations - $set_error_handling - $get_error_handling - $set_fill_display - $get_fill_display - $set_filled_layers - $get_filled_layers - $set_first_direct_net - $set_first_mask_device - $set_first_mask_discrepancy - $set_first_mask_net - $set_fp_bottom_gap - $get_fp_bottom_gap - $set_fp_left_gap - $get_fp_left_gap - $set_fp_lower_aspect - $get_fp_lower_aspect - $set_fp_max_height - $get_fp_max_height - $set_fp_max_width - $get_fp_max_width - $set_fp_num_rows - $get_fp_num_rows - $set_fp_right_gap - $get_fp_right_gap - $set_fp_route_area_ratio - $get_fp_route_area_ratio - $set_fp_top_gap - $get_fp_top_gap - $set_fp_upper_aspect - $get_fp_upper_aspect - $set_fractured_route - $get_fractured_route - $set_gadget_value - $set_gate_size - $set_gds_allanglefracture - $get_gds_allanglefracture - $set_gds_anglemode - $get_gds_anglemode - $set_gds_auto_identify_vias - $get_gds_auto_identify_vias - $set_gds_cellnamecase - $get_gds_cellnamecase - $set_gds_cellnamelength - $get_gds_cellnamelength - $set_gds_cellnamemap - $get_gds_cellnamemap - $set_gds_fixpolygons - $get_gds_fixpolygons - $set_gds_layerfilter - $get_gds_layerfilter - $set_gds_layermap - $get_gds_layermap - $set_gds_library - $get_gds_library - $set_gds_lockcells - $get_gds_lockcells - $set_gds_logfile - $get_gds_logfile - $set_gds_process - $get_gds_process - $set_gds_properties - $get_gds_properties - $set_gds_read_scale - $get_gds_read_scale - $set_gds_replace - $get_gds_replace - $set_gds_save_cells - $get_gds_save_cells - $set_gds_skipunmapped - $get_gds_skipunmapped - $set_gds_textheightmap - $get_gds_textheightmap - $set_gds_transcript - $get_gds_transcript - $set_graphic_interrupt - $get_graphic_interrupt - $set_gravity_distance - $get_gravity_distance - $set_grid - $set_guideline_net_size - $get_guideline_net_size - $set_guideline_width_limit - $get_guideline_width_limit - $set_hocr - $get_hocr - $set_hotkey_mode - $get_hotkey_mode - $set_ic_array_columns - $get_ic_array_columns - $set_ic_array_rows - $get_ic_array_rows - $set_ic_aspect - $get_ic_aspect - $set_ic_cell_flip - $get_ic_cell_flip - $set_ic_cell_orientation - $get_ic_cell_orientation - $set_ic_cell_rotation - $get_ic_cell_rotation - $set_ic_cell_scale - $get_ic_cell_scale - $set_ic_layer - $get_ic_layer - $set_ic_path_end_style - $get_ic_path_end_style - $set_ic_path_old_style - $get_ic_path_old_style - $set_ic_path_padding - $get_ic_path_padding - $set_ic_path_style - $get_ic_path_style - $set_ic_path_width - $get_ic_path_width - $set_ic_property_owner - $get_ic_property_owner - $set_ic_property_replace - $get_ic_property_replace - $set_ic_property_text_height - $get_ic_property_text_height - $set_ic_property_text_horz_just - $get_ic_property_text_horz_just - $set_ic_property_text_orientation - $get_ic_property_text_orientation - $set_ic_property_text_vert_just - $get_ic_property_text_vert_just - $set_ic_row_auto_resize - $get_ic_row_auto_resize - $set_ic_row_justification - $get_ic_row_justification - $set_ic_row_site - $get_ic_row_site - $set_ic_row_slideable - $get_ic_row_slideable - $set_instance_extent_display - $get_instance_extent_display - $set_instance_name_display - $get_instance_name_display - $set_instance_origin_display - $get_instance_origin_display - $set_instance_route_hierarchy_mode - $set_iobj_points - $set_iroute_accept_at_current_loc - $set_iroute_auto_shield - $set_iroute_checking - $set_iroute_push_mode - $set_iroute_route_transforms - $set_iroute_select_with_active_layer - $set_iroute_show_alignment - $set_iroute_show_ortho_path - $set_iroute_via_generator_is_default - $set_iroute_width_change - $set_join_on_move - $get_join_on_move - $set_layer_appearance - $set_layer_palette_height - $get_layer_palette_height - $set_layer_path_width - $set_lef_bus_bit_characters - $get_lef_bus_bit_characters - $set_lef_divider_character - $get_lef_divider_character - $set_lef_non_orthogonal - $get_lef_non_orthogonal - $set_lef_overlap_boundary - $get_lef_overlap_boundary - $set_library_cell_type - $set_library_site_types - $set_location_mode - $get_location_mode - $set_logic_source - $set_logical_correspondence - $set_lvs_all_capacitor_pins_swappable - $get_lvs_all_capacitor_pins_swappable - $set_lvs_component_subtype_property - $get_lvs_component_subtype_property - $set_lvs_component_type_properties - $get_lvs_component_type_properties - $set_lvs_default_direct_source_subname - $get_lvs_default_direct_source_subname - $set_lvs_default_mask_source_subname - $get_lvs_default_mask_source_subname - $set_lvs_default_report_name - $get_lvs_default_report_name - $set_lvs_filter_unused_bipolar_transistors - $get_lvs_filter_unused_bipolar_transistors - $set_lvs_filter_unused_mos_transistors - $get_lvs_filter_unused_mos_transistors - $set_lvs_ground_names - $get_lvs_ground_names - $set_lvs_ignore_ports - $get_lvs_ignore_ports - $set_lvs_pin_name_properties - $get_lvs_pin_name_properties - $set_lvs_power_names - $get_lvs_power_names - $set_lvs_recognize_gates - $get_lvs_recognize_gates - $set_lvs_recognize_only_simple_gates - $get_lvs_recognize_only_simple_gates - $set_lvs_reduce_parallel_bipolar_transistors - $get_lvs_reduce_parallel_bipolar_transistors - $set_lvs_reduce_parallel_capacitors - $get_lvs_reduce_parallel_capacitors - $set_lvs_reduce_parallel_diodes - $get_lvs_reduce_parallel_diodes - $set_lvs_reduce_parallel_mos_transistors - $get_lvs_reduce_parallel_mos_transistors - $set_lvs_reduce_parallel_resistors - $get_lvs_reduce_parallel_resistors - $set_lvs_reduce_series_capacitors - $get_lvs_reduce_series_capacitors - $set_lvs_reduce_series_resistors - $get_lvs_reduce_series_resistors - $set_lvs_reduce_split_gates - $get_lvs_reduce_split_gates - $set_lvs_report_list_limit - $get_lvs_report_list_limit - $set_lvs_write_instance_cross_reference - $get_lvs_write_instance_cross_reference - $set_lvs_write_net_cross_reference - $get_lvs_write_net_cross_reference - $set_mark - $set_mask_auto_view - $set_mask_default_database_name - $get_mask_default_database_name - $set_mask_thresholds - $get_mask_thresholds - $set_max_auto_display - $get_max_auto_display - $set_modify_distance - $get_modify_distance - $set_mos_cell_type - $get_mos_cell_type - $set_mos_share - $get_mos_share - $set_net_priority - $set_new_window_cull - $get_new_window_cull - $set_new_window_grid - $get_new_window_grid - $set_next_direct_net - $set_next_mask_device - $set_next_mask_discrepancy - $set_next_mask_net - $set_packed_vias - $set_padding_grid - $set_path_display_style - $get_path_display_style - $set_peek_on_view - $get_peek_on_view - $set_peek_protect - $set_pex_backannotation_distributed - $get_pex_backannotation_distributed - $set_pex_backannotation_lumped - $get_pex_backannotation_lumped - $set_pex_capacitance_scale - $get_pex_capacitance_scale - $set_pex_coupled_distributed - $get_pex_coupled_distributed - $set_pex_delay - $get_pex_delay - $set_pex_exclude_distributed - $get_pex_exclude_distributed - $set_pex_include_distributed - $get_pex_include_distributed - $set_pex_netlist_distributed - $get_pex_netlist_distributed - $set_pex_netlist_lumped - $get_pex_netlist_lumped - $set_pex_netlist_simple - $get_pex_netlist_simple - $set_pex_options_lumped - $get_pex_options_lumped - $set_pex_report_distributed - $get_pex_report_distributed - $set_pex_report_lumped - $get_pex_report_lumped - $set_pin_shape_editing - $set_placement_select_mode - $get_placement_select_mode - $set_point_select_mode - $get_point_select_mode - $set_point_select_reset_basepoint - $get_point_select_reset_basepoint - $set_port_pin_name_display - $get_port_pin_name_display - $set_preferred_overflow_layers - $get_preferred_overflow_layers - $set_previous_direct_net - $set_previous_mask_device - $set_previous_mask_discrepancy - $set_previous_mask_net - $set_print_appearance - $set_print_array_style - $get_print_array_style - $set_print_cull - $get_print_cull - $set_print_grid - $get_print_grid - $set_print_layers - $get_print_layers - $set_print_levels - $get_print_levels - $set_print_peeked_only - $get_print_peeked_only - $set_process_override - $set_push_count_limit - $set_query_on_merge - $get_query_on_merge - $set_query_on_placement - $get_query_on_placement - $set_redraw_controls - $get_redraw_controls - $set_redraw_level - $get_redraw_level - $set_redraw_precision - $get_redraw_precision - $set_redraw_queue_control - $get_redraw_queue_control - $set_report_target - $get_report_target - $set_restrict_visible - $get_restrict_visible - $set_resync_on_peek - $get_resync_on_peek - $set_route_center_wires - $get_route_center_wires - $set_route_hierarchy_mode - $set_route_net_order - $get_route_net_order - $set_route_objects - $get_route_objects - $set_route_one_pass - $get_route_one_pass - $set_route_overflow_order - $get_route_overflow_order - $set_route_pack_wires - $get_route_pack_wires - $set_route_protection - $set_route_same_net_checking - $get_route_same_net_checking - $set_route_stub_direction - $get_route_stub_direction - $set_route_trim_nets - $get_route_trim_nets - $set_route_via_rotation - $get_route_via_rotation - $set_router_channel_size_variation - $get_router_channel_size_variation - $set_router_cleanup - $get_router_cleanup - $set_router_compound_path - $get_router_compound_path - $set_router_conn_order - $get_router_conn_order - $set_router_do_net_rules_check - $get_router_do_net_rules_check - $set_router_feed_bias - $get_router_feed_bias - $set_router_h_grid_size - $get_router_h_grid_size - $set_router_improve_global_val - $get_router_improve_global_val - $set_router_initial_global_val - $get_router_initial_global_val - $set_router_max_bends - $get_router_max_bends - $set_router_max_iters - $get_router_max_iters - $set_router_max_vias - $get_router_max_vias - $set_router_minimized_layers - $get_router_minimized_layers - $set_router_mode_type - $get_router_mode_type - $set_router_num_extra_tracks - $get_router_num_extra_tracks - $set_router_oper_mode_type - $get_router_oper_mode_type - $set_router_primary_layer_used - $get_router_primary_layer_used - $set_router_probe_layers - $get_router_probe_layers - $set_router_restricted_layers - $get_router_restricted_layers - $set_router_step_size - $get_router_step_size - $set_router_use_gridded_mode - $get_router_use_gridded_mode - $set_router_v_grid_size - $get_router_v_grid_size - $set_router_view_probes - $get_router_view_probes - $set_router_wrong_direction - $get_router_wrong_direction - $set_ruler_angle_mode - $get_ruler_angle_mode - $set_ruler_select_state - $get_ruler_select_state - $set_ruler_text_height - $get_ruler_text_height - $set_sd_hv_contact - $set_sdl_filter - $get_sdl_filter - $set_sdl_preserve_orientation - $get_sdl_preserve_orientation - $set_sdl_quiet - $get_sdl_quiet - $set_search_path - $get_search_path - $set_select_via_pin - $get_select_via_pin - $set_selectable_area - $get_selectable_area - $set_selectable_layers - $set_selectable_types - $get_selectable_types - $set_site_type - $set_snap_basepoint_to_grid - $get_snap_basepoint_to_grid - $set_target_mode - $get_target_mode - $set_text_cull_basis - $get_text_cull_basis - $set_text_display - $get_text_display - $set_text_origin_display - $get_text_origin_display - $set_timer - $set_toolbar_alignment - $get_toolbar_alignment - $set_toolbar_keep_items_visible - $get_toolbar_keep_items_visible - $set_undo_level - $get_undo_level - $set_undo_object_limit - $get_undo_object_limit - $set_unselect_empty - $get_unselect_empty - $set_update_connected - $get_update_connected - $set_verilog_array_delimiters - $get_verilog_array_delimiters - $set_verilog_supply0 - $get_verilog_supply0 - $set_verilog_supply1 - $get_verilog_supply1 - $set_view_controls - $get_view_controls - $set_visible_layers - $set_working_directory - $get_working_directory - $set_xml_group_protection - $get_xml_group_protection - $set_xml_logfile - $get_xml_logfile - $set_xml_other_protection - $get_xml_other_protection - $set_xml_read_cell_path_style - $get_xml_read_cell_path_style - $set_xml_replace - $get_xml_replace - $set_xml_style - $get_xml_style - $set_xml_write_cell_path_style - $get_xml_write_cell_path_style - $setup_auto_checkpoint - $setup_ic - $setup_ic_dynamics - $setup_new_windows - $setup_print - $setup_redraw_controls - $setup_reports - $setup_rulers - $get_active_ruler_bgd_color - $get_active_ruler_color - $get_active_ruler_font - $setup_sdl - $setup_select_filter - $setup_session - $setup_status_line - $show_all_mask_devices - $show_all_mask_discrepancies - $show_all_mask_nets - $show_aspect - $show_contact_gaps - $show_context - $show_current_mask_device - $show_current_mask_discrepancy - $show_current_mask_net - $show_drc_all - $show_drc_area - $show_drc_check - $show_drc_current - $show_drc_scan - $show_group - $show_guidelines - $show_layer_palette - $show_mask_device_id - $show_mask_device_name - $show_mask_device_point - $show_mask_discrepancy - $show_mask_net_id - $show_mask_net_name - $show_mask_net_point - $show_panel - $show_status_line - $show_system_toolbar - $show_toolbar - $show_tooltips - $show_unplaced_instances - $slice - $slice_array - $slice_with_polygon - $slide_route - $snap_to_grid - $snap_to_row - $startup - $stretch - $stretch_relative - $swap_logically_equivalent_nets - $toolbar_context_glyph_item - $toolbar_glyph_item - $tooltips_visible - $trace_property_numeric - $trace_property_string - $trim_invalid_nets - $trim_nets - $trim_nets_options - $undefine_layer_alias - $undefine_layer_name - $undefine_layer_set - $undefine_must_connect - $undefine_net_pairs - $undelete_drc - $undo - $unfreeze_window - $ungroup - $unhighlight_all - $unhighlight_group - $unhighlight_hierarchical_net - $unlink_floorplan_shape - $unload_closed_cells - $unload_mask_results - $unload_viewpoint - $unmake_port - $unmark_all_ignored - $unmark_instances_as_ignored - $unpeek - $unpeek_area - $unplace - $unprotect_all - $unprotect_group - $unprotect_nets - $unreserve_cell - $unreserve_cell_by_name - $unreserve_library - $unreserve_process - $unselect_all - $unselect_all_edges - $unselect_area - $unselect_area_polygon - $unselect_by_name - $unselect_by_property - $unselect_drc - $unselect_edge - $unselect_group - $unselect_range - $unset_cell_process - $unset_logic_source - $unset_process_override - $unshow_all_mask_devices - $unshow_all_mask_discrepancies - $unshow_all_mask_nets - $unshow_all_mask_results - $unshow_current_mask_device - $unshow_current_mask_discrepancy - $unshow_current_mask_net - $unshow_drc - $unshow_guidelines - $untrace_all_properties - $update_cell - $update_cell_by_name - $update_gadget - $update_group_window - $update_hier_window - $update_layout_view - $update_layout_config_view - $update_library - $view_all - $view_all_mask_devices - $view_all_mask_discrepancies - $view_all_mask_nets - $view_area - $view_centered - $view_context - $view_current_mask_device - $view_current_mask_discrepancy - $view_current_mask_net - $view_drc - $view_highlighted - $view_next - $view_panel - $view_previous - $view_selected - $write_calibre - $write_def - $write_design_lef - $write_direct_cnet - $write_direct_netlist - $write_gdsii - $write_hierarchical_netlist - $write_lef - $write_mask_cnet - $write_mask_netlist - $write_source_cnet - $write_xml - $zoom_in - $zoom_out - $zoom_to_grid - - - $$add_arc - $add_border - $add_bus - $add_circle - $add_dot - $add_fb_def - $add_fb_inst - $add_fb_pins - $add_frame - $add_ic_viewpoint_type - $add_instance - $add_line - $add_net - $add_panel - $add_parameters - $add_pin - $add_polygon - $add_polyline - $add_property - $add_property_to_handle - $add_rectangle - $add_selected_instance - $add_settings_block - $add_sheet_border - $add_text - $add_wire - $align - $allow_resizable_instances - $apply_edits - $auto_sequence_text - $begin_edit_symbol - $change_color - $change_compiled_pin_name - $change_group_visibility - $change_instance_resize_factor - $change_line_style - $change_line_width - $change_net_style - $change_net_width - $change_polygon_fill - $change_property_color - $change_property_font - $change_property_height - $change_property_justification - $change_property_name - $change_property_offset - $change_property_orientation - $change_property_stability_switch - $change_property_type - $change_property_value - $change_property_visibility - $change_property_visibility_switch - $change_text_font - $change_text_height - $change_text_justification - $change_text_value - $change_variant_display - $$check - $check_and_save - $clear_unattached_annotations - $close_design_configuration - $close_selection - $close_window - $comp_name - $connect - $connect_area - $construct_frame - $convert_fb_inst_to_def - $convert_to_comment - $convert_to_new_technology - $copy - $copy_edit_hotkey_settings - $copy_multiple - $copy_to_array - $create_design_configuration - $create_design_sheet - $create_entity - $create_fb_inst_from_def - $create_implicit_pins - $create_pin_list - $create_sheet - $create_symbol - $create_variant_viewpoint - $da_ic_crossprobe - $da_ic_crossprobe_diff - $define_hotkey - $delete - $delete_ba_property - $delete_interfaces - $delete_multiple_ba_properties - $delete_panel - $delete_parameter - $delete_property - $delete_property_owner - $delete_sheet - $delete_template_name - $direct_to_active_window - $disconnect - $disconnect_area - $disconnect_ba - $display_next_sheet - $display_prev_sheet - $display_spec_sheet - $does_selection_exist - $$dump_sim_values - $end_edit_symbol - $$exit_sim_mode - $expand_template_name - $export_spice - $export_verilog - $export_vhdl - $filter_property_check - $flip - $freeze_window - $generate_symbol - $get_active_symbol - $get_active_symbol_history - $get_apply_edits_needed - $get_attached_objects - $get_attributes - $get_auto_update_inst_handles - $get_basepoint - $get_body_text_restriction - $get_bundle_members - $get_check_schematic_status - $get_check_status - $get_comment_graphics_attributes - $get_comment_handles - $get_comment_text_attributes - $get_comment_text_restriction - $get_comment_visibility - $get_default_interface_name - $get_design_sheets - $get_diagram_location - $get_edit_mode - $get_evaluations - $get_fb_line_style_by_handle - $get_frame_attributes - $get_frame_handles - $get_grid - $get_hotkey_settings - $get_in_design_context - $get_instance_attributes - $get_instance_handles - $get_instance_models - $get_instance_pathname - $get_instance_resize_factor - $get_item_type - $get_model_path - $get_net_attributes - $get_net_handles - $get_next_active_symbol - $get_object_property_attributes - $get_objects - $get_objects_in_area - $get_origin - $get_owned_property_names - $get_parameter - $get_pathname - $get_pin_attributes - $get_pin_handles - $get_pin_names - $get_prop_text_restriction - $get_property - $get_property_attributes - $get_property_handles - $get_property_names - $get_property_owners - $get_schematic_sheets - $get_search_path - $get_select_count - $get_select_count_type - $get_select_design_paths - $get_select_extent - $get_select_handles - $get_select_handles_type - $get_select_identical - $get_select_text_exists - $get_select_text_handle - $get_select_text_name - $get_select_text_origin - $get_select_text_value - $get_sheet_design_pathname - $get_sheet_extent - $get_sheetname_viewed - $$get_sim_value - $$get_sim_version - $get_simulation_mode - $get_source_edit_allowed - $get_symbol_name - $get_text_information - $get_type_present - $get_vertex_attributes - $get_vertex_handles - $get_view_area - $get_viewpoint - $get_window_names - $get_window_sheet_list - $group - $hide_active_symbol_window - $hide_annotations - $hide_comment - $hide_context_window - $hide_panel_border - $hide_status_line - $hide_system_toolbar - $hide_toolbar - $highlight_by_handle - $highlight_by_name - $highlight_property_owner - $$hotplot_submit - $import_verilog - $insert_template - $is_active_symbol_window_visible - $is_context_window_visible - $is_handle_valid - $is_selection_open - $is_status_line_visible - $is_system_toolbar_visible - $is_toolbar_visible - $load_hotkey_settings - $make_fb - $make_polygon - $make_polyline - $make_symbol - $mark_property_attributes - $mark_property_value - $measure_distance - $merge_annotations - $modify_frame - $move - $move_cursor_incrementally - $$move_settings_block - $name_instances - $name_instances_auto - $open_design_configuration - $open_design_sheet - $open_down - $open_schematic - $open_sheet - $open_source_code - $open_symbol - $open_top - $open_up - $pivot - $place_active_symbol - $pop_to_front - $print_all_schematics - $print_design_sheets - $protect - $protect_area - $push_to_back - $recalculate_properties - $reconnect_annotations - $redo - $remove_comment_status - $reopen_selection - $replace - $replace_with_alternate_symbol - $report_broken_annotations - $$report_check - $report_default_property_settings - $report_groups - $report_hotkey_settings - $report_interfaces - $report_interfaces_selected - $report_object - $$report_object_name - $report_panels - $report_parameter - $report_unattached_annotations - $reselect - $reset_instance_colors - $resize_fb - $revalidate_models - $rotate - $route - $save_setup - $save_sheet - $save_sheet_as - $save_symbol - $save_symbol_as - $save_variant_viewpoint - $scale - $scroll_down_by_unit - $scroll_down_by_window - $scroll_hz - $scroll_left_by_unit - $scroll_left_by_window - $scroll_right_by_unit - $scroll_right_by_window - $scroll_up_by_unit - $scroll_up_by_window - $scroll_vt - $select_all - $select_area - $select_branches - $select_by_design_path - $select_by_handle - $select_by_name - $select_by_property - $select_by_property_type - $select_fb - $select_group - $select_instances - $select_nets - $select_pins - $select_property_owner - $select_template_name - $select_text - $select_vertices - $sequence_text - $set_active_symbol - $set_active_symbol_history - $set_basepoint - $set_color - $set_color_config - $set_compiler_options - $set_default_parts_menu - $set_edit_mode - $set_evaluations - $set_grid - $set_hotkey_mode - $set_next_active_symbol - $set_origin - $set_out_of_view_warn - $set_parameter - $set_previous_active_symbol - $set_property_owner - $set_property_type - $set_search_path - $set_sel_name_display - $$set_sim_value - $set_simulation_mode - $set_template_directory - $set_toolbar_alignment - $set_userrule_error - $set_userrule_warning - $set_variant_properties - $set_viewpoint - $$settings_block_visible - $setup_annotated_property_text - $setup_check_schematic - $setup_check_schematic_sheet - $$setup_check_sheet - $setup_check_symbol - $setup_color - $setup_comment - $setup_default_viewpoint - $setup_display - $setup_function_block - $setup_grid - $setup_hspice_alter - $setup_net - $setup_object_template - $setup_page - $setup_property_display - $setup_property_text - $setup_report - $setup_ripper - $setup_selection - $setup_select_filter - $setup_sim_config - $setup_sim_model_editor - $setup_symbol_body - $setup_text_restriction - $setup_unselect_filter - $show_active_symbol_window - $show_annotations - $show_comment - $show_context_window - $show_panel_border - $show_registration - $show_status_line - $show_system_toolbar - $show_toolbar - $sim_add_dspf - $sim_add_sdf - $sim_choose_library - $sim_copy_configuration_as - $sim_delete_converter - $sim_edit_commands - $sim_edit_measurements - $sim_edit_sdf - $sim_export_spice - $sim_get_adms_ini_file - $sim_hide_dcop - $sim_insert_converter_default - $sim_insert_converter_inst - $sim_insert_converter_net - $sim_insert_converter_pin - $sim_invoke - $sim_invoke_mr - $sim_invoke_ms - $$sim_merge_annotations - $sim_open_language - $sim_open_lang_model - $sim_process_extracted_netlist - $sim_restore_setup_from - $sim_run - $sim_save_selected - $sim_save_setup_as - $sim_set_additional_commands - $sim_set_include_paths - $sim_set_initial_condition - $sim_set_temperature - $sim_setup_analysis - $sim_setup_analysis_ac - $sim_setup_analysis_dc - $sim_setup_analysis_dcop - $sim_setup_analysis_mc - $sim_setup_analysis_mod_steadystate - $sim_setup_analysis_noise - $sim_setup_analysis_noisetran - $sim_setup_analysis_steadystate - $sim_setup_analysis_steadystateac - $sim_setup_analysis_steadystatenoise - $sim_setup_analysis_steadystateoscil - $sim_setup_analysis_tran - $sim_setup_netlister - $sim_setup_sim_environ - $$sim_setup_simulator_viewer - $$sim_setup_simulator_viewer_advance - $sim_simulate - $sim_view_measurements - $sim_view_output_file - $sim_write_commands - $sim_write_setup_file - $slice - $snap_to_grid - $sort_handles - $sort_handles_by_property - $stretch - $string_to_literal - $symb_name - $undo - $unfreeze_window - $ungroup - $unhighlight_by_handle - $unhighlight_by_name - $unhighlight_property_owner - $unmake_fb - $unprotect - $unprotect_area - $unselect_all - $unselect_area - $unselect_by_design_path - $unselect_by_handle - $unselect_by_property - $unselect_by_property_type - $unselect_fb - $unselect_property_owner - $unselect_vertices - $update - $update_all - $update_all_schematics - $update_border - $update_from_interface - $$update_settings_blocks - $update_title_block - $view_all - $view_area - $view_centered - $view_panel - $view_selected - $vpt_needs_save - $was_saved - $zoom_in - $zoom_out - $get_auto_name_net - $get_auto_place_instance_name - $get_check_busshorts - $get_check_functionblocks - $get_check_schematicbusshorts - $get_check_schematicnetio - $get_fb_def_color - $get_fb_def_line_style - $get_fb_inst_color - $get_fb_inst_line_style - $get_fb_int_change_popup - $get_fb_passthru - $get_fb_popupwin - $set_annotation_color - $set_annotation_visibility - $set_auto_name_net - $set_auto_place_instance_name - $set_auto_update_mode - $set_autoripper - $set_autoroute - $set_autoselect - $set_bus_width - $set_check_annotations - $set_check_busshorts - $set_check_closedots - $set_check_dangle - $set_check_expression - $set_check_filemode - $set_check_filename - $set_check_frame - $set_check_functionblocks - $set_check_initprops - $set_check_instance - $set_check_net - $set_check_notdots - $set_check_overlap - $set_check_owner - $set_check_parameter - $set_check_pins - $set_check_schematicbusshorts - $set_check_schematicinstance - $set_check_schematicinterface - $set_check_schematicnet - $set_check_schematicnetio - $set_check_schematicspecial - $set_check_schematicuserrule - $set_check_special - $set_check_symbolbody - $set_check_symbolinterface - $set_check_symbolpin - $set_check_symbolspecial - $set_check_symboluserrule - $set_check_transcript - $set_check_userrule - $set_check_window - $set_close_dot - $set_closeness_criteria - $set_dot_size - $set_dot_style - $set_dynamic_cursor - $set_dynamic_rounding_precision - $set_environment_dofile_pathname - $set_fb_def_color - $set_fb_def_line_style - $set_fb_inst_color - $set_fb_inst_line_style - $set_fb_int_change_popup - $set_fb_passthru - $set_fb_popupwin - $set_hidden_symbol_prop_display - $set_implicit_ripper - $set_line_style - $set_line_width - $set_modify_multiple_prop_filter - $set_net_style - $set_net_width - $set_new_annotation_visibility - $set_orthogonal - $set_orthogonal_angle - $set_pin_spacing - $set_polygon_fill - $set_property_font - $set_property_height - $set_property_hjustification - $set_property_orientation - $set_property_stability_switch - $set_property_transparency - $set_property_visibility - $set_property_visibility_switch - $set_property_vjustification - $set_report_filemode - $set_report_filename - $set_report_transcript - $set_report_window - $set_ripper_dot - $set_ripper_mode - $set_ripper_query - $set_ripper_symbol_pathname - $set_schem_check_mode - $set_schematicuserrules_file - $set_segment_select_mode - $set_select_aperture - $set_select_comment - $set_select_exterior - $set_select_frame - $set_select_instance - $set_select_net - $set_select_pin - $set_select_property - $set_select_segment - $set_select_symbolbody - $set_select_symbolpin - $set_select_text - $set_select_vertex - $set_selection_color - $set_selection_model - $set_snap - $set_symboluserrules_file - $set_text_font - $set_text_height - $set_text_hjustification - $set_text_orientation - $set_text_transparency - $set_text_vjustification - $set_undo_level - $set_unselect_comment - $set_unselect_exterior - $set_unselect_frame - $set_unselect_instance - $set_unselect_net - $set_unselect_pin - $set_unselect_property - $set_unselect_segment - $set_unselect_symbolbody - $set_unselect_symbolpin - $set_unselect_text - $set_unselect_vertex - $set_userrules_file - $set_user_units - - - $add_menu_item - $ask_color - $ask_frame_name - $ask_integer - $ask_number - $ask_pathname - $ask_pattern - $ask_save_edits - $ask_scope_builtin_name - $ask_scope_callable_name - $ask_scope_form_name - $ask_scope_frame_name - $ask_scope_function_name - $ask_scope_keydef_name - $ask_scope_menu_name - $ask_scope_stroke_name - $ask_string - $ask_yes_no - $ask_yes_no_cancel - $bell - $bottom_y - $c_ask_string - $change_location_map_entry - $change_workspace - $cleanup_icons - $cleanup_windows - $clear_message - $clear_saved_prompt - $close_application_windows - $close_physical_transcript - $close_session - $close_window - $collapse_dockable - $compile_userware - $create_form - $create_menu - $create_notepad - $create_prompt - $create_toolbar - $define_color - $define_userware - $delete_menu_item - $delete_stroke - $disable_interrupt - $disable_softkey_update - $dock_dockable - $dockable_collapsed - $dockable_docked - $dockable_permission - $dockable_pinned - $dockable_visible - $dockables_all_hidden - $dockables_all_shown - $dockables_locked - $double_click_distance - $edit_source - $enable_help - $enable_interrupt - $enable_ref_help - $enable_softkey_update - $eval - $execute - $execute_dynamic - $execute_last_menu - $execute_promptbar - $execute_ref - $execute_stroke - $expand_command - $float_dockable - $forget - $forget_all_promptbars - $forget_promptbar - $form_action - $form_action_buttons_gadget - $form_actual_value - $form_argument - $form_argument_gadget - $form_argument_integer_entry_gadget - $form_argument_number_entry_gadget - $form_argument_string_entry_gadget - $form_argument_value - $form_button - $form_check_boxes_gadget - $form_choice_buttons_gadget - $form_choice_stepper_gadget - $form_click_button_gadget - $form_color_paint_chip_gadget - $form_colors_list_box_gadget - $form_column - $form_display_only - $form_display_text_gadget - $form_dynamic_list_box_gadget - $form_entry_box_gadget - $form_execute_buttons - $form_gadget_value - $form_horiz_dynamic_list_box_gadget - $form_horiz_list_box_gadget - $form_item - $form_label - $form_left_justified_column - $form_list_box_gadget - $form_mouse_tracking - $form_named_argument - $form_named_argument_gadget - $form_navigator_entry - $form_navigator_gadget - $form_number_entry_box_gadget - $form_patterns_list_box_gadget - $form_prompt_text_gadget - $form_push_button_gadget - $form_radio_buttons_gadget - $form_repeat - $form_right_justified_column - $form_row - $form_scope_list_box_gadget - $form_set_no_enter - $form_single_check_box_gadget - $form_string_entry_box_gadget - $form_switch - $form_target_action - $form_target_button - $form_text_entry_box_gadget - $form_variable - $form_variable_gadget - $frame_maximized - $frame_window - $get_action_bar_bgd_color - $get_action_bar_fgd_color - $get_active_color - $get_active_window - $get_additional_workspaces - $get_app_name_and_version - $get_app_name_no_version - $get_auto_pop - $get_auto_refresh - $get_auto_resize_palette - $get_autosave - $get_base_window - $get_bgd_color - $get_border_width - $get_current_profile - $get_cursor_colors - $get_cursor_shape - $get_default_method - $get_default_notepad_font - $get_double_click_interval - $get_expanded_pathname - $get_fgd_color - $get_focus_follows_mouse - $get_focus_follows_mouse_delay - $get_font_nominal_width - $get_form_gadget_value - $get_frame_collapsed - $get_graphic_device - $get_keyboard_type - $get_last_window - $get_message_lines - $get_message_popup - $get_message_reply - $get_message_transcript - $get_notepad_document_status - $get_open_windows - $get_palette_menu_visible - $get_pattern - $get_prompt_fonts - $get_server_switch - $get_sidetab_color - $get_tabbed_workspace_trim_right - $get_text_cursor_blink - $get_transcript_output - $get_window_border_width - $get_window_frame_extent - $get_window_frame_width - $get_workspace - $graphic_x - $graphic_y - $grow_window - $help - $help_context - $help_enabled - $hide_all_dockables - $hide_command_shell - $hide_dockable - $hide_menu_bar - $hide_message_area - $hide_palette - $hide_palette_scrolls - $hide_scrolls - $hide_softkey_labels - $hide_softkeys - $hide_transcript - $hide_window_title - $identify_interrupt - $insert_menu_item - $key_ - $left_x - $load_profile - $load_userware - $location - $lock_dockables - $mark - $maximize_window - $menu_bar_item - $menu_bar_visible - $menu_context_item - $menu_name - $menu_parent_name - $menu_registered_item - $menu_separator_item - $menu_special_text_item - $menu_text_item - $menu_title_item - $message - $message_area_visible - $minimize_window - $move_cursor - $move_dockable - $move_dockable_into - $move_palette - $move_window - $next_field - $next_field_promptbar - $next_icon - $next_window - $open_notepad - $open_physical_transcript - $open_text_report - $option_form_promptbar - $palette_visible - $pause - $pin_dockable - $pop_window - $pop_window_to_top - $popup_command_line - $popup_last_menu - $popup_menu - $popup_menu_at_cursor - $popup_menu_bar - $popup_window_menu - $prev_field - $prev_field_promptbar - $prompt - $prompt_arg - $prompt_display - $prompt_dynamic - $prompt_for_location - $prompt_for_polylocation - $prompt_for_polyrectangle - $prompt_for_rectangle - $prompt_options - $read_cpu_timer - $read_cpu_timer_total - $read_map - $read_timer - $read_timer_total - $redirect_to_active_window - $ref_help - $ref_help_enabled - $refresh - $relative_location - $remove_profile - $replace_palette - $replay_physical_transcript - $report_color - $report_key - $report_stroke - $reposition_window - $reset - $reset_defaults - $reset_timer - $resize_palette - $restore_default_profile - $result - $resume - $right_x - $save_profile - $save_profile_as - $screen_x - $screen_y - $scroll_down_by_unit - $scroll_down_by_window - $scroll_hz - $scroll_left_by_unit - $scroll_left_by_window - $scroll_right_by_unit - $scroll_right_by_window - $scroll_to_bottom - $scroll_to_left - $scroll_to_right - $scroll_to_top - $scroll_up_by_unit - $scroll_up_by_window - $scroll_vt - $scrolls_visible - $select - $select_active_window - $send_ipc - $session_window_active - $set_action_bar_bgd_color - $set_action_bar_fgd_color - $set_active_color - $set_active_window - $set_additional_workspaces - $set_auto_pop - $set_auto_refresh - $set_auto_resize_palette - $set_autosave - $set_base_window - $set_bgd_color - $set_border_width - $set_cmd_line_font - $set_cursor_colors - $set_cursor_shape - $set_default_method - $set_default_notepad_font - $set_default_position - $set_double_click_distance - $set_double_click_interval - $set_fgd_color - $set_focus_follows_mouse - $set_focus_follows_mouse_delay - $set_form_gadget_value - $set_form_position - $set_frame_width - $set_graphic_device - $set_invert_text_color_on_highlight - $set_ipc_port - $set_ipc_wakeup_interval - $set_left_justify_palette_text - $set_list_gadget_double_click_action - $set_menu_rollover_color - $set_message_font_resize - $set_message_lines - $set_message_popup - $set_message_reply - $set_message_transcript - $set_palette_width - $set_pattern - $set_prompt_fonts - $set_sidetab_color - $set_softkey_bgd_color - $set_softkey_fgd_color - $set_softkey_font - $set_tabbed_workspace_trim_right - $set_text_cursor_blink - $set_transcript_output - $set_window_border_width - $set_window_frame_width - $set_working_directory - setup_registered_commands - $show_all_dockables - $show_command_shell - $show_dockable - $show_location_map - $show_menu_bar - $show_message_area - $show_palette - $show_palette_scrolls - $show_parent_palette - $show_scrolls - $show_softkey_labels - $show_softkeys - $show_sub_palette - $show_toolbar_icons - $show_toolbar_text - $show_top_palette - $show_transcript - $show_window_title - $show_workspace_tab - $softkey_bgd_color - $softkey_fgd_color - $softkey_font - $softkeys_visible - $source - $start_stroke - $start_stroke_location - $start_timer - $stop - $stop_stroke - $stop_stroke_location - $stop_timer - $stroke_extent - $stroke_identity - $stroke_ - $target_name - $title_visible - $toolbar_action_selector_item - $toolbar_add_item - $toolbar_associative_item - $toolbar_combo_box_item - $toolbar_insert_item - $toolbar_label_item - $toolbar_n_state_item - $toolbar_registered_item - $toolbar_remove_item - $toolbar_separator_item - $toolbar_text_field_item - $toolbar_text_icon_item - $top_y - $transcript_visible - $ui_message_ask_yes_no - $ui_message_fail - $update_menu_bar - $update_palette - $update_softkey_labels - $update_toolbars - $use_animations - $user_init - $user_pre_init - $user_window_init - $using_animations - $version - $wait - $window_class_name - $window_extent - $window_init - $window_interior_extent - $window_scope_name - $window_visible - $writeln - - - $add_back_annotation - $add_multiple_properties - $add_parameter - $add_primitive - $add_property - $add_substitute - $add_visible_property - $change_model - $change_property - $check_design - $clear_global_parameter - $close_design_viewpoint - $connect_back_annotation - $delete_invalid_entries - $delete_parameter - $delete_primitive - $delete_property - $delete_substitute - $delete_visible_property - $disconnect_back_annotation - $erc_check - $export_back_annotation - $export_design_configuration - $filter_property_check - $get_viewpoint_name - $import_back_annotation - $is_ba_readonly - $is_function_defined - $latch_using_label - $latch_version - $maintain_back_annotation_window - $open_back_annotation - $open_design_configuration - $open_design_viewpoint - $preset_global_parameter - $reload_model - $report_select_counts - $report_viewpoint_references - $save_design_viewpoint - $select_back_annotation - $select_design_configuration - $select_parameter - $select_primitive - $select_substitute - $select_visible_property - $unlatch_version - $unselect_back_annotation - $unselect_design_configuration - $unselect_parameter - $unselect_primitive - $unselect_substitute - $unselect_visible_property - $update_latched_version - - - - $add_bundle - $add_bundle_members - $classify_all_genlib - $classify_symbol - $close_window - $delete_bundle - $delete_bundle_members - $delete_parameter - $generate - $get_bundle - $get_bundle_list - $get_bundle_members - $get_components - $get_instances - $get_nets - $get_parameter - $get_partition_setup - $get_property_list - $get_property_setup - $get_schematics - $get_sheets - $get_symbols - $get_symbol_classification - $get_symbol_setup - $open_component_from_model - $open_component_from_tfnf - $open_design_from_viewpoint - $report_bundle_members - $report_design_info - $report_property_setup - $report_setup - $report_status_bundles - $report_symbol_classifications - $save - $save_as - $set_parameter - $set_symbol_transcript - $setup_partition - $setup_placement - $setup_property - $setup_symbol_generation - $view_all - $view_sheet - $view_symbol - $zoom_in - $zoom_out - $set_balance - $set_bundle_mode - $set_bus_partition - $set_cluster - $set_cluster_spacing - $set_connector_spacing - $set_ground_placement - $set_instance_spacing - $set_iterate - $set_lrflow - $set_net_name_prefix - $set_net_spacing - $set_partition_by_name - $set_partition_by_property - $set_partition_density - $set_partition_mode - $set_partition_sheet_count - $set_partition_sheet_size - $set_placement_technique - $set_power_placement - - - - $add_bus - $add_comment_flag - $add_group - $add_synonym - $clear_name - $clear_selection_filter - $close_all_windows - $close_selection - $delete_bus - $delete_comment_flag - $delete_group - $delete_synonym - $end_object_selection - $end_object_unselection - $freeze_window - $get_all_instance_properties - $get_all_net_properties - $get_all_pin_properties - $get_all_types - $get_average_connected_pin - $get_average_primitive_instance - $get_average_selected - $get_best_case - $get_bottom_visible - $get_bundle_names - $get_bus_parts - $get_bus_width - $get_buses - $get_comment_flags - $get_component_path - $get_connected - $get_connected_instance - $get_connected_net - $get_connected_net_name - $get_connected_pin - $get_contained - $get_default_monitor_flag_font - $get_default_monitor_flag_height - $get_effective_context - $get_equivalent_nets - $get_full_pathname - $get_groups - $get_highlighted - $get_instance_property - $get_instance_viewed - $get_last_created_window - $get_maximum_connected_pin - $get_maximum_primitive_instance - $get_maximum_selected - $get_minimum_connected_pin - $get_minimum_primitive_instance - $get_minimum_selected - $get_monitor_flag_font - $get_monitor_flag_height - $get_naming_context - $get_nearest_instance - $get_nearest_net - $get_nearest_pin - $get_nearest_property_and_owner - $get_nearest_vertex - $get_net_property - $get_pin_property - $get_protected - $get_select_count - $get_selected - $get_selected_types - $get_selection_filter - $get_sheetname_viewed - $get_source_type - $get_sum_connected_pin - $get_sum_primitive_instance - $get_sum_selected - $get_synonyms - $get_top_visible - $get_total_width_of - $get_triplet_mode - $get_typical - $get_undo_depth - $get_view_window_names - $get_window_names - $get_window_titles - $get_window_type - $get_worst_case - $goto_highlight - $highlight_instance - $highlight_net - $highlight_pin - $instance_annotated_property - $instance_exists - $instance_has_annotations - $instance_source_property - $invalidate_window - $is_window_valid - $net_annotated_property - $net_exists - $net_has_annotations - $net_source_property - $open_down - $open_selected - $open_sheet - $open_up - $pin_annotated_property - $pin_exists - $pin_has_annotations - $pin_source_property - $primitive_instance - $primitive_net - $primitive_pin - $protect - $redirect_to_all_windows - $redo - $reopen_selection - $report_buses - $report_groups - $report_highlighted - $report_interfaces - $report_naming_context - $report_objects - $report_parts_list - $report_protected - $report_synonyms - $report_wire_list - $reselect - $select_by_name - $select_by_property - $select_connected - $select_contained - $select_group - $select_messages - $select_statement - $select_whole_window - $selection_closed - $selection_filter_active - $send_to_active_window - $set_auto_locate - $set_default_method - $set_default_monitor_flag_font - $set_default_monitor_flag_height - $set_effective_context - $set_monitor_flag_font - $set_monitor_flag_height - $set_naming_context - $set_selection_filter - $set_triplet_mode - $set_undo_depth - $setup_icon - $setup_icon_font - $setup_name - $setup_window_location - $undo - $unfreeze_window - $unhighlight_all - $unhighlight_instance - $unhighlight_net - $unhighlight_pin - $unprotect - $unselect_all - $unselect_by_name - $unselect_by_property - $unselect_except_by_property - $unselect_except_group - $unselect_group - $unselect_statement - $unselect_whole_window - $update_window - $write_report - - - __da_hdl_arch_name - __da_hdl_entity_name - __da_hdl_lib_name - __da_hdl_libraries - __da_hdl_packages - __da_hdl_port_init - __da_hdl_port_mode - __da_hdl_port_type - __da_hdl_signal_type - __da_suppress_units - Addr_width - Afall, Bfall, Qfall, Qbfall, Tfall, Tbfall - Area - Arise, Brise, Qrise, Qbrise, Trise, Tbrise - Asim_coupling - Asim_param - Asim_pinorder - Asim_model - Asim_model Property in Element Statements - Asim_model_keyword - Attribute_file_required - Basic_container - Block_dir - Brd_loc - Bres_value - Buildmode - Bundle_cover_thickness - Bundle_diameter - Bundle_height - Bundle_length - Bundle_min_bend_radius - Bundle_type - Bundle_width - Cap_coupled - Cap_drive - Cap_drive1 - Cap_drive2 - Cap_net - Cap_nets_coupled - Cap_pin - Class - Cntm_bdry_model - Comp - $Compaction-group - Component_type - $Con-edge - $Con-obj - Conn_order - Conn_type - Contention - Convect_h - Convect_rank - Corr_formula - Corr_formula_rad - Cover_thickness - Cpl_cap_net - Creating_tool - Current_drive - Current_load - Data_width - DCinit - Ddms_versioned_object - Decay - Dec_cap - Default_plot_typ - Default_tool - Diff_pair - Dme_config_ignore_type - Dme_config_include_container - Do_not_jog - dont_delete - dont_shrink - Drive - Dtime - Dual_footprint - Elec_class - Element - Emissivity - Except_assy - Fall - Fall_adj - Fall_slope - Fileset_def - First_addr - Fpin_no_sci - Frexp - From_location_map - From_path - From_version - Func - $G - $Gg - Gate_class - Gate_id - Gatemode - Gdsii_cell - Gdsii_datatype - Gdsii_error - Gdsii_no_output - Gdsii_plex - Gdsii_property_# - Gdsii_text - Requirements for DRACULA II - Gdsii_textinfo - Geom - Global - Globalin - Globalinout - Global_net_cap - Globalout - Group_abut - Group_name - Group_place - Group_prio - Group_seed - Icap_net - Ignore_net - Iih - Iil - Init - Initial_Condition - Ink_id - Input_data - Inst - Instpar - Instpartol - Ioh - Ioh1, Ioh2 - Iol - Iol1, Iol2 - Iozh - Iozl - Junction_max_t - Key_file - Kfall - Krise - Large_icon - Laser - Lms_cat - Lms_component_path - Lms_geometries - Lms_index - Lms_symbols - Load - M - Mass_density - Master_pin - Match_group - Matched_net_length - Mating_connector - Max_addr - Max_cap_pin - Max_stub - Max_wire_length - Mfg - Mgc_cat - Mgc_comps - Mgc_component_path - Mgc_geoms - Mgc_index - Mgc_lib - Mgc_map_path - Mgc_models - Mgc_prop_file_index - Mgc_prop_file_path - Mgc_refine_level - Mgc_symbols - Min_node - Min_stub - Min_wire_length - Model - Modelfile - Modeltype - Ms_* - Multi_assay - Must_jog - My_net - N - Net - Net_comp - Net_comp_count - Net_comp_place - Netdelay - Spike Model Data - Example - Net_length - Net_order - Net_prio - Net_prio_protected - Net_tp_min_clearance - Net_tp_req - Net_type - Nmos_bulk_node - Node - Nodeset - Nofault - Note - Npn_sub_node - Num_blocks - Omit_wire_list - Part_no - Pcb_group - Pcb_ignore - Pcb_inst - Pcb_net - Pcb_pin - Pcb_pin_loc - Pcb_pin_pad - Phy_comp - Phy_pin - Pin - Pin_driver - Pin_gauge - Pin_group - Pin_no - Pin_order - Pin_swap - Pin_tp_req - Pins - Pins_out - Pins_spare - Pintech - Pintype - Pintype_override - Place - Placement_net_cap - Placement_region - Pmos_bulk_node - Pnp_sub_node - $Pn_ext - Portdir - Porttype - Pow_del_max - Pow_del_typ - Pow_derating - Pow_den - Pow_max - Pow_max_symb - Pow_min - Pow_typ - Pow_typ_symb - Power_nets - Power_pins - Power_route_style - Pwr - Prio - Process_var - R - Radiate_h - Rc_feedthrough - Ref - Ref_group - Refloc - Rel_preplacement - Release_comments - Release_date - Release_date_string - Released_by - Released_location_map - Released_to_path - Res_net - Res_path - Res_source - Restrict - R_hat_len - R_hat_width - Rise - Rise_adj - Rise_slope - R_len - R_min_dim - Rn_sub_node - Route_set - Rp_sub_node - R_shape - R_width - Rule - S_des - Seed - Shape - Shared - Side_pref - Size - Small_icon - Source - Source_edit_allowed - Spec_heat - Spicepar - Ss_num - Stub_dir - Substrate - Surface - Surface_area - Swapping - Swap_set - Syn_donttouch - Syn_dontuse - Syn_libname - Target_net_cap - Tech - Tegas5_lib - Temp - Terminator - Therm_cond - Therm_jc - Therm_r - _tid - Timefile - Toler - Tool_reference - Tphz, Tplz, Tpzh, Tpzl - Trace_shielding - Transmode - Trim - Undriven - Value - Variant - Version_depth - Vhdl_type - Vih - Vil - Voh - Voh1, Voh2 - Vol - Vol1, Vol2 - Voltage - Vtype - Wire_auto_calc_length - Zif_model - Zycad_type - - - - $$add_configuration_entry - $add_configuration_entry - $$add_container - $add_container - $$add_directory - $add_directory - $add_link - $add_object_property - $$add_reference - $add_reference - $add_reference_property - $add_toolbox - $$add_type - $add_versions - $browse_for_object - $$build_configuration - $build_configuration - $$change_configuration_references - $change_configuration_references - $$change_design_object_references - $change_design_object_references - $change_link_text - $change_location_map_entry - $$change_object_name - $change_object_name - $change_object_property - $$change_object_references - $change_object_references - $change_password - $change_protection - $change_reference_property - $change_reference_state - $change_version_depth - $check_references - $check_registries - $$clear_entry_filter - $$clear_global_status - $$clear_monitor - $$close_configuration - $close_hierarchy - $$close_versioned_object - $close_window - $$convert_configuration_references - $convert_configuration_references - $$convert_object_references - $convert_object_references - $$copy_configuration - $copy_configuration - $$copy_design_object - $copy_design_object - $$copy_object - $copy_object - $copy_version - $$create_configuration - $create_dm_category - $create_dm_cell - $create_dm_ext_lib - $create_dm_library - $create_dm_project - $create_dm_tech_category - $create_dm_tech_lib - $create_tech_config_object - $$create_versioned_object - $$delete_configuration - $delete_configuration - $delete_design_object - $delete_excess_versions - $$delete_object - $delete_object - $$delete_object_property - $delete_object_property - $$delete_reference - $delete_reference - $$delete_reference_handle - $$delete_reference_property - $delete_reference_property - $$delete_reference_property_handle - $$delete_version - $delete_version - $$delete_version_property - $descend_hierarchy_one_level - $descend_hierarchy_specify_level - $$duplicate_object - $edit_file - $empty_trash - $explore_contents - $explore_parent - $explore_reference_parent - $explore_references - $export_configuration_entries - $export_library - $export_location_map - $find_external_deps - $find_references - $$fix_relative_path - $$freeze_configuration - $freeze_configuration - $$freeze_version - $freeze_version - $get_area_selected_objects - $$get_children - $$get_configuration_entries - $$get_configuration_path - $$get_container_contents - $$get_date_last_modified - $get_default_tool - $$get_entry_version - $$get_fileset_members - $$get_hard_name - $$get_location_map - $$get_monitor_error_count - $$get_monitor_flag - $$get_monitor_verbosity - $$get_monitor_warning_count - $get_navigator_directory - $get_navigator_directory_hard - $get_next_tool_env - $$get_object_current_version - $$get_object_parent_path - $$get_object_path_filter - $get_object_pathname - $$get_object_properties - $$get_object_property_filter - $$get_object_property_value - $$get_object_protection - $$get_object_references - $$get_object_type - $get_object_type - $$get_object_type_filter - $get_object_version - $$get_object_versions - $$get_parent_entry - $$get_primaries - $$get_reference_properties - $$get_reference_properties_handle - $$get_reference_property_filter - $$get_reference_traversal - $$get_secondaries - $$get_soft_name - $$get_status_code - $$get_status_code_stack - $$get_status_messages - $get_subinvoke_mode - $$get_target_path - $get_technology - $get_toolbox_search_path - $get_tool_pathname - $get_tool_script - $get_tool_type - $$get_type_properties - $$get_type_property_value - $$get_version_depth - $$get_version_properties - $$get_working_directory - $goto_directory - $$handle_map_error - $$has_object_property - $$has_reference_property - $$has_reference_property_handle - $hide_secondary_entries - $hide_monitor - $import_classic_data - $import_custom_view - $import_design_kit - $import_ext_lib - $import_icstudio_library - $import_icstudio_project - $include_external_library - $invoke_bgd_tool - $invoke_tool - $$is_build_consistent - $$is_build_valid - $$is_configuration_edited - $$is_configuration_frozen - $$is_configuration_locked - $$is_container - $$is_directory - $$is_entry_container - $$is_entry_fixed - $$is_entry_primary - $$is_entry_retargetable - $$is_object_released - $$is_object_versioned - $$is_read_protected - $$is_relative_path - $$is_type_versioned - $$is_writable - $$is_write_protected - $list_references - $load_registry - $$lock_configuration - $lock_configuration - $$lock_object - $login_admin - $logged_in - $logout_admin - $maintain_hierarchy - $$monitor_global_status - $$move_design_object - $move_design_object - $$move_object - $move_object - $$object_complete - $$object_exists - $$open_configuration - $open_configuration_window - $$open_hierarchy - $open_navigator - $open_object - $open_read_only_editor - $open_session_monitor - $$open_tool - $open_tool - $open_tools_window - $open_trash_window - $open_types_window - $$open_versioned_object - $$prune_design_hierarchy - $$read_map - $read_map - $refresh_all - $$release_configuration - $release_configuration - $$release_object - $release_object - $$remove_configuration_entry - $remove_configuration_entry - $remove_external_library - $remove_toolbox - $report_configuration_info - $$report_configuration_references - $report_configuration_references - $report_entry_info - $$report_entry_verification - $report_entry_verification - $$report_global_status - $report_object_info - $report_reference_info - $report_tool_info - $report_type_info - $report_version_info - $$resolve_path - $$revert_version - $revert_version - $$salvage_object - $salvage_object - $$save_configuration - $save_configuration - $$save_configuration_as - $save_configuration_as - $$save_object - $save_toolbox_search_path - $search - $search_again - $select_all - $select_by_name - $select_by_library - $select_by_type - $select_config_entry - $select_object - $select_reference - $select_tool - $select_toolbox - $select_trash_object - $select_version - $set_build_rules - $$set_location_map_entry - $$set_monitor_flag - $$set_monitor_verbosity - $set_next_tool_env - $$set_object_path_filter - $$set_object_property - $$set_object_property_filter - $$set_object_type_filter - $set_project_refresh_heartbeat - $$set_protection - $$set_protection_numeric - $$set_reference_property - $$set_reference_property_filter - $$set_reference_property_handle - $$set_reference_traversal - $set_subinvoke_mode - $$set_target_path - $set_target_path - $set_technology - $set_toolbox_search_path - $$set_version_depth - $$set_version_property - $$set_working_directory - $set_working_directory - $setup_filter_active - $setup_filter_all - $setup_default_editor - $setup_iconic_window_layout - $setup_invoke_tool - $$setup_monitor - $setup_monitor - $setup_session_defaults - $setup_startup_windows - $show_all_files - $show_compiled_libs - $show_component_hierarchy - $show_custom_views - $show_directories - $show_ext_libs - $show_language_views - $show_layout_views - $$show_location_map - $show_location_map - $show_logic_views - $show_references - $show_monitor - $show_tech_libs - $show_versions - $trash_object - $$unfreeze_configuration - $unfreeze_configuration - $$unfreeze_version - $unfreeze_version - $$unlock_configuration - $unlock_configuration - $$unlock_object - $unselect_all - $unselect_by_name - $unselect_by_type - $unselect_config_entry - $unselect_object - $unselect_reference - $unselect_tool - $unselect_toolbox - $unselect_trash_object - $unselect_version - $unset_next_tool_env - $untrash_object - $$update_type - $update_window - $validate_technology - $view_by_icon - $view_by_name - $view_containment_hierarchy - $view_primary_hierarchy - $view_secondary_entries - $view_toolboxes - $view_tools - $write_default_startup_file - $$writeln_monitor - - - $get_current_obj_hier_path - $get_current_obj_inst_list - $idw_dh_setup_display - $idw_report_hier - $idw_open_hierarchy_window - $inst_area_extend_selection - $inst_area_select_all_items - $inst_area_select_item - $inst_area_show_instances - $inst_area_unselect_all_items - $make_obj_current - $open_new_comp_hierarchy - $open_new_hierarchy - $select_obj - $show_instance - $show_n_levels - $set_font - $setup_comp_hierarchy_display - $setup_hierarchy_selection - $write_default_startup_file - $add_components - $add_labels_to_models - $collapse_object - $delete_labels_from_models - $delete_part_interfaces - $expand_object - $forget_components_edits - $hide_body_props - $hide_labels - $hide_model - $hide_pin_properties - $hide_pins - $register_models - $remove_components - $rename_part_interface - $report_body_prop_info - $report_component_info - $report_model_entry_info - $report_models_for_each_label - $report_model_info - $report_models_with_all_labels - $report_pin_info - $save_components_edits - $select_model_object - $select_object - $set_bgd_color - $set_bgd_color_title_items - $set_bgd_color_titles - $set_constraints - $set_default_part_interface - $set_fgd_color - $set_fgd_color_title_items - $set_fgd_color_titles - $set_font - $set_part_interface_font - $show_body_props - $show_labels - $show_model - $show_pins - $show_pin_properties - $unselect_model_object - $unselect_object - $validate_models - - - quick_help - ref_help - - - - optional - default - - - - - name - callable - enum - integer - location - name - number - pathname - polylocation - polyrectangle - real - rectangle - status - string - vector - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ansforth94.xml ktexteditor-5.31.0/src/syntax/data/ansforth94.xml --- ktexteditor-5.28.0/src/syntax/data/ansforth94.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ansforth94.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,601 +0,0 @@ - - - - - - - ! - # - #> - #S - ' - ( - * - */ - */MOD - + - +! - +LOOP - , - - - . - ." - / - /MOD - 0< - 0= - 1+ - 1- - 2! - 2* - 2/ - 2@ - 2DROP - 2DUP - 2OVER - 2SWAP - : - ; - < - <# - = - > - >BODY - >IN - >NUMBER - >R - ?DUP - @ - ABORT - ABORT" - ABS - ACCEPT - ALIGN - ALIGNED - ALLOT - AND - BASE - BEGIN - BL - C! - C, - C@ - CELL+ - CELLS - CHAR - CHAR+ - CHARS - CONSTANT - COUNT - CR - CREATE - DECIMAL - DEPTH - DO - DOES> - DROP - DUP - ELSE - EMIT - ENVIRONMENT? - EVALUATE - EXECUTE - EXIT - FILL - FIND - FM/MOD - HERE - HOLD - I - IF - IMMEDIATE - INVERT - J - KEY - LEAVE - LITERAL - LOOP - LSHIFT - M* - MAX - MIN - MOD - MOVE - NEGATE - OR - OVER - POSTPONE - QUIT - R> - R@ - RECURSE - REPEAT - ROT - RSHIFT - S" - S>D - SIGN - SM/REM - SOURCE - SPACE - SPACES - STATE - SWAP - THEN - TYPE - U. - U< - UM* - UM/MOD - UNLOOP - UNTIL - VARIABLE - WHILE - WORD - XOR - [ - ['] - [CHAR] - ] - - - .( - .R - 0<> - 0> - 2>R - 2R> - 2R@ - :NONAME - <> - ?DO - AGAIN - C" - CASE - COMPILE, - ENDCASE - ENDOF - ERASE - FALSE - HEX - MARKER - NIP - OF - PAD - PARSE - PICK - REFILL - RESTORE-INPUT - ROLL - SAVE-INPUT - SOURCE-ID - TO - TRUE - TUCK - U.R - U> - UNUSED - VALUE - WITHIN - [COMPILE] - \ - - - #TIB - CONVERT - EXPECT - QUERY - SPAN - TIB - - - BLK - BLOCK - BUFFER - EVALUATE - FLUSH - LOAD - SAVE-BUFFERS - UPDATE - - - EMPTY-BUFFERS - LIST - REFILL - SCR - THRU - \ - - - 2CONSTANT - 2LITERAL - 2VARIABLE - D+ - D- - D. - D.R - D0< - D0= - D2* - D2/ - D< - D= - D>S - DABS - DMAX - DMIN - DNEGATE - M*/ - M+ - - - 2ROT - DU< - - - CATCH - THROW - - - ABORT - ABORT" - - - AT-XY - KEY? - PAGE - - - EKEY - EKEY>CHAR - EKEY? - EMIT? - MS - TIME&DATE - - - ( - BIN - CLOSE-FILE - CREATE-FILE - DELETE-FILE - FILE-POSITION - FILE-SIZE - INCLUDE-FILE - INCLUDED - OPEN-FILE - R/O - R/W - READ-FILE - READ-LINE - REPOSITION-FILE - RESIZE-FILE - S" - SOURCE-ID - W/O - WRITE-FILE - WRITE-LINE - - - FILE-STATUS - FLUSH-FILE - REFILL - RENAME-FILE - - - >FLOAT - D>F - F! - F* - F+ - F- - F/ - F0< - F0= - F< - F>D - F@ - FALIGN - FALIGNED - FCONSTANT - FDEPTH - FDROP - FDUP - FLITERAL - FLOAT+ - FLOATS - FLOOR - FMAX - FMIN - FNEGATE - FOVER - FROT - FROUND - FSWAP - FVARIABLE - REPRESENT - - - DF! - DF@ - DFALIGN - DFALIGNED - DFLOAT+ - DFLOATS - F** - F. - FABS - FACOS - FACOSH - FALOG - FASIN - FASINH - FATAN - FATAN2 - FATANH - FCOS - FCOSH - FE. - FEXP - FEXPM1 - FLN - FLNP1 - FLOG - FS. - FSIN - FSINCOS - FSINH - FSQRT - FTAN - FTANH - F~ - PRECISION - SET-PRECISION - SF! - SF@ - SFALIGN - SFALIGNED - SFLOAT+ - SFLOATS - - - (LOCAL) - TO - - - LOCALS| - - - ALLOCATE - FREE - RESIZE - - - .S - ? - DUMP - SEE - WORDS - - - ;CODE - AHEAD - ASSEMBLER - BYE - CODE - CS-PICK - CS-ROLL - EDITOR - STATE - [ELSE] - [IF] - [THEN] - - - FORGET - - - DEFINITIONS - FIND - FORTH-WORDLIST - GET-CURRENT - GET-ORDER - SEARCH-WORDLIST - SET-CURRENT - SET-ORDER - WORDLIST - - - ALSO - FORTH - ONLY - ORDER - PREVIOUS - - - -TRAILING - /STRING - BLANK - CMOVE - CMOVE> - COMPARE - SEARCH - SLITERAL - - - TODO - FIXME - NOTE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ansic89.xml ktexteditor-5.31.0/src/syntax/data/ansic89.xml --- ktexteditor-5.28.0/src/syntax/data/ansic89.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ansic89.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,156 +0,0 @@ - - - - - - - break - case - continue - default - do - else - enum - extern - for - goto - if - return - sizeof - struct - switch - typedef - union - while - - - auto - char - const - double - float - int - long - register - short - signed - static - unsigned - void - volatile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ansys.xml ktexteditor-5.31.0/src/syntax/data/ansys.xml --- ktexteditor-5.28.0/src/syntax/data/ansys.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ansys.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,2064 +0,0 @@ - - - - - - /BATCH - /CONFIG - /CWD - /EOF - /EXIT - /FILNAME - HELP - /INPUT - KEYW - MEMM - /MENU - /MSTART - /NERR - /OUTPUT - /STATUS - /SYP - /SYS - /UI - /UIS - /AUX2 - /AUX3 - /AUX12 - /AUX15 - FINISH - /OPT - /POST1 - /POST26 - /PREP7 - /QUIT - /RUNST - /SOLU - /ASSIGN - /CLOG - /COPY - /DELETE - /FDELE - /FTYPE - LGWRITE - *LIST - /RENAME - /COM - /GO - /GOLIST - /GOPR - /NOLIST - /NOPR - - - /CLEAR - RESUME - SAVE - /SMBC - STAT - /STITLE - /TITLE - UNDO - /UNITS - ALLSEL - ASLL - ASEL - ASLV - DOFSEL - ESEL - ESLA - ESLL - ESLN - ESLV - KSEL - KSLL - KSLN - LSEL - LSLA - LSLK - NSEL - NSLA - NSLE - NSLK - NSLL - NSLV - PARTSEL - VSEL - VSLA - CM - CMDELE - CMEDIT - CMGRP - CMLIST - CMMOD - CMPLOT - CMSEL - KWPAVE - KWPLAN - LWPLAN - NWPAVE - NWPLAN - WPAVE - WPCSYS - WPLANE - WPOFFS - WPROTA - WPSTYL - CLOCAL - CS - CSCIR - CSDELE - CSKP - CSLIST - CSWPLA - CSYS - LOCAL - FITEM - FLST - - - /CMAP - /COLOR - /DEVICE - DSYS - /DV3D - /ERASE - ERASE - /GCMD - /GCOLUMN - /GFILE - GPLOT - /GRAPHICS - /GRESUME - /GSAVE - /GTYPE - HPGL - /IMAGE - IMMED - JPEG - /MREP - /NOERASE - /PCOPY - PNGR - PSCR - /PSTATUS - /REPLOT - /RESET - /SEG - /SHOW - TIFF - /WINDOW - /ANGLE - /AUTO - /DIST - /FOCUS - /USER - /VCONE - /VIEW - /VUP - /XFRM - /ZOOM - /DSCALE - /ICLWID - /ICSCALE - /RATIO - /SHRINK - /SSCALE - /TXTRE - /VSCALE - /CPLANE - /CTYPE - /EDGE - /ESHAPE - /FACET - /GLINE - /GMARKER - GMFACE - /LIGHT - /NORMAL - /SHADE - /TRLCY - /TYPE - /CFORMAT - /CLABEL - /CONTOUR - /CVAL - /GFORMAT - /HBC - /NUMBER - /PBC - /PBF - PGSELE - /PICE - /PLOPTS - /PNUM - /PSF - /PSYMB - /TRIAD - /UDOC - /AXLAB - /GRID - /GROPT - /GRTYP - /GTHK - /XRANGE - /YRANGE - /AN3D - /ANNOT - /ANUM - /LARC - /LINE - /LSPEC - /LSYMBOL - /PCIRCLE - /PMORE - /POLYGON - /PSPEC - /PWEDGE - /TLABEL - /TSPEC - - - GET - *ABBR - ABBRES - ABBSAV - *AFUN - *ASK - *CFCLOS - *CFOPEN - *CFWRITE - *CREATE - *CYCLE - *DEL - /DFLAB - *DIM - /DIRECTORY - *DO - *DOWHILE - *ELSE - *ELSEIF - *END - *ENDDO - *ENDIF - *EXIT - *GET - *GO - *IF - /INQUIRE - /MAIL - *MFOURI - *MFUN - *MOPER - *MSG - *MWRITE - PARRES - PARSAV - /PMACRO - /PSEARCH - *REPEAT - *RETURN - *SET - *SREAD - *STATUS - *TAXIS - /TEE - *TOPER - *TREAD - /UCMD - *ULIB - *USE - *VABS - *VCOL - *VCUM - *VEDIT - *VFACT - *VFILL - *VFUN - *VGET - *VITRP - *VLEN - *VMASK - *VOPER - *VPLOT - *VPUT - *VREAD - *VSCFUN - *VSTAT - *VWRITE - /WAIT - - - AFLIST - CDREAD - CDWRITE - CDOPT - CECHECK - CHECK - CNCHECK - FC - FCCHECK - FCDELE - FCLIST - IGESOUT - NOOFFSET - NUMCMP - NUMMRG - NUMOFF - NUMSTR - DOF - ET - ETCONTROL - ETDELE - ETLIST - KEYOPT - NSVR - R - RDELE - RLIST - RMODIF - RMORE - SETFGAP - EMUNIT - *EVAL - *MOONEY - MP - MPAMOD - MPCHG - MPCOPY - MPDATA - MPDELE - MPDRES - /MPLIB - MPLIST - MPPLOT - MPREAD - MPTEMP - MPTGEN - MPTRES - MPWRITE - TBFT - UIMP - TB - TBCOPY - TBDATA - TBDELE - TBFIELD - TBLIST - TBMODIF - TBPLOT - TBPT - TBTEMP - BLC4 - BLC5 - BLOCK - CON4 - CONE - CYL4 - CYL5 - CYLIND - PCIRC - POLY - PRI2 - PRISM - PTXY - RECTNG - RPOLY - RPR4 - RPRISM - SPH4 - SPH5 - SPHERE - TORUS - GSUM - K - KBETW - KCENTER - KDELE - KDIST - KFILL - KGEN - KL - KLIST - KMODIF - KMOVE - KNODE - KPLOT - KPSCALE - KSCALE - KSUM - KSYMM - KTRAN - SOURCE - HPTCREATE - HPTDELETE - BSPLIN - CIRCLE - GSUM - L - L2ANG - L2TAN - LANG - LARC - LAREA - LCOMB - LDELE - LDIV - LDRAG - LEXTND - LFILLT - LGEN - LLIST - LPLOT - LREVERSE - LROTAT - LSSCALE - LSTR - LSUM - LSYMM - LTAN - LTRAN - SPLINE - SSLN - A - AATT - ADELE - ADGL - ADRAG - AFILLT - AGEN - AL - ALIST - ANORM - AOFFST - APLOT - AREVERSE - AROTAT - ARSCALE - ARSYM - ASKIN - ASUB - ASUM - ATRAN - GSUM - SPLOT - EXTOPT - GSUM - V - VA - VDELE - VDGL - VDRAG - VEXT - VGEN - VLIST - VLSCALE - VOFFST - VPLOT - VROTAT - VSUM - VSYMM - VTRAN - AADD - AGLUE - AINA - AINP - AINV - AOVLAP - APTN - ASBA - ASBL - ASBV - ASBW - BOPTN - BTOL - LCSL - LGLUE - LINA - LINL - LINP - LINV - LOVLAP - LPTN - LSBA - LSBL - LSBV - LSBW - VADD - VGLUE - VINP - VINV - VOVLAP - VPTN - VSBA - VSBV - VSBW - ACCAT - ACLEAR - AESIZE - AMAP - AMESH - AREFINE - CHKMSH - CLRMSHLN - CPCYC - DESIZE - EORIENT - EREFINE - ESIZE - ESYS - FVMESH - GSGDATA - IMESH - KATTA - KCLEAR - KESIZE - KMESH - KREFINE - KSCON - LATT - LCCAT - LCLEAR - LESIZE - LMESH - LREFINE - MAT - MCHECK - MODMSH - MOPT - MSHAPE - MSHCOPY - MSHKEY - MSHMID - MSHPATTERN - NREFINE - PSMESH - REAL - RTHICK - SHPP - SMRTSIZE - TCHG - TIMP - TYPE - VATT - VCLEAR - VIMP - VMESH - VEORIENT - VSWEEP - CENTER - FILL - MOVE - N - NANG - NDELE - NDIST - NGEN - NKPT - NLIST - NMODIF - NPLOT - NREAD - NROTAT - NRRANG - NSCALE - NSMOOTH - NSYM - NWRITE - QUAD - SOURCE - TRANSFER - AFSURF - E - EDELE - EGEN - EINTF - ELIST - EMID - EMODIF - EMORE - EMTGEN - EN - ENDRELEASE - ENGEN - ENORM - ENSYM - EORIENT - EPLOT - EREAD - ERRANG - ESURF - ESYM - ESYS - EWRITE - LAYLIST - LAYPLOT - LFSURF - MAT - NDSURF - REAL - SHSD - SWADD - SWDEL - SWGEN - SWLIST - TSHAP - TYPE - UPGEOM - SE - SEDLIST - SELISTL - SESYMM - SETRAN - BELLOW - BEND - BRANCH - FLANGE - MITER - PCORRO - PDRAG - PFLUID - PGAP - PINSUL - POPT - PPRES - PSPEC - PSPRNG - PTEMP - PUNIT - REDUCE - RUN - TEE - VALVE - DIG - DMOVE - DSET - DSURF - CP - CPDELE - CPINTF - CPLGEN - CPLIST - CPNGEN - CPSGEN - CE - CECYC - CEDELE - CEINTF - CELIST - CERIG - CESGEN - RBE3 - NOORDER - WAVES - WERASE - WFRONT - WMID - WMORE - WSORT - WSTART - FLDATA - FLDATA1 - FLDATA2 - FLDATA3 - FLDATA4 - FLDATA4A - FLDATA5 - FLDATA6 - FLDATA7 - FLDATA8 - FLDATA9 - FLDATA10 - FLDATA11 - FLDATA12 - FLDATA13 - FLDATA14 - FLDATA15 - FLDATA16 - FLDATA17 - FLDATA18 - FLDATA19 - FLDATA20 - FLDATA20A - FLDATA20B - FLDATA21 - FLDATA22 - FLDATA23 - FLDATA24 - FLDATA24A - FLDATA24B - FLDATA24C - FLDATA24D - FLDATA24E - FLDATA24F - FLDATA24G - FLDATA24H - FLDATA40 - FLDATA25 - FLDATA26 - FLDATA34 - FLDATA27 - FLDATA28 - FLDATA29 - FLDATA30 - FLDATA31 - FLDATA32 - FLDATA33 - FLDATA35 - FLDATA36 - FLDATA37 - FLDATA38 - FLDATA39 - ICVFRC - PLVFRC - MSADV - MSCAP - MSDATA - MSMASS - MSMETH - MSMIR - MSNOMF - MSPROP - MSQUAD - MSRELAX - MSSOLU - MSSPEC - MSTERM - MSVARY - /CYCEXPAND - CYCLIC - CYCOPT - EMSYM - HFEREFINE - PERBC2D - PHYSICS - RACE - AREAS - BOOL - CEQN - COUPLE - DIGIT - ELEM - ETYPE - FATIGUE - FEBODY - FECONS - FEFOR - FESURF - FLOTRAN - GEOMETRY - KEYPTS - LINE - MATER - MESHING - NODES - PIPE - PMETH - PRIM - RCON - REORDER - SELM - TBLE - VOLUMES - EDASMP - EDBOUND - EDBX - EDCGEN - EDCLIST - EDCMORE - EDCNSTR - EDCONTACT - EDCRB - EDCURVE - EDDBL - EDDC - EDIPART - EDLCS - EDMP - EDNB - EDNDTSD - EDNROT - EDPART - EDPC - EDSP - EDWELD - ALPFILL - ARCOLLAPSE - ARDETACH - ARFILL - ARMERGE - ARSPLIT - GAPFINISH - GAPLIST - GAPMERGE - GAPOPT - GAPPLOT - LNCOLLAPSE - LNDETACH - LNFILL - LNMERGE - LNSPLIT - SARPLOT - SLPPLOT - SLSPLOT - VCVFILL - BSAX - BSM1 - BSM2 - BSMD - BSS1 - BSS2 - BSTE - BSTQ - PRSSOL - SDELETE - SECDATA - SECJOINT - /SECLIB - SECLOCK - SECNUM - SECOFFSET - SECPLOT - SECREAD - SECSTOP - SECTYPE - SECWRITE - SLIST - SSBT - SSMT - SSPA - SSPB - SSPD - SSPE - SSPM - MORPH - DAMORPH - DEMORPH - DVMORPH - TZAMESH - TZDELE - TZEGEN - PMLOPT - PMLSIZE - FSAN - FSCO - FSDT - FSIN - FSIT - FSOR - FSOU - FSRE - FSSTAT - FSTI - FSTR - - - ABEXTRACT - ADAMS - ADAPT - ANTYPE - BCSOPTION - CECHECK - CHECK - CMATRIX - CMSOPT - CNCHECK - CUTCONTROL - CYCOPT - DMPEXT - DSPROC - DSOPT - EMATWRITE - EQSLV - ERESX - ESCHECK - ESSOLV - EXPASS - FSRS - FSSOLV - GAUGE - GMATRIX - HFEIGOPT - HFPA - HFPCSWP - HFSCAT - HFSWEEP - LMATRIX - LUMPM - MONITOR - MSAVE - OPNCONTROL - PRECISION - PSCONTROL - PSOLVE - RATE - RSTOFF - SEEXP - SEGEN - SEOPT - SOLCONTROL - /SOLU - SOLVE - SPSCAN - SPSWP - STAOPT - TOFFST - PCONV - PEXCLUDE - PINCLUDE - /PMETH - PMOPTS - PPRANGE - ARCLENA - ARCTRM - BUCOPT - CNVTOL - CRPLIM - /GST - LNSRCH - MXPAND - NCNV - NEQIT - NLDIAG - NLDPOST - NLGEOM - NLHIST - NROPT - PRED - PSTRES - SSTIF - SUBOPT - ALPHAD - BETAD - DMPRAT - HARFRQ - HREXP - HROPT - HROUT - LVSCALE - MDAMP - MDPLOT - MODOPT - MXPAND - RIGID - SUBOPT - TIMINT - TINTP - TRNOPT - ADDAM - COVAL - CQC - DSUM - FREQ - GRP - NRLSUM - PFACT - PSDCOM - PSDFRQ - PSDGRAPH - PSDSPL - PSDUNIT - PSDVAL - PSDWAV - QDVAL - ROCK - SED - SPOPT - SRSS - SV - SVTYP - VDDAM - AUTOTS - CECMOD - DELTIM - EXPSOL - HMAGSOLV - KBC - KUSE - MAGOPT - MAGSOLV - MODE - NSUBST - NUMEXP - TIME - TREF - TSRES - UPCOORD - USRCAL - WRFULL - DA - DADELE - DALIST - DK - DKDELE - DKLIST - DL - DLDELE - DLLIST - DTRAN - FK - FKDELE - FKLIST - FTRAN - SFA - SFADELE - SFALIST - SFL - SFLDELE - SFLLIST - SFTRAN - BFA - BFADELE - BFALIST - BFK - BFKDELE - BFKLIST - BFL - BFLDELE - BFLLIST - BFTRAN - BFV - BFVDELE - BFVLIST - ACEL - CGLOC - CGOMGA - CMACEL - CMDOMEGA - CMOMEGA - DCGOMG - DOMEGA - IRLF - OMEGA - BIOT - FMAGBC - HFPORT - IC - ICDELE - ICE - ICEDELE - ICELIST - ICLIST - ISFILE - MPCHG - OUTPR - OUTRES - PGRAPH - PGSAVE - PGWRITE - PLWAVE - RESCONTROL - SBCLIST - SBCTRAN - WSPRINGS - LSCLEAR - LSDELE - LSREAD - LSSOLVE - LSWRITE - M - MDELE - MGEN - MLIST - TOTAL - GP - GPDELE - GPLIST - REZONE - MAPSOLVE - REMESH - AREMESH - EALIVE - EKILL - ESTIF - D - DCUM - DDELE - DJ - DJDELE - DJLIST - DLIST - DSCALE - DSYM - GSBDATA - GSLIST - LDREAD - F - FCUM - FDELE - FJ - FJDELE - FJLIST - FLIST - FSCALE - SF - SFBEAM - SFCUM - SFDELE - SFE - SFEDELE - SFELIST - SFFUN - SFGRAD - SFLIST - SFSCALE - BF - BFCUM - BFDELE - BFE - BFECUM - BFEDELE - BFELIST - BFESCAL - BFLIST - BFSCALE - BFUNIF - LDREAD - RIMPORT - TUNIF - BIOOPT - DEACT - DYNOPT - GAP - GENOPT - INRTIA - LSOPER - MASTER - NLOPT - OUTOPT - SMBODY - SMCONS - SMFOR - SMSURF - SOLUOPT - SPTOPT - EDADAPT - EDALE - EDBVIS - EDCADAPT - EDCPU - EDCSC - EDCTS - EDDAMP - EDDRELAX - EDDUMP - EDENERGY - EDFPLOT - EDGCALE - EDHGLS - EDHIST - EDHTIME - EDINT - EDIS - EDLOAD - EDOPT - EDOUT - EDPL - EDPVEL - EDRC - EDRD - EDRI - EDRST - EDRUN - EDSHELL - EDSOLV - EDSTART - EDTERM - EDTP - EDVEL - EDWRITE - REXPORT - FLOCHECK - PEMOPTS - HEMIOPT - RADOPT - RDEC - RSURF - RSYMM - SPCNOD - SPCTEMP - STEF - V2DOPT - VFCALC - VFOPT - QSOPT - FSAN - FSCO - FSDT - FSIN - FSIT - FSOR - FSOU - FSRE - FSRS - FSSTAT - FSTI - FSTR - MFANALYSIS - MFBUCKET - MFCALC - MFCLEAR - MFCMMAND - MFCONV - MFDTIME - MFELEM - MFEM - MFEXTER - MFFNAME - MFIMPORT - MFINTER - MFITER - MFLIST - MFMAP - MFORDER - MFOUTPUT - MFRELAX - MFRSTART - MFSURFACE - MFTIME - MFTOL - MFVOLUME - - - APPEND - DETAB - DNSOL - FILE - HRCPLX - PGRSET - /POST1 - RESET - SET - SUBSET - AVPRIN - AVRES - /EFACET - ERNORM - FORCE - INRES - LAYER - RSYS - SHELL - NSORT - NUSORT - PLCONV - PLDISP - PLESOL - PLNSOL - PLVECT - PPLOT - PRCONV - PRESOL - PRJSOL - PRNLD - PRNSOL - PRRFOR - PRRSOL - PRSSOL - PRVECT - SUMTYPE - DESOL - ESORT - ETABLE - EUSORT - PLETAB - PLLS - PLVECT - PRETAB - PRVECT - SABS - SADD - SALLOW - SEXP - SFACT - SFCALC - SMAX - SMIN - SMULT - SSUM - TALLOW - VCROSS - VDOT - /FORMAT - /HEADER - IRLIST - /PAGE - PRERR - PRITER - ANCNTR - ANCUT - ANDATA - ANDSCL - ANCYC - ANDYNA - /ANFILE - ANFLOW - ANHARM - ANIM - ANISOS - ANMODE - ANMRES - ANTIME - TRTIME - PADELE - PAGET - PAPUT - PARESU - PASAVE - PATH - PCALC - PCROSS - PDEF - PDOT - PLPAGM - PLPATH - PLSECT - PMAP - PPATH - PRANGE - PRPATH - PRSECT - PSEL - PVECT - SUCALC - SUCR - SUDEL - SUEVAL - SUGET - SUMAP - SUPL - SUPR - SURESU - SUSAVE - SUSEL - SUVECT - LCABS - LCASE - LCDEF - LCFACT - LCFILE - LCOPER - LCSEL - LCSUM - LCWRITE - LCZERO - RAPPND - CURR2D - EMAGERR - EMF - EMFT - FLUXV - FMAGSUM - FOR2D - IMPD - MMF - PLF2D - POWERH - QFACT - REFLCOEF - SENERGY - SPARM - TORQ2D - TORQC2D - TORQSUM - FE - FELIST - FL - FLLIST - FP - FPLIST - FS - FSDELE - FSLIST - FSNODE - FSPLOT - FSSECT - FTCALC - FTSIZE - FTWRITE - PLTRAC - TRPDEL - TRPLIS - TRPOIN - FLREAD - BFINT - CBDOF - CMSFILE - /CYCEXPAND - CYCPHASE - /EXPAND - EXPAND - FSSPARM - FSUM - HFANG - HFARRAY - HFNEAR - HFPOWER - HFSYM - INTSRF - KCALC - NFORCE - PLCRACK - PLHFFAR - PLSCH - PLSYZ - PRHFFAR - PRSYZ - RMFLVEC - RSPLIT - SPOINT - DATADEF - DEFINE - DISPLAY - LCCALC - POINT - PRINT - SORT - SPEC - FC - FCCHECK - FCDELE - FCLIST - - - ANSOL - DATA - EDREAD - ESOL - FILE - GAPF - GSSOL - JSOL - NSOL - NSTORE - NUMVAR - /POST26 - RESET - RFORCE - /RGB - SOLU - STORE - TIMERANGE - VARDEL - VARNAM - CFACT - FORCE - LAYERP26 - SHELL - TVAR - ABS - ADD - ATAN - CLOG - CONJUG - DERIV - EXP - FILLDATA - IMAGIN - INT1 - LARGE - NLOG - PROD - QUOT - REALVAR - SMALL - SQRT - PLCPLX - PLTIME - PLVAR - SPREAD - XVAR - EXTREM - LINES - NPRINT - PRCPLX - PRTIME - PRVAR - CVAR - PMGTRAN - RESP - RPSD - SMOOTH - VGET - VPUT - DEFINE - OPERATE - PLOTTING - PRINT - - - /AUX2 - DUMP - FILEAUX2 - FORM - HBMAT - - - /AUX3 - COMPRESS - DELETE - FILEAUX3 - LIST - MODIFY - UNDELETE - - - /AUX12 - EMIS - GEOM - MPRINT - SPACE - STEF - VFQUERY - VTYPE - WRITE - - - /AUX15 - IGESIN - IOPTN - - - RALL - RFILSZ - RITER - RMEMRY - RSPEED - RSTAT - RTIMST - /RUNST - RWFRNT - - - /OPT - OPEQN - OPFACT - OPFRST - OPGRAD - OPKEEP - OPLOOP - OPPRNT - OPRAND - OPSUBP - OPSWEEP - OPTYPE - OPUSER - OPVAR - TOCOMP - TODEF - TOFREQ - TOTYPE - TOVAR - OPADD - OPCLR - OPDEL - OPMAKE - OPSEL - OPANL - OPDATA - OPRESU - OPSAVE - OPEXE - TOEXE - TOLOOP - OPLFA - OPLGR - OPLIST - OPLSW - OPRFA - OPRGR - OPRSW - PLVAROPT - PRVAROPT - TOGRAPH - TOLIST - TOPLOT - TOPRINT - TOSTAT - XVAROPT - - - /PDS - PDANL - PDCORR - PDINQR - PDPLOT - PDVAR - PDDOEL - PDDMCS - PDMETH - PDUSER - PDEXE - PDCDF - PDCMAT - PDHIST - PDPINV - PDPROB - PDROPT - PDSCAT - PDSENS - PDSHIS - PDWRITE - PDCLR - PDRESU - PDSAVE - RSFIT - RSPLOT - RSPRNT - RSSIMS - - - /CMAP - /DEVDISP - FILEDISP - HELPDISP - NOCOLOR - /SEG - /SHOWDISP - TRANS - GRPH - TERM - FINISH - PLOT - STAT - - - RMRESUME - RMSAVE - RMNDISP - RMNEVEC - RMALIST - RMANL - RMASTER - RMCAP - RMCLIST - RMMLIST - RMMRANGE - RMMSELECT - RMPORDER - RMRGENERATE - RMROPTIONS - RMRPLOT - RMRSTATUS - RMSMPLE - RMXPORT - DCVSWP - RMLVSCALE - RMUSE - - - ABS - SIGN - EXP - LOG - LOG10 - SQRT - NINT - MOD - RAND - GDIS - SIN - COS - TAN - SINH - COSH - TANH - ASIN - ACOS - ATAN - ATAN2 - VALCHR - CHRVAL - UPCASE - LWCASE - - - LINK1 - PLANE2 - BEAM3 - BEAM4 - SOLID5 - COMBIN7 - LINK8 - INFIN9 - LINK10 - LINK11 - CONTAC12 - PLANE13 - COMBIN14 - PIPE16 - PIPE17 - PIPE18 - PIPE20 - MASS21 - BEAM23 - BEAM24 - PLANE25 - MATRIX27 - SHELL28 - FLUID29 - FLUID30 - LINK31 - LINK32 - LINK33 - LINK34 - PLANE35 - SOURC36 - COMBIN37 - FLUID38 - COMBIN39 - COMBIN40 - SHELL41 - PLANE42 - SHELL43 - BEAM44 - SOLID45 - SOLID46 - INFIN47 - MATRIX50 - SHELL51 - CONTAC52 - PLANE53 - BEAM54 - PLANE55 - HYPER56 - SHELL57 - HYPER58 - PIPE59 - PIPE60 - SHELL61 - SOLID62 - SHELL63 - SOLID64 - SOLID65 - PLANE67 - LINK68 - SOLID69 - SOLID70 - MASS71 - HYPER74 - PLANE75 - PLANE77 - PLANE78 - FLUID79 - FLUID80 - FLUID81 - PLANE82 - PLANE83 - HYPER84 - HYPER86 - SOLID87 - VISCO88 - VISCO89 - SOLID90 - SHELL91 - SOLID92 - SHELL93 - CIRCU94 - SOLID95 - SOLID96 - SOLID97 - SOLID98 - SHELL99 - VISCO106 - VISCO107 - VISCO108 - TRANS109 - INFIN110 - INFIN111 - INTER115 - FLUID116 - SOLID117 - HF118 - HF119 - HF120 - PLANE121 - SOLID122 - SOLID123 - CIRCU124 - CIRCU125 - TRANS126 - SOLID127 - SOLID128 - FLUID129 - FLUID130 - SHELL131 - SHELL132 - FLUID136 - FLUID138 - FLUID139 - FLUID141 - FLUID142 - SHELL143 - ROM144 - PLANE145 - PLANE146 - SOLID147 - SOLID148 - SHELL150 - SURF151 - SURF152 - SURF153 - SURF154 - SHELL157 - HYPER158 - LINK160 - BEAM161 - PLANE162 - SHELL163 - SOLID164 - COMBI165 - MASS166 - LINK167 - SOLID168 - TARGE169 - TARGE170 - CONTA171 - CONTA172 - CONTA173 - CONTA174 - CONTA175 - CONTA178 - PRETS179 - LINK180 - SHELL181 - PLANE182 - PLANE183 - MPC184 - SOLID185 - SOLID186 - SOLID187 - BEAM188 - BEAM189 - SOLSH190 - SOLID191 - INTER192 - INTER193 - INTER194 - INTER195 - MESH200 - FOLLW201 - SHELL208 - SHELL209 - PLANE223 - SOLID226 - SOLID227 - PLANE230 - SOLID231 - SOLID232 - SURF251 - SURF252 - - - EX - EY - EZ - GXY - NUXY - ALPX - ALPY - ALPZ - CTEX - CTEY - CTEZ - THSX - THSY - THSZ - REFT - PRXY - PRYZ - PRXZ - NUXY - NUYZ - NUXZ - GXY - GYZ - GXZ - DAMP - DMPR - MU - DENS - C - ENTH - KXX - KYY - KZZ - HF - EMIS - QRATE - VISC - SONC - RSVX - RSVY - RSVZ - PERX - MURX - MURY - MURZ - MGXX - MGYY - MGZZ - LSST - SBKX - - - UX - UY - UZ - FX - FY - FZ - MX - MY - MZ - HEAT - HBOT - HE2 - HE3 - HTOP - FLOW - AMPS - CHRG - CSGX - CSGY - CSGZ - ROTX - ROTY - ROTZ - WARP - TEMP - TBOT - TE2 - TE3 - TTOP - PRES - VX - VY - VZ - ENKE - ENDS - SP01 - SP02 - SP03 - SP04 - SP05 - SP06 - VOLT - MAG - AX - AYAZ - - - STATIC - BUCKLE - MODAL - HARMIC - TRANS - SUBSTR - SPECTR - - - - - - NX - NY - NZ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/apache.xml ktexteditor-5.31.0/src/syntax/data/apache.xml --- ktexteditor-5.28.0/src/syntax/data/apache.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/apache.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,634 +0,0 @@ - - - - - - - - - -AcceptFilter -AccessFileName -Action -AddAlt -AddAltByEncoding -AddAltByType -AddCharset -AddDefaultCharset -AddDescription -AddEncoding -AddHandler -AddIcon -AddIconByEncoding -AddIconByType -AddInputFilter -AddLanguage -AddModuleInfo -AddOutputFilter -AddOutputFilterByType -AddType -Alias -AliasMatch -Allow -Anonymous -AuthBasicProvider -AuthDBMGroupFile -AuthDBMUserFile -AuthDigestDomain -AuthDigestFile -AuthDigestGroupFile -AuthDigestNonceFormat -AuthDigestProvider -AuthGroupFile -AuthLDAPBindDN -AuthLDAPBindPassword -AuthLDAPCharsetConfig -AuthLDAPGroupAttribute -AuthLDAPUrl -AuthName -AuthUserFile -BrowserMatch -BrowserMatchNoCase -BS2000Account -CacheDisable -CacheEnable -CacheFile -CacheGcClean -CacheGcUnused -CacheRoot -CGIMapExtension -CharsetDefault -CharsetOptions -CharsetSourceEnc -CookieDomain -CookieLog -CookieName -CoreDumpDirectory -CustomLog -Dav -DavGenericLockDB -DavLockDB -DBDParams -DBDPrepareSQL -DBDriver -DefaultIcon -DefaultLanguage -DefaultType -DeflateFilterNote -Deny -DirectoryIndex -DocumentRoot -ErrorDocument -ErrorLog -Example -ExpiresByType -ExpiresDefault -ExtFilterDefine -ExtFilterOptions -FilterChain -FilterDeclare -FilterProtocol -FilterProvider -FilterTrace -ForceType -ForensicLog -Group -Header -HeaderName -ImapBase -Include -IndexIgnore -IndexOptions -IndexStyleSheet -ISAPICacheFile -LanguagePriority -LDAPSharedCacheFile -LDAPTrustedCA -LDAPTrustedCAType -LDAPTrustedClientCert -LDAPTrustedGlobalCert -Listen -LoadFile -LoadModule -LockFile -LogFormat -MetaDir -MetaSuffix -MimeMagicFile -MMapFile -NameVirtualHost -NoProxy -NWSSLTrustedCerts -NWSSLUpgradeable -PassEnv -PidFile -ProxyBlock -ProxyDomain -ProxyPass -ProxyPassReverse -ProxyPassReverseCookieDomain -ProxyPassReverseCookiePath -ProxyRemote -ProxyRemoteMatch -ReadmeName -Redirect -RedirectMatch -RedirectPermanent -RedirectTemp -RemoveCharset -RemoveEncoding -RemoveHandler -RemoveInputFilter -RemoveLanguage -RemoveOutputFilter -RemoveType -RequestHeader -Require -RewriteBase -RewriteCond -RewriteLock -RewriteLog -RewriteMap -RewriteRule -ScoreBoardFile -Script -ScriptAlias -ScriptAliasMatch -ScriptLog -ScriptSock -SecureListen -ServerAdmin -ServerAlias -ServerName -ServerPath -ServerRoot -SetEnv -SetEnvIf -SetEnvIfNoCase -SetHandler -SetInputFilter -SetOutputFilter -SSIEndTag -SSIErrorMsg -SSIStartTag -SSITimeFormat -SSIUndefinedEcho -SSLCACertificateFile -SSLCACertificatePath -SSLCADNRequestFile -SSLCADNRequestPath -SSLCARevocationFile -SSLCARevocationPath -SSLCertificateChainFile -SSLCertificateFile -SSLCertificateKeyFile -SSLCipherSuite -SSLCryptoDevice -SSLHonorCiperOrder -SSLPassPhraseDialog -SSLProxyCACertificateFile -SSLProxyCACertificatePath -SSLProxyCARevocationFile -SSLProxyCARevocationPath -SSLProxyCipherSuite -SSLProxyMachineCertificateFile -SSLProxyMachineCertificatePath -SSLProxyProtocol -SSLRandomSeed -SSLRequire -SSLRequireSSL -SSLUserName -SuexecUserGroup -TransferLog -TypesConfig -UnsetEnv -User -UserDir -VirtualDocumentRoot -VirtualDocumentRootIP -VirtualScriptAlias -VirtualScriptAliasIP -Win32DisableAcceptEx - - - -AllowCONNECT -AssignUserID -AuthDigestNonceLifetime -AuthDigestShmemSize -CacheDefaultExpire -CacheDirLength -CacheDirLevels -CacheForceCompletion -CacheGcDaily -CacheGcInterval -CacheGcMemUsage -CacheLastModifiedFactor -CacheMaxExpire -CacheMaxFileSize -CacheMinFileSize -CacheSize -CacheTimeMargin -ChildPerUserID -CookieExpires -DavMinTimeout -DBDExptime -DBDKeep -DBDMax -DBDMin -DBDPersist -DeflateBufferSize -DeflateCompressionLevel -DeflateMemLevel -DeflateWindowSize -IdentityCheckTimeout -ISAPIReadAheadBuffer -KeepAliveTimeout -LDAPCacheEntries -LDAPCacheTTL -LDAPConnectionTimeout -LDAPOpCacheEntries -LDAPOpCacheTTL -LDAPSharedCacheSize -LimitInternalRecursion -LimitRequestBody -LimitRequestFields -LimitRequestFieldsize -LimitRequestLine -LimitXMLRequestBody -ListenBacklog -MaxClients -MaxKeepAliveRequests -MaxMemFree -MaxRequestsPerChild -MaxRequestsPerThread -MaxSpareServers -MaxSpareThreads -MaxThreads -MaxThreadsPerChild -MCacheMaxObjectCount -MCacheMaxObjectSize -MCacheMaxStreamingBuffer -MCacheMinObjectSize -MCacheSize -MinSpareServers -MinSpareThreads -NumServers -ProxyIOBufferSize -ProxyMaxForwards -ProxyReceiveBufferSize -ProxyTimeout -RewriteLogLevel -RLimitCPU -RLimitMEM -RLimitNPROC -ScriptLogBuffer -ScriptLogLength -SendBufferSize -ServerLimit -SSLProxyVerifyDepth -SSLSessionCacheTimeout -SSLVerifyDepth -StartServers -StartThreads -ThreadLimit -ThreadsPerChild -ThreadStackSize -TimeOut - - - -AcceptMutex -AcceptPathInfo -AllowEncodedSlashes -AllowOverride -Anonymous_Authoritative -Anonymous_LogEmail -Anonymous_MustGiveEmail -Anonymous_NoUserID -Anonymous_VerifyEmail -AuthAuthoritative -AuthBasicAuthoritative -AuthBasicProvider -AuthDBMAuthoritative -AuthDBMType -AuthDefaultAuthoritative -AuthDigestAlgorithm -AuthDigestNcCheck -AuthDigestQop -AuthLDAPAuthoritative -AuthLDAPCompareDNOnServer -AuthLDAPDereferenceAliases -AuthLDAPEnabled -AuthLDAPFrontPageHack -AuthLDAPGroupAttributeIsDN -AuthLDAPRemoteUserIsDN -AuthType -AuthzDBMAuthoritative -AuthzDBMType -AuthzDefaultAuthoritative -AuthzGroupFileAuthoritative -AuthzLDAPAuthoritative -AuthzOwnerAuthoritative -AuthzUserAuthoritative -BufferedLogs -CacheExpiryCheck -CacheIgnoreCacheControl -CacheIgnoreHeaders -CacheIgnoreNoLastMod -CacheNegotiatedDocs -CacheStoreNoStore -CacheStorePrivate -CheckSpelling -ContentDigest -CookieStyle -CookieTracking -CoreDumpDirectory -CustomLog -DavDepthInfinity -DirectorySlash -DumpIOInput -DumpIOOutput -EnableExceptionHook -EnableMMAP -EnableSendfile -ExpiresActive -ExtendedStatus -FileETag -ForceLanguagePriority -HostnameLookups -IdentityCheck -ImapDefault -ImapMenu -IndexOrderDefault -ISAPIAppendLogToErrors -ISAPIAppendLogToQuery -ISAPIFakeAsync -ISAPILogNotSupported -KeepAlive -LDAPTrustedMode -LDAPVerifyServerCert -LogLevel -MCacheRemovalAlgorithm -MetaFiles -ModMimeUsePathInfo -MultiviewsMatch -Options -Order -ProtocolEcho -ProxyBadHeader -ProxyErrorOverride -ProxyPreserveHost -ProxyRequests -ProxyVia -RewriteEngine -RewriteOptions -Satisfy -ScriptInterpreterSource -ServerSignature -ServerTokens -SSLEngine -SSLMutex -SSLOptions -SSLProtocol -SSLProxyEngine -SSLProxyVerify -SSLSessionCache -SSLVerifyClient -UseCanonicalName -XBitHack - - - -On -Off -Default -flock -fcntl -posixsem -pthread -sysvsem -All -None -AuthConfig -FileInfo -Indexes -Limit -Options - -ExecCGI -FollowSymLinks -Includes -IncludesNOEXEC -Indexes -MultiViews -SymLinksIfOwnerMatch -StdEnvVars -CompatEnvVars -ExportCertData -FakeBasicAuth -StrictRequire -OptRenegotiate - -SDBM -GDBM -NDBM -DB -MD5 -MD5-sess -auth -auth-int -never -searching -finding -always -Basic -Digest -Connection -Keep-Alive -Proxy-Authenticate -Proxy-Authorization -TE -Trailers -Transfer-Encoding -Upgrade -Netscape -Cookie -Cookie2 -RFC2109 -RFC2965 -INode -MTime -Size -Prefer -Fallback -Double -error -nocontent -map -referer -formatted -semiformatted -unformatted -Ascending -Descending -Name -Date -Size -Description -SSL -TLS -STARTTLS -emerg -alert -crit -error -warn -notice -info -debug -LRU -GDSF -Any -NegotiatedOnly -Filters -Handlers -Deny,Allow -Allow,Deny -Mutual-failure -IsError -Ignore -StartBody -Full -Block -inherit -Registry -Registry-Strict -Script -EMail -Major -Minor -Min -Minimal -Prod -ProductOnly -OS -Full -optional -posixsem -sysvsem -sem -pthread -fcntl: -flock: -file: -yes -no -SSLv2 -SSLv3 -TLSv1 -require -optional_no_ca -nonenotnull -dbm: -shm: -dc: -DNS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/asm6502.xml ktexteditor-5.31.0/src/syntax/data/asm6502.xml --- ktexteditor-5.28.0/src/syntax/data/asm6502.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/asm6502.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/asm-avr.xml ktexteditor-5.31.0/src/syntax/data/asm-avr.xml --- ktexteditor-5.28.0/src/syntax/data/asm-avr.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/asm-avr.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,212 +0,0 @@ - - - - - - - - adc - add - adiw - and - andi - asr - bclr - bld - brbc - brbs - brcc - brcs - break - breq - brge - brhc - brhs - brid - brie - brlo - brlt - brmi - brne - brpl - brsh - brtc - brts - brvc - brvs - bset - bst - call - cbi - cbr - clc - clh - cli - cln - clr - cls - clt - clv - clz - com - cp - cpc - cpi - cpse - dec - eicall - eijmp - elpm - eor - fmul - fmuls - fmulsu - icall - ijmp - in - inc - jmp - ld - ldd - ldi - lds - lpm - lsl - lsr - mov - movw - mul - muls - mulsu - neg - nop - or - ori - out - pop - push - rcall - ret - reti - rjmp - rol - ror - sbc - sbr - sbrc - sbrs - sec - seh - sbi - sbci - sbic - sbis - sbiw - sei - sen - ser - ses - set - sev - sez - sleep - spm - st - std - sts - sub - subi - swap - tst - wdr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/asm-dsp56k.xml ktexteditor-5.31.0/src/syntax/data/asm-dsp56k.xml --- ktexteditor-5.28.0/src/syntax/data/asm-dsp56k.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/asm-dsp56k.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,329 +0,0 @@ - - - - - - - - x - x0 - x1 - y - y0 - y1 - a2 - a1 - a0 - a - a10 - ab - b2 - b1 - b0 - b - b10 - ba - - - - r0 - r1 - r2 - r3 - r4 - r5 - r6 - r7 - - - - n0 - n1 - n2 - n3 - n4 - n5 - n6 - n7 - - - - m0 - m1 - m2 - m3 - m4 - m5 - m6 - m7 - - - - la - lc - pc - ssh - ssl - omr - sr - sp - mr - ccr - - - - abs - adc - add - addl - addr - and - andi - asl - asr - bchg - bclr - bset - btst - clr - cmp - cmpm - div - do - enddo - eor - illegal - jcc - jhs - jcs - jls - jec - jeq - jes - jge - jgt - jlc - jle - jls - jlt - jmi - jne - jnr - jpl - jnn - jclr - jmp - jscc - jshs - jscs - jsls - jsec - jseq - jses - jsge - jsgt - jslc - jsle - jsls - jslt - jsmi - jsne - jsnr - jspl - jsnn - jsclr - jset - jsr - jsset - lsl - lsr - lua - mac - macr - move - movec - movem - movep - mpy - mpyr - neg - nop - norm - not - or - ori - rep - reset - rnd - rol - ror - rti - rts - sbc - stop - sub - subl - subr - swi - tcc - ths - tcs - tls - tec - teq - tes - tge - tgt - tlc - tle - tls - tlt - tmi - tne - tnr - tpl - snn - tfr - tst - wait - - - - endif - endc - else - ifne - if - ifeq - ifle - iflt - ifge - ifgt - include - incbin - printval - pass1val - pass2val - fail - endm - end - org - ds - dsm - list - nolist - macro - dc - equ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/asm-m68k.xml ktexteditor-5.31.0/src/syntax/data/asm-m68k.xml --- ktexteditor-5.28.0/src/syntax/data/asm-m68k.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/asm-m68k.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,651 +0,0 @@ - - - - - - - - d0 - d1 - d2 - d3 - d4 - d5 - d6 - d7 - - - - a0 - a1 - a2 - a3 - a4 - a5 - a6 - a7 - sp - - - - ccr - sr - pc - zpc - ssp - usp - msp - isp - dfc - cacr - caar - vbr - crp - srp - urp - tc - tt0 - tt1 - mmusr - itt0 - itt1 - dtt0 - dtt1 - buscr - pcr - ic - - bc - - - - fp0 - fp1 - fp2 - fp3 - fp4 - fp5 - fp6 - fp7 - fpcr> - fpsr - fpiar - - - - abcd - adda - addi - add - addq - addx - andi - and - asl - asr - bcc - bchg - bclr - bcs - beq - bfchg - bfclr - bfexts - bfextu - bfffo - bfins - bfset - bftst - bge - bgt - bhi - bhs - bkpt - ble - blo - bls - blt - bmi - bne - bpl - bra - bset - bsr - btst - bvc - bvs - callm - cas2 - cas - chk2 - chk - cinva - cinvl - cinvp - clr - cmp2 - cmpa - cmpi - cmp - cmpm - cpusha - cpushl - cpushp - dbcc - dbcs - dbeq - dbf - dbge - dbgt - dbhi - dbhs - dble - dblo - dbls - dblt - dbmi - dbne - dbpl - dbra - dbt - dbvc - dbvs - divs - divsl - divu - divul - eori - eor - exg - extb - ext - illegal - jmp - jsr - lea - link - lpstop - lsl - lsr - move16 - movea - movec - move - movem - movep - moveq - moves - muls - mulu - nbcd - neg - negx - nop - not - ori - or - pack - pea - pflusha - pflushan - pflush - pflushn - ploadr - ploadw - plpa - pmovefd - pmove - ptestr - ptestw - reset - rol - ror - roxl - roxr - rtd - rte - rtm - rtr - rts - sbcd - scc - scs - seq - sf - sge - sgt - shi - shs - sle - slo - sls - slt - smi - sne - spl - st - stop - suba - subi - sub - subq - subx - svc - svs - swap - tas - trapcc - trapcs - trapeq - trapf - trapge - trapgt - traphi - traphs - trap - traple - traplo - trapls - traplt - trapmi - trapne - trappl - trapt - trapvc - trapvc - trapv - tst - unlk - unpk - - - - fabs - facos - fadd - fasin - fatanh - fatan - fbeq - fbf - fbge - fbgle - fbgl - fbgt - fble - fblt - fbne - fbnge - fbngle - fbngl - fbngt - fbnle - fbnlt - fboge - fbogl - fbogt - fbole - fbolt - fbor - fbseq - fbsf - fbsne - fbst - fbt - fbueq - fbuge - fbugt - fbule - fbult - fbun - fcmp - fcosh - fcos - fdabs - fdadd - fdbeq - fdbf - fdbge - fdbgle - fdbgl - fdbgt - fdble - fdblt - fdbne - fdbnge - fdbngle - fdbngl - fdbngt - fdbnle - fdbnlt - fdboge - fdbogl - fdbogt - fdbole - fdbolt - fdbor - fdbseq - fdbsf - fdbsne - fdbst - fdbt - fdbueq - fdbuge - fdbugt - fdbule - fdbult - fdbun - fddiv - fdiv - fdmove - fdmul - fdneg - fdsqrt - fdsub - fetox - fetoxm1 - fgetexp - fgetman - fint - fintrz - flog10 - flog2 - flogn - flognp1 - fmod - fmovecr - fmove - fmovem - fmul - fneg - fnop - frem - frestore - fsabs - fsadd - fsave - fscale - fsdiv - fseq - fsf - fsge - fsgldiv - fsgle - fsgl - fsglmul - fsgt - fsincos - fsinh - fsin - fsle - fslt - fsmove - fsmul - fsneg - fsne - fsnge - fsngle - fsngl - fsngt - fsnle - fsnlt - fsoge - fsogl - fsogt - fsole - fsolt - fsor - fsqrt - fsseq - fssf - fssne - fssqrt - fsst - fssub - fst - fsub - fsueq - fsuge - fsugt - fsule - fsult - fsun - ftanh - ftan - ftentox - ftrapeq - ftrapf - ftrapge - ftrapgle - ftrapgl - ftrapgt - ftraple - ftraplt - ftrapne - ftrapnge - ftrapngle - ftrapngl - ftrapngt - ftrapnle - ftrapnlt - ftrapoge - ftrapogl - ftrapogt - ftrapole - ftrapolt - ftrapor - ftrapseq - ftrapsf - ftrapsne - ftrapst - ftrapt - ftrapueq - ftrapuge - ftrapugt - ftrapule - ftrapult - ftrapun - ftst - ftwotox - - - - align - blk - bss - clrfo - clrso - cnop - code - cseg - data - dc - dcb - ds - dseg - else - end - endc - endif - endm - endr - equ - even - fo - idnt - if - ifeq - ifne - ifgt - ifge - iflt - ifle - ifd - ifnd - ifc - ifnc - incbin - incdir - include - macro - org - public - rept - rs - rsreset - rsset - section - set - setfo - setso - so - text - ttl - xdef - xref - sdreg - cpu32 - far - fpu - machine - mc68000 - mc68010 - mc68020 - mc68030 - mc68040 - mc68060 - mcf5200 - mcf5206 - mcf5307 - mcf5407 - near - opt - equr - equrl - fequr - fequrl - freg - reg - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/asn1.xml ktexteditor-5.31.0/src/syntax/data/asn1.xml --- ktexteditor-5.28.0/src/syntax/data/asn1.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/asn1.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ - - - - - - - DEFINITIONS - BEGIN - END - EXPORTS - IMPORTS - FROM - APPLICATION - PRIVATE - UNIVERSAL - DEFAULT - OPTIONAL - FALSE - TRUE - - - BOOLEAN - INTEGER - OCTET STRING - NULL - REAL - ENUMERATED - SEQUENCE - SET - CHOICE - OF - VisibleString - StringStore - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/asp.xml ktexteditor-5.31.0/src/syntax/data/asp.xml --- ktexteditor-5.28.0/src/syntax/data/asp.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/asp.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,393 +0,0 @@ - - - - - - select - case - end select - - if - then - else - elseif - end if - - - while - do - until - loop - wend - - for - each - to - in - next - - exit - continue - - - dim - redim - preserve - - const - erase - nothing - set - - new - me - - - function - sub - call - - class - private - public - with - - randomize - - open - close - movenext - execute - eof - - not - true - false - or - and - xor - - - response - write - redirect - end - - request - form - querystring - servervariables - cookies - - session - - server - createobject - - abs - array - asc - atn - cbool - cbyte - ccur - cdate - cdbl - chr - cint - clng - cos - csng - cstr - date - dateadd - - DateDiff - DatePart - DateSerial - DateValue - Date - Day - Exp - Filter - Fix - FormatCurrency - FormatDateTime - FormatNumber - FormatPercent - - GetObject - Hex - Hour - InputBox - InStr - InStrRev - Int - IsArray - IsDate - IsEmpty - IsNull - IsNumeric - IsObject - Join - LBound - LCase - - Left - Len - LoadPicture - Log - LTrim - Mid - Minute - Month - MonthName - MsgBox - Now - Oct - Replace - - RGB - Right - Rnd - Round - RTrim - - ScriptEngine - ScriptEngineBuildVersion - ScriptEngineMajorVersion - ScriptEngineMinorVersion - Second - Sgn - Sin - Space - Split - Sqr - StrComp - StrReverse - String - Tan - Time - Timer - TimeSerial - TimeValue - Trim - TypeName - UBound - UCase - VarType - Weekday - WeekdayName - Year - - Add - AddFolders - BuildPath - Clear - Close - Copy - CopyFile - CopyFolder - CreateFolder - CreateTextFile - Delete - DeleteFile - DeleteFolder - DriveExists - Exists - FileExists - FolderExists - GetAbsolutePathName - GetBaseName - GetDrive - GetDriveName - GetExtensionName - GetFile - GetFileName - GetFolder - GetParentFolderName - - GetSpecialFolder - GetTempName - Items - item - Keys - Move - MoveFile - MoveFolder - OpenAsTextStream - OpenTextFile - Raise - Read - ReadAll - ReadLine - Remove - RemoveAll - Skip - SkipLine - Write - WriteBlankLines - WriteLine - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/asterisk.xml ktexteditor-5.31.0/src/syntax/data/asterisk.xml --- ktexteditor-5.28.0/src/syntax/data/asterisk.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/asterisk.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ - - - - - - - - AGI - Answer - Dial - Hangup - GoTo - GoToIf - GoToIfTime - NoOp - PlayBack - Read - SayDigits - SayNumber - Set - SetCallerPres - System - Wait - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/awk.xml ktexteditor-5.31.0/src/syntax/data/awk.xml --- ktexteditor-5.28.0/src/syntax/data/awk.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/awk.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,209 +0,0 @@ - - - - - - - if - else - while - do - for - in - continue - break - print - printf - getline - function - return - next - exit - - - ARGC - ARGV - CONVFMT - ENVIRON - FILENAME - FNR - FS - NF - NR - OFMT - OFS - ORS - RS - RSTART - RLENGTH - SUBSEP - - - gsub - gensub - index - length - match - split - sprintf - sub - substr - tolower - toupper - atan2 - cos - exp - int - log - rand - sin - sqrt - srand - close - fflush - system - - - BEGIN - END - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/bash.xml ktexteditor-5.31.0/src/syntax/data/bash.xml --- ktexteditor-5.28.0/src/syntax/data/bash.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/bash.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,964 +0,0 @@ - - - - - - - -]> - - - - - - - else - for - function - in - select - until - while - elif - then - set - - - - : - source - alias - bg - bind - break - builtin - cd - caller - command - compgen - complete - continue - dirs - disown - echo - enable - eval - exec - exit - fc - fg - getopts - hash - help - history - jobs - kill - let - logout - popd - printf - pushd - pwd - return - set - shift - shopt - suspend - test - time - times - trap - type - ulimit - umask - unalias - wait - - - - export - unset - declare - typeset - local - read - readonly - - - - - arch - awk - bash - bunzip2 - bzcat - bzcmp - bzdiff - bzegrep - bzfgrep - bzgrep - bzip2 - bzip2recover - bzless - bzmore - cat - chattr - chgrp - chmod - chown - chvt - cp - date - dd - deallocvt - df - dir - dircolors - dmesg - dnsdomainname - domainname - du - dumpkeys - echo - ed - egrep - false - fgconsole - fgrep - fuser - gawk - getkeycodes - gocr - grep - groff - groups - gunzip - gzexe - gzip - hostname - igawk - install - kbd_mode - kbdrate - killall - last - lastb - link - ln - loadkeys - loadunimap - login - ls - lsattr - lsmod - lsmod.old - lzcat - lzcmp - lzdiff - lzegrep - lzfgrep - lzgrep - lzless - lzcat - lzma - lzmainfo - lzmore - mapscrn - mesg - mkdir - mkfifo - mknod - mktemp - more - mount - mv - nano - netstat - nisdomainname - nroff - openvt - pgawk - pidof - ping - ps - pstree - pwd - rbash - readlink - red - resizecons - rm - rmdir - run-parts - sash - sed - setfont - setkeycodes - setleds - setmetamode - setserial - sh - showkey - shred - sleep - ssed - stat - stty - su - sync - tar - tempfile - touch - troff - true - umount - uname - unicode_start - unicode_stop - unlink - unlzma - unxz - utmpdump - uuidgen - vdir - wall - wc - xz - xzcat - ypdomainname - zcat - zcmp - zdiff - zegrep - zfgrep - zforce - zgrep - zless - zmore - znew - zsh - - - aclocal - aconnect - aplay - apm - apmsleep - apropos - ar - arecord - as - as86 - autoconf - autoheader - automake - awk - basename - bc - bison - c++ - cal - cat - cc - cdda2wav - cdparanoia - cdrdao - cd-read - cdrecord - chfn - chgrp - chmod - chown - chroot - chsh - clear - cmp - co - col - comm - cp - cpio - cpp - cut - dc - dd - df - diff - diff3 - dir - dircolors - directomatic - dirname - du - env - expr - fbset - file - find - flex - flex++ - fmt - free - ftp - funzip - fuser - g++ - gawk - gc - gcc - clang - valgrind - xdg-open - cmake - qmake - svn - git - rsync - gdb - getent - getopt - gettext - gettextize - gimp - gimp-remote - gimptool - gmake - gs - head - hexdump - id - install - join - kill - killall - ld - ld86 - ldd - less - lex - ln - locate - lockfile - logname - lp - lpr - ls - lynx - m4 - make - man - mkdir - mknod - msgfmt - mv - namei - nasm - nawk - nice - nl - nm - nm86 - nmap - nohup - nop - od - passwd - patch - pcregrep - pcretest - perl - perror - pidof - pr - printf - procmail - prune - ps2ascii - ps2epsi - ps2frag - ps2pdf - ps2ps - psbook - psmerge - psnup - psresize - psselect - pstops - rcs - rev - rm - scp - sed - seq - setterm - shred - size - size86 - skill - slogin - snice - sort - sox - split - ssh - ssh-add - ssh-agent - ssh-keygen - ssh-keyscan - stat - strings - strip - sudo - suidperl - sum - tac - tail - tee - test - tr - uniq - unlink - unzip - updatedb - updmap - uptime - users - vmstat - w - wc - wget - whatis - whereis - which - who - whoami - write - xargs - yacc - yes - zip - zsoelim - - - dcop - kdialog - kfile - xhost - xmodmap - xset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/bibtex.xml ktexteditor-5.31.0/src/syntax/data/bibtex.xml --- ktexteditor-5.28.0/src/syntax/data/bibtex.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/bibtex.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,108 +0,0 @@ - - - - - - ]> - - - - @article - @book - @booklet - @conference - @collection - @electronic - @inbook - @incollection - @inproceedings - @manual - @mastersthesis - @misc - @online - @patent - @periodical - @proceedings - @report - @phdthesis - @set - @thesis - @techreport - @unpublished - @www - @person - @company - @place - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/bitbake.xml ktexteditor-5.31.0/src/syntax/data/bitbake.xml --- ktexteditor-5.28.0/src/syntax/data/bitbake.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/bitbake.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,185 +0,0 @@ - - - - - - - - - - after - before - python - branch - bareclone - protocol - name - if - fi - then - rm - ln - cp - for - done - cat - - - - do_build - do_compile - do_compile_append - do_compile_prepend - do_compile_ptest_base - do_configure - do_configure_append - do_configure_prepend - do_configure_ptest_base - do_deploy - do_fetch - do_install - do_install_append - do_install_prepend - do_install_ptest_base - do_package - do_package_qa - do_package_write_deb - do_package_write_ipk - do_package_write_rpm - do_package_write_tar - do_packagedata - do_patch - do_populate_lic - do_populate_sdk - do_populate_sysroot - do_rm_work - do_rm_work_all - do_unpack - do_checkuri - do_checkuriall - do_clean - do_cleanall - do_cleansstate - do_devshell - do_fetchall - do_listtasks - do_package_index - do_bootimg - do_bundle_initramfs - do_rootfs - do_testimage - do_testimage_auto - do_vmdkimg - do_compile_kernelmodules - do_diffconfig - do_kernel_checkout - do_kernel_configcheck - do_kernel_configme - do_kernel_link_vmlinux - do_menuconfig - do_savedefconfig - do_sizecheck - do_strip - do_uboot_mkimage - do_validate_branches - do_generate_qt_config_file - do_spdx - oe_runmake - export - install - kernel_configme - validate_branches - - - - - inherit - include - require - addtask - deltask - addhandler - EXPORT_FUNCTIONS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/bmethod.xml ktexteditor-5.31.0/src/syntax/data/bmethod.xml --- ktexteditor-5.28.0/src/syntax/data/bmethod.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/bmethod.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,96 +0,0 @@ - - - - - - - MACHINE - SETS - CONSTANTS - PROPERTIES - PROMOTES - INCLUDES - USES - SEES - VARIABLES - INVARIANT - INITIALISATION - REFINEMENT - REFINES - CONSTRAINTS - IMPLEMENTATION - IMPORTS - - - OPERATIONS - - - END - - - THEN - WHEN - ELSE - OR - WHERE - INVARIANT - DO - VARIANT - IN - ELSIF - - - PRE - IF - ANY - LET - CHOICE - CASE - SELECT - VAR - WHILE - BEGIN - - - END - - - NAT - NAT1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/boo.xml ktexteditor-5.31.0/src/syntax/data/boo.xml --- ktexteditor-5.28.0/src/syntax/data/boo.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/boo.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,314 +0,0 @@ - - - - - - - - import - from - as - namespace - - - - and - assert - in - is - not - or - - - - bool - byte - sbyte - double - decimal - single - short - ushort - int - char - uint - long - ulong - object - duck - string - regex - date - timespan - - - - abstract - virtual - override - static - final - transient - macro - - protected - private - public - internal - partial - - class - struct - interface - enum - callable - of - - def - constructor - destructor - - do - get - set - event - - return - yield - - - - true - false - - - - null - self - super - - - - and - break - cast - continue - elif - else - except - ensure - for - given - goto - if - in - is - isa - not - or - otherwise - pass - raise - try - unless - when - while - ref - - - - assert - __eval__ - __switch__ - enumerate - filter - len - typeof - map - max - min - property - using - getter - required - lock - range - zip - checked - unchecked - rawArrayIndexing - normalArrayIndexing - print - array - matrix - yieldAll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/carto-css.xml ktexteditor-5.31.0/src/syntax/data/carto-css.xml --- ktexteditor-5.28.0/src/syntax/data/carto-css.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/carto-css.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,405 +0,0 @@ - - - - - - - - - - - true - false - - - - AliceBlue - AntiqueWhite - Aqua - Aquamarine - Azure - Beige - Bisque - Black - BlanchedAlmond - Blue - BlueViolet - Brown - BurlyWood - CadetBlue - Chartreuse - Chocolate - Coral - CornflowerBlue - Cornsilk - Crimson - Cyan - DarkBlue - DarkCyan - DarkGoldenRod - DarkGray - DarkGreen - DarkKhaki - DarkMagenta - DarkOliveGreen - DarkOrange - DarkOrchid - DarkRed - DarkSalmon - DarkSeaGreen - DarkSlateBlue - DarkSlateGray - DarkTurquoise - DarkViolet - DeepPink - DeepSkyBlue - DimGray - DodgerBlue - FireBrick - FloralWhite - ForestGreen - Fuchsia - Gainsboro - GhostWhite - Gold - GoldenRod - Gray - Green - GreenYellow - HoneyDew - HotPink - IndianRed - Indigo - Ivory - Khaki - Lavender - LavenderBlush - LawnGreen - LemonChiffon - LightBlue - LightCoral - LightCyan - LightGoldenRodYellow - LightGray - LightGreen - LightPink - LightSalmon - LightSeaGreen - LightSkyBlue - LightSlateGray - LightSteelBlue - LightYellow - Lime - LimeGreen - Linen - Magenta - Maroon - MediumAquaMarine - MediumBlue - MediumOrchid - MediumPurple - MediumSeaGreen - MediumSlateBlue - MediumSpringGreen - MediumTurquoise - MediumVioletRed - MidnightBlue - MintCream - MistyRose - Moccasin - NavajoWhite - Navy - OldLace - Olive - OliveDrab - Orange - OrangeRed - Orchid - PaleGoldenRod - PaleGreen - PaleTurquoise - PaleVioletRed - PapayaWhip - PeachPuff - Peru - Pink - Plum - PowderBlue - Purple - Red - RosyBrown - RoyalBlue - SaddleBrown - Salmon - SandyBrown - SeaGreen - SeaShell - Sienna - Silver - SkyBlue - SlateBlue - SlateGray - Snow - SpringGreen - SteelBlue - Tan - Teal - Thistle - Tomato - Turquoise - Violet - Wheat - White - WhiteSmoke - Yellow - YellowGreen - - - - - - line-clip - line-pattern-clip - marker-allow-overlap - marker-clip - marker-ignore-placement - point-allow-overlap - point-ignore-placement - polygon-clip - polygon-pattern-clip - shield-allow-overlap - shield-avoid-edges - shield-clip - shield-unlock-image - shield-wrap-before - text-allow-overlap - text-avoid-edges - text-clip - - - building-fill - line-color - background-color - marker-fill - marker-line-color - polygon-fill - raster-colorizer-default-color - shield-fill - shield-halo-fill - text-fill - text-halo-fill - - - building-height - marker-height - marker-width - shield-name - text-name - text-orientation - - - opacity - building-fill-opacity - line-gamma - line-miterlimit - line-offset - line-opacity - line-simplify - line-smooth - line-width - line-pattern-offset - line-pattern-simplify - line-pattern-smooth - background-image-opacity - buffer-size - marker-fill-opacity - marker-line-opacity - marker-line-width - marker-max-error - marker-opacity - marker-smooth - marker-spacing - point-opacity - polygon-gamma - polygon-opacity - polygon-simplify - polygon-smooth - polygon-pattern-gamma - polygon-pattern-opacity - polygon-pattern-simplify - polygon-pattern-smooth - raster-colorizer-epsilon - raster-filter-factor - raster-opacity - shield-dx - shield-dy - shield-halo-radius - shield-min-distance - shield-min-padding - shield-opacity - shield-size - shield-spacing - shield-text-dx - shield-text-dy - shield-text-opacity - text-character-spacing - text-dx - text-dy - text-halo-radius - text-max-char-angle-delta - text-min-distance - text-min-padding - text-min-path-length - text-opacity - text-size - - - direct-image-filters - image-filters - line-geometry-transform - line-pattern-geometry-transform - marker-geometry-transform - marker-transform - point-transform - polygon-geometry-transform - polygon-pattern-geometry-transform - shield-transform - - - comp-op - line-cap - line-comp-op - line-gamma-method - line-join - line-rasterizer - line-simplify-algorithm - line-pattern-comp-op - line-pattern-simplify-algorithm - background-image-comp-op - marker-comp-op - marker-multi-policy - marker-placement - marker-type - point-comp-op - point-placement - polygon-comp-op - polygon-gamma-method - polygon-simplify-algorithm - polygon-pattern-alignment - polygon-pattern-comp-op - polygon-pattern-simplify-algorithm - raster-colorizer-default-mode - raster-comp-op - raster-scaling - shield-comp-op - shield-horizontal-alignment - shield-justify-alignment - shield-placement - shield-placement-type - shield-text-transform - shield-vertical-alignment - text-align - text-comp-op - text-halo-rasterizer - text-horizontal-alignment - text-placement - text-placement-type - text-transform - text-vertical-alignment - - - line-dash-offset - line-dasharray - - - debug-mode - base - srs - shield-face-name - shield-placements - shield-wrap-character - text-face-name - text-placements - text-wrap-character - - - raster-colorizer-stops - - - raster-mesh-size - shield-character-spacing - shield-line-spacing - shield-wrap-width - text-label-position-tolerance - text-line-spacing - text-ratio - text-spacing - text-wrap-width - - - line-pattern-file - background-image - font-directory - marker-file - point-file - polygon-pattern-file - shield-file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ccss.xml ktexteditor-5.31.0/src/syntax/data/ccss.xml --- ktexteditor-5.28.0/src/syntax/data/ccss.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ccss.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,658 +0,0 @@ - - - - -]> - - - - - - - azimuth - background - background-attachment - background-color - background-image - background-position - background-repeat - border - border-bottom - border-bottom-color - border-bottom-style - border-bottom-width - border-collapse - border-color - border-left - border-left-color - border-left-style - border-left-width - border-right - border-right-color - border-right-style - border-right-width - border-spacing - border-style - border-top - border-top-color - border-top-style - border-top-width - border-width - bottom - caption-side - clear - clip - color - content - counter-increment - counter-reset - cue - cue-after - cue-before - cursor - direction - display - elevation - empty-cells - float - font - font-family - font-size - font-size-adjust - font-stretch - font-style - font-variant - font-weight - height - left - letter-spacing - line-height - list-style - list-style-image - list-style-keyword - list-style-position - list-style-type - margin - margin-bottom - margin-left - margin-right - margin-top - marker-offset - max-height - max-width - min-height - min-width - orphans - outline - outline-color - outline-style - outline-width - overflow - padding - padding-bottom - padding-left - padding-right - padding-top - page - page-break-after - page-break-before - page-break-inside - pause - pause-after - pause-before - pitch - pitch-range - play-during - position - quotes - richness - right - size - speak - speak-header - speak-numeral - speak-punctuation - speech-rate - stress - table-layout - text-align - text-decoration - text-decoration-color - text-indent - text-shadow - text-transform - top - unicode-bidi - vertical-align - visibility - voice-family - volume - white-space - widows - width - word-spacing - z-index - - - border-bottom-image - border-bottom-left-image - border-bottom-left-radius - border-bottom-right-image - border-bottom-right-radius - border-corner-image - border-image - border-left-image - border-radius - border-right-image - border-top-image - border-top-left-image - border-top-left-radius - border-top-right-image - border-top-right-radius - box-align - box-shadow - box-sizing - box-orient - box-pack - opacity - outline-offset - overflow-x - overflow-y - text-overflow - text-shadow - - - -moz-border-bottom-colors - -moz-border-left-colors - -moz-border-radius - -moz-border-right-colors - -moz-border-top-colors - -moz-box-flex - - - -o-background-size - -o-text-overflow - - - -khtml-background-size - konq_bgpos_x - konq_bgpos_y - - - -webkit-background-size - -webkit-border-radius - - - filter - -ms-filter - - - font-family - font-size - font-stretch - font-style - font-variant - font-weight - unicode-range - units-per-em - src - panose-1 - stemv - stemh - slope - cap-height - x-height - ascent - descent - widths - bbox - definition-src - baseline - centerline - mathline - topline - - - - inherit - none - hidden - dotted - dashed - solid - double - groove - ridge - inset - outset - xx-small - x-small - small - medium - large - x-large - xx-large - smaller - larger - italic - oblique - small-caps - normal - bold - bolder - lighter - light - 100 - 200 - 300 - 400 - 500 - 600 - 700 - 800 - 900 - transparent - repeat - repeat-x - repeat-y - no-repeat - baseline - sub - super - top - text-top - middle - bottom - text-bottom - left - right - center - justify - konq-center - disc - circle - square - box - decimal - decimal-leading-zero - lower-roman - upper-roman - lower-greek - lower-alpha - lower-latin - upper-alpha - upper-latin - hebrew - armenian - georgian - cjk-ideographic - hiragana - katakana - hiragana-iroha - katakana-iroha - inline - inline-block - block - list-item - run-in - compact - marker - table - inline-table - table-row-group - table-header-group - table-footer-group - table-row - table-column-group - table-column - table-cell - table-caption - auto - crosshair - default - pointer - move - e-resize - ne-resize - nw-resize - n-resize - se-resize - sw-resize - s-resize - w-resize - text - wait - help - above - absolute - always - avoid - below - bidi-override - blink - both - capitalize - caption - clip - close-quote - collapse - condensed - crop - cross - ellipsis - ellipsis-word - embed - expanded - extra-condensed - extra-expanded - fixed - hand - hide - higher - icon - inside - invert - landscape - level - line-through - loud - lower - lowercase - ltr - menu - message-box - mix - narrower - no-close-quote - no-open-quote - nowrap - open-quote - outside - overline - portrait - pre - pre-line - pre-wrap - relative - rtl - scroll - semi-condensed - semi-expanded - separate - show - small-caption - static - static-position - status-bar - thick - thin - ultra-condensed - ultra-expanded - underline - uppercase - visible - wider - break - serif - sans-serif - cursive - fantasy - monospace - border-box - content-box - horizontal - - - -moz-box - - - linear - radial - - - - - - aqua - black - blue - fuchsia - gray - green - lime - maroon - navy - olive - purple - red - silver - teal - white - yellow - ActiveBorder - ActiveCaption - AppWorkspace - Background - ButtonFace - ButtonHighlight - ButtonShadow - ButtonText - CaptionText - GrayText - Highlight - HighlightText - InactiveBorder - InactiveCaption - InactiveCaptionText - InfoBackground - InfoText - Menu - MenuText - Scrollbar - ThreeDDarkShadow - ThreeDFace - ThreeDHighlight - ThreeDLightShadow - ThreeDShadow - Window - WindowFrame - WindowText - - - - url - attr - rect - rgb - rgba - hsl - hsla - counter - counters - - - local - format - - - -webkit-gradient - color-stop - - - -moz-linear-gradient - -moz-radial-gradient - - - expression - progid:DXImageTransform.Microsoft.gradient - - - - - all - aural - braille - embossed - handheld - print - projection - screen - tty - tv - - - - hover - link - visited - active - focus - first-child - last-child - only-child - first-of-type - last-of-type - only-of-type - first-letter - first-line - before - after - selection - root - empty - target - enabled - disabled - checked - indeterminate - nth-child - nth-last-child - nth-of-type - nth-last-of-type - not - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/cgis.xml ktexteditor-5.31.0/src/syntax/data/cgis.xml --- ktexteditor-5.28.0/src/syntax/data/cgis.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cgis.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,146 +0,0 @@ - - - - - - 1D - 2D - break - continue - do - else - extern - for - forall - foreach - function - if - in - inout - internal - out - reduction - return - struct - typedef - while - - - bool - bool2 - bool3 - bool4 - int - int2 - int3 - int4 - half - half2 - half3 - half4 - float - float2 - float3 - float4 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/cg.xml ktexteditor-5.31.0/src/syntax/data/cg.xml --- ktexteditor-5.28.0/src/syntax/data/cg.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cg.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,288 +0,0 @@ - - - - - - - - - POSITION - COLOR - COLOR0 - COLOR1 - COLOR2 - COLOR3 - TEXCOORD0 - TEXCOORD1 - TEXCOORD2 - TEXCOORD3 - TEXCOORD4 - TEXCOORD5 - TEXCOORD6 - TEXCOORD7 - TEXCOORD8 - TEXCOORD9 - TEXCOORD10 - TEXCOORD11 - TEXCOORD12 - TEXCOORD13 - TEXCOORD14 - TEXCOORD15 - TEXUNIT0 - TEXUNIT1 - TEXUNIT2 - TEXUNIT3 - TEXUNIT4 - TEXUNIT5 - TEXUNIT6 - TEXUNIT7 - TEXUNIT8 - TEXUNIT9 - TEXUNIT10 - TEXUNIT11 - TEXUNIT12 - TEXUNIT13 - TEXUNIT14 - TEXUNIT15 - WPOS - DEPTH - BLENDWEIGHT - NORMAL - TESSFACTOR - FOGCOORD - PSIZE - BLENDINDICES - TANGENT - BINORMAL - FOG - BCOL0 - BCOL1 - FACE - - - do - while - if - else - for - struct - return - static - typedef - discard - true - false - - - bool - int - fixed - half - float - - void - sampler - sampler1D - sampler2D - sampler3D - samplerCUBE - samplerRECT - - packed - const - uniform - in - out - inout - - - FIXME - TODO - BUG - - - abs - acos - all - any - asin - atan - atan2 - ceil - clamp - cos - cosh - cross - degrees - determinant - dot - exp - exp2 - floor - fmod - frac - frexp - isfinite - isinf - isnan - ldexp - lerp - lit - log - log2 - log10 - max - min - modf - mul - noise - pow - radians - round - rsqrt - saturate - sign - sin - sincos - sinh - smoothstep - step - sqrt - tan - tanh - transpose - distance - faceforward - length - normalize - reflect - refract - tex1D - tex1Dproj - tex2D - tex2Dproj - texRECT - texRECTproj - tex3D - tex3Dproj - texCUBE - texCUBEproj - ddx - ddy - debug - pack_2half - unpack_2half - pack_2ushort - unpack_2ushort - pack_4byte - unpack_4byte - pack_4ubyte - unpack_4ubyte - - - fragout - fragout_float - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/changelog.xml ktexteditor-5.31.0/src/syntax/data/changelog.xml --- ktexteditor-5.28.0/src/syntax/data/changelog.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/changelog.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/chicken.xml ktexteditor-5.31.0/src/syntax/data/chicken.xml --- ktexteditor-5.28.0/src/syntax/data/chicken.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/chicken.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,437 +0,0 @@ - - - - - - - <= - < - = - => - >= - > - - - / - *,* - *) - + - - - #\nul - #\soh - #\stx - #\etx - #\eot - #\enq - #\ack - #\bel - #\bs - #\ht - #\nl - #\vt - #\np - #\cr - #\so - #\si - #\dle - #\dc1 - #\dc2 - #\dc3 - #\dc4 - #\nak - #\syn - #\etb - #\can - #\em - #\sub - #\esc - #\fs - #\gs - #\rs - #\us - #\space - #\sp - #\newline - #\nl - #\tab - #\ht - #\backspace - #\bs - #\return - #\cr - #\page - #\np - #\null - #\nul - - - define - define* - define-accessor - define-class - defined? - define-generic - define-macro - define-method - define-module - define-private - define-public - define*-public - define-reader-ctor - define-syntax - define-syntax-macro - defmacro - defmacro* - defmacro*-public - - - abs - acos - and - angle - append - applymap - asin - assoc - assq - assv - atan - begin - boolean? - break - caaaar - caaadr - caaar - caadar - caaddr - caadr - caar - cadaar - cadadr - cadar - caddar - cadddr - caddr - cadr - call/cc - call-with-current-continuation - call-with-input-file - call-with-output-file - call-with-values - car - case - catch - cdaaar - cdaadr - cdaar - cdadar - cdaddr - cdadr - cdar - cddaar - cddadr - cddar - cdddar - cddddr - cdddr - cddr - cdr - ceiling - char-alphabetic? - char-ci>=? - char-ci>? - char-ci=? - char-ci<=? - char-downcase - char->integer - char>=? - char>? - char=? - char? - char-lower-case? - char<?c - char<=? - char-numeric? - char-ready? - char-upcase - char-upper-case? - char-whitespace? - close-input-port - close-output-port - complex? - cond - cons - continue - cos - current-input-port - current-output-port - denominator - display - do - dynamic-wind - else - eof-object? - eq? - equal? - eqv? - eval - even? - exact->inexact - exact? - exp - expt - floor - force - for-each - gcd - har-ci<? - if - imag-part - inexact->exact - inexact? - input-port? - integer->char - integer? - interaction-environment - lambda - lcm - length - let - let* - letrec - letrec-syntax - let-syntax - list->string - list - list? - list-ref - list-tail - load - log - magnitude - make-polar - make-rectangular - make-string - make-vector - max - member - memq - memv - min - modulo - negative? - newline - not - null-environment - null? - number? - number->string - numerator - odd? - open-input-file - open-output-file - or - output-port? - pair? - peek-char - port? - positive? - procedure? - quotient - rational? - rationalize - read-char - read - real? - real-part - remainder - reverse - round - scheme-report-environment - set-car! - set-cdr! - sin - sqrt - string-append - string-ci>=? - string-ci>? - string-ci=? - string-ci<=? - string-ci<? - string-copy - string-fill! - string>=? - string>? - string->list - string->number - string->symbol - string=? - string - string? - string-length - string<=? - string<? - string-ref - string-set! - substring - symbol->string - symbol? - syntax-rules - tan - transcript-off - transcript-on - truncate - values - vector-fill! - vector->listlist->vector - vector - vector? - vector-length - vector-ref - vector-set! - while - with-input-from-file - with-output-to-file - write-char - write - zero? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/cisco.xml ktexteditor-5.31.0/src/syntax/data/cisco.xml --- ktexteditor-5.28.0/src/syntax/data/cisco.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cisco.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,312 +0,0 @@ - - - - - - aaa - access-list - address - alias - arp - async-bootp - banner - boot - bridge - buffers - busy-message - call-history-mib - cdp - chat-script - class-map - clock - cns - config-register - controller - crypto - default - default-value - dialer - dialer-list - dnsix-dmdp - dnsix-nat - downward-compatible-config - enable - end - exception - exit - file - frame-relay - help - hostname - interface - ip - isdn - isdn-mib - kerberos - key - line - logging - login-string - map-class - map-list - memory-size - menu - modemcap - multilink - netbios - no - ntp - partition - policy-map - priority-list - privilege - process-max-time - prompt - queue-list - resume-string - rlogin - rmon - route-map - router - rtr - scheduler - service - snmp-server - sntp - stackmaker - state-machine - subscriber-policy - tacacs-server - template - terminal-queue - tftp-server - time-range - username - virtual-profile - virtual-template - vpdn - vpdn-group - x25 - x29 - - - accounting - accounting-list - accounting-threshold - accounting-transits - address-pool - as-path - audit - auth-proxy - authentication - authorization - bgp-community - bootp - cef - classless - community-list - default-gateway - default-network - dhcp - dhcp-server - domain-list - domain-lookup - domain-name - dvmrp - exec-callback - extcommunity-list - finger - flow-aggregation - flow-cache - flow-export - forward-protocol - ftp - gratuitous-arps - host - host-routing - hp-host - http - icmp - inspect - local - mrm - mroute - msdp - multicast - multicast-routing - name-server - nat - new-model - ospf - password - password-encryption - pgm - pim - port-map - prefix-list - radius - rcmd - reflexive-list - route - routing - rsvp - rtcp - sap - sdr - security - source-route - subnet-zero - tacacs - tcp - tcp-small-servers - telnet - tftp - timestamps - udp-small-servers - vrf - wccp - - - accounting - accounting-list - accounting-threshold - accounting-transits - address-pool - as-path - audit - auth-proxy - authentication - authorization - bgp-community - bootp - cef - classless - community-list - default-gateway - default-network - dhcp - dhcp-server - domain-list - domain-lookup - domain-name - dvmrp - exec-callback - extcommunity-list - finger - flow-aggregation - flow-cache - flow-export - forward-protocol - ftp - gratuitous-arps - host - host-routing - hp-host - http - icmp - inspect - local - mrm - mroute - msdp - multicast - multicast-routing - name-server - nat - new-model - ospf - password - password-encryption - pgm - pim - port-map - prefix-list - radius - rcmd - reflexive-list - route - routing - rsvp - rtcp - sap - sdr - security - source-route - subnet-zero - tacacs - tcp - tcp-small-servers - telnet - tftp - timestamps - udp-small-servers - vrf - wccp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/clipper.xml ktexteditor-5.31.0/src/syntax/data/clipper.xml --- ktexteditor-5.28.0/src/syntax/data/clipper.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/clipper.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,500 +0,0 @@ - - - - - - - - .and. - announce - begin - case - command - define - do - elseif - else - endcase - enddo - endif - error - exit - field - .f. - for - function - ifdef - if - include - init - inndef - local - memvar - next - nil - .not. - .or. - other - parameters - private - procedure - public - request - return - sequence - static - stdout - .t. - traslate - undef - while - xcommand - xtranslate - - - - - accept - all - alternate - append - ascending - average - bell - blank - box - century - clear - close - coclor - color - commit - confirm - console - continue - copy - count - create - cursor - date - decimals - default - deleted - delete - delimiters - descending - device - display - do - eject - epoch - erase - escape - eval - every - exact - extended - file - filter - fixed - form - from - get - gets - go - goto - index - input - intensity - ? - ?? - @ - join - keyboard - key - label - list - locate - margin - memory - menu - message - new - on - order - pack - path - pict - printer - prompt - quit - range - read - recall - record - reindex - relation - release - rename - replace - report - rest - restore - run - save - say - scoreboard - seek - select - set - skip - softseek - sort - structure - sum - tag - to - total - typeahead - type - unique - unlock - update - use - valid - wait - when - with - wrap - zap - - - - - aadd - abs - achoice - aclone - acopy - adel - aeval - afill - ains - alert - alias - alltrim - altd - array - ascan - asize - asort - atail - at - bin2i - bin2l - bin2w - bof - break - browse - cdowchr - chr - cmonth - col - colorselect - ctod - curdir - date - day - dbappend - dbclearall - dbclearfilter - dbclearindex - dbclearrelation - dbcloseall - dbclosearea - dbcommitall - dbcommit - dbcreateindex - dbcreate - dbdelete - dbedit - dbeval - dbfilter - dbf - dbgobottom - dbgoto - dbgotop - dbrecall - dbreindex - dbrelation - dbrlock - dbrlocklist - dbrselect - dbrunlock - dbseek - dbselectarea - dbsetfilter - dbsetindex - dbsetorder - dbsetrelation - dbskip - dbstruct - dbunlockall - dbunlock - dbusearea - deleted - descend - devout - devpos - directory - dispbegin - dispbox - dispcount - dispend - dispout - dispspace - doserror - dow - dtoc - dtos - empty - eof - errorblock - errorinhandler - errorlevel - eval - exp - fclose - fcount - fcreate - ferase - ferror - fieldblock - fieldget - field - fieldname - fieldpos - fieldput - fieldwblock - file - flock - fopen - found - fread - freadstr - frename - fseek - fwrite - getactive - getenv - hardcr - header - i2bin - iif - indexext - indexkey - indexord - inkey - int - isalpha - iscolor - isdigit - islower - isprinter - isupper - l2bin - lastkey - lastrec - left - len - lock - log - lower - ltrim - lupdate - maxcol - max - maxrow - memoedit - memoline - memoread - memory - memotran - memowrit - memvarblock - min - mlcount - mlctopos - mlpos - mod - month - mpostolc - neterr - netname - nextkey - nosnow - ordbagext - ordbagname - ordcreate - orddestroy - ordfor - ordkey - ordlistadd - ordlistclear - ordlistrebuild - ordname - ordnumber - ordsetfocus - os - outerr - outstd - padc - padl - padr - pcol - pcount - proclineprocname - prow - qout - qqout - rat - rddlist - rddname - rddsetdefault - readexit - readinsert - readmodal - readvar - reccount - recno - recsize - replicate - restscreen - right - rlock - round - row - rtrim - savesreen - scroll - seconds - select - setblink - setcancel - setcolor - setcursor - setkey - setmode - setpos - setprc - soundex - space - sqrt - str - strtran - stuff - substr - time - tone - transform - trim - updated - upper - used - val - valtype - version - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/clojure.xml ktexteditor-5.31.0/src/syntax/data/clojure.xml --- ktexteditor-5.28.0/src/syntax/data/clojure.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/clojure.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,797 +0,0 @@ - - - - - - - def - def- - defalias - defhinted - definline - defmacro - defmacro- - defmethod - defmulti - defn - defn- - defnk - defn-memo - defonce - defonce- - defprotocol - defrecord - defstruct - defstruct- - deftest - deftest- - deftype - defunbound - defunbound- - defvar - defvar- - - - < - <= - = - == - > - >= - - - -> - ->> - / - . - .. - * - + - accessor - aclone - add-classpath - add-watcher - agent - agent-errors - aget - alength - alias - all-ns - alter - alter-meta! - alter-var-root - amap - ancestors - and - append-child - apply - apply-template - are - areduce - array-map - aset - aset-boolean - aset-byte - aset-char - aset-double - aset-float - aset-int - aset-long - aset-short - assert - assert-any - assert-expr - assert-predicate - assoc - assoc! - associative? - assoc-in - atom - atom? - attrs - await - await1 - await-for - bases - bean - bigdec - bigint - binding - bit-and - bit-and-not - bit-clear - bit-flip - bit-not - bit-or - bit-set - bit-shift-left - bit-shift-right - bit-test - bit-xor - boolean - boolean-array - booleans - bound-fn - bound-fn* - branch? - butlast - byte - byte-array - bytes - case - cast - catch - char - char? - char-array - char-escape-string - char-name-string - chars - children - chunk - chunk-append - chunk-buffer - chunk-cons - chunked-seq? - chunk-first - chunk-next - chunk-rest - class - class? - clear-agent-errors - clojure-version - coll? - collection-tag - comment - commute - comp - comparator - compare - compare-and-set! - compile - complement - compose-fixtures - concat - cond - condp - conj - conj! - cons - constantly - construct-proxy - contains? - content - content-handler - count - counted? - create-ns - create-struct - cycle - dec - decimal? - declare - delay - delay? - deliver - deref - derive - descendants - destructure - difference - disj - disj! - dissoc - dissoc! - distinct - distinct? - do - doall - doc - dorun - doseq - dosync - do-template - dotimes - doto - double - double-array - doubles - down - drop - drop-last - drop-while - e - edit - element - emit - emit-element - empty - empty? - end? - ensure - enumeration-seq - eval - even? - every? - extend - extenders - extend-protocol - extends? - extend-type - false? - ffirst - file-position - file-seq - filter - finally - find - find-doc - find-ns - find-var - first - float - float? - float-array - floats - flush - fn - fn? - fnext - for - force - format - function? - future - future? - future-call - future-cancel - future-cancelled? - future-done? - gen-and-load-class - gen-and-save-class - gen-class - gen-interface - gensym - get - get-child - get-child-count - get-in - get-method - get-possibly-unbound-var - get-proxy-class - get-thread-bindings - get-validator - handle - handler-case - hash - hash-map - hash-set - identical? - identity - if - if-let - ifn? - if-not - import - inc - inc-report-counter - index - init-proxy - in-ns - insert-child - insert-left - insert-right - inspect - inspect-table - inspect-tree - instance? - int - int-array - integer? - interleave - intern - interpose - intersection - into - into-array - ints - io! - is - isa? - is-leaf - iterate - iterator-seq - join - join-fixtures - juxt - key - keys - keyword - keyword? - keywordize-keys - last - lazy-cat - lazy-seq - left - leftmost - lefts - let - letfn - line-seq - list - list* - list? - list-model - list-provider - load - loaded-libs - load-file - load-reader - load-script - load-string - locking - long - long-array - longs - loop - macroexpand - macroexpand-1 - macroexpand-all - main - make-array - make-hierarchy - make-node - map - map? - mapcat - map-invert - max - max-key - memfn - memoize - merge - merge-with - meta - methods - method-sig - min - min-key - mod - name - namespace - neg? - newline - next - nfirst - nil? - nnext - node - not - not= - not-any? - not-empty - not-every? - ns - ns-aliases - ns-imports - ns-interns - ns-map - ns-name - ns-publics - ns-refers - ns-resolve - ns-unalias - ns-unmap - nth - nthnext - num - number? - odd? - or - parents - partial - partition - path - pcalls - peek - persistent! - pmap - pop - pop! - pop-thread-bindings - pos? - postwalk - postwalk-demo - postwalk-replace - pr - prefer-method - prefers - prev - prewalk - prewalk-demo - prewalk-replace - primitives-classnames - print - print-cause-trace - print-ctor - print-doc - print-dup - printf - println - println-str - print-method - print-namespace-doc - print-simple - print-special-doc - print-stack-trace - print-str - print-throwable - print-trace-element - prn - prn-str - project - promise - proxy - proxy-call-with-super - proxy-mappings - proxy-name - proxy-super - pr-str - push-thread-bindings - pvalues - quot - rand - rand-int - range - ratio? - rational? - rationalize - read - read-line - read-string - recur - reduce - ref - refer - refer-clojure - ref-history-count - re-find - ref-max-history - ref-min-history - ref-set - re-groups - reify - release-pending-sends - rem - re-matcher - re-matches - remove - remove-method - remove-ns - remove-watcher - rename - rename-keys - re-pattern - repeat - repeatedly - repl - replace - repl-caught - repl-exception - replicate - repl-prompt - repl-read - report - require - re-seq - reset! - reset-meta! - resolve - rest - resultset-seq - reverse - reversible? - right - rightmost - rights - root - rseq - rsubseq - run-all-tests - run-tests - satisfies? - second - select - select-keys - send - send-off - seq - seq? - seque - sequence - sequential? - seq-zip - set - set? - set-test - set-validator! - short - short-array - shorts - shutdown-agents - skip-if-eol - skip-whitespace - slurp - some - sort - sort-by - sorted? - sorted-map - sorted-map-by - sorted-set - sorted-set-by - special-form-anchor - special-symbol? - split-at - split-with - str - stream? - string? - stringify-keys - struct - struct-map - subs - subseq - subvec - successful? - supers - swap! - symbol - symbol? - sync - syntax-symbol-anchor - take - take-last - take-nth - take-while - test - test-all-vars - testing - testing-contexts-str - testing-vars-str - test-ns - test-var - the-ns - throw - time - to-array - to-array-2d - trampoline - transient - tree-seq - true? - try - try-expr - type - unchecked-add - unchecked-dec - unchecked-divide - unchecked-inc - unchecked-multiply - unchecked-negate - unchecked-remainder - unchecked-subtract - underive - unimport - union - unquote - unquote-splicing - up - update-in - update-proxy - use - use-fixtures - val - vals - var? - var-get - var-set - vary-meta - vec - vector - vector? - walk - when - when-first - when-let - when-not - while - with-bindings - with-bindings* - with-in-str - with-loading-context - with-local-vars - with-meta - with-open - with-out-str - with-precision - with-test - with-test-out - xml-seq - zero? - - - *1 - *2 - *3 - *agent* - *allow-unresolved-vars* - *assert* - *clojure-version* - *command-line-args* - *compile-files* - *compile-path* - *current* - *e - *err* - *file* - *flush-on-newline* - *in* - *initial-report-counters* - *load-tests* - *macro-meta* - *math-context* - *ns* - *out* - *print-dup* - *print-length* - *print-level* - *print-meta* - *print-readably* - *read-eval* - *report-counters* - *sb* - *source-path* - *stack* - *stack-trace-depth* - *state* - *testing-contexts* - *testing-vars* - *test-out* - *use-context-classloader* - *warn-on-reflection* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/cmake-gen.sh ktexteditor-5.31.0/src/syntax/data/cmake-gen.sh --- ktexteditor-5.28.0/src/syntax/data/cmake-gen.sh 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cmake-gen.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,110 +0,0 @@ -#!/bin/env bash -# Copyright 2008, 2009 Matthew Woehlke (mw_triad@users.sourceforge.net) -# Copyright 2013, Alex Turbov (i.zaufi@gmail.com) -# -# ATTENTION Since Thu Feb 26 2015 this generator is CMake 3.x only! -# Use this generator with care and merge a results with a previous cmake.xml -# to keep older CMake compatibility. -# -# NOTE CMake 3.x seem do not have any (useless) heading for --help-xxx commands. -# So, no need to strip the first line anymore. ( | sed '1d' | ) - -export LC_ALL=C - -# need cmake -CMAKE="$(type -P cmake)" -[ -x "$CMAKE" ] || exit 1 -echo "found cmake... $CMAKE" - -t=.tmp_cmake$$ - -# Get cmake version -CMAKE_VERSION="$("$CMAKE" --help | sed -n '1p')" - -count() { - wc -l $t.$1 | awk '{print $1}' -} - -# Extract before/after command list -sed -n -e '/ $t.1 -sed -e '/<\/list\s*>/ba' -e 'd' -e ':a' -e 'n;ba' cmake.xml > $t._2 -sed -n -e '/ $t.2 -sed "1,$(wc -l < $t.2)d" $t._2 | sed -e '/<\/list\s*>/ba' -e 'd' -e ':a' -e 'n;ba' > $t._3 -sed -n -e '/ $t.3 -sed "1,$(wc -l < $t.3)d" $t._3 | sed -e '/<\/list\s*>/ba' -e 'd' -e ':a' -e 'n;ba' > $t._4 -sed -n -e '/ $t.4 -sed "1,$(wc -l < $t.4)d" $t._4 | sed -e '/<\/list\s*>/ba' -e 'd' -e ':a' -e 'n;ba' > $t._5 -sed -n -e '/ $t.5 -sed "1,$(wc -l < $t.5)d" $t._5 | sed -e '/<\/context\s*>/ba' -e 'd' -e ':a' -e 'n;ba' > $t.6 - -"$CMAKE" --help-command-list | sort > $t.commands -echo "$(count commands) commands" - -extract_args() { - sed -e '/^\s\+'"$1"'(/ba' \ - -e 'd' \ - -e ':a' \ - -e '/)/{s/^.*(\(.*\)).*$/\1/p;d}' \ - -e 'N;s/\n/ /;ba' | \ - sed -e 's/[][]//g' -e 's/|\| \+/\n/g' -e 's/<[[:upper:][:digit:]_]\+>//g' -e 's/[<>]//g' | \ - sed -n '/^[[:upper:][:digit:]_]\+$/p' | \ - # NOTE Remove some false-positives: - # 0) one-letter-commands -- found from usage examples - # 1) CMP from cmake_policy will be handled individually - # 2) fix incorrect parsing of separate_arguments(): append UNIX_COMMAND - # 3) 'VAR' actually is not a part of any command! - sed -e '/^[A-Z]$/d' -e '/^CMP$/d' -e 's/\(WINDOWS_COMMAND\)/\1\nUNIX_COMMAND/' -e '/^VAR[0-9]*$/d' \ - >> $t.args -} - -while read COMMAND ; do - echo "# Getting args of '$COMMAND' command" >>$t.args - "$CMAKE" --help-command $COMMAND | extract_args $COMMAND -done < $t.commands -sed '/^#/d' $t.args | sort -u > $t.argsu -echo "$(count args) arguments, $(count argsu) unique" -"$CMAKE" --help-property-list | sed -e '/[<>]/d' | sort -u > $t.props -echo "$(count props) properties" - -# Get builtin CMake variables list -# ATTENTION CMake 3.x doesn't have "Project name" string anymore in output of this command -# ( | grep -v 'Project name' | ) -"$CMAKE" --help-variable-list > $t.all_vars -grep '^[A-Za-z_0-9]\+\s*$' $t.all_vars | sort -u > $t.vars -grep -v '^[A-Za-z_0-9]\+\s*$' $t.all_vars \ - | sed 's,,[A-Za-z_][A-Za-z_0-9]*,' \ - | sed 's,,[A-Za-z_][A-Za-z_0-9]*,' \ - | sed 's,,[A-Za-z_][A-Za-z_0-9]*,' \ - | sed 's,,[A-Za-z_][A-Za-z_0-9]*,' \ - | sed 's,,[A-Za-z_][A-Za-z_0-9]*,' \ - | sed 's,CMP,CMP[0-9]+,' \ - | sed 's,\[CMAKE_BUILD_TYPE\],[A-Za-z_][A-Za-z_0-9]*,' \ - | sort -u \ - > $t.varsrr -echo "$(count all_vars) builtin variables" - - -# Generate new .xml -{ - cat $t.1 - echo " " - sed 's!.*! & !' $t.commands - cat $t.2 - echo " " - sed 's!.*! & !' $t.argsu - cat $t.3 - echo " " - sed 's!.*! & !' $t.props - cat $t.4 - echo " " - sed 's!.*! & !' $t.vars - cat $t.5 - echo " " - sed 's!.*! !' $t.varsrr - cat $t.6 -} > cmake.xml - -rm -f $t.* -echo "Remember to update the version!" - -# kate: tab-width 4; indent-mode normal; indent-width 4; diff -Nru ktexteditor-5.28.0/src/syntax/data/CMakeLists.txt ktexteditor-5.31.0/src/syntax/data/CMakeLists.txt --- ktexteditor-5.28.0/src/syntax/data/CMakeLists.txt 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/CMakeLists.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -find_package(Perl REQUIRED) - -add_custom_target(GeneratePhpXmlFiles ALL DEPENDS - ${CMAKE_CURRENT_BINARY_DIR}/css-php.xml - ${CMAKE_CURRENT_BINARY_DIR}/html-php.xml - ${CMAKE_CURRENT_BINARY_DIR}/javascript-php.xml ) - -macro(GENERATE_PHP_XML targetFile srcFile) - add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${targetFile} - COMMAND ${PERL_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/generate-php.pl < ${CMAKE_CURRENT_SOURCE_DIR}/${srcFile} > ${CMAKE_CURRENT_BINARY_DIR}/${targetFile} - DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/generate-php.pl ${CMAKE_CURRENT_SOURCE_DIR}/${srcFile} ) -endmacro(GENERATE_PHP_XML) - -generate_php_xml(javascript-php.xml javascript.xml) -generate_php_xml(css-php.xml css.xml) -generate_php_xml(html-php.xml html.xml) - -# all hls -file(GLOB HIGHLIGHTERS "${CMAKE_CURRENT_SOURCE_DIR}/*.xml") -set(ALL_HIGHLIGHTERS - ${HIGHLIGHTERS} - ${CMAKE_CURRENT_BINARY_DIR}/html-php.xml - ${CMAKE_CURRENT_BINARY_DIR}/css-php.xml - ${CMAKE_CURRENT_BINARY_DIR}/javascript-php.xml -) - -# export all hl files as dependencies -set(ALL_HIGHLIGHTERS_DEPS - ${ALL_HIGHLIGHTERS} - PARENT_SCOPE -) - -# generate the resource file -set(INDEXFILE_IN ${CMAKE_CURRENT_BINARY_DIR}/index.qrc) -file(REMOVE ${INDEXFILE_IN}) -file(APPEND ${INDEXFILE_IN} "\n") -file(APPEND ${INDEXFILE_IN} "\n") -file(APPEND ${INDEXFILE_IN} "\n") -file(APPEND ${INDEXFILE_IN} "${CMAKE_CURRENT_SOURCE_DIR}/language.xsd\n") -file(APPEND ${INDEXFILE_IN} "${CMAKE_CURRENT_BINARY_DIR}/index.json\n") -foreach(highlighter ${ALL_HIGHLIGHTERS}) - get_filename_component(highlighter_base ${highlighter} NAME) - file(APPEND ${INDEXFILE_IN} "${highlighter}\n") -endforeach() -file(APPEND ${INDEXFILE_IN} "\n") -file(APPEND ${INDEXFILE_IN} "\n") - -# install only README -install(FILES README.md DESTINATION ${KDE_INSTALL_DATADIR}/katepart5/syntax) diff -Nru ktexteditor-5.28.0/src/syntax/data/cmake.xml ktexteditor-5.31.0/src/syntax/data/cmake.xml --- ktexteditor-5.28.0/src/syntax/data/cmake.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cmake.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1301 +0,0 @@ - - - - - - - - - - - add_compile_options - add_custom_command - add_custom_target - add_definitions - add_dependencies - add_executable - add_library - add_subdirectory - add_test - aux_source_directory - break - build_command - build_name - cmake_host_system_information - cmake_minimum_required - cmake_policy - configure_file - continue - create_test_sourcelist - ctest_build - ctest_configure - ctest_coverage - ctest_empty_binary_directory - ctest_memcheck - ctest_read_custom_files - ctest_run_script - ctest_sleep - ctest_start - ctest_submit - ctest_test - ctest_update - ctest_upload - define_property - else - elseif - enable_language - enable_testing - endforeach - endfunction - endif - endmacro - endwhile - exec_program - execute_process - export - export_library_dependencies - file - find_file - find_library - find_package - find_path - find_program - fltk_wrap_ui - foreach - function - get_cmake_property - get_directory_property - get_filename_component - get_property - get_source_file_property - get_target_property - get_test_property - if - include - include_directories - include_external_msproject - include_regular_expression - install - install_files - install_programs - install_targets - link_directories - link_libraries - list - load_cache - load_command - macro - make_directory - mark_as_advanced - math - message - option - output_required_files - project - qt_wrap_cpp - qt_wrap_ui - remove - remove_definitions - return - separate_arguments - set - set_directory_properties - set_property - set_source_files_properties - set_target_properties - set_tests_properties - site_name - source_group - string - subdir_depends - subdirs - target_compile_definitions - target_compile_features - target_compile_options - target_include_directories - target_link_libraries - target_sources - try_compile - try_run - unset - use_mangled_mesa - utility_source - variable_requires - variable_watch - while - write_file - - - - itk_wrap_tcl - vtk_make_instantiator - vtk_wrap_java - vtk_wrap_python - vtk_wrap_tcl - - - - - - AFTER - ALIAS - ALL - ALPHABET - AND - APPEND - APPENDNUMBER_ERRORS - APPEND_STRING - ARCHIVE - ARGS - ASCII - AUTHOR_WARNING - BEFORE - BRIEF_DOCS - BUILD - BUNDLE - BYPRODUCTS - CACHE - CACHED_VARIABLE - CDASH_UPLOAD - CDASH_UPLOAD_TYPE - CLEAR - CMAKE_FIND_ROOT_PATH_BOTH - CMAKE_FLAGS - CODE - COMMAND - COMMAND_NAME - COMMENT - COMPARE - COMPILE_DEFINITIONS - COMPILE_OUTPUT_VARIABLE - COMPILE_RESULT_VAR - COMPONENT - COMPONENTS - CONCAT - CONDITION - CONFIG - CONFIGS - CONFIGURATION - CONFIGURATIONS - CONFIGURE - CONTENT - COPY - COPYONLY - COPY_FILE - COPY_FILE_ERROR - CRLF - DEFINED - DEFINITION - DEPENDS - DESTINATION - DIRECTORY - DIRECTORY_PERMISSIONS - DOC - DOS - DOWNLOAD - ENV - END - EQUAL - ERROR_FILE - ERROR_QUIET - ERROR_STRIP_TRAILING_WHITESPACE - ERROR_VARIABLE - ESCAPE_QUOTES - EXACT - EXCLUDE - EXCLUDE_FROM_ALL - EXCLUDE_LABEL - EXISTS - EXPECTED_HASH - EXPECTED_MD5 - EXPORT - EXPORT_LINK_INTERFACE_LIBRARIES - EXPR - EXTRA_INCLUDE - FATAL_ERROR - FILE - FILES - FILES_MATCHING - FILE_PERMISSIONS - FIND - FLAGS - FOLLOW_SYMLINKS - FORCE - FRAMEWORK - FULL_DOCS - FUNCTION - GENERATE - GENEX_STRIP - GET - GLOB - GLOBAL - GLOB_RECURSE - GREATER - GROUP_EXECUTE - GROUP_READ - GUARD - GUID - HEX - HINTS - IMPLICIT_DEPENDS - IMPORTED - IN - INACTIVITY_TIMEOUT - INCLUDE - INCLUDES - INCLUDE_INTERNALS - INCLUDE_LABEL - INHERITED - INPUT - INPUT_FILE - INSERT - INSTALL - INTERFACE - IS_ABSOLUTE - IS_DIRECTORY - IS_NEWER_THAN - IS_SYMLINK - ITEMS - LABELS - LANGUAGES - LENGTH - LENGTH_MAXIMUM - LENGTH_MINIMUM - LESS - LF - LIBRARY - LIMIT - LIMIT_COUNT - LIMIT_INPUT - LIMIT_OUTPUT - LINK_INTERFACE_LIBRARIES - LINK_LIBRARIES - LINK_PRIVATE - LINK_PUBLIC - LISTS - LIST_DIRECTORIES - LOCK - LOG - MACOSX_BUNDLE - MAIN_DEPENDENCY - MAKE_C_IDENTIFIER - MAKE_DIRECTORY - MATCH - MATCHALL - MATCHES - MD5 - MESSAGE_NEVER - MODULE - NAME - NAMELINK_ONLY - NAMELINK_SKIP - NAMES - NAMESPACE - NAMES_PER_DIR - NEW - NEWLINE_CONSUME - NEWLINE_STYLE - NEW_PROCESS - NOT - NOTEQUAL - NO_CMAKE_BUILDS_PATH - NO_CMAKE_ENVIRONMENT_PATH - NO_CMAKE_FIND_ROOT_PATH - NO_CMAKE_PACKAGE_REGISTRY - NO_CMAKE_PATH - NO_CMAKE_SYSTEM_PACKAGE_REGISTRY - NO_CMAKE_SYSTEM_PATH - NO_DEFAULT_PATH - NO_HEX_CONVERSION - NO_MODULE - NO_POLICY_SCOPE - NO_SOURCE_PERMISSIONS - NO_SYSTEM_ENVIRONMENT_PATH - NUMBER_ERRORS - NUMBER_WARNINGS - OBJECT - OFF - OFFSET - OLD - ON - ONLY_CMAKE_FIND_ROOT_PATH - OPTIONAL - OPTIONAL_COMPONENTS - OPTIONS - OR - OUTPUT - OUTPUT_DIRECTORY - OUTPUT_FILE - OUTPUT_QUIET - OUTPUT_STRIP_TRAILING_WHITESPACE - OUTPUT_VARIABLE - OWNER_EXECUTE - OWNER_READ - OWNER_WRITE - PACKAGE - PARALLEL_LEVEL - PARENT_SCOPE - PARTS - PATHS - PATH_SUFFIXES - PATH_TO_MESA - PATTERN - PERMISSIONS - PLATFORM - POLICY - POP - POST_BUILD - PREORDER - PRE_BUILD - PRE_LINK - PRIVATE - PRIVATE_HEADER - PROCESS - PROGRAM - PROGRAMS - PROGRAM_ARGS - PROJECT_NAME - PROPERTIES - PROPERTY - PUBLIC - PUBLIC_HEADER - PUSH - QUERY - QUIET - RANDOM - RANDOM_SEED - RANGE - READ - READ_WITH_PREFIX - REGEX - REGULAR_EXPRESSION - RELATIVE - RELATIVE_PATH - RELEASE - REMOVE - REMOVE_AT - REMOVE_DUPLICATES - REMOVE_ITEM - REMOVE_RECURSE - RENAME - REPLACE - REQUIRED - REQUIRED_VARIABLE1 - REQUIRED_VARIABLE2 - RESOURCE - RESULT - RESULT_VAR - RESULT_VARIABLE - RETRY_COUNT - RETRY_DELAY - RETURN_VALUE - REVERSE - RUNTIME - RUNTIME_DIRECTORY - RUN_OUTPUT_VARIABLE - RUN_RESULT_VAR - SCHEDULE_RANDOM - SCRIPT - SEND_ERROR - SET - SHA1 - SHA224 - SHA256 - SHA384 - SHA512 - SHARED - SHOW_PROGRESS - SORT - SOURCE - SOURCES - START - STATIC - STATUS - STREQUAL - STRGREATER - STOP_TIME - STRIDE - STRINGS - STRIP - STRLESS - SUBSTRING - SYSTEM - TARGET - TARGETS - TEST - TEST_VARIABLE - TIMEOUT - TIMESTAMP - TLS_CAINFO - TLS_VERIFY - TOLOWER - TOUPPER - TO_CMAKE_PATH - TO_NATIVE_PATH - TRACK - TYPE - UNIX - UNIX_COMMAND - UNKNOWN - UPLOAD - UPPER - USES_TERMINAL - USE_SOURCE_PERMISSIONS - UTC - UUID - VALUE - VARIABLE - VERBATIM - VERSION - VERSION_EQUAL - VERSION_GREATER - VERSION_LESS - WARNING - WIN32 - WINDOWS_COMMAND - WORKING_DIRECTORY - WRITE - - - - - - PATH - NAME - EXT - NAME_WE - ABSOLUTE - REALPATH - - FILEPATH - - STRING - BOOL - INTERNAL - - NUMBER_OF_LOGICAL_CORES - NUMBER_OF_PHYSICAL_CORES - HOSTNAME - FQDN - TOTAL_VIRTUAL_MEMORY - AVAILABLE_VIRTUAL_MEMORY - TOTAL_PHYSICAL_MEMORY - AVAILABLE_PHYSICAL_MEMORY - - IN_LIST - - - - - - ABSTRACT - ADDITIONAL_MAKE_CLEAN_FILES - ADVANCED - ALIASED_TARGET - ALLOW_DUPLICATE_CUSTOM_TARGETS - ANDROID_API - ANDROID_API_MIN - ANDROID_GUI - ARCHIVE_OUTPUT_DIRECTORY - ARCHIVE_OUTPUT_NAME - ATTACHED_FILES - ATTACHED_FILES_ON_FAIL - AUTOGEN_TARGETS_FOLDER - AUTOGEN_TARGET_DEPENDS - AUTOMOC - AUTOMOC_MOC_OPTIONS - AUTOMOC_TARGETS_FOLDER - AUTORCC - AUTORCC_OPTIONS - AUTOUIC - AUTOUIC_OPTIONS - BUILD_WITH_INSTALL_RPATH - BUNDLE - BUNDLE_EXTENSION - CACHE_VARIABLES - CLEAN_NO_CUSTOM - CMAKE_CONFIGURE_DEPENDS - CMAKE_CXX_KNOWN_FEATURES - CMAKE_C_KNOWN_FEATURES - COMPATIBLE_INTERFACE_BOOL - COMPATIBLE_INTERFACE_NUMBER_MAX - COMPATIBLE_INTERFACE_NUMBER_MIN - COMPATIBLE_INTERFACE_STRING - COMPILE_DEFINITIONS - COMPILE_FEATURES - COMPILE_FLAGS - COMPILE_OPTIONS - COMPILE_PDB_NAME - COMPILE_PDB_OUTPUT_DIRECTORY - COST - CPACK_DESKTOP_SHORTCUTS - CPACK_NEVER_OVERWRITE - CPACK_PERMANENT - CPACK_STARTUP_SHORTCUTS - CPACK_START_MENU_SHORTCUTS - CPACK_WIX_ACL - CROSSCOMPILING_EMULATOR - CXX_EXTENSIONS - CXX_STANDARD - CXX_STANDARD_REQUIRED - C_EXTENSIONS - C_STANDARD - C_STANDARD_REQUIRED - DEBUG_CONFIGURATIONS - DEBUG_POSTFIX - DEFINE_SYMBOL - DEFINITIONS - DEPENDS - DISABLED_FEATURES - ECLIPSE_EXTRA_NATURES - ENABLED_FEATURES - ENABLED_LANGUAGES - ENABLE_EXPORTS - ENVIRONMENT - EXCLUDE_FROM_ALL - EXCLUDE_FROM_DEFAULT_BUILD - EXPORT_NAME - EXTERNAL_OBJECT - EchoString - FAIL_REGULAR_EXPRESSION - FIND_LIBRARY_USE_LIB64_PATHS - FIND_LIBRARY_USE_OPENBSD_VERSIONING - FOLDER - FRAMEWORK - Fortran_FORMAT - Fortran_MODULE_DIRECTORY - GENERATED - GENERATOR_FILE_NAME - GLOBAL_DEPENDS_DEBUG_MODE - GLOBAL_DEPENDS_NO_CYCLES - GNUtoMS - HAS_CXX - HEADER_FILE_ONLY - HELPSTRING - IMPLICIT_DEPENDS_INCLUDE_TRANSFORM - IMPORTED - IMPORTED_CONFIGURATIONS - IMPORTED_IMPLIB - IMPORTED_LINK_DEPENDENT_LIBRARIES - IMPORTED_LINK_INTERFACE_LANGUAGES - IMPORTED_LINK_INTERFACE_LIBRARIES - IMPORTED_LINK_INTERFACE_MULTIPLICITY - IMPORTED_LOCATION - IMPORTED_NO_SONAME - IMPORTED_SONAME - IMPORT_PREFIX - IMPORT_SUFFIX - INCLUDE_DIRECTORIES - INCLUDE_REGULAR_EXPRESSION - INSTALL_NAME_DIR - INSTALL_RPATH - INSTALL_RPATH_USE_LINK_PATH - INTERFACE_AUTOUIC_OPTIONS - INTERFACE_COMPILE_DEFINITIONS - INTERFACE_COMPILE_FEATURES - INTERFACE_COMPILE_OPTIONS - INTERFACE_INCLUDE_DIRECTORIES - INTERFACE_LINK_LIBRARIES - INTERFACE_POSITION_INDEPENDENT_CODE - INTERFACE_SOURCES - INTERFACE_SYSTEM_INCLUDE_DIRECTORIES - INTERPROCEDURAL_OPTIMIZATION - IN_TRY_COMPILE - JOB_POOLS - JOB_POOL_COMPILE - JOB_POOL_LINK - KEEP_EXTENSION - LABELS - LANGUAGE - LIBRARY_OUTPUT_DIRECTORY - LIBRARY_OUTPUT_NAME - LINKER_LANGUAGE - LINK_DEPENDS - LINK_DEPENDS_NO_SHARED - LINK_DIRECTORIES - LINK_FLAGS - LINK_INTERFACE_LIBRARIES - LINK_INTERFACE_MULTIPLICITY - LINK_LIBRARIES - LINK_SEARCH_END_STATIC - LINK_SEARCH_START_STATIC - LISTFILE_STACK - LOCATION - MACOSX_BUNDLE - MACOSX_BUNDLE_INFO_PLIST - MACOSX_FRAMEWORK_INFO_PLIST - MACOSX_PACKAGE_LOCATION - MACOSX_RPATH - MACROS - MEASUREMENT - MODIFIED - NAME - NO_SONAME - NO_SYSTEM_FROM_IMPORTED - OBJECT_DEPENDS - OBJECT_OUTPUTS - OSX_ARCHITECTURES - OUTPUT_NAME - PACKAGES_FOUND - PACKAGES_NOT_FOUND - PARENT_DIRECTORY - PASS_REGULAR_EXPRESSION - PDB_NAME - PDB_OUTPUT_DIRECTORY - POSITION_INDEPENDENT_CODE - POST_INSTALL_SCRIPT - PREDEFINED_TARGETS_FOLDER - PREFIX - PRE_INSTALL_SCRIPT - PRIVATE_HEADER - PROCESSORS - PROJECT_LABEL - PUBLIC_HEADER - REPORT_UNDEFINED_PROPERTIES - REQUIRED_FILES - RESOURCE - RESOURCE_LOCK - RULE_LAUNCH_COMPILE - RULE_LAUNCH_CUSTOM - RULE_LAUNCH_LINK - RULE_MESSAGES - RUNTIME_OUTPUT_DIRECTORY - RUNTIME_OUTPUT_NAME - RUN_SERIAL - SKIP_BUILD_RPATH - SKIP_RETURN_CODE - SOURCES - SOVERSION - STATIC_LIBRARY_FLAGS - STRINGS - SUFFIX - SYMBOLIC - TARGET_ARCHIVES_MAY_BE_SHARED_LIBS - TARGET_SUPPORTS_SHARED_LIBS - TEST_INCLUDE_FILE - TIMEOUT - TYPE - USE_FOLDERS - VALUE - VARIABLES - VERSION - VISIBILITY_INLINES_HIDDEN - VS_DEPLOYMENT_CONTENT - VS_DEPLOYMENT_LOCATION - VS_DOTNET_REFERENCES - VS_DOTNET_TARGET_FRAMEWORK_VERSION - VS_GLOBAL_KEYWORD - VS_GLOBAL_PROJECT_TYPES - VS_GLOBAL_ROOTNAMESPACE - VS_KEYWORD - VS_SCC_AUXPATH - VS_SCC_LOCALPATH - VS_SCC_PROJECTNAME - VS_SCC_PROVIDER - VS_SHADER_ENTRYPOINT - VS_SHADER_FLAGS - VS_SHADER_MODEL - VS_SHADER_TYPE - VS_WINRT_COMPONENT - VS_WINRT_EXTENSIONS - VS_WINRT_REFERENCES - VS_XAML_TYPE - WILL_FAIL - WIN32_EXECUTABLE - WORKING_DIRECTORY - WRAP_EXCLUDE - XCODE_EXPLICIT_FILE_TYPE - XCODE_LAST_KNOWN_FILE_TYPE - XCTEST - - - - - COMMANDS - DEFINITION - - - - - - APPLE - BORLAND - BUILD_SHARED_LIBS - CMAKE_ABSOLUTE_DESTINATION_FILES - CMAKE_ANDROID_API - CMAKE_ANDROID_API_MIN - CMAKE_ANDROID_GUI - CMAKE_APPBUNDLE_PATH - CMAKE_AR - CMAKE_ARCHIVE_OUTPUT_DIRECTORY - CMAKE_ARGC - CMAKE_ARGV0 - CMAKE_AUTOMOC - CMAKE_AUTOMOC_MOC_OPTIONS - CMAKE_AUTOMOC_RELAXED_MODE - CMAKE_AUTORCC - CMAKE_AUTORCC_OPTIONS - CMAKE_AUTOUIC - CMAKE_AUTOUIC_OPTIONS - CMAKE_BACKWARDS_COMPATIBILITY - CMAKE_BINARY_DIR - CMAKE_BUILD_TOOL - CMAKE_BUILD_TYPE - CMAKE_BUILD_WITH_INSTALL_RPATH - CMAKE_CACHEFILE_DIR - CMAKE_CACHE_MAJOR_VERSION - CMAKE_CACHE_MINOR_VERSION - CMAKE_CACHE_PATCH_VERSION - CMAKE_CFG_INTDIR - CMAKE_CL_64 - CMAKE_COLOR_MAKEFILE - CMAKE_COMMAND - CMAKE_COMPILER_2005 - CMAKE_COMPILE_PDB_OUTPUT_DIRECTORY - CMAKE_CONFIGURATION_TYPES - CMAKE_CROSSCOMPILING - CMAKE_CROSSCOMPILING_EMULATOR - CMAKE_CTEST_COMMAND - CMAKE_CURRENT_BINARY_DIR - CMAKE_CURRENT_LIST_DIR - CMAKE_CURRENT_LIST_FILE - CMAKE_CURRENT_LIST_LINE - CMAKE_CURRENT_SOURCE_DIR - CMAKE_CXX_COMPILE_FEATURES - CMAKE_CXX_EXTENSIONS - CMAKE_CXX_STANDARD - CMAKE_CXX_STANDARD_REQUIRED - CMAKE_C_COMPILE_FEATURES - CMAKE_C_EXTENSIONS - CMAKE_C_STANDARD - CMAKE_C_STANDARD_REQUIRED - CMAKE_DEBUG_POSTFIX - CMAKE_DEBUG_TARGET_PROPERTIES - CMAKE_DL_LIBS - CMAKE_EDIT_COMMAND - CMAKE_ERROR_DEPRECATED - CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION - CMAKE_EXECUTABLE_SUFFIX - CMAKE_EXE_LINKER_FLAGS - CMAKE_EXPORT_NO_PACKAGE_REGISTRY - CMAKE_EXTRA_GENERATOR - CMAKE_EXTRA_SHARED_LIBRARY_SUFFIXES - CMAKE_FIND_LIBRARY_PREFIXES - CMAKE_FIND_LIBRARY_SUFFIXES - CMAKE_FIND_NO_INSTALL_PREFIX - CMAKE_FIND_PACKAGE_NAME - CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY - CMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY - CMAKE_FIND_PACKAGE_WARN_NO_MODULE - CMAKE_FIND_ROOT_PATH - CMAKE_FIND_ROOT_PATH_MODE_INCLUDE - CMAKE_FIND_ROOT_PATH_MODE_LIBRARY - CMAKE_FIND_ROOT_PATH_MODE_PACKAGE - CMAKE_FIND_ROOT_PATH_MODE_PROGRAM - CMAKE_FRAMEWORK_PATH - CMAKE_Fortran_FORMAT - CMAKE_Fortran_MODDIR_DEFAULT - CMAKE_Fortran_MODDIR_FLAG - CMAKE_Fortran_MODOUT_FLAG - CMAKE_Fortran_MODULE_DIRECTORY - CMAKE_GENERATOR - CMAKE_GENERATOR_PLATFORM - CMAKE_GENERATOR_TOOLSET - CMAKE_GNUtoMS - CMAKE_HOME_DIRECTORY - CMAKE_HOST_APPLE - CMAKE_HOST_SYSTEM - CMAKE_HOST_SYSTEM_NAME - CMAKE_HOST_SYSTEM_PROCESSOR - CMAKE_HOST_SYSTEM_VERSION - CMAKE_HOST_UNIX - CMAKE_HOST_WIN32 - CMAKE_IGNORE_PATH - CMAKE_IMPORT_LIBRARY_PREFIX - CMAKE_IMPORT_LIBRARY_SUFFIX - CMAKE_INCLUDE_CURRENT_DIR - CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE - CMAKE_INCLUDE_DIRECTORIES_BEFORE - CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE - CMAKE_INCLUDE_PATH - CMAKE_INSTALL_DEFAULT_COMPONENT_NAME - CMAKE_INSTALL_MESSAGE - CMAKE_INSTALL_NAME_DIR - CMAKE_INSTALL_PREFIX - CMAKE_INSTALL_RPATH - CMAKE_INSTALL_RPATH_USE_LINK_PATH - CMAKE_INTERNAL_PLATFORM_ABI - CMAKE_JOB_POOL_COMPILE - CMAKE_JOB_POOL_LINK - CMAKE_LIBRARY_ARCHITECTURE - CMAKE_LIBRARY_ARCHITECTURE_REGEX - CMAKE_LIBRARY_OUTPUT_DIRECTORY - CMAKE_LIBRARY_PATH - CMAKE_LIBRARY_PATH_FLAG - CMAKE_LINK_DEF_FILE_FLAG - CMAKE_LINK_DEPENDS_NO_SHARED - CMAKE_LINK_INTERFACE_LIBRARIES - CMAKE_LINK_LIBRARY_FILE_FLAG - CMAKE_LINK_LIBRARY_FLAG - CMAKE_LINK_LIBRARY_SUFFIX - CMAKE_MACOSX_BUNDLE - CMAKE_MACOSX_RPATH - CMAKE_MAJOR_VERSION - CMAKE_MAKE_PROGRAM - CMAKE_MATCH_COUNT - CMAKE_MFC_FLAG - CMAKE_MINIMUM_REQUIRED_VERSION - CMAKE_MINOR_VERSION - CMAKE_MODULE_LINKER_FLAGS - CMAKE_MODULE_PATH - CMAKE_NOT_USING_CONFIG_FLAGS - CMAKE_NO_BUILTIN_CHRPATH - CMAKE_NO_SYSTEM_FROM_IMPORTED - CMAKE_OBJECT_PATH_MAX - CMAKE_OSX_ARCHITECTURES - CMAKE_OSX_DEPLOYMENT_TARGET - CMAKE_OSX_SYSROOT - CMAKE_PARENT_LIST_FILE - CMAKE_PATCH_VERSION - CMAKE_PDB_OUTPUT_DIRECTORY - CMAKE_POSITION_INDEPENDENT_CODE - CMAKE_PREFIX_PATH - CMAKE_PROGRAM_PATH - CMAKE_PROJECT_NAME - CMAKE_RANLIB - CMAKE_ROOT - CMAKE_RUNTIME_OUTPUT_DIRECTORY - CMAKE_SCRIPT_MODE_FILE - CMAKE_SHARED_LIBRARY_PREFIX - CMAKE_SHARED_LIBRARY_SUFFIX - CMAKE_SHARED_LINKER_FLAGS - CMAKE_SHARED_MODULE_PREFIX - CMAKE_SHARED_MODULE_SUFFIX - CMAKE_SIZEOF_VOID_P - CMAKE_SKIP_BUILD_RPATH - CMAKE_SKIP_INSTALL_ALL_DEPENDENCY - CMAKE_SKIP_INSTALL_RPATH - CMAKE_SKIP_INSTALL_RULES - CMAKE_SKIP_RPATH - CMAKE_SOURCE_DIR - CMAKE_STAGING_PREFIX - CMAKE_STANDARD_LIBRARIES - CMAKE_STATIC_LIBRARY_PREFIX - CMAKE_STATIC_LIBRARY_SUFFIX - CMAKE_STATIC_LINKER_FLAGS - CMAKE_SYSROOT - CMAKE_SYSTEM - CMAKE_SYSTEM_IGNORE_PATH - CMAKE_SYSTEM_INCLUDE_PATH - CMAKE_SYSTEM_LIBRARY_PATH - CMAKE_SYSTEM_NAME - CMAKE_SYSTEM_PREFIX_PATH - CMAKE_SYSTEM_PROCESSOR - CMAKE_SYSTEM_PROGRAM_PATH - CMAKE_SYSTEM_VERSION - CMAKE_TOOLCHAIN_FILE - CMAKE_TRY_COMPILE_CONFIGURATION - CMAKE_TWEAK_VERSION - CMAKE_USER_MAKE_RULES_OVERRIDE - CMAKE_USE_RELATIVE_PATHS - CMAKE_VERBOSE_MAKEFILE - CMAKE_VERSION - CMAKE_VISIBILITY_INLINES_HIDDEN - CMAKE_VS_DEVENV_COMMAND - CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD - CMAKE_VS_INTEL_Fortran_PROJECT_VERSION - CMAKE_VS_MSBUILD_COMMAND - CMAKE_VS_MSDEV_COMMAND - CMAKE_VS_NsightTegra_VERSION - CMAKE_VS_PLATFORM_NAME - CMAKE_VS_PLATFORM_TOOLSET - CMAKE_WARN_DEPRECATED - CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION - CMAKE_WIN32_EXECUTABLE - CMAKE_XCODE_PLATFORM_TOOLSET - CPACK_ABSOLUTE_DESTINATION_FILES - CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY - CPACK_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION - CPACK_INCLUDE_TOPLEVEL_DIRECTORY - CPACK_INSTALL_SCRIPT - CPACK_PACKAGING_INSTALL_PREFIX - CPACK_SET_DESTDIR - CPACK_WARN_ON_ABSOLUTE_INSTALL_DESTINATION - CTEST_BINARY_DIRECTORY - CTEST_BUILD_COMMAND - CTEST_BUILD_NAME - CTEST_BZR_COMMAND - CTEST_BZR_UPDATE_OPTIONS - CTEST_CHECKOUT_COMMAND - CTEST_CONFIGURATION_TYPE - CTEST_CONFIGURE_COMMAND - CTEST_COVERAGE_COMMAND - CTEST_COVERAGE_EXTRA_FLAGS - CTEST_CURL_OPTIONS - CTEST_CVS_CHECKOUT - CTEST_CVS_COMMAND - CTEST_CVS_UPDATE_OPTIONS - CTEST_DROP_LOCATION - CTEST_DROP_METHOD - CTEST_DROP_SITE - CTEST_DROP_SITE_CDASH - CTEST_DROP_SITE_PASSWORD - CTEST_DROP_SITE_USER - CTEST_GIT_COMMAND - CTEST_GIT_UPDATE_CUSTOM - CTEST_GIT_UPDATE_OPTIONS - CTEST_HG_COMMAND - CTEST_HG_UPDATE_OPTIONS - CTEST_MEMORYCHECK_COMMAND - CTEST_MEMORYCHECK_COMMAND_OPTIONS - CTEST_MEMORYCHECK_SANITIZER_OPTIONS - CTEST_MEMORYCHECK_SUPPRESSIONS_FILE - CTEST_MEMORYCHECK_TYPE - CTEST_NIGHTLY_START_TIME - CTEST_P4_CLIENT - CTEST_P4_COMMAND - CTEST_P4_OPTIONS - CTEST_P4_UPDATE_OPTIONS - CTEST_SCP_COMMAND - CTEST_SITE - CTEST_SOURCE_DIRECTORY - CTEST_SVN_COMMAND - CTEST_SVN_OPTIONS - CTEST_SVN_UPDATE_OPTIONS - CTEST_TEST_TIMEOUT - CTEST_TRIGGER_SITE - CTEST_UPDATE_COMMAND - CTEST_UPDATE_OPTIONS - CTEST_UPDATE_VERSION_ONLY - CTEST_USE_LAUNCHERS - CYGWIN - ENV - EXECUTABLE_OUTPUT_PATH - GHS-MULTI - LIBRARY_OUTPUT_PATH - MINGW - MSVC - MSVC10 - MSVC11 - MSVC12 - MSVC14 - MSVC60 - MSVC70 - MSVC71 - MSVC80 - MSVC90 - MSVC_IDE - MSVC_VERSION - PROJECT_BINARY_DIR - PROJECT_NAME - PROJECT_SOURCE_DIR - PROJECT_VERSION - PROJECT_VERSION_MAJOR - PROJECT_VERSION_MINOR - PROJECT_VERSION_PATCH - PROJECT_VERSION_TWEAK - UNIX - WIN32 - WINCE - WINDOWS_PHONE - WINDOWS_STORE - XCODE_VERSION - - - - CONFIGURATION - ANGLE-R - COMMA - SEMICOLON - INSTALL_PREFIX - - - - - 0 - 1 - BOOL - AND - OR - NOT - STREQUAL - EQUAL - CONFIG - PLATFORM_ID - C_COMPILER_ID - CXX_COMPILER_ID - VERSION_GREATER - VERSION_LESS - VERSION_EQUAL - C_COMPILER_VERSION - CXX_COMPILER_VERSION - TARGET_POLICY - COMPILER_FEATURES - - CONFIGURATION - TARGET_FILE - TARGET_FILE_NAME - TARGET_FILE_DIR - TARGET_LINKER_FILE - TARGET_LINKER_FILE_NAME - TARGET_LINKER_FILE_DIR - TARGET_SONAME_FILE - TARGET_SONAME_FILE_NAME - TARGET_SONAME_FILE_DIR - TARGET_PDB_FILE - TARGET_PDB_FILE_NAME - TARGET_PDB_FILE_DIR - TARGET_PROPERTY - INSTALL_PREFIX - - JOIN - ANGLE-R - COMMA - SEMICOLON - TARGET_NAME - LINK_ONLY - INSTALL_INTERFACE - BUILD_INTERFACE - LOWER_CASE - UPPER_CASE - MAKE_C_IDENTIFIER - TARGET_OBJECTS - - TARGET_DIR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/coffee.xml ktexteditor-5.31.0/src/syntax/data/coffee.xml --- ktexteditor-5.28.0/src/syntax/data/coffee.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/coffee.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,268 +0,0 @@ - - - - - - - - false - true - yes - no - on - off - undefined - null - NaN - Infinity - - - - return - break - continue - throw - for - while - until - loop - if - else - unless - switch - when - then - and - or - in - do - of - by - is - isnt - not - typeof - delete - where - super - try - catch - finally - try - catch - finally - constructor - - - - class - extends - new - instanceof - - - - case - default - function - var - void - with - const - let - enum - export - import - native - __hasProp - __extends - __slice - __bind - __indexOf - - - - Object - Number - Boolean - Array - String - RegExp - Function - Date - Math - eval - setInterval - clearInterval - setTimeout - clearTimeout - isFinite - isNaN - parseFloat - parseInt - escape - unescape - console - encodeURI - encodeURIComponent - decodeURI - decodeURIComponent - - - - window - document - navigator - location - history - screen - alert - prompt - - - - process - GLOBAL - require - exports - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/coldfusion.xml ktexteditor-5.31.0/src/syntax/data/coldfusion.xml --- ktexteditor-5.28.0/src/syntax/data/coldfusion.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/coldfusion.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,732 +0,0 @@ - - - - - - - - - if - else - for - in - while - do - continue - break - with - try - catch - switch - case - new - var - function - return - this - delete - true - false - void - throw - typeof - const - default - - - - - - Anchor - Applet - Area - Array - Boolean - Button - Checkbox - Date - Document - Event - FileUpload - Form - Frame - Function - Hidden - History - Image - Layer - Linke - Location - Math - Navigator - Number - Object - Option - Password - Radio - RegExp - Reset - Screen - Select - String - Submit - Text - Textarea - Window - - - - - - abs - acos - alert - anchor - apply - asin - atan - atan2 - back - blur - call - captureEvents - ceil - charAt - charCodeAt - clearInterval - clearTimeout - click - close - compile - concat - confirm - cos - disableExternalCapture - enableExternalCapture - eval - exec - exp - find - floor - focus - forward - fromCharCode - getDate - getDay - getFullYear - getHours - getMilliseconds - getMinutes - getMonth - getSeconds - getSelection - getTime - getTimezoneOffset - getUTCDate - getUTCDay - getUTCFullYear - getUTCHours - getUTCMilliseconds - getUTCMinutes - getUTCMonth - getUTCSeconds - go - handleEvent - home - indexOf - javaEnabled - join - lastIndexOf - link - load - log - match - max - min - moveAbove - moveBelow - moveBy - moveTo - moveToAbsolute - open - parse - plugins.refresh - pop - pow - preference - print - prompt - push - random - releaseEvents - reload - replace - reset - resizeBy - resizeTo - reverse - round - routeEvent - scrollBy - scrollTo - search - select - setDate - setFullYear - setHours - setInterval - setMilliseconds - setMinutes - setMonth - setSeconds - setTime - setTimeout - setUTCDate - setUTCFullYear - setUTCHours - setUTCMilliseconds - setUTCMinutes - setUTCMonth - setUTCSeconds - shift - sin - slice - sort - splice - split - sqrt - stop - String formatting - submit - substr - substring - taintEnabled - tan - test - toLocaleString - toLowerCase - toSource - toString - toUpperCase - toUTCString - unshift - unwatch - UTC - valueOf - watch - write - writeln - - - - - - break - case - catch - continue - default - do - else - for - function - if - in - return - switch - try - var - while - - - - - - Abs - ACos - ArrayAppend - ArrayAvg - ArrayClear - ArrayDeleteAt - ArrayInsertAt - ArrayIsEmpty - ArrayLen - ArrayMax - ArrayMin - ArrayNew - ArrayPrepend - ArrayResize - ArraySet - ArraySort - ArraySum - ArraySwap - ArrayToList - Asc - ASin - Atn - BitAnd - BitMaskClear - BitMaskRead - BitMaskSet - BitNot - BitOr - BitSHLN - BitSHRN - BitXor - Ceiling - Chr - CJustify - Compare - CompareNoCase - Cos - CreateDate - CreateDateTime - CreateObject - CreateODBCDate - CreateODBCDateTime - CreateODBCTime - CreateTime - CreateTimeSpan - CreateUUID - DateAdd - DateCompare - DateConvert - DateDiff - DateFormat - DatePart - Day - DayOfWeek - DayOfWeekAsString - DayOfYear - DaysInMonth - DaysInYear - DE - DecimalFormat - DecrementValue - Decrypt - DeleteClientVariable - DirectoryExists - DollarFormat - Duplicate - Encrypt - Evaluate - Exp - ExpandPath - FileExists - Find - FindNoCase - FindOneOf - FirstDayOfMonth - Fix - FormatBaseN - GetAuthUser - GetBaseTagData - GetBaseTagList - GetBaseTemplatePath - GetClientVariablesList - GetCurrentTemplatePath - GetDirectoryFromPath - GetException - GetFileFromPath - GetFunctionList - GetHttpRequestData - GetHttpTimeString - GetK2ServerDocCount - GetK2ServerDocCountLimit - GetLocale - GetMetaData - GetMetricData - GetPageContext - GetProfileSections - GetProfileString - GetServiceSettings - GetTempDirectory - GetTempFile - GetTemplatePath - GetTickCount - GetTimeZoneInfo - GetToken - Hash - Hour - HTMLCodeFormat - HTMLEditFormat - IIf - IncrementValue - InputBaseN - Insert - Int - IsArray - IsBinary - IsBoolean - IsCustomFunction - IsDate - IsDebugMode - IsDefined - IsK2ServerABroker - IsK2ServerDocCountExceeded - IsK2ServerOnline - IsLeapYear - IsNumeric - IsNumericDate - IsObject - IsQuery - IsSimpleValue - IsStruct - IsUserInRole - IsWDDX - IsXmlDoc - IsXmlElement - IsXmlRoot - JavaCast - JSStringFormat - LCase - Left - Len - ListAppend - ListChangeDelims - ListContains - ListContainsNoCase - ListDeleteAt - ListFind - ListFindNoCase - ListFirst - ListGetAt - ListInsertAt - ListLast - ListLen - ListPrepend - ListQualify - ListRest - ListSetAt - ListSort - ListToArray - ListValueCount - ListValueCountNoCase - LJustify - Log - Log10 - LSCurrencyFormat - LSDateFormat - LSEuroCurrencyFormat - LSIsCurrency - LSIsDate - LSIsNumeric - LSNumberFormat - LSParseCurrency - LSParseDateTime - LSParseEuroCurrency - LSParseNumber - LSTimeFormat - LTrim - Max - Mid - Min - Minute - Month - MonthAsString - Now - NumberFormat - ParagraphFormat - ParameterExists - ParseDateTime - Pi - PreserveSingleQuotes - Quarter - QueryAddColumn - QueryAddRow - QueryNew - QuerySetCell - QuotedValueList - Rand - Randomize - RandRange - REFind - REFindNoCase - RemoveChars - RepeatString - Replace - ReplaceList - ReplaceNoCase - REReplace - REReplaceNoCase - Reverse - Right - RJustify - Round - RTrim - Second - SetEncoding - SetLocale - SetProfileString - SetVariable - Sgn - Sin - SpanExcluding - SpanIncluding - Sqr - StripCR - StructAppend - StructClear - StructCopy - StructCount - StructDelete - StructFind - StructFindKey - StructFindValue - StructGet - StructInsert - StructIsEmpty - StructKeyArray - StructKeyExists - StructKeyList - StructNew - StructSort - StructUpdate - Tan - TimeFormat - ToBase64 - ToBinary - ToString - Trim - UCase - URLDecode - URLEncodedFormat - URLSessionFormat - Val - ValueList - Week - WriteOutput - XmlChildPos - XmlElemNew - XmlFormat - XmlNew - XmlParse - XmlSearch - XmlTransform - Year - YesNoFormat - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/commonlisp.xml ktexteditor-5.31.0/src/syntax/data/commonlisp.xml --- ktexteditor-5.28.0/src/syntax/data/commonlisp.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/commonlisp.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1200 +0,0 @@ - - - - - - - < - <= - = - > - >= - => - - - / - /= - // - /// - * - ** - *** - + - ++ - +++ - 1- - 1+ - - - defclass - defconstant - defgeneric - define-compiler-macro - define-condition - define-method-combination - define-modify-macro - define-setf-expander - define-setf-method - define-symbol-macro - defmacro - defmethod - defpackage - defparameter - defsetf - deftype - defvar - defun - defstruct - - - abort - abs - access - acons - acos - acosh - add-method - adjoin - adjustable-array-p - adjust-array - allocate-instance - alpha-char-p - alphanumericp - and - append - apply - applyhook - apropos - apropos-list - aref - arithmetic-error - arithmetic-error-operands - arithmetic-error-operation - array - array-dimension - array-dimension-limit - array-dimensions - array-displacement - array-element-type - array-has-fill-pointer-p - array-in-bounds-p - arrayp - array-rank - array-rank-limit - array-row-major-index - array-total-size - array-total-size-limit - ash - asin - asinh - assert - assoc - assoc-if - assoc-if-not - atan - atanh - atom - base-char - base-string - bignum - bit - bit-and - bit-andc1 - bit-andc2 - bit-eqv - bit-ior - bit-nand - bit-nor - bit-not - bit-orc1 - bit-orc2 - bit-vector - bit-vector-p - bit-xor - block - boole - boole-1 - boole-2 - boolean - boole-and - boole-andc1 - boole-andc2 - boole-c1 - boole-c2 - boole-clr - boole-eqv - boole-ior - boole-nand - boole-nor - boole-orc1 - boole-orc2 - boole-set - boole-xor - both-case-p - boundp - break - broadcast-stream - broadcast-stream-streams - built-in-class - butlast - byte - byte-position - byte-size - caaaar - caaadr - caaar - caadar - caaddr - caadr - caar - cadaar - cadadr - cadar - caddar - cadddr - caddr - cadr - call-arguments-limit - call-method - call-next-method - capitalize - car - case - catch - ccase - cdaaar - cdaadr - cdaar - cdadar - cdaddr - cdadr - cdar - cddaar - cddadr - cddar - cdddar - cddddr - cdddr - cddr - cdr - ceiling - cell-error - cell-error-name - cerror - change-class - char - char< - char<= - char= - char> - char>= - char/= - character - characterp - char-bit - char-bits - char-bits-limit - char-code - char-code-limit - char-control-bit - char-downcase - char-equal - char-font - char-font-limit - char-greaterp - char-hyper-bit - char-int - char-lessp - char-meta-bit - char-name - char-not-equal - char-not-greaterp - char-not-lessp - char-super-bit - char-upcase - check-type - cis - class - class-name - class-of - clear-input - clear-output - close - clrhash - code-char - coerce - commonp - compilation-speed - compile - compiled-function - compiled-function-p - compile-file - compile-file-pathname - compiler-let - compiler-macro - compiler-macro-function - complement - complex - complexp - compute-applicable-methods - compute-restarts - concatenate - concatenated-stream - concatenated-stream-streams - cond - condition - conjugate - cons - consp - constantly - constantp - continue - control-error - copy-alist - copy-list - copy-pprint-dispatch - copy-readtable - copy-seq - copy-structure - copy-symbol - copy-tree - cos - cosh - count - count-if - count-if-not - ctypecase - debug - decf - declaim - declaration - declare - decode-float - decode-universal-time - delete - delete-duplicates - delete-file - delete-if - delete-if-not - delete-package - denominator - deposit-field - describe - describe-object - destructuring-bind - digit-char - digit-char-p - directory - directory-namestring - disassemble - division-by-zero - do - do* - do-all-symbols - documentation - do-exeternal-symbols - do-external-symbols - dolist - do-symbols - dotimes - double-float - double-float-epsilon - double-float-negative-epsilon - dpb - dribble - dynamic-extent - ecase - echo-stream - echo-stream-input-stream - echo-stream-output-stream - ed - eighth - elt - encode-universal-time - end-of-file - endp - enough-namestring - ensure-directories-exist - ensure-generic-function - eq - eql - equal - equalp - error - etypecase - eval - evalhook - eval-when - evenp - every - exp - export - expt - extended-char - fboundp - fceiling - fdefinition - ffloor - fifth - file-author - file-error - file-error-pathname - file-length - file-namestring - file-position - file-stream - file-string-length - file-write-date - fill - fill-pointer - find - find-all-symbols - find-class - find-if - find-if-not - find-method - find-package - find-restart - find-symbol - finish-output - first - fixnum - flet - float - float-digits - floating-point-inexact - floating-point-invalid-operation - floating-point-overflow - floating-point-underflow - floatp - float-precision - float-radix - float-sign - floor - fmakunbound - force-output - format - formatter - fourth - fresh-line - fround - ftruncate - ftype - funcall - function - function-keywords - function-lambda-expression - functionp - gbitp - gcd - generic-function - gensym - gentemp - get - get-decoded-time - get-dispatch-macro-character - getf - gethash - get-internal-real-time - get-internal-run-time - get-macro-character - get-output-stream-string - get-properties - get-setf-expansion - get-setf-method - get-universal-time - go - graphic-char-p - handler-bind - handler-case - hash-table - hash-table-count - hash-table-p - hash-table-rehash-size - hash-table-rehash-threshold - hash-table-size - hash-table-test - host-namestring - identity - if - if-exists - ignorable - ignore - ignore-errors - imagpart - import - incf - initialize-instance - inline - in-package - in-package - input-stream-p - inspect - int-char - integer - integer-decode-float - integer-length - integerp - interactive-stream-p - intern - internal-time-units-per-second - intersection - invalid-method-error - invoke-debugger - invoke-restart - invoke-restart-interactively - isqrt - keyword - keywordp - labels - lambda - lambda-list-keywords - lambda-parameters-limit - last - lcm - ldb - ldb-test - ldiff - least-negative-double-float - least-negative-long-float - least-negative-normalized-double-float - least-negative-normalized-long-float - least-negative-normalized-short-float - least-negative-normalized-single-float - least-negative-short-float - least-negative-single-float - least-positive-double-float - least-positive-long-float - least-positive-normalized-double-float - least-positive-normalized-long-float - least-positive-normalized-short-float - least-positive-normalized-single-float - least-positive-short-float - least-positive-single-float - length - let - let* - lisp - lisp-implementation-type - lisp-implementation-version - list - list* - list-all-packages - listen - list-length - listp - load - load-logical-pathname-translations - load-time-value - locally - log - logand - logandc1 - logandc2 - logbitp - logcount - logeqv - logical-pathname - logical-pathname-translations - logior - lognand - lognor - lognot - logorc1 - logorc2 - logtest - logxor - long-float - long-float-epsilon - long-float-negative-epsilon - long-site-name - loop - loop-finish - lower-case-p - machine-instance - machine-type - machine-version - macroexpand - macroexpand-1 - macroexpand-l - macro-function - macrolet - make-array - make-array - make-broadcast-stream - make-char - make-concatenated-stream - make-condition - make-dispatch-macro-character - make-echo-stream - make-hash-table - make-instance - make-instances-obsolete - make-list - make-load-form - make-load-form-saving-slots - make-method - make-package - make-pathname - make-random-state - make-sequence - make-string - make-string-input-stream - make-string-output-stream - make-symbol - make-synonym-stream - make-two-way-stream - makunbound - map - mapc - mapcan - mapcar - mapcon - maphash - map-into - mapl - maplist - mask-field - max - member - member-if - member-if-not - merge - merge-pathname - merge-pathnames - method - method-combination - method-combination-error - method-qualifiers - min - minusp - mismatch - mod - most-negative-double-float - most-negative-fixnum - most-negative-long-float - most-negative-short-float - most-negative-single-float - most-positive-double-float - most-positive-fixnum - most-positive-long-float - most-positive-short-float - most-positive-single-float - muffle-warning - multiple-value-bind - multiple-value-call - multiple-value-list - multiple-value-prog1 - multiple-value-seteq - multiple-value-setq - multiple-values-limit - name-char - namestring - nbutlast - nconc - next-method-p - nil - nintersection - ninth - no-applicable-method - no-next-method - not - notany - notevery - notinline - nreconc - nreverse - nset-difference - nset-exclusive-or - nstring - nstring-capitalize - nstring-downcase - nstring-upcase - nsublis - nsubst - nsubst-if - nsubst-if-not - nsubstitute - nsubstitute-if - nsubstitute-if-not - nth - nthcdr - nth-value - null - number - numberp - numerator - nunion - oddp - open - open-stream-p - optimize - or - otherwise - output-stream-p - package - package-error - package-error-package - package-name - package-nicknames - packagep - package-shadowing-symbols - package-used-by-list - package-use-list - pairlis - parse-error - parse-integer - parse-namestring - pathname - pathname-device - pathname-directory - pathname-host - pathname-match-p - pathname-name - pathnamep - pathname-type - pathname-version - peek-char - phase - pi - plusp - pop - position - position-if - position-if-not - pprint - pprint-dispatch - pprint-exit-if-list-exhausted - pprint-fill - pprint-indent - pprint-linear - pprint-logical-block - pprint-newline - pprint-pop - pprint-tab - pprint-tabular - prin1 - prin1-to-string - princ - princ-to-string - print - print-not-readable - print-not-readable-object - print-object - print-unreadable-object - probe-file - proclaim - prog - prog* - prog1 - prog2 - progn - program-error - progv - provide - psetf - psetq - push - pushnew - putprop - quote - random - random-state - random-state-p - rassoc - rassoc-if - rassoc-if-not - ratio - rational - rationalize - rationalp - read - read-byte - read-char - read-char-no-hang - read-delimited-list - reader-error - read-eval-print - read-from-string - read-line - read-preserving-whitespace - read-sequence - readtable - readtable-case - readtablep - real - realp - realpart - reduce - reinitialize-instance - rem - remf - remhash - remove - remove-duplicates - remove-if - remove-if-not - remove-method - remprop - rename-file - rename-package - replace - require - rest - restart - restart-bind - restart-case - restart-name - return - return-from - revappend - reverse - room - rotatef - round - row-major-aref - rplaca - rplacd - safety - satisfies - sbit - scale-float - schar - search - second - sequence - serious-condition - set - set-char-bit - set-difference - set-dispatch-macro-character - set-exclusive-or - setf - set-macro-character - set-pprint-dispatch - setq - set-syntax-from-char - seventh - shadow - shadowing-import - shared-initialize - shiftf - short-float - short-float-epsilon - short-float-negative-epsilon - short-site-name - signal - signed-byte - signum - simle-condition - simple-array - simple-base-string - simple-bit-vector - simple-bit-vector-p - simple-condition-format-arguments - simple-condition-format-control - simple-error - simple-string - simple-string-p - simple-type-error - simple-vector - simple-vector-p - simple-warning - sin - single-flaot-epsilon - single-float - single-float-epsilon - single-float-negative-epsilon - sinh - sixth - sleep - slot-boundp - slot-exists-p - slot-makunbound - slot-missing - slot-unbound - slot-value - software-type - software-version - some - sort - space - special - special-form-p - special-operator-p - speed - sqrt - stable-sort - standard - standard-char - standard-char-p - standard-class - standard-generic-function - standard-method - standard-object - step - storage-condition - store-value - stream - stream-element-type - stream-error - stream-error-stream - stream-external-format - streamp - streamup - string - string< - string<= - string= - string> - string>= - string/= - string-capitalize - string-char - string-char-p - string-downcase - string-equal - string-greaterp - string-left-trim - string-lessp - string-not-equal - string-not-greaterp - string-not-lessp - stringp - string-right-strim - string-right-trim - string-stream - string-trim - string-upcase - structure - structure-class - structure-object - style-warning - sublim - sublis - subseq - subsetp - subst - subst-if - subst-if-not - substitute - substitute-if - substitute-if-not - subtypep - svref - sxhash - symbol - symbol-function - symbol-macrolet - symbol-name - symbolp - symbol-package - symbol-plist - symbol-value - synonym-stream - synonym-stream-symbol - sys - system - t - tagbody - tailp - tan - tanh - tenth - terpri - the - third - throw - time - trace - translate-logical-pathname - translate-pathname - tree-equal - truename - truncase - truncate - two-way-stream - two-way-stream-input-stream - two-way-stream-output-stream - type - typecase - type-error - type-error-datum - type-error-expected-type - type-of - typep - unbound-slot - unbound-slot-instance - unbound-variable - undefined-function - unexport - unintern - union - unless - unread - unread-char - unsigned-byte - untrace - unuse-package - unwind-protect - update-instance-for-different-class - update-instance-for-redefined-class - upgraded-array-element-type - upgraded-complex-part-type - upper-case-p - use-package - user - user-homedir-pathname - use-value - values - values-list - vector - vectorp - vector-pop - vector-push - vector-push-extend - warn - warning - when - wild-pathname-p - with-accessors - with-compilation-unit - with-condition-restarts - with-hash-table-iterator - with-input-from-string - with-open-file - with-open-stream - with-output-to-string - with-package-iterator - with-simple-restart - with-slots - with-standard-io-syntax - write - write-byte - write-char - write-line - write-sequence - write-string - write-to-string - yes-or-no-p - y-or-n-p - zerop - - - - :abort - :adjustable - :append - :array - :base - :case - :circle - :conc-name - :constructor - :copier - :count - :create - :default - :defaults - :device - :direction - :directory - :displaced-index-offset - :displaced-to - :element-type - :end1 - :end2 - :end - :error - :escape - :external - :from-end - :gensym - :host - :if-does-not-exist:pretty - :if-exists:print - :include:print-function - :index - :inherited - :initial-contents - :initial-element - :initial-offset - :initial-value - :input - :internal:size - :io - :junk-allowed - :key - :length - :level - :named - :name - :new-version - :nicknames - :output-file - :output - :overwrite - :predicate - :preserve-whitespace - :probe - :radix - :read-only - :rehash-size - :rehash-threshold - :rename-and-delete - :rename - :start1 - :start2 - :start - :stream - :supersede - :test - :test-not - :type - :use - :verbose - :version - - - *applyhook* - *break-on-signals* - *break-on-signals* - *break-on-warnings* - *compile-file-pathname* - *compile-file-pathname* - *compile-file-truename* - *compile-file-truename* - *compile-print* - *compile-verbose* - *compile-verbose* - *debugger-hook* - *debug-io* - *default-pathname-defaults* - *error-output* - *evalhook* - *features* - *gensym-counter* - *load-pathname* - *load-print* - *load-truename* - *load-verbose* - *macroexpand-hook* - *modules* - *package* - *print-array* - *print-base* - *print-case* - *print-circle* - *print-escape* - *print-gensym* - *print-length* - *print-level* - *print-lines* - *print-miser-width* - *print-miser-width* - *print-pprint-dispatch* - *print-pprint-dispatch* - *print-pretty* - *print-radix* - *print-readably* - *print-right-margin* - *print-right-margin* - *query-io* - *random-state* - *read-base* - *read-default-float-format* - *read-eval* - *read-suppress* - *readtable* - *standard-input* - *standard-output* - *terminal-io* - *trace-output* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/component-pascal.xml ktexteditor-5.31.0/src/syntax/data/component-pascal.xml --- ktexteditor-5.28.0/src/syntax/data/component-pascal.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/component-pascal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,172 +0,0 @@ - - - - - - - - - - - - - - - - BEGIN - BY - CASE - CLOSE - CONST - DO - ELSE - ELSIF - END - FOR - IF - IMPORT - LOOP - MODULE - NEW - OF - OUT - PROCEDURE - REPEAT - THEN - TO - TYPE - UNTIL - VAR - WHILE - WITH - - - ASSERT - EXIT - HALT - RETURN - - - ANYPTR - ANYREC - ARRAY - BOOLEAN - SHORTCHAR - CHAR - BYTE - SHORTINT - INTEGER - LONGINT - POINTER - RECORD - SHORTREAL - REAL - SET - - - ABSTRACT - EMPTY - EXTENSIBLE - LIMITED - - - ABS - ASH - BITS - CAP - CHR - DEC - ENTIER - EXCL - INC - INCL - LEN - LONG - MAX - MIN - ODD - ORD - SHORT - SIZE - - - FALSE - INF - NIL - TRUE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/context.xml ktexteditor-5.31.0/src/syntax/data/context.xml --- ktexteditor-5.28.0/src/syntax/data/context.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/context.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,132 +0,0 @@ - - - - - - \part - \chapter - \section - \subsection - \subsubsection - \title - \subject - \subsubject - \subsubsubject - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/cpp.xml ktexteditor-5.31.0/src/syntax/data/cpp.xml --- ktexteditor-5.28.0/src/syntax/data/cpp.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cpp.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1612 +0,0 @@ - - - - -]> - - - - - - emit - signals - slots - foreach - forever - SIGNAL - SLOT - - qApp - - Q_DECLARE_TR_FUNCTIONS - - Q_CLASSINFO - Q_DISABLE_COPY - Q_EMIT - Q_ENUMS - Q_FLAGS - Q_INTERFACES - Q_INVOKABLE - Q_OBJECT - Q_PROPERTY - Q_SIGNAL - Q_SIGNALS - Q_SLOT - Q_SLOTS - - Q_DECLARE_METATYPE - QT_NO_CAST_FROM_BYTEARRAY - QT_NO_CAST_FROM_ASCII - QT_NO_CAST_TO_ASCII - QT_NO_URL_CAST_FROM_STRING - QT_USE_QSTRINGBUILDER - - QBENCHMARK - QBENCHMARK_ONCE - QCOMPARE - QEXPECT_FAIL - QFAIL - QFETCH - QSKIP - QTEST - QTEST_APPLESS_MAIN - QTEST_MAIN - QTEST_NOOP_MAIN - QVERIFY2 - QVERIFY - QWARN - - QAXCLASS - QAXFACTORY_BEGIN - QAXFACTORY_DEFAULT - QAXFACTORY_END - QAXFACTORY_EXPORT - QAXTYPE - - QDESIGNER_WIDGET_EXPORT - - QML_DECLARE_TYPE - QML_DECLARE_TYPEINFO - - QTWEBKIT_VERSION - QTWEBKIT_VERSION_CHECK - QTWEBKIT_VERSION_STR - - Q_ARG - Q_RETURN_ARG - - Q_ATOMIC_INT_FETCH_AND_ADD_IS_ALWAYS_NATIVE - Q_ATOMIC_INT_FETCH_AND_ADD_IS_NOT_NATIVE - Q_ATOMIC_INT_FETCH_AND_ADD_IS_SOMETIMES_NATIVE - Q_ATOMIC_INT_FETCH_AND_ADD_IS_WAIT_FREE - Q_ATOMIC_INT_FETCH_AND_STORE_IS_ALWAYS_NATIVE - Q_ATOMIC_INT_FETCH_AND_STORE_IS_NOT_NATIVE - Q_ATOMIC_INT_FETCH_AND_STORE_IS_SOMETIMES_NATIVE - Q_ATOMIC_INT_FETCH_AND_STORE_IS_WAIT_FREE - Q_ATOMIC_INT_REFERENCE_COUNTING_IS_ALWAYS_NATIVE - Q_ATOMIC_INT_REFERENCE_COUNTING_IS_NOT_NATIVE - Q_ATOMIC_INT_REFERENCE_COUNTING_IS_SOMETIMES_NATIVE - Q_ATOMIC_INT_REFERENCE_COUNTING_IS_WAIT_FREE - Q_ATOMIC_INT_TEST_AND_SET_IS_ALWAYS_NATIVE - Q_ATOMIC_INT_TEST_AND_SET_IS_NOT_NATIVE - Q_ATOMIC_INT_TEST_AND_SET_IS_SOMETIMES_NATIVE - Q_ATOMIC_INT_TEST_AND_SET_IS_WAIT_FREE - - Q_DECLARE_EXTENSION_INTERFACE - - Q_DECLARE_INTERFACE - Q_EXPORT_PLUGIN2 - Q_IMPORT_PLUGIN - - Q_NOREPLY - - Q_SCRIPT_DECLARE_QMETAOBJECT - - QWIDGETSIZE_MAX - - QT3_SUPPORT - QT3_SUPPORT_CONSTRUCTOR - QT3_SUPPORT_VARIABLE - QT3_SUPPORT_WARNINGS - QT_ARCH_X86_64 - QT_ASCII_CAST_WARN - QT_ASCII_CAST_WARN_CONSTRUCTOR - QT_BUILD_KEY - QT_BUILD_KEY_COMPAT - QT_CATCH - QT_COMPAT - QT_COMPAT_WARNINGS - QT_DEBUG - QT_DEPRECATED - QT_DEPRECATED_CONSTRUCTOR - QT_DEPRECATED_VARIABLE - QT_EDITION - QT_EDITION_ACADEMIC - QT_EDITION_CONSOLE - QT_EDITION_DESKTOP - QT_EDITION_DESKTOPLIGHT - QT_EDITION_EDUCATIONAL - QT_EDITION_EVALUATION - QT_EDITION_OPENSOURCE - QT_EDITION_UNIVERSAL - QT_ENSURE_STACK_ALIGNED_FOR_SSE - QT_FASTCALL - QT_FORWARD_DECLARE_CLASS - QT_FORWARD_DECLARE_STRUCT - QT_HAVE_ARMV6 - QT_LARGEFILE_SUPPORT - QT_LICENSED_MODULE - QT_LINKED_OPENSSL - QT_LINUXBASE - QT_MAC_USE_COCOA - QT_MOC_COMPAT - QT_MODULE - QT_MODULE_ACTIVEQT - QT_MODULE_CORE - QT_MODULE_DBUS - QT_MODULE_DECLARATIVE - QT_MODULE_GRAPHICSVIEW - QT_MODULE_GUI - QT_MODULE_HELP - QT_MODULE_MULTIMEDIA - QT_MODULE_NETWORK - QT_MODULE_OPENGL - QT_MODULE_OPENVG - QT_MODULE_QT3SUPPORT - QT_MODULE_QT3SUPPORTLIGHT - QT_MODULE_SCRIPT - QT_MODULE_SCRIPTTOOLS - QT_MODULE_SQL - QT_MODULE_SVG - QT_MODULE_TEST - QT_MODULE_XML - QT_MODULE_XMLPATTERNS - QT_NO_ACCESSIBILITY - QT_NO_ANIMATION - QT_NO_ARM_EABI - QT_NO_BEARERMANAGEMENT - QT_NO_BUTTONGROUP - QT_NO_CALENDARWIDGET - QT_NO_CLIPBOARD - QT_NO_CODECS - QT_NO_COLORDIALOG - QT_NO_COLUMNVIEW - QT_NO_COMBOBOX - QT_NO_COMPLETER - QT_NO_CONCURRENT - QT_NO_CONCURRENT_FILTER - QT_NO_CONCURRENT_MAP - QT_NO_CONTEXTMENU - QT_NO_COP - QT_NO_CRASHHANDLER - QT_NO_CUPS - QT_NO_DATAWIDGETMAPPER - QT_NO_DATESTRING - QT_NO_DATETIMEEDIT - QT_NO_DBUS - QT_NO_DEBUG - QT_NO_DEBUG_STREAM - QT_NO_DECLARATIVE - QT_NO_DIAL - QT_NO_DIRMODEL - QT_NO_DOCKWIDGET - QT_NO_DRAGANDDROP - QT_NO_EGL - QT_NO_ERRORMESSAGE - QT_NO_EXCEPTIONS - QT_NO_FILEDIALOG - QT_NO_FILESYSTEMMODEL - QT_NO_FONTCOMBOBOX - QT_NO_FONTCONFIG - QT_NO_FONTDIALOG - QT_NO_FPU - QT_NO_FSCOMPLETER - QT_NO_FTP - QT_NO_GETIFADDRS - QT_NO_GRAPHICSEFFECT - QT_NO_GRAPHICSSVGITEM - QT_NO_GRAPHICSVIEW - QT_NO_GSTREAMER - QT_NO_HOSTINFO - QT_NO_HTTP - QT_NO_ICD - QT_NO_IM - QT_NO_IMAGEFORMAT_JPEG - QT_NO_IMAGEFORMAT_MNG - QT_NO_IMAGEFORMAT_PNG - QT_NO_IMAGEFORMAT_TIFF - QT_NO_IMAGEFORMAT_XPM - QT_NO_INPUTDIALOG - QT_NO_ITEMVIEWS - QT_NO_LIBRARY - QT_NO_LISTVIEW - QT_NO_LISTWIDGET - QT_NO_LPR - QT_NO_MAINWINDOW - QT_NO_MDIAREA - QT_NO_MENU - QT_NO_MENUBAR - QT_NO_MITSHM - QT_NO_MULTIMEDIA - QT_NO_NAS - QT_NO_NETWORKDISKCACHE - QT_NO_OPENGL - QT_NO_OPENVG - QT_NO_PAINT_DEBUG - QT_NO_PHONON - QT_NO_PHONON_EFFECTWIDGET - QT_NO_PHONON_PLATFORMPLUGIN - QT_NO_PHONON_SEEKSLIDER - QT_NO_PHONON_SETTINGSGROUP - QT_NO_PHONON_VIDEOPLAYER - QT_NO_PHONON_VOLUMEFADEREFFECT - QT_NO_PHONON_VOLUMESLIDER - QT_NO_PRINTDIALOG - QT_NO_PRINTER - QT_NO_PRINTPREVIEWDIALOG - QT_NO_PRINTPREVIEWWIDGET - QT_NO_PROCESS - QT_NO_PROGRESSDIALOG - QT_NO_PROXYMODEL - QT_NO_PULSEAUDIO - QT_NO_QDEBUG_MACRO - QT_NO_QFUTURE - QT_NO_QWARNING_MACRO - QT_NO_QWS_CURSOR - QT_NO_QWS_DECORATION_STYLED - QT_NO_QWS_DECORATION_WINDOWS - QT_NO_QWS_DYNAMICSCREENTRANSFORMATION - QT_NO_QWS_INPUTMETHODS - QT_NO_QWS_MANAGER - QT_NO_QWS_MULTIPROCESS - QT_NO_QWS_SOUNDSERVER - QT_NO_QWS_TRANSFORMED - QT_NO_QWS_VNC - QT_NO_RAWFONT - QT_NO_S60 - QT_NO_SCRIPT - QT_NO_SCRIPTTOOLS - QT_NO_SCROLLAREA - QT_NO_SCROLLBAR - QT_NO_SESSIONMANAGER - QT_NO_SHAPE - QT_NO_SHAREDMEMORY - QT_NO_SOCKS5 - QT_NO_SOFTKEYMANAGER - QT_NO_SORTFILTERPROXYMODEL - QT_NO_SPINBOX - QT_NO_SPLITTER - QT_NO_STANDARDITEMMODEL - QT_NO_STATEMACHINE - QT_NO_STL_WCHAR - QT_NO_STRINGLISTMODEL - QT_NO_STYLE_CDE - QT_NO_STYLE_CLEANLOOKS - QT_NO_STYLE_GTK - QT_NO_STYLE_PLASTIQUE - QT_NO_STYLE_S60 - QT_NO_STYLE_STYLESHEET - QT_NO_STYLE_WINDOWSCE - QT_NO_STYLE_WINDOWSMOBILE - QT_NO_STYLE_WINDOWSVISTA - QT_NO_STYLE_WINDOWSXP - QT_NO_SVG - QT_NO_SVGGENERATOR - QT_NO_SVGRENDERER - QT_NO_SVGWIDGET - QT_NO_SXE - QT_NO_SYNTAXHIGHLIGHTER - QT_NO_SYSTEMSEMAPHORE - QT_NO_TABBAR - QT_NO_TABDIALOG - QT_NO_TABLET - QT_NO_TABLEVIEW - QT_NO_TABLEWIDGET - QT_NO_TABWIDGET - QT_NO_TEMPLATE_TEMPLATE_PARAMETERS - QT_NO_TEXTBROWSER - QT_NO_TEXTCODECPLUGIN - QT_NO_TEXTEDIT - QT_NO_TEXTODFWRITER - QT_NO_TOOLBAR - QT_NO_TOOLBOX - QT_NO_TOOLBUTTON - QT_NO_TRANSLATION_UTF8 - QT_NO_TREEVIEW - QT_NO_TREEWIDGET - QT_NO_UNDOGROUP - QT_NO_UNDOSTACK - QT_NO_UNDOVIEW - QT_NO_WARNINGS - QT_NO_WEBKIT - QT_NO_WHATSTHIS - QT_NO_WIN_ACTIVEQT - QT_NO_WIZARD - QT_NO_WORKSPACE - QT_NO_XCURSOR - QT_NO_XFIXES - QT_NO_XINERAMA - QT_NO_XINPUT - QT_NO_XKB - QT_NO_XMLPATTERNS - QT_NO_XMLSTREAMREADER - QT_NO_XMLSTREAMWRITER - QT_NO_XRANDR - QT_NO_XRENDER - QT_NO_XSYNC - QT_NO_XVIDEO - QT_NO_ZLIB - QT_PACKAGEDATE_STR - QT_PACKAGE_TAG - QT_POINTER_SIZE - QT_PREPEND_NAMESPACE - QT_PRODUCT_LICENSE - QT_PRODUCT_LICENSEE - QT_RETHROW - QT_STATIC_CONST - QT_STATIC_CONST_IMPL - QT_STRINGIFY - QT_STRINGIFY2 - QT_SUPPORTS - QT_SYMBIAN_SUPPORTS_ADVANCED_POINTER - QT_SYMBIAN_SUPPORTS_SGIMAGE - QT_THROW - QT_TRANSLATE_NOOP - QT_TRANSLATE_NOOP3 - QT_TRANSLATE_NOOP3_UTF8 - QT_TRANSLATE_NOOP_UTF8 - QT_TRAP_THROWING - QT_TRID_NOOP - QT_TRY - QT_TRYCATCH_ERROR - QT_TRYCATCH_LEAVING - QT_TR_NOOP - QT_TR_NOOP_UTF8 - QT_USE_MATH_H_FLOATS - QT_USE_NAMESPACE - QT_VERSION - QT_VERSION_CHECK - QT_VERSION_STR - QT_VISIBILITY_AVAILABLE - QT_WA - QT_WA_INLINE - QT_WIN_CALLBACK - QT_USE_NAMESPACE - QT_BEGIN_NAMESPACE - QT_END_NAMESPACE - QT_BEGIN_HEADER - QT_END_HEADER - Q_ALIGNOF - Q_ASSERT - Q_ASSERT_X - Q_BIG_ENDIAN - Q_BROKEN_DEBUG_STREAM - Q_BROKEN_TEMPLATE_SPECIALIZATION - Q_BYTE_ORDER - Q_CANNOT_DELETE_CONSTANT - Q_CC_BOR - Q_CC_CDS - Q_CC_CLANG - Q_CC_COMEAU - Q_CC_DEC - Q_CC_DIAB - Q_CC_EDG - Q_CC_GCCE - Q_CC_GHS - Q_CC_GNU - Q_CC_HIGHC - Q_CC_HP - Q_CC_HPACC - Q_CC_INTEL - Q_CC_KAI - Q_CC_MINGW - Q_CC_MIPS - Q_CC_MSVC - Q_CC_MSVC_NET - Q_CC_MWERKS - Q_CC_NOKIAX86 - Q_CC_OC - Q_CC_PGI - Q_CC_RVCT - Q_CC_SUN - Q_CC_SYM - Q_CC_USLC - Q_CC_WAT - Q_CC_XLC - Q_CHECK_PTR - Q_CLEANUP_RESOURCE - Q_COMPILER_AUTO_TYPE - Q_COMPILER_CLASS_ENUM - Q_COMPILER_CONSTEXPR - Q_COMPILER_DECLTYPE - Q_COMPILER_DEFAULT_DELETE_MEMBERS - Q_COMPILER_EXTERN_TEMPLATES - Q_COMPILER_INITIALIZER_LISTS - Q_COMPILER_LAMBDA - Q_COMPILER_MANGLES_RETURN_TYPE - Q_COMPILER_RVALUE_REFS - Q_COMPILER_UNICODE_STRINGS - Q_COMPILER_VARIADIC_TEMPLATES - Q_CONSTRUCTOR_FUNCTION - Q_CONSTRUCTOR_FUNCTION0 - Q_C_CALLBACKS - Q_D - Q_DECLARE_FLAGS - Q_DECLARE_INCOMPATIBLE_FLAGS - Q_DECLARE_OPERATORS_FOR_FLAGS - Q_DECLARE_PRIVATE - Q_DECLARE_PRIVATE_D - Q_DECLARE_PUBLIC - Q_DECLARE_SHARED - Q_DECLARE_SHARED_STL - Q_DECLARE_TYPEINFO - Q_DECLARE_TYPEINFO_BODY - Q_DECL_ALIGN - Q_DECL_CONSTEXPR - Q_DECL_CONSTRUCTOR_DEPRECATED - Q_DECL_DEPRECATED - Q_DECL_FINAL - Q_DECL_HIDDEN - Q_DECL_IMPORT - Q_DECL_OVERRIDE - Q_DECL_NOEXCEPT - Q_DECL_NOTHROW - Q_NULLPTR - Q_DECL_VARIABLE_DEPRECATED - Q_DESTRUCTOR_FUNCTION - Q_DESTRUCTOR_FUNCTION0 - Q_DISABLE_COPY - Q_DUMMY_COMPARISON_OPERATOR - Q_FOREACH - Q_FOREVER - Q_FULL_TEMPLATE_INSTANTIATION - Q_FUNC_INFO - Q_GLOBAL_STATIC - Q_GLOBAL_STATIC_INIT - Q_GLOBAL_STATIC_WITH_ARGS - Q_GLOBAL_STATIC_WITH_INITIALIZER - Q_INIT_RESOURCE - Q_INIT_RESOURCE_EXTERN - Q_INLINE_TEMPLATE - Q_INT64_C - Q_LIKELY - Q_LITTLE_ENDIAN - Q_NO_BOOL_TYPE - Q_NO_DATA_RELOCATION - Q_NO_DECLARED_NOT_DEFINED - Q_NO_DEPRECATED_CONSTRUCTORS - Q_NO_EXPLICIT_KEYWORD - Q_NO_PACKED_REFERENCE - Q_NO_POSIX_SIGNALS - Q_NO_TEMPLATE_FRIENDS - Q_NO_USING_KEYWORD - Q_OF_ELF - Q_OS_AIX - Q_OS_BSD4 - Q_OS_BSDI - Q_OS_CYGWIN - Q_OS_DARWIN - Q_OS_DARWIN32 - Q_OS_DARWIN64 - Q_OS_DGUX - Q_OS_DYNIX - Q_OS_FREEBSD - Q_OS_HPUX - Q_OS_HURD - Q_OS_INTEGRITY - Q_OS_IRIX - Q_OS_LINUX - Q_OS_LYNX - Q_OS_MAC - Q_OS_MAC32 - Q_OS_MAC64 - Q_OS_MACX - Q_OS_MSDOS - Q_OS_NACL - Q_OS_NETBSD - Q_OS_OPENBSD - Q_OS_OS2 - Q_OS_OS2EMX - Q_OS_OSF - Q_OS_QNX - Q_OS_RELIANT - Q_OS_SCO - Q_OS_SOLARIS - Q_OS_SYMBIAN - Q_OS_ULTRIX - Q_OS_UNIX - Q_OS_UNIXWARE - Q_OS_VXWORKS - Q_OS_WIN - Q_OS_WIN32 - Q_OS_WIN64 - Q_OS_WINCE - Q_OUTOFLINE_TEMPLATE - Q_PACKED - Q_Q - Q_REQUIRED_RESULT - Q_SYMBIAN_FIXED_POINTER_CURSORS - Q_SYMBIAN_HAS_EXTENDED_BITMAP_TYPE - Q_SYMBIAN_SEMITRANSPARENT_BG_SURFACE - Q_SYMBIAN_SUPPORTS_FIXNATIVEORIENTATION - Q_SYMBIAN_SUPPORTS_MULTIPLE_SCREENS - Q_SYMBIAN_SUPPORTS_SURFACES - Q_SYMBIAN_TRANSITION_EFFECTS - Q_SYMBIAN_WINDOW_SIZE_CACHE - Q_TEMPLATEDLL - Q_TYPENAME - Q_TYPEOF - Q_UINT64_C - Q_UNLIKELY - Q_UNUSED - Q_WRONG_SB_CTYPE_MACROS - Q_WS_MAC - Q_WS_MAC32 - Q_WS_MAC64 - Q_WS_MACX - Q_WS_PM - Q_WS_S60 - Q_WS_WIN - Q_WS_WIN16 - Q_WS_WIN32 - Q_WS_WIN64 - Q_WS_WINCE - Q_WS_WINCE_WM - Q_WS_X11 - - Q_COMPLEX_TYPE - Q_PRIMITIVE_TYPE - Q_STATIC_TYPE - Q_MOVABLE_TYPE - Q_DUMMY_TYPE - - - - - QAbstractAnimation - QAbstractButton - QAbstractEventDispatcher - QAbstractExtensionFactory - QAbstractExtensionManager - QAbstractFileEngine - QAbstractFileEngineHandler - QAbstractFileEngineIterator - QAbstractFontEngine - QAbstractFormBuilder - QAbstractGraphicsShapeItem - QAbstractItemDelegate - QAbstractItemModel - QAbstractItemView - QAbstractListModel - QAbstractMessageHandler - QAbstractNetworkCache - QAbstractPrintDialog - QAbstractProxyModel - QAbstractScrollArea - QAbstractSlider - QAbstractSocket - QAbstractSpinBox - QAbstractState - QAbstractTableModel - QAbstractTextDocumentLayout - QAbstractTransition - QAbstractUriResolver - QAbstractVideoBuffer - QAbstractVideoSurface - QAbstractXmlNodeModel - QAbstractXmlReceiver - QAccessible - QAccessibleBridge - QAccessibleBridgePlugin - QAccessibleEvent - QAccessibleInterface - QAccessibleObject - QAccessiblePlugin - QAccessibleWidget - QAction - QActionEvent - QActionGroup - QAnimationGroup - QApplication - QAtomicInt - QAtomicPointer - QAudioDeviceInfo - QAudioFormat - QAudioInput - QAudioOutput - QAuthenticator - QAxAggregated - QAxBase - QAxBindable - QAxFactory - QAxObject - QAxScript - QAxScriptEngine - QAxScriptManager - QAxWidget - QBasicTimer - QBitArray - QBitmap - QBoxLayout - QBool - QBrush - QBuffer - QButtonGroup - QByteArray - QByteArrayMatcher - QCache - QCalendarWidget - QCDEStyle - QChar - QCheckBox - QChildEvent - QCleanlooksStyle - QClipboard - QCloseEvent - QColor - QColorDialog - QColormap - QColumnView - QComboBox - QCommandLinkButton - QCommonStyle - QCompleter - QConicalGradient - QContextMenuEvent - QContiguousCache - QCopChannel - QCoreApplication - QCryptographicHash - QCursor - QCustomRasterPaintDevice - QDataStream - QDataWidgetMapper - QDate - QDateEdit - QDateTime - QDateTimeEdit - QDBusAbstractAdaptor - QDBusAbstractInterface - QDBusArgument - QDBusConnection - QDBusConnectionInterface - QDBusContext - QDBusError - QDBusInterface - QDBusMessage - QDBusObjectPath - QDBusPendingCall - QDBusPendingCallWatcher - QDBusPendingReply - QDBusReply - QDBusServiceWatcher - QDBusSignature - QDBusUnixFileDescriptor - QDBusVariant - QDebug - QDeclarativeComponent - QDeclarativeContext - QDeclarativeEngine - QDeclarativeError - QDeclarativeExpression - QDeclarativeExtensionPlugin - QDeclarativeImageProvider - QDeclarativeItem - QDeclarativeListProperty - QDeclarativeListReference - QDeclarativeNetworkAccessManagerFactory - QDeclarativeParserStatus - QDeclarativeProperty - QDeclarativePropertyMap - QDeclarativePropertyValueSource - QDeclarativeScriptString - QDeclarativeView - QDecoration - QDecorationDefault - QDecorationFactory - QDecorationPlugin - QDesignerActionEditorInterface - QDesignerContainerExtension - QDesignerCustomWidgetCollectionInterface - QDesignerCustomWidgetInterface - QDesignerDynamicPropertySheetExtension - QDesignerFormEditorInterface - QDesignerFormWindowCursorInterface - QDesignerFormWindowInterface - QDesignerFormWindowManagerInterface - QDesignerMemberSheetExtension - QDesignerObjectInspectorInterface - QDesignerPropertyEditorInterface - QDesignerPropertySheetExtension - QDesignerTaskMenuExtension - QDesignerWidgetBoxInterface - QDesktopServices - QDesktopWidget - QDial - QDialog - QDialogButtonBox - QDir - QDirectPainter - QDirIterator - QDockWidget - QDomAttr - QDomCDATASection - QDomCharacterData - QDomComment - QDomDocument - QDomDocumentFragment - QDomDocumentType - QDomElement - QDomEntity - QDomEntityReference - QDomImplementation - QDomNamedNodeMap - QDomNode - QDomNodeList - QDomNotation - QDomProcessingInstruction - QDomText - QDoubleSpinBox - QDoubleValidator - QDrag - QDragEnterEvent - QDragLeaveEvent - QDragMoveEvent - QDropEvent - QDynamicPropertyChangeEvent - QEasingCurve - QElapsedTimer - QErrorMessage - QEvent - QEventLoop - QEventTransition - QExplicitlySharedDataPointer - QExtensionFactory - QExtensionManager - QFile - QFileDialog - QFileIconProvider - QFileInfo - QFileOpenEvent - QFileSystemModel - QFileSystemWatcher - QFinalState - QFlag - QFlags - QFocusEvent - QFocusFrame - QFont - QFontComboBox - QFontDatabase - QFontDialog - QFontEngineInfo - QFontEnginePlugin - QFontInfo - QFontMetrics - QFontMetricsF - QFormBuilder - QFormLayout - QFrame - QFSFileEngine - QFtp - QFuture - QFutureIterator - QFutureSynchronizer - QFutureWatcher - QGenericArgument - QGenericMatrix - QGenericPlugin - QGenericPluginFactory - QGenericReturnArgument - QGesture - QGestureEvent - QGestureRecognizer - QGLBuffer - QGLColormap - QGLContext - QGLFormat - QGLFramebufferObject - QGLFramebufferObjectFormat - QGLFunctions - QGLPixelBuffer - QGLShader - QGLShaderProgram - QGLWidget - QGlyphRun - QGradient - QGraphicsAnchor - QGraphicsAnchorLayout - QGraphicsBlurEffect - QGraphicsColorizeEffect - QGraphicsDropShadowEffect - QGraphicsEffect - QGraphicsEllipseItem - QGraphicsGridLayout - QGraphicsItem - QGraphicsItemAnimation - QGraphicsItemGroup - QGraphicsLayout - QGraphicsLayoutItem - QGraphicsLinearLayout - QGraphicsLineItem - QGraphicsObject - QGraphicsOpacityEffect - QGraphicsPathItem - QGraphicsPixmapItem - QGraphicsPolygonItem - QGraphicsProxyWidget - QGraphicsRectItem - QGraphicsRotation - QGraphicsScale - QGraphicsScene - QGraphicsSceneContextMenuEvent - QGraphicsSceneDragDropEvent - QGraphicsSceneEvent - QGraphicsSceneHelpEvent - QGraphicsSceneHoverEvent - QGraphicsSceneMouseEvent - QGraphicsSceneMoveEvent - QGraphicsSceneResizeEvent - QGraphicsSceneWheelEvent - QGraphicsSimpleTextItem - QGraphicsSvgItem - QGraphicsTextItem - QGraphicsTransform - QGraphicsView - QGraphicsWebView - QGraphicsWidget - QGridLayout - QGroupBox - QGtkStyle - QHash - QHashIterator - QHBoxLayout - QHeaderView - QHelpContentItem - QHelpContentModel - QHelpContentWidget - QHelpEngine - QHelpEngineCore - QHelpEvent - QHelpIndexModel - QHelpIndexWidget - QHelpSearchEngine - QHelpSearchQuery - QHelpSearchQueryWidget - QHelpSearchResultWidget - QHideEvent - QHistoryState - QHostAddress - QHostInfo - QHoverEvent - QHttpMultiPart - QHttpPart - QIcon - QIconDragEvent - QIconEngine - QIconEnginePlugin - QIconEnginePluginV2 - QIconEngineV2 - QIdentityProxyModel - QImage - QImageIOHandler - QImageIOPlugin - QImageReader - QImageWriter - QInputContext - QInputContextFactory - QInputContextPlugin - QInputDialog - QInputEvent - QInputMethodEvent - QIntValidator - QIODevice - QItemDelegate - QItemEditorCreator - QItemEditorCreatorBase - QItemEditorFactory - QItemSelection - QItemSelectionModel - QItemSelectionRange - QKbdDriverFactory - QKbdDriverPlugin - QKeyEvent - QKeyEventTransition - QKeySequence - QLabel - QLatin1Char - QLatin1String - QLayout - QLayoutItem - QLCDNumber - QLibrary - QLibraryInfo - QLine - QLinearGradient - QLineEdit - QLineF - QLinkedList - QLinkedListIterator - QList - QListIterator - QListView - QListWidget - QListWidgetItem - QLocale - QLocalServer - QLocalSocket - QMacCocoaViewContainer - QMacNativeWidget - QMacPasteboardMime - QMacStyle - QMainWindow - QMap - QMapIterator - QMargins - QMatrix4x4 - QMdiArea - QMdiSubWindow - QMenu - QMenuBar - QMessageBox - QMetaClassInfo - QMetaEnum - QMetaMethod - QMetaObject - QMetaProperty - QMetaType - QMimeData - QModelIndex - QMotifStyle - QMouseDriverFactory - QMouseDriverPlugin - QMouseEvent - QMouseEventTransition - QMoveEvent - QMovie - QMultiHash - QMultiMap - QMutableHashIterator - QMutableLinkedListIterator - QMutableListIterator - QMutableMapIterator - QMutableSetIterator - QMutableVectorIterator - QMutex - QMutexLocker - QNetworkAccessManager - QNetworkAddressEntry - QNetworkCacheMetaData - QNetworkConfiguration - QNetworkConfigurationManager - QNetworkCookie - QNetworkCookieJar - QNetworkDiskCache - QNetworkInterface - QNetworkProxy - QNetworkProxyFactory - QNetworkProxyQuery - QNetworkReply - QNetworkRequest - QNetworkSession - QObject - QObjectCleanupHandler - QPageSetupDialog - QPaintDevice - QPaintEngine - QPaintEngineState - QPainter - QPainterPath - QPainterPathStroker - QPaintEvent - QPair - QPalette - QPanGesture - QParallelAnimationGroup - QPauseAnimation - QPen - QPersistentModelIndex - QPicture - QPinchGesture - QPixmap - QPixmapCache - QPlainTextDocumentLayout - QPlainTextEdit - QPlastiqueStyle - QPlatformCursor - QPlatformCursorImage - QPlatformFontDatabase - QPlatformWindowFormat - QPluginLoader - QPoint - QPointer - QPointF - QPolygon - QPolygonF - QPrintDialog - QPrintEngine - QPrinter - QPrinterInfo - QPrintPreviewDialog - QPrintPreviewWidget - QProcess - QProcessEnvironment - QProgressBar - QProgressDialog - QPropertyAnimation - QProxyScreen - QProxyScreenCursor - QProxyStyle - QPushButton - QQuaternion - QQueue - QRadialGradient - QRadioButton - QRasterPaintEngine - QRawFont - QReadLocker - QReadWriteLock - QRect - QRectF - QRegExp - QRegExpValidator - QRegion - QResizeEvent - QResource - QRubberBand - QRunnable - QS60MainApplication - QS60MainAppUi - QS60MainDocument - QS60Style - QScopedArrayPointer - QScopedPointer - QScopedValueRollback - QScreen - QScreenCursor - QScreenDriverFactory - QScreenDriverPlugin - QScriptable - QScriptClass - QScriptClassPropertyIterator - QScriptContext - QScriptContextInfo - QScriptEngine - QScriptEngineAgent - QScriptEngineDebugger - QScriptExtensionPlugin - QScriptProgram - QScriptString - QScriptSyntaxCheckResult - QScriptValue - QScriptValueIterator - QScrollArea - QScrollBar - QSemaphore - QSequentialAnimationGroup - QSessionManager - QSet - QSetIterator - QSettings - QSharedData - QSharedDataPointer - QSharedMemory - QSharedPointer - QShortcut - QShortcutEvent - QShowEvent - QSignalMapper - QSignalSpy - QSignalTransition - QSimpleXmlNodeModel - QSize - QSizeF - QSizeGrip - QSizePolicy - QSlider - QSocketNotifier - QSortFilterProxyModel - QSound - QSourceLocation - QSpacerItem - QSpinBox - QSplashScreen - QSplitter - QSplitterHandle - QSqlDatabase - QSqlDriver - QSqlDriverCreator - QSqlDriverCreatorBase - QSqlDriverPlugin - QSqlError - QSqlField - QSqlIndex - QSqlQuery - QSqlQueryModel - QSqlRecord - QSqlRelation - QSqlRelationalDelegate - QSqlRelationalTableModel - QSqlResult - QSqlTableModel - QSslCertificate - QSslCipher - QSslConfiguration - QSslError - QSslKey - QSslSocket - QStack - QStackedLayout - QStackedWidget - QStandardItem - QStandardItemEditorCreator - QStandardItemModel - QState - QStateMachine - QStaticText - QStatusBar - QStatusTipEvent - QString - QStringList - QStringListModel - QStringMatcher - QStringRef - QStyle - QStyledItemDelegate - QStyleFactory - QStyleHintReturn - QStyleHintReturnMask - QStyleHintReturnVariant - QStyleOption - QStyleOptionButton - QStyleOptionComboBox - QStyleOptionComplex - QStyleOptionDockWidget - QStyleOptionFocusRect - QStyleOptionFrame - QStyleOptionFrameV2 - QStyleOptionFrameV3 - QStyleOptionGraphicsItem - QStyleOptionGroupBox - QStyleOptionHeader - QStyleOptionMenuItem - QStyleOptionProgressBar - QStyleOptionProgressBarV2 - QStyleOptionQ3DockWindow - QStyleOptionQ3ListView - QStyleOptionQ3ListViewItem - QStyleOptionRubberBand - QStyleOptionSizeGrip - QStyleOptionSlider - QStyleOptionSpinBox - QStyleOptionTab - QStyleOptionTabBarBase - QStyleOptionTabBarBaseV2 - QStyleOptionTabV2 - QStyleOptionTabV3 - QStyleOptionTabWidgetFrame - QStyleOptionTabWidgetFrameV2 - QStyleOptionTitleBar - QStyleOptionToolBar - QStyleOptionToolBox - QStyleOptionToolBoxV2 - QStyleOptionToolButton - QStyleOptionViewItem - QStyleOptionViewItemV2 - QStyleOptionViewItemV3 - QStyleOptionViewItemV4 - QStylePainter - QStylePlugin - QSupportedWritingSystems - QSvgGenerator - QSvgRenderer - QSvgWidget - QSwipeGesture - QSymbianEvent - QSymbianGraphicsSystemHelper - QSyntaxHighlighter - QSysInfo - QSystemLocale - QSystemSemaphore - QSystemTrayIcon - QTabBar - QTabletEvent - QTableView - QTableWidget - QTableWidgetItem - QTableWidgetSelectionRange - QTabWidget - QTapAndHoldGesture - QTapGesture - QTcpServer - QTcpSocket - QTemporaryFile - QTestEventList - QTextBlock - QTextBlockFormat - QTextBlockGroup - QTextBlockUserData - QTextBoundaryFinder - QTextBrowser - QTextCharFormat - QTextCodec - QTextCodecPlugin - QTextCursor - QTextDecoder - QTextDocument - QTextDocumentFragment - QTextDocumentWriter - QTextEdit - QTextEncoder - QTextFormat - QTextFragment - QTextFrame - QTextFrameFormat - QTextImageFormat - QTextInlineObject - QTextItem - QTextLayout - QTextLength - QTextLine - QTextList - QTextListFormat - QTextObject - QTextObjectInterface - QTextOption - QTextStream - QTextTable - QTextTableCell - QTextTableCellFormat - QTextTableFormat - QThread - QThreadPool - QThreadStorage - QTileRules - QTime - QTimeEdit - QTimeLine - QTimer - QTimerEvent - QToolBar - QToolBox - QToolButton - QToolTip - QTouchEvent - QTransform - QTranslator - QTreeView - QTreeWidget - QTreeWidgetItem - QTreeWidgetItemIterator - QUdpSocket - QUiLoader - QUndoCommand - QUndoGroup - QUndoStack - QUndoView - QUrl - QUrlInfo - QUuid - QValidator - QVariant - QVariantAnimation - QVarLengthArray - QVBoxLayout - QVector - QVector2D - QVector3D - QVector4D - QVectorIterator - QVideoFrame - QVideoSurfaceFormat - QWaitCondition - QWeakPointer - QWebDatabase - QWebElement - QWebElementCollection - QWebFrame - QWebHistory - QWebHistoryInterface - QWebHistoryItem - QWebHitTestResult - QWebInspector - QWebPage - QWebPluginFactory - QWebSecurityOrigin - QWebSettings - QWebView - QWhatsThis - QWhatsThisClickedEvent - QWheelEvent - QWidget - QWidgetAction - QWidgetItem - QWindowsMime - QWindowsStyle - QWindowStateChangeEvent - QWindowsVistaStyle - QWindowsXPStyle - QWizard - QWizardPage - QWriteLocker - QWSCalibratedMouseHandler - QWSClient - QWSEmbedWidget - QWSEvent - QWSGLWindowSurface - QWSInputMethod - QWSKeyboardHandler - QWSMouseHandler - QWSPointerCalibrationData - QWSScreenSaver - QWSServer - QWSWindow - QX11EmbedContainer - QX11EmbedWidget - QX11Info - QXmlAttributes - QXmlContentHandler - QXmlDeclHandler - QXmlDefaultHandler - QXmlDTDHandler - QXmlEntityResolver - QXmlErrorHandler - QXmlFormatter - QXmlInputSource - QXmlItem - QXmlLexicalHandler - QXmlLocator - QXmlName - QXmlNamePool - QXmlNamespaceSupport - QXmlNodeModelIndex - QXmlParseException - QXmlQuery - QXmlReader - QXmlResultItems - QXmlSchema - QXmlSchemaValidator - QXmlSerializer - QXmlSimpleReader - QXmlStreamAttribute - QXmlStreamAttributes - QXmlStreamEntityDeclaration - QXmlStreamEntityResolver - QXmlStreamNamespaceDeclaration - QXmlStreamNotationDeclaration - QXmlStreamReader - QXmlStreamWriter - - Qt - QTest - QtConcurrent - Phonon - - QFileInfoList - QMutableStringListIterator - QTouchEventSequence - QStringListIterator - QStringBuilder - - QWidgetList - - - - - connect - disconnect - staticMetaObject - tr - trUtf8 - - qFindChildren - qobject_cast - - qAbs - qBound - qCritical - qDebug - qFatal - qFuzzyCompare - qFuzzyCompare - qInstallMsgHandler - qMacVersion - qMakePair - qMax - qMin - qPrintable - qRound64 - qRound - qVersion - qWarning - q_check_ptr - qgetenv - qrand - qsrand - qtTrId - qt_set_sequence_auto_mnemonic - qt_symbian_exception2Error - qt_symbian_exception2LeaveL - qt_symbian_throwIfError - - qBinaryFind - qCopy - qCopyBackward - qCount - qDeleteAll - qEqual - qFill - qFind - qGreater - qLess - qLowerBound - qSort - qStableSort - qSwap - qUpperBound - - qChecksum - qCompress - qUncompress - qsnprintf - qstrcmp - qstrcpy - qstrdup - qstricmp - qstrlen - qstrncmp - qstrncpy - qstrnicmp - qstrnlen - qvsnprintf - - qHash - - qMetaTypeId - qRegisterMetaType - qRegisterMetaType - qRegisterMetaTypeStreamOperators - - qAlpha - qBlue - qGray - qGray - qGreen - qRed - qRgb - qRgba - - qAddPostRoutine - - qmlInfo - qmlRegisterInterface - qmlRegisterType - qmlRegisterType - qmlRegisterTypeNotAvailable - qmlRegisterUncreatableType - - qWebKitMajorVersion - qWebKitMinorVersion - qWebKitVersion - - qt_extension - - qDBusRegisterMetaType - qdbus_cast - - - - - QtMsgHandler - QtMsgType - QObjectList - qint8 - qint16 - qint32 - qint64 - qlonglong - qptrdiff - qreal - quint8 - quint16 - quint32 - quint64 - quintptr - qulonglong - uchar - uint - ulong - ushort - - Q_PID - - QRgb - - qScriptConnect - qScriptDisconnect - qScriptRegisterMetaType - qScriptRegisterSequenceMetaType - qScriptValueFromSequence - qScriptValueToSequence - - WId - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/crk.xml ktexteditor-5.31.0/src/syntax/data/crk.xml --- ktexteditor-5.28.0/src/syntax/data/crk.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/crk.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,158 +0,0 @@ - - - - - break - catch - class - continue - else - false - for - if - in - is - null - oper - return - this - true - try - typeof - while - - - bool - byte - int16 - int32 - int64 - uint16 - uint32 - uint64 - float32 - float64 - int - uint - intz - uintz - float - void - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/css.xml ktexteditor-5.31.0/src/syntax/data/css.xml --- ktexteditor-5.28.0/src/syntax/data/css.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/css.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1119 +0,0 @@ - - - - -]> - - - - - - - - - azimuth - align-content - align-items - align-self - alignment-baseline - all - animation-name - animation-duration - animation-iteration-count - animation-direction - animation-delay - animation-play-state - animation-fill-mode - animation-timing-function - backface-visibility - background - background-attachment - background-blend-mode - background-break - background-clip - background-color - background-image - background-origin - background-position - background-repeat - background-size - baseline-shift - bookmark-label - bookmark-level - bookmark-level - border - border-bottom - border-bottom-color - border-bottom-image - border-bottom-style - border-bottom-width - border-bottom-left-image - border-bottom-left-radius - border-bottom-right-image - border-bottom-right-radius - border-boundary - border-collapse - border-color - border-corner-image - border-image - border-image-outset - border-image-repeat - border-image-slice - border-image-source - border-image-width - border-left - border-left-color - border-left-image - border-left-style - border-left-width - border-radius - border-right - border-right-color - border-right-image - border-right-style - border-right-width - border-spacing - border-style - border-top - border-top-color - border-top-image - border-top-style - border-top-width - border-top-left-image - border-top-left-radius - border-top-right-image - border-top-right-radius - border-width - bottom - box-align - box-decoration-break - box-direction - box-flex - box-shadow - box-sizing - box-snap - box-suppress - break-after - break-before - break-inside - caret-color - caption-side - chains - clear - clip - clip-path - clip-rule - color - color-interpolation-filters - column-count - column-fill - column-gap - column-rule - column-rule-color - column-rule-style - column-rule-width - column-span - column-width - columns - content - counter-increment - counter-reset - counter-set - cue - cue-after - cue-before - cursor - direction - display - dominant-baseline - elevation - empty-cells - filter - flex - flex-basis - flex-direction - flex-flow - flex-grow - flex-shrink - flex-wrap - float - flood-color - flood-opacity - flow - flow-from - flow-into - font - font-family - font-size - font-size-adjust - font-stretch - font-style - font-variant - font-weight - font-stretch - font-feature-settings - font-kerning - font-language-override - font-synthesis - font-variant-alternates - font-variant-caps - font-variant-east-asian - font-variant-ligatures - font-variant-numeric - font-variant-position - footnote-display - footnote-policy - glyph-orientation-vertical - grid - grid-area - grid-auto-columns - grid-auto-flow - grid-auto-rows - grid-column - grid-column-end - grid-column-gap - grid-column-start - grid-gap - grid-row - grid-row-end - grid-row-gap - grid-row-start - grid-template - grid-template-areas - grid-template-columns - grid-template-rows - hanging-punctuation - height - hyphens - image-orientation - image-rendering - image-resolution - initial-letter - initial-letter-align - initial-letter-wrap - isolation - justify-content - justify-items - justify-self - left - letter-spacing - lighting-color - linear-gradient - line-grid - line-height - line-snap - list-style - list-style-image - list-style-keyword - list-style-position - list-style-type - margin - margin-bottom - margin-left - margin-right - margin-top - marker-offset - marker-side - marquee-direction - marquee-loop - marquee-speed - marquee-style - mask - mask-border - mask-border-mode - mask-border-outset - mask-border-repeat - mask-border-slice - mask-border-source - mask-border-width - mask-clip - mask-composite - mask-image - mask-mode - mask-origin - mask-position - mask-repeat - mask-size - mask-type - max-height - max-lines - max-width - min-height - min-width - mix-blend-mode - nav-down - nav-left - nav-right - nav-up - object-fit - object-position - offset-after - offset-before - offset-end - offset-start - opacity - order - orphans - outline - outline-color - outline-offset - outline-style - outline-width - overflow - overflow-style - overflow-wrap - overflow-x - overflow-y - padding - padding-bottom - padding-left - padding-right - padding-top - page - page-break-after - page-break-before - page-break-inside - pause - pause-after - pause-before - perspective - perspective-origin - pitch - pitch-range - play-during - pointer-events - polar-anchor - polar-angle - polar-distance - polar-origin - position - presentation-level - quotes - resize - rest - rest-after - rest-before - richness - right - rotation - rotation-point - ruby-align - ruby-merge - ruby-position - running - scroll-behavior - scroll-snap-align - scroll-snap-margin - scroll-snap-margin-block - scroll-snap-margin-block-end - scroll-snap-margin-block-start - scroll-snap-margin-bottom - scroll-snap-margin-inline - scroll-snap-margin-inline-end - scroll-snap-margin-inline-start - scroll-snap-margin-left - scroll-snap-margin-right - scroll-snap-margin-top - scroll-snap-padding - scroll-snap-padding-block - scroll-snap-padding-block-end - scroll-snap-padding-block-start - scroll-snap-padding-bottom - scroll-snap-padding-inline - scroll-snap-padding-inline-end - scroll-snap-padding-inline-start - scroll-snap-padding-left - scroll-snap-padding-right - scroll-snap-padding-top - scroll-snap-stop - scroll-snap-type - shape-image-threshold - shape-inside - shape-margin - shape-outside - size - speak - speak-as - speak-header - speak-numeral - speak-punctuation - speech-rate - stress - string-set - tab-size - table-layout - text-align - text-align-last - text-combine-upright - text-decoration - text-decoration-color - text-decoration-line - text-decoration-skip - text-decoration-style - text-emphasis - text-emphasis-color - text-emphasis-position - text-emphasis-style - text-indent - text-justify - text-orientation - text-overflow - text-shadow - text-transform - text-underline-position - text-wrap - top - transform - transform-origin - transform-style - transition - transition-delay - transition-property - transition-duration - transition-timing-function - unicode-bidi - vertical-align - visibility - voice-balance - voice-duration - voice-family - voice-pitch - voice-range - voice-rate - voice-stress - voice-volume - volume - white-space - widows - width - will-change - word-break - word-spacing - word-wrap - wrap-flow - wrap-through - writing-mode - z-index - - - -moz-animation-name - -moz-animation-duration - -moz-animation-iteration - -moz-animation-direction - -moz-animation-delay - -moz-animation-play-state - -moz-animation-fill-mode - -moz-background-size - -moz-border-image - -moz-border-bottom-colors - -moz-border-left-colors - -moz-border-radius - -moz-border-radius-topleft - -moz-border-radius-topright - -moz-border-radius-bottomleft - -moz-border-radius-bottomright - -moz-border-right-colors - -moz-border-top-colors - -moz-box - -moz-box-flex - -moz-box-shadow - -moz-box-sizing - -moz-column-count - -moz-column-gap - -moz-hyphens - -moz-linear-gradient - -moz-opacity - -moz-outline-style - -moz-perspective - -moz-radial-gradient - -moz-resize - -moz-transform - -moz-transform-origin - -moz-transform-style - -moz-transition - -moz-transition-property - -moz-transition-duration - - - -o-background-size - -o-linear-gradient - -o-text-overflow - -o-transition - -o-transform-origin - - - konq_bgpos_x - konq_bgpos_y - -khtml-background-size - -khtml-border-top-left-radius - -khtml-border-top-right-radius - -khtml-border-bottom-left-radius - -khtml-border-bottom-right-radius - -khtml-border-radius - -khtml-box-shadow - -khtml-opacity - - - -webkit-appearance - -webkit-animation-name - -webkit-animation-duration - -webkit-animation-iteration - -webkit-animation-direction - -webkit-animation-delay - -webkit-animation-play-state - -webkit-animation-fill-mode - -webkit-background-size - -webkit-border-image - -webkit-border-bottom-colors - -webkit-border-left-colors - -webkit-border-radius - -webkit-border-right-colors - -webkit-border-top-colors - -webkit-border-top-left-radius - -webkit-border-top-right-radius - -webkit-border-bottom-left-radius - -webkit-border-bottom-right-radius - -webkit-border-radius-bottomleft - -webkit-border-radius-bottomright - -webkit-box-flex - -webkit-box-reflect - -webkit-box-shadow - -webkit-box-sizing - -webkit-column-count - -webkit-column-gap - -webkit-hyphens - -webkit-linear-gradient - -webkit-gradient - -webkit-perspective - -webkit-text-fill-color - -webkit-text-stroke-color - -webkit-text-stroke-width - -webkit-text-size-adjust - -webkit-transform - -webkit-transform-origin - -webkit-transform-style - -webkit-transition - -webkit-transition-property - -webkit-transition-duration - - - zoom - -ms-animation-name - -ms-animation-duration - -ms-animation-iteration - -ms-animation-direction - -ms-animation-delay - -ms-animation-play-state - -ms-animation-fill-mode - -ms-box-sizing - -ms-filter - -ms-interpolation-mode - -ms-linear-gradient - -ms-text-size-adjust - -ms-transform - -ms-transition - - - font-family - font-size - font-stretch - font-style - font-variant - font-weight - unicode-range - units-per-em - src - panose-1 - stemv - stemh - slope - cap-height - x-height - ascent - descent - widths - bbox - definition-src - baseline - centerline - mathline - topline - - - - inherit - none - hidden - dotted - dashed - solid - double - groove - ridge - inset - outset - xx-small - x-small - small - medium - large - x-large - xx-large - smaller - larger - italic - oblique - small-caps - normal - bold - bolder - lighter - light - 100 - 200 - 300 - 400 - 500 - 600 - 700 - 800 - 900 - transparent - repeat - repeat-x - repeat-y - no-repeat - baseline - sub - super - top - text-top - middle - bottom - text-bottom - left - right - center - justify - konq-center - disc - circle - square - box - decimal - decimal-leading-zero - lower-roman - upper-roman - lower-greek - lower-alpha - lower-latin - upper-alpha - upper-latin - hebrew - armenian - georgian - cjk-ideographic - hiragana - katakana - hiragana-iroha - katakana-iroha - inline - inline-block - block - list-item - run-in - compact - marker - table - inline-table - table-row-group - table-header-group - table-footer-group - table-row - table-column-group - table-column - table-cell - table-caption - auto - crosshair - default - pointer - move - e-resize - ne-resize - nw-resize - n-resize - se-resize - sw-resize - s-resize - w-resize - text - wait - help - above - absolute - always - avoid - below - bidi-override - blink - both - capitalize - caption - clip - close-quote - collapse - condensed - crop - cross - ellipsis - ellipsis-word - embed - expanded - extra-condensed - extra-expanded - fixed - hand - hide - higher - icon - inside - invert - landscape - level - line-through - loud - lower - lowercase - ltr - menu - message-box - mix - narrower - no-close-quote - no-open-quote - nowrap - open-quote - outside - overline - portrait - pre - pre-line - pre-wrap - relative - rtl - scroll - semi-condensed - semi-expanded - separate - show - small-caption - static - static-position - status-bar - thick - thin - ultra-condensed - ultra-expanded - underline - uppercase - visible - wider - break - serif - sans-serif - cursive - fantasy - monospace - border-box - content-box - -epub-hyphens - - - - aqua - black - blue - cyan - fuchsia - gray - green - lime - maroon - navy - olive - purple - red - silver - teal - white - yellow - ActiveBorder - ActiveCaption - AppWorkspace - Background - ButtonFace - ButtonHighlight - ButtonShadow - ButtonText - CaptionText - GrayText - Highlight - HighlightText - InactiveBorder - InactiveCaption - InactiveCaptionText - InfoBackground - InfoText - Menu - MenuText - Scrollbar - ThreeDDarkShadow - ThreeDFace - ThreeDHighlight - ThreeDLightShadow - ThreeDShadow - Window - WindowFrame - WindowText - - - - url - attr - rect - rgb - rgba - hsl - hsla - counter - counters - - - local - format - - - expression - - - - - all - aural - braille - embossed - handheld - print - projection - screen - speech - tty - tv - - - - not - only - - - - width - min-width - max-width - height - min-height - max-height - device-width - min-device-width - max-device-width - device-height - min-device-height - max-device-height - orientation - aspect-ratio - min-aspect-ratio - max-aspect-ratio - device-aspect-ratio - min-device-aspect-ratio - max-device-aspect-ratio - color - min-color - max-color - color-index - min-color-index - max-color-index - monochrome - min-monochrome - max-monochrome - resolution - min-resolution - max-resolution - scan - grid - - - - hover - link - visited - active - focus - first-child - last-child - only-child - first-of-type - last-of-type - only-of-type - first-letter - first-line - before - after - selection - root - empty - target - enabled - disabled - checked - indeterminate - nth-child - nth-last-child - nth-of-type - nth-last-of-type - not - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/cs.xml ktexteditor-5.31.0/src/syntax/data/cs.xml --- ktexteditor-5.28.0/src/syntax/data/cs.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cs.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,166 +0,0 @@ - - - - - abstract - as - base - break - case - catch - class - checked - continue - default - delegate - do - else - enum - event - explicit - extern - false - for - foreach - finally - fixed - goto - if - implicit - in - interface - internal - is - lock - namespace - new - null - operator - out - override - params - private - protected - public - readonly - ref - return - sealed - sizeof - stackalloc - static - struct - switch - this - throw - true - try - typeof - unchecked - unsafe - using - virtual - while - #if - #else - #elif - #endif - #define - #undef - #warning - #error - #line - - - bool - byte - char - const - decimal - double - float - int - long - object - uint - ushort - ulong - sbyte - short - string - void - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/cubescript.xml ktexteditor-5.31.0/src/syntax/data/cubescript.xml --- ktexteditor-5.28.0/src/syntax/data/cubescript.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cubescript.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,456 +0,0 @@ - - - - - - - - ? - alias - at - case - casef - cases - clearconsole - clearsleep - complete - concat - concatword - cond - conskip - do - echo - error - escape - exec - format - getalias - getfvarmin - getfvarmax - getvarmin - getvarmax - history - if - indexof - inputcommand - keymap - listcomplete - listdel - listfind - listlen - listsplice - local - loop - loopconcat - loopconcatword - loopfiles - looplist - loopwhile - miniconskip - nodebug - onrelease - prettylist - push - resetvar - result - rnd - saycommand - searchbinds - searcheditbinds - searchspecbinds - sleep - strcmp - strlen - strreplace - strstr - sublist - substr - tabify - toggleconsole - unescape - while - writecfg - - - bind - editbind - specbind - getbind - geteditbind - getspecbind - - - - + - * - - - +f - *f - -f - = - != - > - < - >= - <= - =f - !=f - >f - <f - >=f - <=f - ^ - ! - & - | - ~ - ^~ - &~ - |~ - << - >> - && - || - abs - absf - div - mod - divf - modf - sin - cos - tan - asin - acos - atan - sqrt - pow - loge - log2 - log10 - exp - min - max - minf - maxf - =s - !=s - <s - >s - <=s - >=s - - - - MOUSELEFT - MOUSEMIDDLE - MOUSERIGHT - MOUSEWHEELUP - MOUSEWHEELDOWN - MOUSEX1 - MOUSEX2 - - - MOUSE1 - MOUSE2 - MOUSE3 - MOUSE4 - MOUSE5 - - - BACKSPACE - TAB - CLEAR - RETURN - PAUSE - ESCAPE - SPACE - EXCLAIM - QUOTEDBL - HASH - DOLLAR - AMPERSAND - QUOTE - LEFTPAREN - RIGHTPAREN - ASTERISK - PLUS - COMMA - MINUS - PERIOD - SLASH - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - COLON - SEMICOLON - LESS - EQUALS - GREATER - QUESTION - AT - LEFTBRACKET - BACKSLASH - RIGHTBRACKET - CARET - UNDERSCORE - BACKQUOTE - A - B - C - D - E - F - G - H - I - J - K - L - M - N - O - P - Q - R - S - T - U - V - W - X - Y - Z - DELETE - KP0 - KP1 - KP2 - KP3 - KP4 - KP5 - KP6 - KP7 - KP8 - KP9 - KP_PERIOD - KP_DIVIDE - KP_MULTIPLY - KP_MINUS - KP_PLUS - KP_ENTER - KP_EQUALS - UP - DOWN - RIGHT - LEFT - INSERT - HOME - END - PAGEUP - PAGEDOWN - F1 - F2 - F3 - F4 - F5 - F6 - F7 - F8 - F9 - F10 - F11 - F12 - F13 - F14 - F15 - NUMLOCK - CAPSLOCK - SCROLLOCK - RSHIFT - LSHIFT - RCTRL - LCTRL - RALT - LALT - RMETA - LMETA - LSUPER - RSUPER - MODE - COMPOSE - HELP - PRINT - SYSREQ - BREAK - MENU - - - - commandbuf - editing - mainmenu - numargs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/cue.xml ktexteditor-5.31.0/src/syntax/data/cue.xml --- ktexteditor-5.28.0/src/syntax/data/cue.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/cue.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,74 +0,0 @@ - - - - - - CATALOG - CDTEXTFILE - FILE - FLAGS - INDEX - ISRC - PERFORMER - PREGAP - POSTGAP - REM - SONGWRITER - TITLE - TRACK - - - AIFF - WAVE - MP3 - BINARY - MOTOTOLA - - - AUDIO - CDG - CDI - MODE1 - MODE2 - RAW - - - 4CH - DCP - PRE - SCMS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/curry.xml ktexteditor-5.31.0/src/syntax/data/curry.xml --- ktexteditor-5.28.0/src/syntax/data/curry.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/curry.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,364 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - case - data - do - else - external - fcase - free - if - - in - infix - infixl - infixr - let - module - of - then - type - where - - - and - all - any - appendFile - best - break - browse - browseList - chr - concat - concatMap - const - curry - div - done - doSolve - drop - dropWhile - either - elem - ensureNotFree - ensureSpine - enumFrom - enumFromThen - enumFromTo - enumFromThenTo - error - failed - filter - findall - flip - foldl - foldl1 - foldr - foldr1 - fst - getChar - getLine - id - if_then_else - iterate - head - length - lines - lookup - map - mapIO - mapIO_ - max - maybe - min - mod - negate - not - notElem - null - once - or - ord - otherwise - print - putChar - putStr - putStrLn - readFile - repeat - replicate - return - reverse - seq - sequenceIO - sequenceIO_ - show - snd - solveAll - span - splitAt - success - tail - take - takeWhile - try - uncurry - unknown - unlines - unpack - until - unwords - unzip - unzip3 - writeFile - words - zip - zip3 - zipWith - zipWith3 - - - Bool - Char - Either - Float - Int - IO - Maybe - Ordering - String - Success - - - False - True - Left - Right - Just - Nothing - EQ - LT - GT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/c.xml ktexteditor-5.31.0/src/syntax/data/c.xml --- ktexteditor-5.28.0/src/syntax/data/c.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/c.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,242 +0,0 @@ - - - - - - - break - case - continue - default - do - else - for - goto - if - return - switch - while - - - enum - extern - inline - sizeof - struct - typedef - union - - - auto - char - const - double - float - int - long - register - restrict - short - signed - static - unsigned - void - volatile - int8_t - int16_t - int32_t - int64_t - uint8_t - uint16_t - uint32_t - uint64_t - int_least8_t - int_least16_t - int_least32_t - int_least64_t - uint_least8_t - uint_least16_t - uint_least32_t - uint_least64_t - int_fast8_t - int_fast16_t - int_fast32_t - int_fast64_t - uint_fast8_t - uint_fast16_t - uint_fast32_t - uint_fast64_t - size_t - ssize_t - wchar_t - intptr_t - uintptr_t - intmax_t - uintmax_t - ptrdiff_t - sig_atomic_t - wint_t - _Imaginary - _Complex - _Bool - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/debianchangelog.xml ktexteditor-5.31.0/src/syntax/data/debianchangelog.xml --- ktexteditor-5.28.0/src/syntax/data/debianchangelog.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/debianchangelog.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,223 +0,0 @@ - - - - - - urgency - - - - oldstable - oldstable-security - oldstable-proposed-updates - stable - stable-security - stable-proposed-updates - testing - testing-security - testing-proposed-updates - frozen - unstable - sid - experimental - UNRELEASED - - sarge - sarge-backports - sarge-volatile - etch - etch-backports - etch-volatile - lenny - lenny-backports - lenny-backports-sloppy - lenny-volatile - squeeze - squeeze-backports - squeeze-backports-sloppy - squeeze-volatile - wheezy - wheezy-backports - wheezy-backports-sloppy - jessie - jessie-backports - jessie-backports-sloppy - stretch - stretch-backports - stretch-backports-sloppy - buster - buster-backports - buster-backports-sloppy - bullseye - bullseye-backports - bullseye-backports-sloppy - - dapper - dapper-security - dapper-proposed - dapper-updates - dapper-backports - dapper-commercial - edgy - edgy-security - edgy-proposed - edgy-updates - edgy-backports - edgy-commercial - feisty - feisty-security - feisty-proposed - feisty-updates - feisty-backports - feisty-commercial - gutsy - gutsy-security - gutsy-proposed - gutsy-updates - gutsy-backports - gutsy-partner - hardy - hardy-security - hardy-proposed - hardy-updates - hardy-backports - hardy-partner - intrepid - intrepid-security - intrepid-proposed - intrepid-updates - intrepid-backports - intrepid-partner - jaunty - jaunty-security - jaunty-proposed - jaunty-updates - jaunty-backports - jaunty-partner - karmic - karmic-security - karmic-proposed - karmic-updates - karmic-backports - lucid - lucid-security - lucid-proposed - lucid-updates - lucid-backports - maverick - maverick-security - maverick-proposed - maverick-updates - maverick-backports - natty - natty-security - natty-proposed - natty-updates - natty-backports - oneiric - oneiric-security - oneiric-proposed - oneiric-updates - oneiric-backports - precise - precise-security - precise-proposed - precise-updates - precise-backports - quantal - quantal-security - quantal-proposed - quantal-updates - quantal-backports - raring - raring-security - raring-proposed - raring-updates - raring-backports - saucy - saucy-security - saucy-proposed - saucy-updates - saucy-backports - trusty - trusty-security - trusty-proposed - trusty-updates - trusty-backports - utopic - utopic-security - utopic-proposed - utopic-updates - utopic-backports - vivid - vivid-security - vivid-proposed - vivid-updates - vivid-backports - wily - wily-security - wily-proposed - wily-updates - wily-backports - xenial - xenial-security - xenial-proposed - xenial-updates - xenial-backports - yakkety - yakkety-security - yakkety-proposed - yakkety-updates - yakkety-backports - zesty - zesty-security - zesty-proposed - zesty-updates - zesty-backports - - - - low - medium - high - emergency - bug - critical - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/debiancontrol.xml ktexteditor-5.31.0/src/syntax/data/debiancontrol.xml --- ktexteditor-5.28.0/src/syntax/data/debiancontrol.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/debiancontrol.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/desktop.xml ktexteditor-5.31.0/src/syntax/data/desktop.xml --- ktexteditor-5.28.0/src/syntax/data/desktop.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/desktop.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/diff.xml ktexteditor-5.31.0/src/syntax/data/diff.xml --- ktexteditor-5.28.0/src/syntax/data/diff.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/diff.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,119 +0,0 @@ - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/djangotemplate.xml ktexteditor-5.31.0/src/syntax/data/djangotemplate.xml --- ktexteditor-5.28.0/src/syntax/data/djangotemplate.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/djangotemplate.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,330 +0,0 @@ - - - -]> - - - - - - - - for - block - if - ifequal - ifnotequal - ifchanged - blocktrans - spaceless - autoescape - - - - endfor - endblock - endif - endifequal - endifnotequal - endifchanged - endblocktrans - endspaceless - endautoescape - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/dockerfile.xml ktexteditor-5.31.0/src/syntax/data/dockerfile.xml --- ktexteditor-5.28.0/src/syntax/data/dockerfile.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/dockerfile.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,66 +0,0 @@ - - - - - - - ADD - ARG - CMD - COPY - ENTRYPOINT - ENV - EXPOSE - FROM - HEALTHCHECK - LABEL - MAINTAINER - ONBUILD - RUN - SHELL - STOPSIGNAL - USER - VOLUME - WORKDIR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/dosbat.xml ktexteditor-5.31.0/src/syntax/data/dosbat.xml --- ktexteditor-5.28.0/src/syntax/data/dosbat.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/dosbat.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,311 +0,0 @@ - - - - - - - -]> - - - - - - - assoc - break - call - cd - chdir - cls - color - copy - date - del - dir - endlocal - erase - exit - ftype - md - mkdir - move - path - pause - popd - prompt - pushd - rd - ren - rename - rmdir - setlocal - shift - start - time - title - type - ver - verify - vol - - - - echo - else - for - in - do - goto - if - not - set - - - - at - attrib - break - cacls - chcp - chkdsk - chkntfs - cmd - comp - compact - convert - diskcomp - diskcopy - doskey - fc - find - findstr - format - graftabl - help - label - mode - more - print - recover - replace - sort - subst - tree - xcopy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/dot.xml ktexteditor-5.31.0/src/syntax/data/dot.xml --- ktexteditor-5.28.0/src/syntax/data/dot.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/dot.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,172 +0,0 @@ - - - - - - - - - digraph - node - edge - subgraph - - - - - center - layers - margin - mclimit - name - nodesep - nslimit - ordering - page - pagedir - rank - rankdir - ranksep - ratio - rotate - size - - distortion - fillcolor - fontcolor - fontname - fontsize - height - layer - orientation - peripheries - regular - shape - shapefile - sides - skew - width - - arrowhead - arrowsize - arrowtail - constraint - decorateP - dir - headclip - headlabel - labelangle - labeldistance - labelfontcolor - labelfontname - labelfontsize - minlen - port_label_distance - samehead - sametail - tailclip - taillabel - weight - - color - - bgcolor - label - URL - - fontcolor - fontname - fontsize - layer - style - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/doxygenlua.xml ktexteditor-5.31.0/src/syntax/data/doxygenlua.xml --- ktexteditor-5.28.0/src/syntax/data/doxygenlua.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/doxygenlua.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,481 +0,0 @@ - - -]> - - - - - - \arg - \attention - \author - \callgraph - \code - \dot - \else - \endcode - \endcond - \enddot - \endhtmlonly - \endif - \endlatexonly - \endlink - \endmanonly - \endverbatim - \endxmlonly - \f[ - \f] - \f$ - \hideinitializer - \htmlonly - \interface - \internal - \invariant - \~ - \@ - \$ - \\ - \# - \latexonly - \li - \manonly - \n - \nosubgrouping - \note - \only - \post - \pre - \remarks - \return - \returns - \sa - \see - \showinitializer - \since - \test - \todo - \verbatim - \warning - \xmlonly - - @arg - @attention - @author - @callgraph - @code - @dot - @else - @endcode - @endcond - @enddot - @endhtmlonly - @endif - @endlatexonly - @endlink - @endmanonly - @endverbatim - @endxmlonly - @f[ - @f] - @f$ - @hideinitializer - @htmlonly - @interface - @internal - @invariant - @~ - @@ - @$ - @\ - @# - @latexonly - @li - @manonly - @n - @nosubgrouping - @note - @only - @post - @pre - @remarks - @return - @returns - @sa - @see - @showinitializer - @since - @test - @todo - @verbatim - @warning - @xmlonly - - - - \addtogroup - \a - \anchor - \b - \c - \class - \cond - \copydoc - \def - \dontinclude - \dotfile - \e - \elseif - \em - \enum - \example - \exception - \exceptions - \file - \htmlinclude - \if - \ifnot - \include - \link - \namespace - \p - \package - \ref - \relatesalso - \relates - \retval - \throw - \throws - \verbinclude - \version - \xrefitem - - @addtogroup - @a - @anchor - @b - @c - @class - @cond - @copydoc - @def - @dontinclude - @dotfile - @e - @elseif - @em - @enum - @example - @exception - @exceptions - @file - @htmlinclude - @if - @ifnot - @include - @link - @namespace - @p - @package - @ref - @relatesalso - @relates - @retval - @throw - @throws - @verbinclude - @version - @xrefitem - - - \param - - @param - - - \image - - @image - - - \defgroup - \page - \paragraph - \section - \struct - \subsection - \subsubsection - \union - \weakgroup - - @defgroup - @page - @paragraph - @section - @struct - @subsection - @subsubsection - @union - @weakgroup - - - \addindex - \brief - \bug - \date - \deprecated - \fn - \ingroup - \line - \mainpage - \name - \overload - \par - \short - \skip - \skipline - \typedef - \until - \var - - @addindex - @brief - @bug - @date - @deprecated - @fn - @ingroup - @line - @mainpage - @name - @overload - @par - @short - @skip - @skipline - @typedef - @until - @var - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/doxygen.xml ktexteditor-5.31.0/src/syntax/data/doxygen.xml --- ktexteditor-5.28.0/src/syntax/data/doxygen.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/doxygen.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,514 +0,0 @@ - - -]> - - - - - - - - \arg @arg - \author @author - \authors @authors - \brief @brief - \callgraph @callgraph - \callergraph @callergraph - \date @date - \deprecated @deprecated - \details @details - \docbookonly @docbookonly - \else @else - \endcond @endcond - \enddocbookonly @enddocbookonly - \endhtmlonly @endhtmlonly - \endif @endif - \endinternal @endinternal - \endlatexonly @endlatexonly - \endlink @endlink - \endmanonly @endmanonly - \endparblock @endparblock - \endrtfonly @endrtfonly - \endsecreflist @endsecreflist - \endxmlonly @endxmlonly - \f[ @f[ - \f] @f] - \f$ @f$ - - \hideinitializer @hideinitializer - \htmlonly @htmlonly - - \internal @internal - \invariant @invariant - \latexonly @latexonly - \li @li - \manonly @manonly - \n @n - \nosubgrouping @nosubgrouping - \only @only - \parblock @parblock - \post @post - \pre @pre - \private @pivate - \privatesection @pivatesection - \protected @protected - \protectedsection @protectedsection - \public @public - \publicsection @publicsection - \pure @pure - \remark @remark - \remarks @remarks - \return @return - \returns @returns - \result @result - \rtfonly @rtfonly - \sa @sa - \secreflist @secreflist - \see @see - \short @short - \showinitializer @showinitializer - \since @since - \static @static - \tableofcontents @tableofcontents - \test @test - \version @version - \xmlonly @xmlonly - - \# @# - \$ @$ - \% @% - \& @& - \> @> - \< @< - \" @" - \:: @:: - \@ @@ - \\ @\ - \~ @~ - \. @. - \-- @-- - \--- @--- - - - - \a @a - \anchor @anchor - \b @b - \c @c - \cite @cite - \cond @cond - \copybrief @copybrief - \copydetails @copydetails - \copydoc @copydoc - \def @def - \dir @dir - \dontinclude @dontinclude - \e @e - \elseif @elseif - \em @em - \enum @enum - \example @example - \exception @exception - \exceptions @exceptions - \extends @extends - \file @file - \htmlinclude @htmlinclude - \idlexcept @idlexcept - \if @if - \ifnot @ifnot - \implements @implements - \include @include - \includelineno @includelineno - \latexinclude @latexinclude - \link @link - \memberof @memberof - \namespace @namespace - \p @p - \package @package - \property @property - \relatedalso @relatedalso - \relatesalso @relatesalso - \related @related - \relates @relates - \retval @retval - \throw @throw - \throws @throws - \verbinclude @verbinclude - \version @version - - \xrefitem @xrefitem - - - \param @param - - \tparam @tparam - - - - \image @image - - - - - \addtogroup @addtogroup - \category @category - \class @class - \diafile @diafile - \dotfile @dotfile - \defgroup @defgroup - \interface @interface - \headerfile @headerfile - \mscfile @mscfile - \page @page - \paragraph @paragraph - \protocol @prtocol - \ref @ref - \section @section - \snippet @snippet - \struct @struct - \subpage @subpage - \subsection @subsection - \subsubsection @subsubsection - \union @union - \weakgroup @weakgroup - - - \addindex @addindex - \copyright @copyright - \fn @fn - \ingroup @ingroup - \line @line - \mainpage @mainpage - \name @name - \overload @overload - \par @par - \skip @skip - \skipline @skipline - \typedef @typedef - \until @until - \var @var - \vhdlflow @vhdlflow - - - \note @note - - - \warning @warning - - - \attention @attention - \bug @bug - - - \todo @todo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/dtd.xml ktexteditor-5.31.0/src/syntax/data/dtd.xml --- ktexteditor-5.28.0/src/syntax/data/dtd.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/dtd.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,110 +0,0 @@ - - - -]> - - - - - EMPTY - ANY - CDATA - ID - IDREF - IDREFS - NMTOKEN - NMTOKENS - ENTITY - ENTITIES - NOTATION - PUBLIC - SYSTEM - NDATA - - - - #PCDATA - #REQUIRED - #IMPLIED - #FIXED - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/d.xml ktexteditor-5.31.0/src/syntax/data/d.xml --- ktexteditor-5.28.0/src/syntax/data/d.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/d.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,819 +0,0 @@ - - - - - - - - - - - asm - body - break - case - catch - continue - default - do - else - finally - for - foreach - foreach_reverse - goto - if - mixin - return - switch - throw - try - while - with - - - synchronized - - - - - - abstract - align - auto - const - export - final - immutable - inout - invariant - lazy - nothrow - override - package - private - protected - public - pure - ref - static - - - - out - scope - - - - - false - null - super - this - true - typeid - - - assert - cast - is - new - delete - in - - - delegate - function - - - - module - import - - - - alias - enum - typedef - class - interface - struct - union - - - - typeof - - void - bool - byte - ubyte - short - ushort - int - uint - long - ulong - cent - ucent - float - double - real - ireal - ifloat - idouble - creal - cfloat - cdouble - char - wchar - dchar - - - - macro - template - - - - init - sizeof - alignof - mangleof - stringof - tupleof - offsetof - max - min - infinity - nan - dig - epsilon - mant_dig - max_10_exp - max_exp - min_10_exp - min_exp - re - im - length - ptr - dup - idup - reverse - sort - keys - values - rehash - - - - - size_t - ptrdiff_t - hash_t - Error - Exception - Object - TypeInfo - ClassInfo - ModuleInfo - Interface - OffsetTypeInfo - TypeInfo_Typedef - TypeInfo_Enum - TypeInfo_Pointer - TypeInfo_Array - TypeInfo_StaticArray - TypeInfo_AssociativeArray - TypeInfo_Function - TypeInfo_Delegate - TypeInfo_Class - TypeInfo_Interface - TypeInfo_Struct - TypeInfo_Tuple - - - string - wstring - dstring - bit - TypeInfo_Const - TypeInfo_Invariant - - - - extern - - - C - - D - Windows - Pascal - System - - - - msg - lib - - - - exit - success - failure - - - - DigitalMars - X86 - X86_64 - Windows - Win32 - Win64 - linux - LittleEndian - BigEndian - D_Coverage - D_InlineAsm_X86 - unittest - D_Version2 - none - all - - - - __FILE__ - __LINE__ - __DATE__ - __TIME__ - __TIMESTAMP__ - __VENDOR__ - __VERSION__ - __EOF__ - - - - debug - unittest - - - - pragma - - - - version - - - - deprecated - volatile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/eiffel.xml ktexteditor-5.31.0/src/syntax/data/eiffel.xml --- ktexteditor-5.28.0/src/syntax/data/eiffel.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/eiffel.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,125 +0,0 @@ - - - - - - - agent - alias - all - and - as - assign - class - convert - create - creation - debug - deferred - do - else - elseif - end - expanded - export - external - feature - from - frozen - if - implies - indexing - infix - inherit - inspect - is - like - local - loop - not - obsolete - old - once - or - prefix - pure - redefine - reference - rename - rescue - retry - separate - then - undefine - - - - Current - False - Precursor - Result - True - TUPLE - - - - check - ensure - require - variant - invariant - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/elixir.xml ktexteditor-5.31.0/src/syntax/data/elixir.xml --- ktexteditor-5.28.0/src/syntax/data/elixir.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/elixir.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,240 +0,0 @@ - - - - - - - - catch - cond - else - if - raise - rescue - throw - try - unless - - - do - end - case - bc - lc - for - receive - exit - after - quote - unquote - super - and - not - or - when - xor - in - inlist - inbits - - - nil - true - false - - - fn - defmodule - def - defp - defprotocol - defimpl - defrecord - defstruct - defmacro - defmacrop - defdelegate - defcallback - defmacrocallback - defexception - defoverridable - - - import - require - alias - use - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/email.xml ktexteditor-5.31.0/src/syntax/data/email.xml --- ktexteditor-5.28.0/src/syntax/data/email.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/email.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,106 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/erlang.xml ktexteditor-5.31.0/src/syntax/data/erlang.xml --- ktexteditor-5.28.0/src/syntax/data/erlang.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/erlang.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,250 +0,0 @@ - - - - - - - - - -] -> - - - - - - - after - begin - case - catch - cond - end - fun - if - let - of - query - receive - all_true - some_true - - - - - div - rem - or - xor - bor - bxor - bsl - bsr - and - band - not - bnot - - - - - abs - accept - alarm - apply - atom_to_list - binary_to_list - binary_to_term - check_process_code - concat_binary - date - delete_module - disconnect_node - element - erase - exit - float - float_to_list - garbage_collect - get - get_keys - group_leader - halt - hd - integer_to_list - is_alive - is_atom - is_binary - is_boolean - is_float - is_function - is_integer - is_list - is_number - is_pid - is_port - is_process_alive - is_record - is_reference - is_tuple - length - link - list_to_atom - list_to_binary - list_to_float - list_to_integer - list_to_pid - list_to_tuple - load_module - loaded - localtime - make_ref - module_loaded - node - nodes - now - open_port - pid_to_list - port_close - port_command - port_connect - port_control - ports - pre_loaded - process_flag - process_info - processes - purge_module - put - register - registered - round - self - setelement - size - spawn - spawn_link - spawn_opt - split_binary - statistics - term_to_binary - throw - time - tl - trunc - tuple_to_list - unlink - unregister - whereis - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/euphoria.xml ktexteditor-5.31.0/src/syntax/data/euphoria.xml --- ktexteditor-5.28.0/src/syntax/data/euphoria.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/euphoria.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,375 +0,0 @@ - - - - - - - - - - abort - allocate - allocate_string - allow_break - and - and_bits - append - arccos - arcsin - arctan - atom_to_float32 - atom_to_float64 - as - begin - bits_to_int - bytes_to_int - c_func - c_proc - call - call_back - call_func - call_proc - check_break - chdir - clear_screen - close - command_line - compare - cos - crash_file - crash_message - current_dir - custom_sort - date - define_c_func - define_c_proc - define_c_var - dir - display_text_image - do - else - elsif - end - equal - exit - find - float32_to_atom - float64_to_atom - floor - flush - for - free - free_console - function - get_bytes - get_key - get_mouse - get_position - get_screen_char - getc - getenv - gets - if - include - int_to_bits - int_to_bytes - length - lock_file - log - lower - machine_func - machine_proc - match - mem_copy - mem_set - mouse_events - mouse_pointer - not - not_bits - of - open - open_dll - or - or_bits - peek - peek4 - peek4s - peek4u - platform - poke - poke4 - position - power - prepend - print - printf - procedure - profile - prompt_number - prompt_string - put_screen_char - puts - rand - read_bitmap - register_block - remainder - repeat - return - reverse - routine_id - save_bitmap - save_text_image - scroll - seek - set_rand - sin - sleep - sort - sprint - sprintf - sqrt - system - system_exec - tan - text_color - then - time - to - trace - type - unlock_file - unregister_block - upper - value - video_config - wait_key - walk_dir - where - while - wildcard_file - wildcard_match - with - without - wrap - xor - xor_bits - ? - - - - atom - constant - global - integer - object - sequence - type - - - - PI - GET_SUCCESS - - - - addto - adjustment - alignment - appendto - append_page - arrow - aspect_frame - button - calendar - cell_renderer_text - cell_renderer_toggle - check - checkbutton - check_menu_item - choice - combo - connect - drawingarea - draw_arc - draw_image - draw_line - draw_polygon - draw_point - draw_rectangle - end_submenu - entry - euget - event_box - flatten - font - frame - get - getImage - getSize - g_list - g_list_to_sequence - deallocate_strings - draw_line - hbox - hbuttonbox - hpaned - hscrollbar - hseparator - hscale - idle_add - image - image_menu_item - init - label - limit - list_store - list_view - list_view_column - main - mark_day - menu - menubar - menu_item - mouse_button - new_gc - new_group - new_menu_group - notebook - option - option_menu - pack - path - pop - progress_bar - push - quit - radio - radiobutton - radio_menu_item - rc_parse - run - separator_menu_item - set - set_submenu - str - scrolled_window - seq_to_str - setfg - setProperty - show - spinbutton - statusbar - table - textbox - timer - togglebutton - toolbar - tooltip - tree_store - tree_view - tree_view_column - vbox - vbuttonbox - vpaned - vscale - vscrollbar - vseparator - when - window - NULL - TRUE - FALSE - color_selection - file_selection - font_selection_dialog - Error - Info - Question - Warn - YesNo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/e.xml ktexteditor-5.31.0/src/syntax/data/e.xml --- ktexteditor-5.28.0/src/syntax/data/e.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/e.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,261 +0,0 @@ - - - - - - FALSE - MAX_INT - MIN_INT - NULL - TRUE - UNDEF - bit - bits - body - bool - byte - byte_array - continue - copy - default - external_pointer - files - file - form - global - index - init - int - it - list - load - long - me - method - module - ntv - of - pat - print - result - source_ref - string - symtab - sys - test - uint - untyped - vec - - - run - init - pre_generate - dut_error - pack - unpack - post_generate - pre_generate - set_config - hex - stop_run - append - size - delete - is_empty - deep_compare - deep_compare_physical - clear - pop0 - setup - crc_32 - - - chars - define - extend - event - ECHO - DOECHO - import - initialize - non_terminal - struct - unit - script - testgroup - type - - - C - add - also - and - as - as_a - break - code - compute - computed - delayed - do - else - each - emit - empty - end - exit - finish - for - from - if - in - is - like - log - new - no - not - only - or - out - read - repeat - return - reverse - routine - step - then - to - traceable - untraceable - var - when - while - with - write - xor - - - before - by - choose - gen - keep - keeping - matches - next - select - sequence - soft - using - - - address - cover - error - events - event - length - kind - ranges - range - sample - text - value - item - transition - illegal - - - always - all - basic - call - cycles - cycle - clock - change - check - expect - fall - first - forever - idle - initial - negedge - others - on - posedge - rise - start - that - time - task - until - verilog - vhdl - wait - within - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/fasm.xml ktexteditor-5.31.0/src/syntax/data/fasm.xml --- ktexteditor-5.28.0/src/syntax/data/fasm.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/fasm.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,899 +0,0 @@ - - - - - - - - - rax - eax - ax - ah - al - rbx - ebx - bx - bh - bl - rcx - ecx - cx - ch - cl - rdx - edx - dx - dh - dl - rbp - ebp - bp - rsi - esi - si - rdi - edi - di - rsp - esp - sp - r8 - r9 - r10 - r11 - r12 - r13 - r14 - r15 - - cs - ds - es - fs - gs - ss - - cr0 - - cr2 - cr3 - cr4 - - dr0 - dr1 - dr2 - dr3 - dr6 - dr7 - - st - - mm0 - mm1 - mm2 - mm3 - mm4 - mm5 - mm6 - mm7 - - xmm0 - xmm1 - xmm2 - xmm3 - xmm4 - xmm5 - xmm6 - xmm7 - - - aaa - aad - aam - aas - adc - add - addpd - addps - addsd - addss - addsubpd - addsubps - and - andnpd - andnps - andpd - andps - arpl - bound - bsf - bsr - bswap - bt - btc - btr - bts - call - cbw - cwde - cwd - cdq - cdqe - cqo - clc - cld - clgi - cli - clts - clflush - cmc - cmova - cmovae - cmovb - cmovbe - cmovc - cmove - cmovg - cmovge - cmovl - cmovle - cmovna - cmovnae - cmovnb - cmovnbe - cmovnc - cmovne - cmovng - cmovnge - cmovnl - cmovnle - cmovno - cmovnp - cmovns - cmovnz - cmovo - cmovp - cmovpe - cmovpo - cmovs - cmovz - cmp - cmpeqpd - cmpeqps - cmpeqsd - cmpeqss - cmplepd - cmpleps - cmplesd - cmpless - cmpltpd - cmpltps - cmpltsd - cmpltss - cmpneqpd - cmpneqps - cmpneqsd - cmpneqss - cmpnlepd - cmpnleps - cmpnlesd - cmpnless - cmpnltpd - cmpnltps - cmpnltsd - cmpnltss - cmpordpd - cmpordps - cmpordsd - cmpordss - cmppd - cmpps - cmps - cmpsb - cmpsd - cmpss - cmpsw - cmpunordpd - cmpunordps - cmpunordsd - cmpunordss - cmpxchg - cmpxchg486 - cmpxchg8b - cmpxchg16b - comisd - comiss - cpuid - cvtdq2pd - cvtdq2ps - cvtpd2dq - cvtpd2pi - cvtpd2ps - cvtpi2pd - cvtpi2ps - cvtps2dq - cvtps2pd - cvtps2pi - cvtsd2si - cvtsd2ss - cvtsi2sd - cvtsi2ss - cvtss2sd - cvtss2si - cvttpd2dq - cvttpd2pi - cvttps2dq - cvttps2pi - cvttsd2si - cvttss2si - daa - das - dec - div - divpd - divps - divsd - divss - emms - enter - f2xm1 - fabs - fadd - faddp - fbld - fbstp - fchs - fclex - fnclex - fcmovb - fcmovbe - fcmove - fcmovnb - fcmovnbe - fcmovne - fcmovnu - fcmovu - fcom - fcomp - fcompp - fcomi - fcomip - fcos - fdecstp - fdisi - feni - fdiv - fdivr - fdivp - fdivrp - femms - ffree - ffreep - fiadd - ficom - ficomp - fidiv - fidivr - fild - fimul - fincstp - finit - fist - fistp - fisttp - fisub - fisubr - fld - fld1 - fldl2e - fldl2t - fldlg2 - fldln2 - fldcw - fldenv - fldpi - fldz - fmul - fmulp - fndisi - fneni - fninit - fnop - fnsave - fnstcw - fnstenv - fnstsw - fnwait - fpatan - fptan - fprem - fprem1 - frndint - frstor - fsave - fscale - fsetpm - fsin - fsincos - fsqrt - fst - fstp - fstcw - fstenv - fstsw - fsub - fsubr - fsubp - fsubrp - ftst - fucom - fucomp - fucompp - fucomi - fucomip - fwait - fxam - fxch - fxrstor - fxsave - fxtract - fyl2x - fyl2xp1 - haddpd - haddps - hlt - hsubpd - hsubps - ibts - idiv - imul - in - inc - ins - insb - insd - insw - int - int1 - int3 - into - invd - invlpg - invlpga - iret - iretd - iretq - iretw - ja - jae - jb - jbe - jc - je - jg - jge - jl - jle - jna - jnae - jnb - jnbe - jnc - jne - jng - jnge - jnl - jnle - jno - jnp - jns - jnz - jo - jp - jpe - jpo - js - jz - jcxz - jecxz - jrcxz - jmp - lahf - lar - lddqu - ldmxcsr - lds - les - lea - leave - lfence - lfs - lgdt - lgs - lidt - lldt - lmsw - loadall - loadall286 - lods - lodsb - lodsd - lodsq - lodsw - loop - loope - loopne - loopnz - loopz - lsl - lss - ltr - maskmovdqu - maskmovq - maxpd - maxps - maxsd - maxss - mfence - minpd - minps - minsd - minss - monitor - mov - movapd - movaps - movd - movddup - movdq2q - movdqa - movdqu - movhlps - movhpd - movhps - movlhps - movlpd - movlps - movmskpd - movmskps - movntdq - movnti - movntpd - movntps - movntq - movq - movq2dq - movs - movsb - movsd - movshdup - movsldup - movsq - movss - movsx - movsxd - movsw - movupd - movups - movzx - mul - mulpd - mulps - mulsd - mulss - mwait - neg - nop - not - or - orpd - orps - out - outs - outsb - outsw - outsd - packssdw - packsswb - packuswb - paddb - paddd - paddq - paddsb - paddsw - paddusb - paddusw - paddw - pand - pandn - pause - pavgb - pavgusb - pavgw - pcmpeqb - pcmpeqw - pcmpeqd - pcmpgtb - pcmpgtw - pcmpgtd - pdistib - pextrw - pf2id - pf2iw - pfacc - pfadd - pfcmpeq - pfcmpge - pfcmpgt - pfmax - pfmin - pfmul - pfnacc - pfpnacc - pfrcp - pfrcpit1 - pfrcpit2 - pfrsqit1 - pfrsqrt - pfsub - pfsubr - pi2fd - pi2fw - pinsrw - pmachriw - pmaddwd - pmagw - pmaxsw - pmaxub - pminsw - pminub - pmovmskb - pmulhrw - pmulhuw - pmulhw - pmullw - pmuludq - pmvgezb - pmvlzb - pmvnzb - pmvzb - pop - popa - popaw - popad - popf - popfw - popfd - popfq - por - prefetch - prefetchnta - prefetcht0 - prefetcht1 - prefetcht2 - prefetchw - psadbw - pshufd - pshufhw - pshuflw - pshufw - pslld - pslldq - psllq - psllw - psrad - psraw - psrld - psrldq - psrlq - psrlw - psubb - psubd - psubq - psubsb - psubsiw - psubsw - psubusb - psubusw - psubw - pswapd - punpckhbw - punpckhdq - punpckhqdq - punpckhwd - punpcklbw - punpckldq - punpcklqdq - punpcklwd - push - pusha - pushad - pushaw - pushf - pushfd - pushfq - pushfw - pxor - rcl - rcr - rcpps - rcpss - rdmsr - rdpmc - rdshr - rdtsc - rdtscp - ret - retf - retn - rol - ror - rsdc - rsldt - rsm - rsqrtps - rsqrtss - rsts - sahf - sal - sar - salc - sbb - scas - scasb - scasd - scasq - scasw - seta - setae - setb - setbe - setc - sete - setg - setge - setl - setle - setna - setnae - setnb - setnbe - setnc - setne - setng - setnge - setnl - setnle - setno - setnp - setns - setnz - seto - setp - setpe - setpo - sets - setz - sfence - sgdt - shl - shld - shr - shrd - shufpd - shufps - sidt - skinit - sldt - smi - smint - smintold - smsw - sqrtpd - sqrtps - sqrtsd - sqrtss - stc - std - stgi - sti - stmxcsr - stos - stosb - stosd - stosq - stosw - str - sub - subpd - subps - subsd - subss - svdc - svldt - svts - swapgs - syscall - sysenter - sysexit - sysret - test - ucomisd - ucomiss - ud0 - ud1 - ud2 - umov - unpckhpd - unpckhps - unpcklpd - unpcklps - verr - verw - vmload - vmmcall - vmrun - vmsave - wait - wbinvd - wrmsr - wrshr - xadd - xbts - xchg - xlat - xlatb - xor - xorpd - xorps - - - - - db - dw - du - dd - dp - df - dq - dt - - rb - rw - rd - rp - rf - rq - rt - - file - - byte - word - dword - pword - qword - tbyte - tword - dqword - ptr - - - - append - at - break - common - display - else - end - equ - fix - foward - if - irp - irps - label - local - match - macro - purge - repeat - rept - reverse - restore - struc - times - while - virtual - - - - align - entry - extrn - format - include - invoke - data - load - from - heap - org - proc - public - section - segment - stack - store - use16 - use32 - use64 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/fastq.xml ktexteditor-5.31.0/src/syntax/data/fastq.xml --- ktexteditor-5.28.0/src/syntax/data/fastq.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/fastq.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ferite.xml ktexteditor-5.31.0/src/syntax/data/ferite.xml --- ktexteditor-5.28.0/src/syntax/data/ferite.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ferite.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,117 +0,0 @@ - - - - - - break - case - continue - else - for - if - do - function - namespace - while - class - new - uses - global - return - self - super - null - iferr - fix - - - number - void - string - array - object - final - static - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/fgl-4gl.xml ktexteditor-5.31.0/src/syntax/data/fgl-4gl.xml --- ktexteditor-5.28.0/src/syntax/data/fgl-4gl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/fgl-4gl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,363 +0,0 @@ - - - - - - at - by - go - if - in - is - no - of - on - or - to - up - - add - ALL - and - ANY - avg - day - end - ESC - for - key - let - log - max - mdy - min - not - put - red - row - run - set - sum - top - - blue - BOLD - call - case - cyan - desc - DROP - else - exit - file - form - FREE - from - goto - help - HIDE - HOLD - HOUR - into - last - left - like - line - load - LOCK - main - menu - MODE - name - NEED - next - null - open - page - PIPE - quit - READ - rows - show - skip - sort - STEP - STOP - TEMP - text - then - thru - true - user - WAIT - when - with - WORK - WRAP - year - - after - alter - ascii - BEGIN - blink - clear - close - count - DEFER - DIRTY - error - every - false - fetch - field - first - flush - green - GROUP - index - input - label - lines - month - order - outer - pause - print - right - share - sleep - space - start - TABLE - today - union - UNITS - using - where - WHILE - white - - ACCEPT - before - border - bottom - column - commit - create - cursor - define - delete - enable - ESCAPE - exists - finish - format - HAVING - header - insert - length - locate - margin - MINUTE - MODIFY - normal - option - output - PAGENO - prompt - record - report - return - revoke - SCREEN - scroll - SECOND - select - spaces - status - UNIQUE - UNLOAD - update - values - window - yellow - - between - clipped - cluster - columns - command - comment - connect - CURRENT - declare - display - execute - foreach - globals - infield - MAGENTA - matches - message - options - prepare - printer - program - reverse - trailer - upshift - waiting - without - - ABSOLUTE - continue - database - defaults - DISTINCT - EXTERNAL - function - INT_FLAG - NOTFOUND - previous - ROLLBACK - whenever - wordwrap - - attribute - committed - construct - delimiter - downshift - exclusive - INTERRUPT - ISOLATION - otherwise - quit_flag - returning - - attributes - CONSTRAINT - initialize - statistics - - fgl_lastkey - formhandler - - fgl_lastkey() - - - - - char - date - array - float - money - serial - DECIMAL - integer - NUMERIC - VARCHAR - DATETIME - FRACTION - INTERVAL - smallint - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/fgl-per.xml ktexteditor-5.31.0/src/syntax/data/fgl-per.xml --- ktexteditor-5.28.0/src/syntax/data/fgl-per.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/fgl-per.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,172 +0,0 @@ - - - - - - by - to - - end - not - red - - blue - cyan - keys - like - null - size - type - - black - color - green - input - today - white - - format - record - screen - tables - yellow - - default - display - include - magenta - noentry - picture - reverse - through - UPSHIFT - without - - autonext - comments - COMPRESS - database - formonly - noupdate - required - WORDWRAP - - character - downshift - invisible - underline - - attributes - delimiters - - instructions - - - char - date - array - float - money - serial - DECIMAL - integer - NUMERIC - VARCHAR - DATETIME - FRACTION - INTERVAL - smallint - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/fortran.xml ktexteditor-5.31.0/src/syntax/data/fortran.xml --- ktexteditor-5.28.0/src/syntax/data/fortran.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/fortran.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,580 +0,0 @@ - - - - - - - - - - - allocate - break - call - case - common - - continue - cycle - deallocate - default - - forall - where - elsewhere - - - equivalence - exit - external - for - go - goto - if - implicit - include - interface - intrinsic - namelist - none - nullify - operator - assignment - pause - procedure - pure - elemental - record - recursive - result - return - select - selectcase - stop - - to - use - only - entry - while - - - access - backspace - close - inquire - open - print - read - rewind - write - format - - - - unit - end - err - fmt - iostat - status - advance - size - eor - - - - unit - iostat - err - file - status - access - form - recl - blank - position - action - delim - pad - - - - unit - iostat - err - file - exist - opened - number - named - name - access - sequential - direct - form - formatted - unformatted - recl - nextrec - blank - position - action - read - write - readwrite - delim - pad - - - double - precision - parameter - save - pointer - public - private - target - allocatable - optional - sequence - - - - - - - - abs - cabs - dabs - iabs - aimag - aint - dint - anint - dnint - ceiling - cmplx - dcmplx - dimag - floor - nint - idnint - int - idint - ifix - real - float - sngl - dble - dreal - aprime - dconjg - dfloat - ddmim - rand - - modulo - conjg - dprod - dim - ddim - idim - max - amax0 - amax1 - max0 - max1 - dmax1 - min - amin0 - amin1 - min0 - min1 - dmin1 - mod - amod - dmod - sign - dsign - isign - - acos - dacos - asin - dasin - atan - datan - atan2 - datan2 - cos - ccos - dcos - cosh - dcosh - exp - cexp - dexp - log - alog - dlog - clog - log10 - alog10 - dlog10 - sin - csin - dsin - sinh - dsinh - sqrt - csqrt - dsqrt - tan - dtan - tanh - dtanh - - - achar - char - iachar - ichar - - lge - lgt - lle - llt - - adjustl - adjustr - index - len_trim - scan - verify - - logical - - exponent - fraction - nearest - rrspacing - scale - set_exponent - spacing - - btest - iand - ibclr - ibits - ibset - ieor - ior - ishft - ishftc - not - - mvbits - - merge - - - - - - associated - present - kind - - len - - digits - epsilon - huge - maxexponent - minexponent - precision - radix - range - tiny - - bit_size - - allocated - lbound - ubound - shape - size - - - - - - repeat - trim - - selected_int_kind - selected_real_kind - - transfer - - dot_product - matmul - - all - any - count - maxval - minval - product - sum - - pack - unpack - - reshape - - spread - - cshift - eoshift - - transpose - - maxloc - minloc - - - - - - date_and_time - system_clock - - random_number - random_seed - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/freebasic.xml ktexteditor-5.31.0/src/syntax/data/freebasic.xml --- ktexteditor-5.28.0/src/syntax/data/freebasic.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/freebasic.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,608 +0,0 @@ - - - - - - - #DEFINE - #ELSE - #ELSEIF - #ENDIF - #IF - #IFDEF - #IFNDEF - #UNDEF - $DYNAMIC - $INCLIB - $INCLUDE - $STATIC - - - - - Declare - - Open - - For - - For Input - For Output - For Binary - For Random - Close - - To - Step - Next - As - Break - Exit - If - Then - Else - Until - Select - System - Case - Default - EndSelect - Do - Loop - While - Wend - End - Type - DefType - Dim - Global - Function - Sub - Shared - Protected - Static - Declare - - Unsigned - - Data - Restore - Read - - - Goto - Gosub - Return - - DEFBYTE - DEFDBL - DEFINT - DEFLNG - DEFSHORT - DEFSNG - DEFSTR - DEFUBYTE - DEFUINT - DEFUSHORT - - - - - - - - AH - AL - AX - BH - BL - BP - BX - CH - CL - CS - CX - DH - DI - DL - DS - DX - EAX - EBP - EBX - ECX - EDI - EDX - ES - ESI - ESP - FS - GS - SI - SP - SS - - - - Integer - Long - Single - Double - String - Byte PTR - Dword PTR - Qword PTR - Word PTR - - - - AAA - AAD - AAM - AAS - ABS - ACOS - ADC - ADD - ALLOCATE - AND - AND - ARPL - ASC - ASIN - ASM - ATAN2 - ATN - BEEP - BIN$ - BLOAD - BOUND - BREAK - BSAVE - BSF - BSR - BSWAP - BT - BTC - BTR - BTS - BYREF - CALL - CALLOCATE - CALLS - CBW - CBYTE - CDBL - CDQ - CHAIN - CHDIR - CHR$ - CINT - CIRCLE - CLC - CLD - CLEAR - CLI - CLNG - CLOSE - CLTS - CMC - CMP - CMPS - CMPSB - CMPSD - CMPSW - CMPXCHG - COLOR - COMMAND$ - COMMON - CONST - CONTINUE - COS - CSHORT - CSIGN - CSNG - CUNSG - CURDIR$ - CVD - CVI - CVL - CVS - CWD - CWDE - DAA - DAS - DATA - DATE$ - DEALLOCATE - DEC - DIM - DIR$ - DIV - DRAW - END - ENTER - ENUM - ENVIRON - ENVIRON$ - EOF - EQV - ERASE - EXEC - EXEPATH - EXP - FIX - FLIP - FRE - FREEFILE - GET - GETKEY - GETMOUSE - HEX$ - HLT - IDIV - IMP - IMUL - IN - INC - INKEY$ - INP - INPUT - INPUT$ - INS - INSB - INSD - INSTR - INT - INT - INTO - INVD - INVLPG - IRET - IRETD - JA - JAE - JB - JBE - JC - JCXZ - JE - JECXZ - JG - JGE - JL - JLE - JMP - JNA - JNAE - JNB - JNBE - JNC - JNE - JNG - JNGE - JNL - JNLE - JNO - JNP - JNS - JNZ - JO - JP - JPE - JPO - JS - JUMP - JZ - KILL - LAHF - LAR - LBOUND - LCASE$ - LDS - LEA - LEAVE - LEAVED - LEAVEW - LEFT$ - LEN - LES - LET - LFS - LGDT - LGS - LIB - LIDT - LINE - LLDT - LMSW - LOC - LOCK - LOCK - LODS - LODSB - LODSD - LODSW - LOF - LOG - LOOPD - LOOPDE - LOOPDNE - LOOPDNZ - LOOPDZ - LOOPE - LOOPNE - LOOPNZ - LOOPW - LOOPWE - LOOPWNE - LOOPWNZ - LOOPWZ - LOOPZ - LSET - LSL - LSS - LTR - LTRIM$ - MID$ - MKD$ - MKDIR - MKI$ - MKL$ - MKS$ - MOD - MOV - MOVS - MOVSB - MOVSD - MOVSW - MOVSX - MOVZX - MUL - MULTIKEY - NAME - NEG - NOP - NOT - NOTHING - OCT$ - OPTION BASE - OPTION PRIVATE - OR - OUT - OUTS - OUTSB - OUTSD - OUTSW - PAINT - PALETTE - PCOPY - PEEK - PEEKI - PEEKS - PMAP - POINT - POKE - POKEI - POKES - POP - POPA - POPAD - POPF - POPFD - POS - PRESERVE - PRESET - PRINT - PRIVATE - PROCPTR - PSET - PTR - PUBLIC - PUSH - PUSHA - PUSHAD - PUSHF - PUSHFD - PUT - RANDOMIZE - RCL - RCR - REALLOCATE - REDIM - REM - REP - REPE - REPNE - REPNZ - REPZ - RESET - RET - RETURN - RGB - RIGHT$ - RMDIR - RND - ROL - ROR - RSET - RTRIM$ - RUN - SADD - SAHF - SAL - SAR - SBB - SCAS - SCASB - SCASD - SCASW - SCREEN - SCREENCOPY - SCREENINFO - SCREENLOCK - SCREENPTR - SCREENSET - SCREENUNLOCK - SEEK - SETA - SETAE - SETB - SETBE - SETC - SETDATE - SETE - SETENVIRON - SETG - SETGE - SETL - SETLE - SETNA - SETNAE - SETNB - SETNBE - SETNC - SETNE - SETNG - SETNGE - SETNL - SETNLE - SETNO - SETNP - SETNS - SETNZ - SETO - SETP - SETPE - SETPO - SETS - SETZ - SGDT - SGN - SHARED - SHELL - SHL - SHLD - SHR - SHRD - SIDT - SIN - SLDT - SLEEP - SMSW - SPACE$ - SQR - STATIC - STC - STD - STI - STOP - STOS - STOSB - STOSD - STOSW - STR - STR$ - STRING$ - SWAP - TAN - TEST - TIME$ - TIMER - TRIM$ - TYPE - UBOUND - UCASE$ - UNION - UNLOCK - VAL - VARPTR - VERR - VERW - VIEW - WAIT - WINDOWTITLE - WRITE - XADD - XCHG - XLAT - XLATB - XOR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/fsharp.xml ktexteditor-5.31.0/src/syntax/data/fsharp.xml --- ktexteditor-5.28.0/src/syntax/data/fsharp.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/fsharp.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,287 +0,0 @@ - - - - - - - - -]> - - - - - abstract - and - as - assert - base - - class - delegate - - - dowcast - downto - elif - else - - exception - extern - false - for - fun - function - functor - global - if - in - - inherit - inline - interfaece - internal - lazy - let - match - member - - mutable - namespace - new - not - null - - of - - or - override - private - public - rec - ref - return - - static - - then - to - true - try - type - upcast - use - val - void - when - while - with - yield - - - bool - byte - sbyte - int16 - uint16 - int - uint32 - int64 - uint64 - nativeint - unativeint - char - string - decimal - unit - void - float32 - single - float - double - bigint - option - seq - - - ? - - - end - - - sig - - - struct - - - object - - - begin - - - do - - - done - - - module - open - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/fstab.xml ktexteditor-5.31.0/src/syntax/data/fstab.xml --- ktexteditor-5.28.0/src/syntax/data/fstab.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/fstab.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,96 +0,0 @@ - - - - - - - ext2 - ext3 - fat - vfat - reiser - proc - none - sysfs - ntfs - umsdos - swap - minix - iso9660 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ftl.xml ktexteditor-5.31.0/src/syntax/data/ftl.xml --- ktexteditor-5.28.0/src/syntax/data/ftl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ftl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/gap.xml ktexteditor-5.31.0/src/syntax/data/gap.xml --- ktexteditor-5.28.0/src/syntax/data/gap.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gap.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,7835 +0,0 @@ - - - - - - - - - - - - - break - continue - do - elif - else - - - - - - then - - - - - - and - fail - false - not - or - true - - - - - - in - local - rec - return - - - - mod - - - - AClosVecLib - AClosestVectorCombinationsMatFFEVecFFE - AClosestVectorCombinationsMatFFEVecFFECoords - AClosestVectorDriver - ANFAutomorphism - ANonReesCongruenceOfSemigroup - APolyProd - AbelianGroup - AbelianGroupCons - AbelianInvariants - AbelianInvariantsMultiplier - AbelianInvariantsNormalClosureFpGroup - AbelianInvariantsNormalClosureFpGroupRrs - AbelianInvariantsOfList - AbelianInvariantsSubgroupFpGroup - AbelianInvariantsSubgroupFpGroupMtc - AbelianInvariantsSubgroupFpGroupRrs - AbelianNumberField - AbelianNumberFieldByReducedGaloisStabilizerInfo - AbelianPQuotient - AbelianSubfactorAction - AbsAndIrredModules - AbsInt - AbsolutIrreducibleModules - AbsoluteIrreducibleModules - AbsoluteValue - AbstractWordTietzeWord - AbstractWordTzWord - ActingAlgebra - ActingDomain - Action - ActionAbelianCSPG - ActionHomomorphism - ActionHomomorphismAttr - ActionHomomorphismConstructor - ActionKernelExternalSet - ActionSubspacesElementaryAbelianGroup - ActorOfExternalSet - Add - AddAbelianRelator - AddCoeffs - AddCosetInfoStabChain - AddDictionary - AddEquationsSQ - AddGenerator - AddGenerators - AddGeneratorsExtendSchreierTree - AddGeneratorsGenimagesExtendSchreierTree - AddHashEntry - AddImage - AddImageNC - AddNaturalHomomorphismsPool - AddNormalizingElementPcgs - AddPageNumbersToSix - AddParagraphNumbersGapDocTree - AddRefinement - AddRelator - AddRootParseTree - AddRowVector - AddRule - AddRuleReduced - AddSet - AddToListEntries - AddVectorLTM - AddendumSCTable - AdditiveCoset - AdditiveElementAsMultiplicativeElement - AdditiveElementsAsMultiplicativeElementsFamily - AdditiveGroup - AdditiveGroupByGenerators - AdditiveInverse - AdditiveInverseAttr - AdditiveInverseImmutable - AdditiveInverseMutable - AdditiveInverseOp - AdditiveInverseSM - AdditiveInverseSameMutability - AdditiveMagma - AdditiveMagmaByGenerators - AdditiveMagmaWithInverses - AdditiveMagmaWithInversesByGenerators - AdditiveMagmaWithZero - AdditiveMagmaWithZeroByGenerators - AdditiveNeutralElement - AdditivelyActingDomain - AdjointAssociativeAlgebra - AdjointBasis - AdjointMatrix - AdjointModule - AffineAction - AffineActionByMatrixGroup - AffineActionLayer - AffineOperation - AffineOperationLayer - Agemo - AgemoAbove - AgemoOp - AlgExtElm - AlgExtEmbeddedPol - AlgExtFactSQFree - AlgExtSquareHensel - AlgFacUPrep - Algebra - AlgebraByGenerators - AlgebraByStructureConstants - AlgebraByStructureConstantsArg - AlgebraGeneralMappingByImages - AlgebraHomomorphismByImages - AlgebraHomomorphismByImagesNC - AlgebraWithOne - AlgebraWithOneByGenerators - AlgebraWithOneGeneralMappingByImages - AlgebraWithOneHomomorphismByImages - AlgebraWithOneHomomorphismByImagesNC - AlgebraicElementsFamilies - AlgebraicElementsFamily - AlgebraicExtension - AlgebraicPolynomialModP - AllBlocks - AllGroups - AllIrreducibleMonicPolynomialCoeffsOfDegree - AllIrreducibleMonicPolynomials - AllIrreducibleSolvableGroups - AllLibTomNames - AllModulesSQ - AllMonicPolynomialCoeffsOfDegree - AllPrimitiveGroups - AllSmallGroups - AllTransitiveGroups - AllowableSubgroup - Alpha - AlternatingDegree - AlternatingGroup - AlternatingGroupCons - AlternatingSubgroup - AntiSymmetricParts - Append - AppendCollectedList - AppendTo - ApplicableMethod - ApplicableMethodTypes - Apply - ApplyGeneratorsToPoint - ApplyGeneratorsToPointsList - ApplyRel - ApplySimpleReflection - ApplyToNodesParseTree - ApproxRational - ApproxRootBound - ApproximateRoot - ApproximateSuborbitsStabilizerPermGroup - ArithmeticElementCreator - Arrangements - ArrangementsA - ArrangementsK - AsAlgebra - AsAlgebraWithOne - AsBinaryRelationOnPoints - AsBlockMatrix - AsCharacterMorphismFunction - AsDivisionRing - AsDuplicateFreeList - AsFLMLOR - AsFLMLORWithOne - AsField - AsFreeLeftModule - AsGroup - AsGroupGeneralMappingByImages - AsInducedPcgs - AsLeftIdeal - AsLeftMagmaIdeal - AsLeftModule - AsLeftModuleGeneralMappingByImages - AsLieAlgebra - AsList - AsListOfFreeLeftModule - AsListSorted - AsMagma - AsMagmaIdeal - AsMonoid - AsNearRing - AsPerm - AsPlist - AsPolynomial - AsRightIdeal - AsRightMagmaIdeal - AsRing - AsSSortedList - AsSSortedListList - AsSSortedListNonstored - AsSemigroup - AsSemiring - AsSemiringWithOne - AsSemiringWithOneAndZero - AsSemiringWithZero - AsSet - AsSortedList - AsSubFLMLOR - AsSubFLMLORWithOne - AsSubalgebra - AsSubalgebraWithOne - AsSubgroup - AsSubgroupOfWholeGroupByQuotient - AsSubmagma - AsSubmonoid - AsSubsemigroup - AsSubspace - AsTransformation - AsTransformationNC - AsTwoSidedIdeal - AsVectorSpace - AscendingChain - AscendingChainOp - Assert - AssertionLevel - AssignGeneratorVariables - AssignNiceMonomorphismAutomorphismGroup - AssocBWorLetRepPow - AssocWWorLetRepPow - AssocWord - AssocWordByLetterRep - AssociatedPartition - AssociatedReesMatrixSemigroupOfDClass - AssociatedSemigroup - Associates - AtlasIrrationality - AttributeMethodByNiceMonomorphism - AttributeMethodByNiceMonomorphismCollColl - AttributeMethodByNiceMonomorphismCollElm - AttributeMethodByNiceMonomorphismElmColl - AttributeValueNotSet - AugmentationIdeal - AugmentedCosetTableInWholeGroup - AugmentedCosetTableMtc - AugmentedCosetTableMtcInWholeGroup - AugmentedCosetTableNormalClosure - AugmentedCosetTableNormalClosureInWholeGroup - AugmentedCosetTableRrs - AugmentedCosetTableRrsInWholeGroup - AutoloadPackages - AutomorphismDomain - AutomorphismGroup - AutomorphismGroupAbelianGroup - AutomorphismGroupElAbGroup - AutomorphismGroupFrattFreeGroup - AutomorphismGroupPermGroup - AutomorphismGroupSolvableGroup - AutomorphismRepresentingGroup - AutomorphismsOfTable - AvoidedLayers - BPolyProd - BagStats - BarPartitions - BaseFixedSpace - BaseImage - BaseIntMat - BaseIntersectionIntMats - BaseMat - BaseMatDestructive - BaseOfBasicImageGroup - BaseOfElt - BaseOfGroup - BaseOrthogonalSpaceMat - BasePoint - BasePointOfSchreierTransversal - BaseShortVectors - BaseStabChain - BaseSteinitzVectors - BasicImageEltRepFamily - BasicImageGroup - BasicImageGroupElement - BasicWreathProductOrdering - BasicWreathProductOrderingNC - Basis - BasisForFreeModuleByNiceBasis - BasisNC - BasisNullspaceModN - BasisOfAlgebraModule - BasisOfHomCosetAddMatrixGroup - BasisOfHomCosetAddMatrixGroupFnc - BasisOfMonomialSpace - BasisOfSparseRowSpace - BasisOfWeightRepSpace - BasisVectors - BasisVectorsForMatrixAction - BasisWithReplacedLeftModule - BaumClausenInfo - BaumClausenInfoDebug - BeauzamyBound - BeauzamyBoundGcd - Bell - Bernoulli - BestQuoInt - BestSplittingMatrix - BetaSet - BiAlgebraModule - BiAlgebraModuleByGenerators - BilinearFormMat - BinaryRelationByElements - BinaryRelationByListOfImages - BinaryRelationByListOfImagesNC - BinaryRelationOnPoints - BinaryRelationOnPointsNC - BinaryRelationTransformation - BindGlobal - Binomial - BlistList - BlistStringDecode - BlockMatrix - BlockStabilizer - Blocks - BlocksAttr - BlocksInfo - BlocksOp - BlowUpCocycleSQ - BlowUpIsomorphism - BlownUpMat - BlownUpMatrix - BlownUpModule - BlownUpVector - BombieriNorm - BooleanFamily - BrauerCharacterValue - BrauerTable - BrauerTableOp - BravaisGroup - BravaisSubgroups - BravaisSupergroups - BuildIsomorphismReesMatrixSemigroupWithMap - CIUnivPols - COAffineBlocks - COComplements - COComplementsMain - CONextCentral - CONextCentralizer - CONextCocycles - CONextComplements - CalcDoubleCosets - CalcOrder - CallFuncList - CallFuncTrapError - CanComputeIndex - CanComputeIsSubset - CanComputeSize - CanComputeSizeAnySubgroup - CanEasilyCompareElements - CanEasilyCompareElementsFamily - CanEasilyComputePcgs - CanEasilySortElements - CanEasilySortElementsFamily - CanEasilyTestMembership - CanFindGeneratorOfCyclicGroup - CanFindNilpotentClassTwoElement - CanonicalBasis - CanonicalElt - CanonicalGenerators - CanonicalNiceMonomorphism - CanonicalPcElement - CanonicalPcgs - CanonicalPcgsByGeneratorsWithImages - CanonicalPcgsWrtFamilyPcgs - CanonicalPcgsWrtHomePcgs - CanonicalPcgsWrtSpecialPcgs - CanonicalRelator - CanonicalRepresentativeDeterminatorOfExternalSet - CanonicalRepresentativeOfExternalSet - CanonicalRightCosetElement - CanonicalSubgroupRepresentativePcGroup - CartanMatrix - CartanSubalgebra - Cartesian - CasesCSPG - CategoriesOfObject - CategoryCollections - CategoryFamily - CayleyGraphDualSemigroup - CayleyGraphSemigroup - Cell - CellNoPoint - CellNoPoints - Cells - Center - CenterOfCharacter - CentralCharacter - CentralIdempotentsOfAlgebra - CentralIdempotentsOfSemiring - CentralNormalSeriesByPcgs - CentralProductOfMatrixGroups - CentralRelations - CentralStelClEANSNonsolv - CentralStepClEANS - CentralStepConjugatingElement - CentralStepRatClPGroup - Centralizer - CentralizerInAssociativeGaussianMatrixAlgebra - CentralizerInFiniteDimensionalAlgebra - CentralizerInGLnZ - CentralizerInParent - CentralizerModulo - CentralizerNormalCSPG - CentralizerNormalTransCSPG - CentralizerOp - CentralizerOrder - CentralizerSizeLimitConsiderFunction - CentralizerSolvableGroup - CentralizerTransSymmCSPG - CentralizerWreath - Centre - CentreFromSCTable - CentreOfCharacter - CentrePcGroup - ChaNuPol - ChainHomomorphicImage - ChainStatistics - ChainSubgroup - ChainSubgroupByDirectProduct - ChainSubgroupByHomomorphism - ChainSubgroupByPSubgroupOfAbelian - ChainSubgroupByProjectionFunction - ChainSubgroupBySiftFunction - ChainSubgroupByStabiliser - ChainSubgroupByStabilizer - ChainSubgroupByTrivialSubgroup - ChainSubgroupQuotient - ChangeStabChain - ChangeTypeObj - ChangedBaseGroup - CharTableAlternating - CharTableDoubleCoverAlternating - CharTableDoubleCoverSymmetric - CharTableSymmetric - CharTableWeylB - CharTableWeylD - CharValueDoubleCoverSymmetric - CharValueSymmetric - CharValueWeylB - CharValueWreathSymmetric - Character - CharacterDegreePool - CharacterDegrees - CharacterMorphismGroup - CharacterMorphismOrbits - CharacterNames - CharacterParameters - CharacterString - CharacterTable - CharacterTableDirectProduct - CharacterTableDisplayPrintLegendDefault - CharacterTableDisplayStringEntryDataDefault - CharacterTableDisplayStringEntryDefault - CharacterTableFactorGroup - CharacterTableFromLibrary - CharacterTableHeadOfFactorGroupByFusion - CharacterTableIsoclinic - CharacterTableOfNormalSubgroup - CharacterTableQuaternionic - CharacterTableRegular - CharacterTableWithSortedCharacters - CharacterTableWithSortedClasses - CharacterTableWreathSymmetric - Characteristic - CharacteristicPolynomial - CharacteristicPolynomialMatrixNC - CharsFamily - CheckAndCleanGapDocTree - CheckAuto - CheckCompletionFiles - CheckConsistencyOfDefinitions - CheckCosetTableFpGroup - CheckFixedPoints - CheckForHandlingByNiceBasis - CheckGlobalName - CheckPackageLoading - CheckPermChar - CheckSchreierTreeInternalConsistency - ChevalleyBasis - ChiefNormalSeriesByPcgs - ChiefSeries - ChiefSeriesOfGroup - ChiefSeriesThrough - ChiefSeriesUnderAction - ChineseRem - Chomp - ChooseNextBasePoint - ClassComparison - ClassElementLargeGroup - ClassElementLattice - ClassElementSmallGroup - ClassFunction - ClassFunctionSameType - ClassMultiplicationCoefficient - ClassNames - ClassNamesTom - ClassNumbersElements - ClassOrbit - ClassParameters - ClassPermutation - ClassPositionsOfAgemo - ClassPositionsOfCentre - ClassPositionsOfDerivedSubgroup - ClassPositionsOfDirectProductDecompositions - ClassPositionsOfElementaryAbelianSeries - ClassPositionsOfFittingSubgroup - ClassPositionsOfKernel - ClassPositionsOfLowerCentralSeries - ClassPositionsOfMaximalNormalSubgroups - ClassPositionsOfNormalClosure - ClassPositionsOfNormalSubgroup - ClassPositionsOfNormalSubgroups - ClassPositionsOfSolvableResiduum - ClassPositionsOfSupersolvableResiduum - ClassPositionsOfUpperCentralSeries - ClassRepsPermutedTuples - ClassRoots - ClassStructureCharTable - ClassTypesTom - ClassesSolvableGroup - CleanedTailPcElement - ClearCacheStats - ClearCentralRelations - ClearDefinitionNC - ClearPQuotientStatistics - ClearProfile - CloseMutableBasis - CloseNaturalHomomorphismsPool - CloseStream - ClosedStreamType - ClosureAdditiveGroup - ClosureAdditiveMagmaDefault - ClosureAdditiveMagmaWithInverses - ClosureAlgebra - ClosureDivisionRing - ClosureField - ClosureGroup - ClosureGroupAddElm - ClosureGroupCompare - ClosureGroupDefault - ClosureGroupIntest - ClosureLeftModule - ClosureLeftOperatorRing - ClosureMagmaDefault - ClosureNearAdditiveGroup - ClosureNearAdditiveMagmaWithInverses - ClosureRandomPermGroup - ClosureRing - ClosureSemiring - ClosureSubgroup - ClosureSubgroupNC - CntOp - CoKernel - CoKernelGensIterator - CoKernelGensPermHom - CoKernelOfAdditiveGeneralMapping - CoKernelOfMultiplicativeGeneralMapping - CoSuFp - Coboundaries - CocGroup - Cochain - CochainSpace - CocycleSQ - CocycleToRelVector - Cocycles - CodeGenerators - CodePcGroup - CodePcgs - CoefficientTaylorSeries - Coefficients - CoefficientsAndMagmaElements - CoefficientsFamily - CoefficientsMultiadic - CoefficientsOfLaurentPolynomial - CoefficientsOfUnivariateLaurentPolynomial - CoefficientsOfUnivariatePolynomial - CoefficientsOfUnivariateRationalFunction - CoefficientsOfVector - CoefficientsQadic - CoefficientsRing - CoeffsCyc - CoeffsMod - CollFamRangeEqFamElms - CollFamSourceEqFamElms - CollapsedMat - CollectPolycyclic - CollectUEALatticeElement - CollectWord - CollectWordOrFail - Collected - CollectedPartition - CollectedWordSQ - CollectionsFamily - CollectorSQ - ColorPrompt - ColumnIndexOfReesMatrixSemigroupElement - ColumnIndexOfReesZeroMatrixSemigroupElement - ColumnsOfReesMatrixSemigroup - ColumnsOfReesZeroMatrixSemigroup - Combinations - CombinationsA - CombinationsK - CombinatorialCollector - CombinatorialCollectorByGenerators - CombinatoricSplit - Comm - CommutGenImgs - CommutativeDiagram - CommutatorFactorGroup - CommutatorLength - CommutatorSubgroup - Compacted - CompanionMat - CompareVersionNumbers - CompatibleConjugacyClasses - CompatibleConjugacyClassesDefault - CompatiblePairs - CompileFunc - ComplementIntMat - ComplementSystem - Complementclasses - ComplementclassesEA - ComplementclassesSolvableNC - ComplementclassesSolvableWBG - CompleteChain - CompleteGaloisGroupPElement - CompleteOrdersOfRws - CompleteSchreierTransversal - CompletionBar - ComplexConjugate - ComplexificationQuat - ComponentsOfTuplesFamily - ComposedXMLString - CompositionMapping - CompositionMaps - CompositionOfStraightLinePrograms - CompositionSeries - Compress - ComputeTails - ComputedAgemos - ComputedAscendingChains - ComputedBrauerTables - ComputedClassFusions - ComputedCyclicExtensionsTom - ComputedHallSubgroups - ComputedIndicators - ComputedIsPNilpotents - ComputedIsPSolvableCharacterTables - ComputedIsPSolvables - ComputedOmegas - ComputedPCentralSeriess - ComputedPCores - ComputedPRumps - ComputedPowerMaps - ComputedPrimeBlockss - ComputedSylowComplements - ComputedSylowSubgroups - ConcatSubos - Concatenation - Conductor - ConfluentRws - Congruences - ConjugacyClass - ConjugacyClassSubgroups - ConjugacyClasses - ConjugacyClassesByOrbits - ConjugacyClassesByRandomSearch - ConjugacyClassesFittingFreeGroup - ConjugacyClassesForSmallGroup - ConjugacyClassesMaximalSubgroups - ConjugacyClassesOfNaturalGroup - ConjugacyClassesPerfectSubgroups - ConjugacyClassesSubgroups - ConjugacyClassesSubwreath - ConjugacyClassesTry - ConjugacyClassesViaRadical - ConjugateDominantWeight - ConjugateDominantWeightWithWord - ConjugateGroup - ConjugateMatrixActionToLinearAction - ConjugateMatrixGroupToLinearAction - ConjugateMatrixGroupToLinearGroup - ConjugateStabChain - ConjugateSubgroup - ConjugateSubgroups - ConjugatedModule - Conjugates - ConjugatingElement - ConjugatorAutomorphism - ConjugatorAutomorphismNC - ConjugatorInnerAutomorphism - ConjugatorIsomorphism - ConjugatorOfConjugatorIsomorphism - ConnectGroupAndCharacterTable - ConsiderKernels - ConsiderSmallerPowerMaps - ConsiderStructureConstants - ConsiderTableAutomorphisms - ConstantInBaseRingPol - ConstantTimeAccessList - ConstituentsCompositionMapping - ConstituentsOfCharacter - ConstituentsPolynomial - ContainedCharacters - ContainedDecomposables - ContainedMaps - ContainedPossibleCharacters - ContainedPossibleVirtualCharacters - ContainedSpecialVectors - ContainedTom - ContainingTom - ContinuedFractionApproximationOfRoot - ContinuedFractionExpansionOfRoot - ConvertBasicImageGroupElement - ConvertToCharacterTable - ConvertToCharacterTableNC - ConvertToLibTom - ConvertToLibraryCharacterTableNC - ConvertToMatrixRep - ConvertToMatrixRepNC - ConvertToNormalFormMonomialElement - ConvertToRangeRep - ConvertToSiftGroup - ConvertToStringRep - ConvertToTableOfMarks - ConvertToVectorRep - ConvertToVectorRepNC - ConwayCandidates - ConwayPol - ConwayPolynomial - CopiedAugmentedCosetTable - CopyMappingAttributes - CopyOptionsDefaults - CopyRel - CopyStabChain - Core - CoreInParent - CoreOp - CorestEval - CorrectConjugacyClass - CorrespondingGeneratorsByModuloPcgs - CorrespondingPermutations - CosetLeadersInner - CosetLeadersMatFFE - CosetNumber - CosetRepAsWord - CosetTable - CosetTableBySubgroup - CosetTableDefaultLimit - CosetTableDefaultMaxLimit - CosetTableFpHom - CosetTableFromGensAndRels - CosetTableInWholeGroup - CosetTableNormalClosure - CosetTableNormalClosureInWholeGroup - CosetTableOfFpSemigroup - CosetTableStandard - CoveringTriplesCharacters - CrcFile - CreateAllCycleStructures - CreateCompletionFiles - CreateKnuthBendixRewritingSystem - CreateOrderingByLtFunction - CreateOrderingByLteqFunction - CrystGroupDefaultAction - CurrentAssertionLevel - CycList - Cycle - CycleByPosOp - CycleIndex - CycleIndexOp - CycleLength - CycleLengthOp - CycleLengthPermInt - CycleLengths - CycleLengthsOp - CycleOp - CyclePermInt - CycleStructureClass - CycleStructurePerm - CycleStructuresGroup - Cycles - CyclesOp - CyclicExtensionsTom - CyclicExtensionsTomOp - CyclicGroup - CyclicGroupCons - CyclicTopExtensions - CyclotomicField - CyclotomicPol - CyclotomicPolynomial - Cyclotomics - CyclotomicsFamily - DMYDay - DMYhmsSeconds - DTCommutator - DTConjugate - DTMultiply - DTPower - DTQuotient - DTSolution - DataObj - DataType - DayDMY - DaysInMonth - DaysInYear - DeclareAttribute - DeclareAttributeKernel - DeclareAttributeSuppCT - DeclareAutoPackage - DeclareAutoreadableVariables - DeclareCategory - DeclareCategoryCollections - DeclareCategoryFamily - DeclareCategoryKernel - DeclareComponent - DeclareConstructor - DeclareConstructorKernel - DeclareFilter - DeclareGlobalFunction - DeclareGlobalVariable - DeclareHandlingByNiceBasis - DeclareInfoClass - DeclareOperation - DeclareOperationKernel - DeclarePackage - DeclarePackageAutoDocumentation - DeclarePackageDocumentation - DeclareProperty - DeclarePropertyKernel - DeclarePropertySuppCT - DeclareRepresentation - DeclareRepresentationKernel - DeclareSynonym - DeclareSynonymAttr - DecodeTree - DecodedTreeEntry - DecomposeEltIntoPElts - DecomposeTensorProduct - DecomposedFixedPointVector - DecomposedRationalClass - Decomposition - DecompositionInt - DecompositionMatrix - DecompositionTypes - DecompositionTypesOfGroup - Decreased - DeepThoughtCollector - DeepThoughtCollectorByGenerators - DefaultField - DefaultFieldByGenerators - DefaultFieldOfMatrix - DefaultFieldOfMatrixGroup - DefaultHashLength - DefaultPackageBannerString - DefaultRing - DefaultRingByGenerators - DefaultSparseHashRepType - DefaultSparseHashWithIKRepType - DefaultStabChainOptions - DefectApproximation - DefineNewGenerators - DefiningPcgs - DefiningPolynomial - DefiningQuotientHomomorphism - Degree - DegreeAction - DegreeFFE - DegreeIndeterminate - DegreeNaturalHomomorphismsPool - DegreeOfBinaryRelation - DegreeOfCharacter - DegreeOfLaurentPolynomial - DegreeOfMatrixGroup - DegreeOfTransformation - DegreeOfTransformationSemigroup - DegreeOfUnivariateLaurentPolynomial - DegreeOperation - DegreeOverPrimeField - DeleteImage - Delta - DenominatorCyc - DenominatorOfModuloPcgs - DenominatorOfRationalFunction - DenominatorRat - DenseHashTable - DenseIntKey - DepthOfPcElement - DepthOfUpperTriangularMatrix - DepthSchreierTrees - Derangements - DerangementsK - Derivations - Derivative - DerivedLength - DerivedSeries - DerivedSeriesOfGroup - DerivedSubgroup - DerivedSubgroupTom - DerivedSubgroupsTom - DerivedSubgroupsTomPossible - DerivedSubgroupsTomUnique - DescendingListWithElementRemoved - DescriptionOfNormalizedUEAElement - DescriptionOfRootOfUnity - Determinant - DeterminantIntMat - DeterminantMat - DeterminantMatDestructive - DeterminantMatDivFree - DeterminantOfCharacter - DiagonalMat - DiagonalOfMat - DiagonalSocleAction - DiagonalizeIntMat - DiagonalizeIntMatNormDriven - DiagonalizeMat - DictionariesFamily - DictionaryByList - DictionaryByPosition - DictionaryBySort - DiffCoc - Difference - DifferenceBlist - DifferenceLists - DifferenceOfPcElement - DigitsNumber - DihedralGenerators - DihedralGroup - DihedralGroupCons - Dimension - DimensionOfHighestWeightModule - DimensionOfMatrixGroup - DimensionOfVectors - DimensionsLoewyFactors - DimensionsMat - DirProdTransversal - DirectFactorsOfGroup - DirectProduct - DirectProductDecompositionsLocal - DirectProductInfo - DirectProductOp - DirectSumDecomposition - DirectSumMat - DirectSumOfAlgebraModules - DirectSumOfAlgebras - DirectoriesFamily - DirectoriesLibrary - DirectoriesPackageLibrary - DirectoriesPackagePrograms - DirectoriesSystemPrograms - Directory - DirectoryContents - DirectoryCurrent - DirectoryTemporary - DirectoryType - DisableAttributeValueStoring - Discriminant - Display - DisplayCacheStats - DisplayCompositionSeries - DisplayEggBoxOfDClass - DisplayImfInvariants - DisplayImfReps - DisplayInformationPerfectGroups - DisplayOptions - DisplayOptionsStack - DisplayProfile - DisplayRevision - DisplaySemigroup - DisplayXMLStructure - DistVecClosVecLib - DistanceVecFFE - DistancesDistributionMatFFEVecFFE - DistancesDistributionVecFFEsVecFFE - DivisionRingByGenerators - DivisorsInt - DivisorsIntCache - DixonInit - DixonRecord - DixonRepChi - DixonRepGHchi - DixonSplit - DixontinI - DnLattice - DnLatticeIterative - DoAlgebraicExt - DoCentralSeriesPcgsIfNilpot - DoCheapActionImages - DoCheapOperationImages - DoClosurePrmGp - DoEASLS - DoExponentsConjLayerFampcgs - DoFactorCosetAction - DoGaloisType - DoImmutableMatrix - DoInducedPcgsByPcSequenceNC - DoLogModRho - DoLowIndexSubgroupsFpGroup - DoMulExt - DoNFIM - DoNormalClosurePermGroup - DoNormalizerSA - DoPcgsElementaryAbelianSeries - DoPcgsOrbitOp - DoPrintUnivariateLaurent - DoReadPkg - DoRereadPkg - DoRightTransversalPc - DoShortwordBasepoint - DoSnAnGiantTest - DoSparseActionHomomorphism - DoSparseLinearActionOnFaithfulSubset - DoTest - DoUnivTestRatfun - Domain - DomainByGenerators - DomainForAction - DominantCharacter - DominantWeights - DoubleCentralizerOrbit - DoubleCoset - DoubleCosetRepsAndSizes - DoubleCosets - DoubleCosetsNC - DoubleCosetsPcGroup - DoubleHashArraySize - DoubleHashDictSize - DownEnv - DualGModule - DumpWorkspace - DuplicateFreeList - DxActiveCols - DxCalcAllPowerMaps - DxCalcPrimeClasses - DxDegreeCandidates - DxEigenbase - DxFrobSchurInd - DxGaloisOrbits - DxGeneratePrimeCyclotomic - DxIncludeIrreducibles - DxIsInSpace - DxLiftCharacter - DxLinearCharacters - DxModProduct - DxModularValuePol - DxNiceBasis - DxPreparation - DxRegisterModularChar - DxSplitDegree - EANormalSeriesByPcgs - EAPrimeLayerSQ - ERepAssWorInv - ERepAssWorProd - ERepLettWord - Earns - Edit - EggBoxOfDClass - EichlerTransformation - Eigenspaces - Eigenvalues - EigenvaluesChar - Eigenvectors - ElementByRws - ElementOfFpAlgebra - ElementOfFpGroup - ElementOfFpMonoid - ElementOfFpSemigroup - ElementOfMagmaRing - ElementOrdersPowerMap - ElementProperty - ElementTestFunction - ElementaryAbelianGroup - ElementaryAbelianGroupCons - ElementaryAbelianSeries - ElementaryAbelianSeriesLargeSteps - ElementaryAbelianSubseries - ElementaryDivisorsMat - ElementaryDivisorsMatDestructive - Elements - ElementsFamily - ElementsStabChain - EliminatedWord - EliminationOrdering - ElmDivRingElm - ElmTimesRingElm - ElmWPObj - ElsymsPowersums - Embedding - EmptyBinaryRelation - EmptyMatrix - EmptyRBase - EmptyRowVector - EmptySCTable - EmptyStabChain - EmptyTuplesFamily - EnableAttributeValueStoring - End - EndoMappingByTransformation - EnumerateIndependentAbelianProducts - Enumerator - EnumeratorByBasis - EnumeratorByFunctions - EnumeratorByPcgs - EnumeratorOfAdditiveMagma - EnumeratorOfGroup - EnumeratorOfIdeal - EnumeratorOfMagma - EnumeratorOfMagmaIdeal - EnumeratorOfNormedRowVectors - EnumeratorOfPrimeField - EnumeratorOfRing - EnumeratorOfSemigroupIdeal - EnumeratorOfSubset - EnumeratorOfTrivialAdditiveMagmaWithZero - EnumeratorOfTrivialMagmaWithOne - EnumeratorOfTuples - EnumeratorOfZmodnZ - EnumeratorSorted - EnvelopingAlgebra - EpiPcByModpcgs - EpimorphismNilpotentQuotient - EpimorphismNilpotentQuotientOp - EpimorphismPGroup - EpimorphismQuotientSystem - EpimorphismSchurCover - EqualBoxedObj - EquivalenceClassOfElement - EquivalenceClassOfElementNC - EquivalenceClassRelation - EquivalenceClasses - EquivalenceRelationByPairs - EquivalenceRelationByPairsNC - EquivalenceRelationByPartition - EquivalenceRelationByPartitionNC - EquivalenceRelationByProperty - EquivalenceRelationByRelation - EquivalenceRelationPartition - EquivalenceType - Error - ErrorCount - EspaceBasePoints - EuclideanDegree - EuclideanQuotient - EuclideanRemainder - EulerianFunction - EulerianFunctionByTom - EvalF - EvalFpCoc - EvalStraightLineProgElm - EvalString - EvaluateConsistency - EvaluateOverlapANA - EvaluateOverlapBAN - EvaluateOverlapBNA - EvaluateOverlapCBA - EvaluateRelation - EvaluateRelators - EvectBasePoints - ExactSizeConsiderFunction - ExcludeFromAutoload - ExcludedOrders - Exec - ExecuteProcess - ExpPcElmSortedFun - Exponent - ExponentOfPcElement - ExponentOfPowering - ExponentSumWord - ExponentSums - ExponentSyllable - ExponentsConjugateLayer - ExponentsOfCommutator - ExponentsOfConjugate - ExponentsOfPcElement - ExponentsOfPcElementPermGroup - ExponentsOfRelativePower - ExportToKernelFinished - ExtOrbStabDom - ExtRepByTailVector - ExtRepDenominatorRatFun - ExtRepNumeratorRatFun - ExtRepOfObj - ExtRepPolynomialRatFun - ExtendRepresentation - ExtendSchreierTransversal - ExtendSchreierTransversalShortCube - ExtendSchreierTransversalShortTree - ExtendSeriesPermGroup - ExtendStabChain - ExtendToBasis - ExtendedGroup - ExtendedIntersectionSumPcgs - ExtendedPcgs - ExtendedT - ExtendedVectors - Extension - ExtensionNC - ExtensionOnBlocks - ExtensionRepresentatives - ExtensionSQ - Extensions - ExtensionsOfModule - ExteriorPower - ExteriorPowerOfAlgebraModule - ExternalOrbit - ExternalOrbitOp - ExternalOrbits - ExternalOrbitsStabilizers - ExternalSet - ExternalSetByFilterConstructor - ExternalSetByTypeConstructor - ExternalSubset - ExternalSubsetOp - Extract - ExtraspecialGroup - ExtraspecialGroupCons - FFEFamily - FFPFactors - FFPOrderKnownDividend - FFPPowerModCheck - FFPUpperBoundOrder - FLMLORByGenerators - FLMLORFromFFE - FLMLORWithOne - FLMLORWithOneByGenerators - FMRRemoveZero - FactorCosetAction - FactorCosetOperation - FactorFreeAlgebraByRelators - FactorFreeGroupByRelators - FactorFreeMonoidByRelations - FactorFreeSemigroupByRelations - FactorGroup - FactorGroupFpGroupByRels - FactorGroupNC - FactorGroupNormalSubgroupClasses - FactorGroupTom - FactorSemigroup - FactorSemigroupByClosure - Factorial - Factorization - Factors - FactorsCommonDegreePol - FactorsInt - FactorsOfDirectProduct - FactorsRho - FactorsSquarefree - FaithfulModule - FamElmEqFamRange - FamElmEqFamSource - FamMapFamSourceFamRange - FamRangeEqFamElm - FamRangeNotEqFamElm - FamSourceEqFamElm - FamSourceNotEqFamElm - FamSourceRgtEqFamsLft - FamiliesOfGeneralMappingsAndRanges - FamiliesOfRows - FamilyForOrdering - FamilyForRewritingSystem - FamilyObj - FamilyOfFamilies - FamilyOfTypes - FamilyPcgs - FamilyRange - FamilySource - FamilyType - FastExtSQ - Fibonacci - FibonacciGroup - Field - FieldByGenerators - FieldExtension - FieldOfMatrixGroup - FieldOfMatrixList - FieldOverItselfByGenerators - FileDescriptorOfStream - FileString - Filename - FilterSGMLMarkup - Filtered - FilteredOp - FinIndexCyclicSubgroupGenerator - FindActionKernel - FindBag - FindLayer - FindNewReps - FindNormalCSPG - FindOperationKernel - FindRegularNormalCSPG - FindWindowId - Fingerprint - FingerprintFF - FingerprintLarge - FingerprintMedium - FingerprintPerm - FingerprintSmall - FiniteField - First - FirstOp - FittingSubgroup - FixcellPoint - Fixcells - FixcellsCell - FixedPointSpace - FixpointCellNo - FlagsFamily - FlagsObj - FlagsType - Flat - FlatBlockMat - FlatHashParams - FloatsFamily - FlushCaches - ForAll - ForAllOp - ForAny - ForAnyOp - FormatParagraph - FormattedString - FpAlgebraByGeneralizedCartanMatrix - FpElmComparisonMethod - FpElmEqualityMethod - FpElmKBRWS - FpGroupPcGroupSQ - FpGroupPresentation - FpGrpMonSmgOfFpGrpMonSmgElement - FpLieAlgebraByCartanMatrix - FpLieAlgebraEnumeration - FpMonoidOfElementOfFpMonoid - FpOfModules - FpSemigroupOfElementOfFpSemigroup - FptoSCAMorphismImageElm - FrattiniSubgroup - FrattinifactorId - FrattinifactorSize - FreeAlgebra - FreeAlgebraConstructor - FreeAlgebraOfFpAlgebra - FreeAlgebraWithOne - FreeAssociativeAlgebra - FreeAssociativeAlgebraWithOne - FreeGeneratorsOfFpAlgebra - FreeGeneratorsOfFpGroup - FreeGeneratorsOfFpMonoid - FreeGeneratorsOfFpSemigroup - FreeGeneratorsOfWholeGroup - FreeGroup - FreeGroupOfBasicImageGroup - FreeGroupOfElt - FreeGroupOfFpGroup - FreeLeftModule - FreeLieAlgebra - FreeMagma - FreeMagmaRing - FreeMagmaWithOne - FreeMonoid - FreeMonoidNatHomByGeneratorsNC - FreeMonoidOfFpMonoid - FreeMonoidOfRewritingSystem - FreeSemigroup - FreeSemigroupNatHomByGeneratorsNC - FreeSemigroupOfFpSemigroup - FreeSemigroupOfRewritingSystem - FreeStructureOfRewritingSystem - FrobeniusAutomorphism - FrobeniusAutomorphismI - FrobeniusCharacterValue - FullMatrixAlgebra - FullMatrixAlgebraCentralizer - FullMatrixFLMLOR - FullMatrixLieAlgebra - FullMatrixLieFLMLOR - FullMatrixModule - FullMatrixSpace - FullRowModule - FullRowSpace - FullSparseRowSpace - FullTransformationSemigroup - FunctionAction - FunctionsFamily - FusionCharTableTom - FusionConjugacyClasses - FusionConjugacyClassesOp - FusionRationalClassesPSubgroup - FusionsAllowedByRestrictions - FusionsOfLibTom - FusionsToLibTom - FusionsTom - GAPDocManualLab - GAPInfo - GInverses - GLDegree - GLUnderlyingField - GModuleByMats - GPartitions - GPartitionsEasy - GPartitionsGreatestEQ - GPartitionsGreatestEQHelper - GPartitionsGreatestLE - GPartitionsGreatestLEEasy - GPartitionsNrParts - GPartitionsNrPartsHelper - GQuotients - GaloisConjugates - GaloisCyc - GaloisDiffResolvent - GaloisField - GaloisGroup - GaloisMat - GaloisSetResolvent - GaloisStabilizer - GaloisType - GapInputPcGroup - GapInputSCTable - GasmanLimits - GasmanMessageStatus - GasmanStatistics - GaussianIntegers - GaussianRationals - Gcd - GcdCoeffs - GcdInt - GcdOp - GcdRepresentation - GcdRepresentationOp - Gcdex - GeneralLinearGroup - GeneralLinearGroupCons - GeneralMappingByElements - GeneralMappingsFamily - GeneralOrthogonalGroup - GeneralOrthogonalGroupCons - GeneralStepClEANS - GeneralStepClEANSNonsolv - GeneralUnitaryGroup - GeneralUnitaryGroupCons - GeneralisedEigenspaces - GeneralisedEigenvalues - GeneralizedEigenspaces - GeneralizedEigenvalues - GeneralizedPcgs - GeneratingPairsOfLeftMagmaCongruence - GeneratingPairsOfMagmaCongruence - GeneratingPairsOfRightMagmaCongruence - GeneratingPairsOfSemigroupCongruence - GeneratingSetIsComplete - GeneratorNumberOfQuotient - GeneratorOfCyclicGroup - GeneratorSyllable - GeneratorTranslationAugmentedCosetTable - GeneratorsCenterPGroup - GeneratorsCentrePGroup - GeneratorsListTom - GeneratorsOfAdditiveGroup - GeneratorsOfAdditiveMagma - GeneratorsOfAdditiveMagmaWithInverses - GeneratorsOfAdditiveMagmaWithZero - GeneratorsOfAlgebra - GeneratorsOfAlgebraModule - GeneratorsOfAlgebraWithOne - GeneratorsOfDivisionRing - GeneratorsOfDomain - GeneratorsOfEquivalenceRelationPartition - GeneratorsOfExtASet - GeneratorsOfExtLSet - GeneratorsOfExtRSet - GeneratorsOfExtUSet - GeneratorsOfFLMLOR - GeneratorsOfFLMLORWithOne - GeneratorsOfField - GeneratorsOfGroup - GeneratorsOfIdeal - GeneratorsOfLayer - GeneratorsOfLeftIdeal - GeneratorsOfLeftMagmaIdeal - GeneratorsOfLeftModule - GeneratorsOfLeftOperatorAdditiveGroup - GeneratorsOfLeftOperatorRing - GeneratorsOfLeftOperatorRingWithOne - GeneratorsOfLeftVectorSpace - GeneratorsOfMagma - GeneratorsOfMagmaIdeal - GeneratorsOfMagmaWithInverses - GeneratorsOfMagmaWithOne - GeneratorsOfMonoid - GeneratorsOfNearAdditiveGroup - GeneratorsOfNearAdditiveMagma - GeneratorsOfNearAdditiveMagmaWithInverses - GeneratorsOfNearAdditiveMagmaWithZero - GeneratorsOfPresentation - GeneratorsOfRightIdeal - GeneratorsOfRightMagmaIdeal - GeneratorsOfRightModule - GeneratorsOfRightOperatorAdditiveGroup - GeneratorsOfRing - GeneratorsOfRingForIdeal - GeneratorsOfRingWithOne - GeneratorsOfRws - GeneratorsOfSemigroup - GeneratorsOfSemiring - GeneratorsOfSemiringWithOne - GeneratorsOfSemiringWithOneAndZero - GeneratorsOfSemiringWithZero - GeneratorsOfTwoSidedIdeal - GeneratorsOfVectorSpace - GeneratorsOverIntersection - GeneratorsPrimeResidues - GeneratorsSmallest - GeneratorsSmallestStab - GeneratorsSubgroupsTom - GenericFindActionKernel - GetChars - GetCommutatorNC - GetConjugateNC - GetDefinitionNC - GetETag - GetElement - GetEnt - GetFusionMap - GetHashEntry - GetHashEntryAtLastIndex - GetHashEntryIndex - GetMax - GetNaturalHomomorphismsPool - GetNumRight - GetPols - GetPowerNC - GetSTag - GetWord - GiveNumbersNIndeterminates - GlasbyCover - GlasbyIntersection - GlasbyShift - GlasbyStabilizer - GlobalPartitionOfClasses - Grading - GreensDClassOfElement - GreensDClasses - GreensDRelation - GreensHClassOfElement - GreensHClasses - GreensHRelation - GreensJClassOfElement - GreensJClasses - GreensJRelation - GreensLClassOfElement - GreensLClasses - GreensLRelation - GreensRClassOfElement - GreensRClasses - GreensRRelation - GroebnerBasis - GroebnerBasisNC - Group - GroupByGenerators - GroupByMultiplicationTable - GroupByNiceMonomorphism - GroupByPcgs - GroupByPrimeResidues - GroupByQuotientSystem - GroupByRws - GroupByRwsNC - GroupFromAdditiveGroup - GroupGeneralMappingByImages - GroupHClassOfGreensDClass - GroupHomomorphismByFunction - GroupHomomorphismByImages - GroupHomomorphismByImagesNC - GroupMethodByNiceMonomorphism - GroupMethodByNiceMonomorphismCollColl - GroupMethodByNiceMonomorphismCollElm - GroupMethodByNiceMonomorphismCollOther - GroupOfPcgs - GroupOnSubgroupsOrbit - GroupRing - GroupSeriesMethodByNiceMonomorphism - GroupSeriesMethodByNiceMonomorphismCollColl - GroupSeriesMethodByNiceMonomorphismCollElm - GroupSeriesMethodByNiceMonomorphismCollOther - GroupStabChain - GroupString - GroupToAdditiveGroupHomomorphismByFunction - GroupWithGenerators - HMSMSec - HallSubgroup - HallSubgroupOp - HallSystem - HasANonReesCongruenceOfSemigroup - HasAbelianFactorGroup - HasAbelianInvariants - HasAbelianInvariantsOfList - HasAbsoluteValue - HasActingDomain - HasActionHomomorphismAttr - HasActionKernelExternalSet - HasActorOfExternalSet - HasAdditiveElementAsMultiplicativeElement - HasAdditiveElementsAsMultiplicativeElementsFamily - HasAdditiveInverse - HasAdditiveInverseAttr - HasAdditiveInverseImmutable - HasAdditiveNeutralElement - HasAdditivelyActingDomain - HasAdjointBasis - HasAdjointModule - HasAlgebraicElementsFamilies - HasAllBlocks - HasAlpha - HasAlternatingDegree - HasAlternatingSubgroup - HasAsDuplicateFreeList - HasAsGroup - HasAsGroupGeneralMappingByImages - HasAsLeftModuleGeneralMappingByImages - HasAsList - HasAsMagma - HasAsMonoid - HasAsNearRing - HasAsPolynomial - HasAsRing - HasAsSSortedList - HasAsSemigroup - HasAsSemiring - HasAsSemiringWithOne - HasAsSemiringWithOneAndZero - HasAsSemiringWithZero - HasAsSortedList - HasAsSubgroupOfWholeGroupByQuotient - HasAssociatedReesMatrixSemigroupOfDClass - HasAssociatedSemigroup - HasAugmentationIdeal - HasAugmentedCosetTableMtcInWholeGroup - HasAugmentedCosetTableNormalClosureInWholeGroup - HasAugmentedCosetTableRrsInWholeGroup - HasAutomorphismDomain - HasAutomorphismGroup - HasAutomorphismsOfTable - HasBaseIntMat - HasBaseMat - HasBaseOfBasicImageGroup - HasBaseOfGroup - HasBaseOrthogonalSpaceMat - HasBasis - HasBasisOfHomCosetAddMatrixGroup - HasBasisVectors - HasBaumClausenInfo - HasBilinearFormMat - HasBlocksAttr - HasBlocksInfo - HasBrauerCharacterValue - HasBravaisGroup - HasBravaisSubgroups - HasBravaisSupergroups - HasCanEasilyCompareElements - HasCanEasilySortElements - HasCanFindNilpotentClassTwoElement - HasCanonicalBasis - HasCanonicalElt - HasCanonicalGenerators - HasCanonicalNiceMonomorphism - HasCanonicalPcgs - HasCanonicalPcgsWrtFamilyPcgs - HasCanonicalPcgsWrtHomePcgs - HasCanonicalPcgsWrtSpecialPcgs - HasCanonicalRepresentativeDeterminatorOfExternalSet - HasCanonicalRepresentativeOfExternalSet - HasCartanMatrix - HasCartanSubalgebra - HasCayleyGraphDualSemigroup - HasCayleyGraphSemigroup - HasCenter - HasCentralCharacter - HasCentralIdempotentsOfSemiring - HasCentralNormalSeriesByPcgs - HasCentralizerInGLnZ - HasCentralizerInParent - HasCentre - HasCentreOfCharacter - HasChainHomomorphicImage - HasChainSubgroup - HasChainSubgroupQuotient - HasCharacterDegrees - HasCharacterNames - HasCharacterParameters - HasCharacteristic - HasCharacteristicPolynomial - HasChevalleyBasis - HasChiefNormalSeriesByPcgs - HasChiefSeries - HasClassNames - HasClassNamesTom - HasClassParameters - HasClassPermutation - HasClassPositionsOfCentre - HasClassPositionsOfDerivedSubgroup - HasClassPositionsOfDirectProductDecompositions - HasClassPositionsOfElementaryAbelianSeries - HasClassPositionsOfFittingSubgroup - HasClassPositionsOfKernel - HasClassPositionsOfLowerCentralSeries - HasClassPositionsOfMaximalNormalSubgroups - HasClassPositionsOfNormalSubgroups - HasClassPositionsOfSolvableResiduum - HasClassPositionsOfSupersolvableResiduum - HasClassPositionsOfUpperCentralSeries - HasClassRoots - HasClassTypesTom - HasCoKernelOfAdditiveGeneralMapping - HasCoKernelOfMultiplicativeGeneralMapping - HasCoefficientsAndMagmaElements - HasCoefficientsFamily - HasCoefficientsOfLaurentPolynomial - HasCoefficientsOfUnivariatePolynomial - HasCoefficientsOfUnivariateRationalFunction - HasCoefficientsRing - HasCollectionsFamily - HasColumnIndexOfReesMatrixSemigroupElement - HasColumnIndexOfReesZeroMatrixSemigroupElement - HasColumnsOfReesMatrixSemigroup - HasColumnsOfReesZeroMatrixSemigroup - HasCommutatorFactorGroup - HasCommutatorLength - HasComplementSystem - HasComplexConjugate - HasComponentsOfTuplesFamily - HasCompositionSeries - HasComputedAgemos - HasComputedAscendingChains - HasComputedBrauerTables - HasComputedClassFusions - HasComputedCyclicExtensionsTom - HasComputedHallSubgroups - HasComputedIndicators - HasComputedIsPNilpotents - HasComputedIsPSolvableCharacterTables - HasComputedIsPSolvables - HasComputedOmegas - HasComputedPCentralSeriess - HasComputedPCores - HasComputedPRumps - HasComputedPowerMaps - HasComputedPrimeBlockss - HasComputedSylowComplements - HasComputedSylowSubgroups - HasConductor - HasConfluentRws - HasConjugacyClasses - HasConjugacyClassesMaximalSubgroups - HasConjugacyClassesPerfectSubgroups - HasConjugacyClassesSubgroups - HasConjugates - HasConjugatorInnerAutomorphism - HasConjugatorOfConjugatorIsomorphism - HasConstantTimeAccessList - HasConstituentsOfCharacter - HasConvertBasicImageGroupElement - HasCoreInParent - HasCosetTableFpHom - HasCosetTableInWholeGroup - HasCosetTableNormalClosureInWholeGroup - HasCosetTableOfFpSemigroup - HasCycleStructurePerm - HasCyclicExtensionsTom - HasDecompositionMatrix - HasDecompositionTypesOfGroup - HasDefaultFieldOfMatrix - HasDefaultFieldOfMatrixGroup - HasDefectApproximation - HasDefiningPcgs - HasDefiningPolynomial - HasDegreeAction - HasDegreeOfBinaryRelation - HasDegreeOfCharacter - HasDegreeOfLaurentPolynomial - HasDegreeOfMatrixGroup - HasDegreeOfTransformation - HasDegreeOfTransformationSemigroup - HasDegreeOperation - HasDegreeOverPrimeField - HasDelta - HasDenominatorOfModuloPcgs - HasDenominatorOfRationalFunction - HasDepthOfUpperTriangularMatrix - HasDerivations - HasDerivative - HasDerivedLength - HasDerivedSeriesOfGroup - HasDerivedSubgroup - HasDerivedSubgroupsTomPossible - HasDerivedSubgroupsTomUnique - HasDeterminantMat - HasDeterminantOfCharacter - HasDihedralGenerators - HasDimension - HasDimensionOfMatrixGroup - HasDimensionOfVectors - HasDimensionsLoewyFactors - HasDimensionsMat - HasDirectFactorsOfGroup - HasDirectProductInfo - HasDirectSumDecomposition - HasDisplayOptions - HasDixonRecord - HasEANormalSeriesByPcgs - HasEarns - HasEggBoxOfDClass - HasElementTestFunction - HasElementaryAbelianFactorGroup - HasElementaryAbelianSeries - HasElementaryAbelianSeriesLargeSteps - HasElementaryAbelianSubseries - HasElementsFamily - HasEmptyRowVector - HasEnumerator - HasEnumeratorByBasis - HasEnumeratorSorted - HasEquivalenceClassRelation - HasEquivalenceClasses - HasEquivalenceRelationPartition - HasExponent - HasExponentOfPowering - HasExtRepDenominatorRatFun - HasExtRepNumeratorRatFun - HasExtRepPolynomialRatFun - HasExternalOrbits - HasExternalOrbitsStabilizers - HasExternalSet - HasFactorsOfDirectProduct - HasFaithfulModule - HasFamiliesOfGeneralMappingsAndRanges - HasFamilyForOrdering - HasFamilyForRewritingSystem - HasFamilyPcgs - HasFamilyRange - HasFamilySource - HasFieldOfMatrixGroup - HasFittingSubgroup - HasFpElmComparisonMethod - HasFpElmEqualityMethod - HasFpElmKBRWS - HasFrattiniSubgroup - HasFrattinifactorId - HasFrattinifactorSize - HasFreeAlgebraOfFpAlgebra - HasFreeGeneratorsOfFpAlgebra - HasFreeGeneratorsOfFpGroup - HasFreeGeneratorsOfFpMonoid - HasFreeGeneratorsOfFpSemigroup - HasFreeGroupOfBasicImageGroup - HasFreeGroupOfFpGroup - HasFreeMonoidOfFpMonoid - HasFreeMonoidOfRewritingSystem - HasFreeSemigroupOfFpSemigroup - HasFreeSemigroupOfRewritingSystem - HasFrobeniusAutomorphism - HasFunctionAction - HasFusionConjugacyClassesOp - HasFusionsOfLibTom - HasFusionsToLibTom - HasFusionsTom - HasGLDegree - HasGLUnderlyingField - HasGaloisGroup - HasGaloisMat - HasGaloisStabilizer - HasGaloisType - HasGeneralizedPcgs - HasGeneratingPairsOfLeftMagmaCongruence - HasGeneratingPairsOfMagmaCongruence - HasGeneratingPairsOfRightMagmaCongruence - HasGeneratingSetIsComplete - HasGeneratorOfCyclicGroup - HasGeneratorsOfAdditiveGroup - HasGeneratorsOfAdditiveMagma - HasGeneratorsOfAdditiveMagmaWithInverses - HasGeneratorsOfAdditiveMagmaWithZero - HasGeneratorsOfAlgebra - HasGeneratorsOfAlgebraModule - HasGeneratorsOfAlgebraWithOne - HasGeneratorsOfDivisionRing - HasGeneratorsOfDomain - HasGeneratorsOfEquivalenceRelationPartition - HasGeneratorsOfExtASet - HasGeneratorsOfExtLSet - HasGeneratorsOfExtRSet - HasGeneratorsOfExtUSet - HasGeneratorsOfFLMLOR - HasGeneratorsOfFLMLORWithOne - HasGeneratorsOfField - HasGeneratorsOfGroup - HasGeneratorsOfIdeal - HasGeneratorsOfLeftIdeal - HasGeneratorsOfLeftMagmaIdeal - HasGeneratorsOfLeftModule - HasGeneratorsOfLeftOperatorAdditiveGroup - HasGeneratorsOfLeftOperatorRing - HasGeneratorsOfLeftOperatorRingWithOne - HasGeneratorsOfLeftVectorSpace - HasGeneratorsOfMagma - HasGeneratorsOfMagmaIdeal - HasGeneratorsOfMagmaWithInverses - HasGeneratorsOfMagmaWithOne - HasGeneratorsOfMonoid - HasGeneratorsOfNearAdditiveGroup - HasGeneratorsOfNearAdditiveMagma - HasGeneratorsOfNearAdditiveMagmaWithInverses - HasGeneratorsOfNearAdditiveMagmaWithZero - HasGeneratorsOfRightIdeal - HasGeneratorsOfRightMagmaIdeal - HasGeneratorsOfRightModule - HasGeneratorsOfRightOperatorAdditiveGroup - HasGeneratorsOfRing - HasGeneratorsOfRingWithOne - HasGeneratorsOfRws - HasGeneratorsOfSemigroup - HasGeneratorsOfSemiring - HasGeneratorsOfSemiringWithOne - HasGeneratorsOfSemiringWithOneAndZero - HasGeneratorsOfSemiringWithZero - HasGeneratorsOfTwoSidedIdeal - HasGeneratorsOfVectorSpace - HasGeneratorsSmallest - HasGeneratorsSubgroupsTom - HasGlobalPartitionOfClasses - HasGrading - HasGreensDRelation - HasGreensHRelation - HasGreensJRelation - HasGreensLRelation - HasGreensRRelation - HasGroupByPcgs - HasGroupHClassOfGreensDClass - HasGroupOfPcgs - HasHallSystem - HasHirschLength - HasHomCosetFamily - HasHomFromFreeOfBasicImageGroup - HasHomeEnumerator - HasHomePcgs - HasIBr - HasIdGroup - HasIdempotents - HasIdempotentsTom - HasIdempotentsTomInfo - HasIdentificationOfConjugacyClasses - HasIdentifier - HasIdentity - HasIdentityMapping - HasImageElt - HasImageListOfTransformation - HasImageSetOfTransformation - HasImagesSmallestGenerators - HasImagesSource - HasImfRecord - HasIndependentGeneratorsOfAbelianGroup - HasIndependentGeneratorsOfAbelianMatrixGroup - HasIndeterminateName - HasIndeterminateNumberOfLaurentPolynomial - HasIndeterminateNumberOfUnivariateLaurentPolynomial - HasIndeterminateNumberOfUnivariateRationalFunction - HasIndeterminateOfUnivariateRationalFunction - HasIndeterminatesOfPolynomialRing - HasIndexInParent - HasIndexInWholeGroup - HasIndicesCentralNormalSteps - HasIndicesChiefNormalSteps - HasIndicesEANormalSteps - HasIndicesInvolutaryGenerators - HasIndicesNormalSteps - HasIndicesOfAdjointBasis - HasIndicesPCentralNormalStepsPGroup - HasInducedPcgsWrtFamilyPcgs - HasInducedPcgsWrtHomePcgs - HasInducedPcgsWrtSpecialPcgs - HasInfoText - HasInjectionZeroMagma - HasInnerAutomorphismsAutomorphismGroup - HasInt - HasInternalRepresentative - HasInvariantBilinearForm - HasInvariantConjugateSubgroup - HasInvariantForm - HasInvariantLattice - HasInvariantQuadraticForm - HasInvariantSesquilinearForm - HasInverse - HasInverseAttr - HasInverseClasses - HasInverseGeneralMapping - HasInverseImmutable - HasIrr - HasIrrBaumClausen - HasIrrConlon - HasIrrDixonSchneider - HasIrrFacsPol - HasIrreducibleRepresentations - HasIsAbelian - HasIsAbelianNumberField - HasIsAbelianTom - HasIsAdditiveGroupGeneralMapping - HasIsAdditiveGroupHomomorphism - HasIsAdditiveGroupToGroupGeneralMapping - HasIsAdditiveGroupToGroupHomomorphism - HasIsAdditivelyCommutative - HasIsAlgebraGeneralMapping - HasIsAlgebraHomomorphism - HasIsAlgebraModule - HasIsAlgebraWithOneGeneralMapping - HasIsAlgebraWithOneHomomorphism - HasIsAlternatingGroup - HasIsAnticommutative - HasIsAntisymmetricBinaryRelation - HasIsAssociative - HasIsAutomorphismGroup - HasIsBasicWreathProductOrdering - HasIsBergerCondition - HasIsBijective - HasIsBravaisGroup - HasIsBuiltFromAdditiveMagmaWithInverses - HasIsBuiltFromGroup - HasIsBuiltFromMagma - HasIsBuiltFromMagmaWithInverses - HasIsBuiltFromMagmaWithOne - HasIsBuiltFromMonoid - HasIsBuiltFromSemigroup - HasIsCanonicalBasis - HasIsCanonicalBasisFullMatrixModule - HasIsCanonicalBasisFullRowModule - HasIsCanonicalBasisFullSCAlgebra - HasIsCanonicalNiceMonomorphism - HasIsCanonicalPcgs - HasIsCanonicalPcgsWrtSpecialPcgs - HasIsChainTypeGroup - HasIsCharacter - HasIsCharacteristicMatrixPGroup - HasIsCommutative - HasIsCommutativeFamily - HasIsConfluent - HasIsConjugatorAutomorphism - HasIsConjugatorIsomorphism - HasIsConstantRationalFunction - HasIsConstantTimeAccessGeneralMapping - HasIsCycInt - HasIsCyclic - HasIsCyclicTom - HasIsCyclotomicField - HasIsDihedralGroup - HasIsDistributive - HasIsDivisionRing - HasIsDuplicateFree - HasIsDuplicateFreeList - HasIsElementaryAbelian - HasIsEmpty - HasIsEndoGeneralMapping - HasIsEndoMapping - HasIsEquivalenceRelation - HasIsFFEMatrixGroupOverLargeSpace - HasIsFamilyPcgs - HasIsField - HasIsFieldHomomorphism - HasIsFinite - HasIsFiniteDimensional - HasIsFiniteOrdersPcgs - HasIsFiniteSemigroupGreensRelation - HasIsFinitelyGeneratedGroup - HasIsFrattiniFree - HasIsFreeMonoid - HasIsFreeSemigroup - HasIsFullFpAlgebra - HasIsFullHomModule - HasIsFullMatrixModule - HasIsFullRowModule - HasIsFullSCAlgebra - HasIsFullSubgroupGLorSLRespectingBilinearForm - HasIsFullSubgroupGLorSLRespectingQuadraticForm - HasIsFullSubgroupGLorSLRespectingSesquilinearForm - HasIsFullTransformationSemigroup - HasIsGL - HasIsGeneralLinearGroup - HasIsGeneralizedCartanMatrix - HasIsGeneratorsOfMagmaWithInverses - HasIsGreensClass - HasIsGreensDClass - HasIsGreensDRelation - HasIsGreensHClass - HasIsGreensHRelation - HasIsGreensJClass - HasIsGreensJRelation - HasIsGreensLClass - HasIsGreensLRelation - HasIsGreensRClass - HasIsGreensRRelation - HasIsGreensRelation - HasIsGroupGeneralMapping - HasIsGroupHClass - HasIsGroupHomomorphism - HasIsGroupOfAutomorphisms - HasIsGroupOfAutomorphismsFiniteGroup - HasIsGroupRing - HasIsGroupToAdditiveGroupGeneralMapping - HasIsGroupToAdditiveGroupHomomorphism - HasIsHandledByNiceMonomorphism - HasIsHasseDiagram - HasIsHomCosetOfAdditiveElt - HasIsHomCosetOfFp - HasIsHomCosetOfMatrix - HasIsHomCosetOfPerm - HasIsHomCosetOfTuple - HasIsIdealInParent - HasIsIdempotent - HasIsImpossible - HasIsInducedFromNormalSubgroup - HasIsInducedPcgsWrtSpecialPcgs - HasIsInjective - HasIsInnerAutomorphism - HasIsIntegerMatrixGroup - HasIsIntegralBasis - HasIsIntegralCyclotomic - HasIsIntegralRing - HasIsIrreducibleCharacter - HasIsJacobianRing - HasIsLDistributive - HasIsLatticeOrderBinaryRelation - HasIsLaurentPolynomial - HasIsLeftActedOnByDivisionRing - HasIsLeftAlgebraModule - HasIsLeftIdealInParent - HasIsLeftModuleGeneralMapping - HasIsLeftModuleHomomorphism - HasIsLeftSemigroupCongruence - HasIsLeftSemigroupIdeal - HasIsLieAbelian - HasIsLieAlgebra - HasIsLieNilpotent - HasIsLieSolvable - HasIsLinearlyPrimitive - HasIsMagmaHomomorphism - HasIsMapping - HasIsMatrixModule - HasIsMinimalNonmonomial - HasIsMonoid - HasIsMonomialCharacter - HasIsMonomialCharacterTable - HasIsMonomialGroup - HasIsMonomialMatrix - HasIsMonomialNumber - HasIsNaturalAlternatingGroup - HasIsNaturalGL - HasIsNaturalSL - HasIsNaturalSymmetricGroup - HasIsNearRing - HasIsNearRingWithOne - HasIsNilpQuotientSystem - HasIsNilpotentCharacterTable - HasIsNilpotentGroup - HasIsNilpotentTom - HasIsNonTrivial - HasIsNoncharacteristicMatrixPGroup - HasIsNormalBasis - HasIsNormalForm - HasIsNormalInParent - HasIsNumberField - HasIsNumeratorParentPcgsFamilyPcgs - HasIsOne - HasIsOrderingOnFamilyOfAssocWords - HasIsPGroup - HasIsPQuotientSystem - HasIsPSL - HasIsParentPcgsFamilyPcgs - HasIsPartialOrderBinaryRelation - HasIsPcgsCentralSeries - HasIsPcgsChiefSeries - HasIsPcgsElementaryAbelianSeries - HasIsPcgsPCentralSeriesPGroup - HasIsPerfectCharacterTable - HasIsPerfectGroup - HasIsPerfectTom - HasIsPolycyclicGroup - HasIsPolynomial - HasIsPositionsList - HasIsPreOrderBinaryRelation - HasIsPrimeField - HasIsPrimeOrdersPcgs - HasIsPrimitive - HasIsPrimitiveAffine - HasIsPrimitiveCharacter - HasIsPrimitiveMatrixGroup - HasIsPseudoCanonicalBasisFullHomModule - HasIsQuasiDihedralGroup - HasIsQuasiPrimitive - HasIsQuaternionGroup - HasIsRDistributive - HasIsRationalMatrixGroup - HasIsRectangularTable - HasIsReduced - HasIsReesCongruence - HasIsReesCongruenceSemigroup - HasIsReesMatrixSemigroup - HasIsReesZeroMatrixSemigroup - HasIsReflexiveBinaryRelation - HasIsRegular - HasIsRegularDClass - HasIsRegularSemigroup - HasIsRelativelySM - HasIsRestrictedLieAlgebra - HasIsRightAlgebraModule - HasIsRightIdealInParent - HasIsRightSemigroupCongruence - HasIsRightSemigroupIdeal - HasIsRing - HasIsRingGeneralMapping - HasIsRingHomomorphism - HasIsRingWithOne - HasIsRingWithOneGeneralMapping - HasIsRingWithOneHomomorphism - HasIsRowModule - HasIsSL - HasIsSSortedList - HasIsSemiEchelonized - HasIsSemiRegular - HasIsSemigroup - HasIsSemigroupCongruence - HasIsSemigroupIdeal - HasIsSemiring - HasIsSemiringWithOne - HasIsSemiringWithOneAndZero - HasIsSemiringWithZero - HasIsShortLexOrdering - HasIsSimpleAlgebra - HasIsSimpleCharacterTable - HasIsSimpleGroup - HasIsSimpleSemigroup - HasIsSingleValued - HasIsSkewFieldFamily - HasIsSmallList - HasIsSolvableCharacterTable - HasIsSolvableGroup - HasIsSolvableTom - HasIsSortedList - HasIsSpecialLinearGroup - HasIsSpecialPcgs - HasIsSporadicSimpleCharacterTable - HasIsSporadicSimpleGroup - HasIsStabChainViaChainSubgroup - HasIsSubgroupSL - HasIsSubmonoidFpMonoid - HasIsSubnormallyMonomial - HasIsSubsemigroupFpSemigroup - HasIsSubsemigroupReesMatrixSemigroup - HasIsSubsemigroupReesZeroMatrixSemigroup - HasIsSubsetLocallyFiniteGroup - HasIsSupersolvableCharacterTable - HasIsSupersolvableGroup - HasIsSurjective - HasIsSymmetricBinaryRelation - HasIsSymmetricGroup - HasIsTotal - HasIsTotalOrdering - HasIsTransformationMonoid - HasIsTransformationSemigroup - HasIsTransitive - HasIsTransitiveBinaryRelation - HasIsTranslationInvariantOrdering - HasIsTrivial - HasIsTwoSidedIdealInParent - HasIsUFDFamily - HasIsUniformMatrixGroup - HasIsUnivariatePolynomial - HasIsUnivariateRationalFunction - HasIsVectorSpaceHomomorphism - HasIsVirtualCharacter - HasIsWeightLexOrdering - HasIsWellFoundedOrdering - HasIsWeylGroup - HasIsWholeFamily - HasIsWreathProductOrdering - HasIsZero - HasIsZeroGroup - HasIsZeroMultiplicationRing - HasIsZeroRationalFunction - HasIsZeroSimpleSemigroup - HasIsZeroSquaredRing - HasIsomorphismFpAlgebra - HasIsomorphismFpFLMLOR - HasIsomorphismFpGroup - HasIsomorphismFpMonoid - HasIsomorphismFpSemigroup - HasIsomorphismMatrixAlgebra - HasIsomorphismMatrixFLMLOR - HasIsomorphismPcGroup - HasIsomorphismPermGroup - HasIsomorphismReesMatrixSemigroup - HasIsomorphismRefinedPcGroup - HasIsomorphismSCAlgebra - HasIsomorphismSCFLMLOR - HasIsomorphismSimplifiedFpGroup - HasIsomorphismSpecialPcGroup - HasIsomorphismTransformationSemigroup - HasJenningsLieAlgebra - HasJenningsSeries - HasJordanDecomposition - HasKernelOfAdditiveGeneralMapping - HasKernelOfCharacter - HasKernelOfMultiplicativeGeneralMapping - HasKernelOfTransformation - HasKillingMatrix - HasKnowsHowToDecompose - HasLClassOfHClass - HasLGFirst - HasLGHeads - HasLGLayers - HasLGLength - HasLGTails - HasLGWeights - HasLargestElementGroup - HasLargestMovedPoint - HasLargestMovedPointPerm - HasLatticeGeneratorsInUEA - HasLatticeSubgroups - HasLeadCoeffsIGS - HasLeftActingAlgebra - HasLeftActingDomain - HasLeftActingGroup - HasLeftActingRingOfIdeal - HasLeftDerivations - HasLength - HasLengthsTom - HasLessThanFunction - HasLessThanOrEqualFunction - HasLetterRepWordsLessFunc - HasLevelsOfGenerators - HasLeviMalcevDecomposition - HasLieAlgebraByDomain - HasLieCenter - HasLieCentralizerInParent - HasLieCentre - HasLieDerivedSeries - HasLieDerivedSubalgebra - HasLieFamily - HasLieLowerCentralSeries - HasLieNilRadical - HasLieNormalizerInParent - HasLieObject - HasLieSolvableRadical - HasLieUpperCentralSeries - HasLinearActionBasis - HasLinearCharacters - HasLinesOfStraightLineProgram - HasLongestWeylWordPerm - HasLowerCentralSeriesOfGroup - HasMagmaGeneratorsOfFamily - HasMappingGeneratorsImages - HasMappingOfWhichItIsAsGGMBI - HasMarksTom - HasMatTom - HasMatrixByBlockMatrix - HasMatrixDimension - HasMaximalAbelianQuotient - HasMaximalBlocksAttr - HasMaximalNormalSubgroups - HasMaximalSubgroupClassReps - HasMaximalSubgroups - HasMaximalSubgroupsLattice - HasMaximalSubgroupsTom - HasMinimalBlockDimension - HasMinimalGeneratingSet - HasMinimalNormalSubgroups - HasMinimalStabChain - HasMinimalSupergroupsLattice - HasMinimizedBombieriNorm - HasModuleOfExtension - HasModulusOfZmodnZObj - HasMoebiusTom - HasMolienSeriesInfo - HasMonoidOfRewritingSystem - HasMonomialComparisonFunction - HasMonomialExtrepComparisonFun - HasMovedPoints - HasMultiplicationTable - HasMultiplicativeNeutralElement - HasMultiplicativeZero - HasName - HasNameIsomorphismClass - HasNamesLibTom - HasNamesOfFusionSources - HasNaturalCharacter - HasNaturalHomomorphismByNormalSubgroupNCInParent - HasNaturalHomomorphismsPool - HasNegativeRootVectors - HasNegativeRoots - HasNestingDepthA - HasNestingDepthM - HasNiceAlgebraMonomorphism - HasNiceBasis - HasNiceFreeLeftModule - HasNiceFreeLeftModuleInfo - HasNiceMonomorphism - HasNiceNormalFormByExtRepFunction - HasNiceObject - HasNilpotencyClassOfGroup - HasNilpotentClassTwoElement - HasNonLieNilpotentElement - HasNonNilpotentElement - HasNorm - HasNormalBase - HasNormalClosureInParent - HasNormalMaximalSubgroups - HasNormalSeriesByPcgs - HasNormalSubgroupClassesInfo - HasNormalSubgroups - HasNormalizerInGLnZ - HasNormalizerInGLnZBravaisGroup - HasNormalizerInHomePcgs - HasNormalizerInParent - HasNormalizersTom - HasNormedRowVector - HasNormedRowVectors - HasNormedVectors - HasNotifiedFusionsOfLibTom - HasNotifiedFusionsToLibTom - HasNrConjugacyClasses - HasNrInputsOfStraightLineProgram - HasNrMovedPoints - HasNrMovedPointsPerm - HasNrSubsTom - HasNrSyllables - HasNullAlgebra - HasNullspaceIntMat - HasNullspaceMat - HasNumberGeneratorsOfRws - HasNumberSyllables - HasNumeratorOfModuloPcgs - HasNumeratorOfRationalFunction - HasONanScottType - HasOccuringVariableIndices - HasOmegaAndLowerPCentralSeries - HasOmegaSeries - HasOne - HasOneAttr - HasOneImmutable - HasOneOfPcgs - HasOperatorOfExternalSet - HasOrbitGeneratorsOfGroup - HasOrbitLengths - HasOrbitLengthsDomain - HasOrbitStabilizingParentGroup - HasOrbits - HasOrbitsDomain - HasOrder - HasOrderingOfRewritingSystem - HasOrderingOnGenerators - HasOrderingsFamily - HasOrdersClassRepresentatives - HasOrdersTom - HasOrdinaryCharacterTable - HasOrthogonalSpaceInFullRowSpace - HasPCentralLieAlgebra - HasPCentralNormalSeriesByPcgsPGroup - HasPClassPGroup - HasPSLDegree - HasPSLUnderlyingField - HasParent - HasParentAttr - HasParentPcgs - HasPartialClosureOfCongruence - HasPartialOrderOfHasseDiagram - HasPcGroupWithPcgs - HasPcSeries - HasPcgs - HasPcgsCentralSeries - HasPcgsChiefSeries - HasPcgsElementaryAbelianSeries - HasPcgsPCentralSeriesPGroup - HasPerfectIdentification - HasPerfectResiduum - HasPermutationTom - HasPositiveRootVectors - HasPositiveRoots - HasPositiveRootsAsWeights - HasPowerS - HasPowerSubalgebraSeries - HasPreBasis - HasPreImagesRange - HasPreferredGenerators - HasPrefrattiniSubgroup - HasPresentation - HasPrimaryGeneratorWords - HasPrimeField - HasPrimePGroup - HasPrimePowerComponents - HasPrimitiveElement - HasPrimitiveIdentification - HasPrimitiveRoot - HasProjectiveOrder - HasPseudoRandomSeed - HasPthPowerImages - HasQuasiDihedralGenerators - HasQuaternionGenerators - HasQuotientGroup - HasQuotientGroupHom - HasQuotientSemigroupCongruence - HasQuotientSemigroupHomomorphism - HasQuotientSemigroupPreimage - HasRClassOfHClass - HasRadicalGroup - HasRadicalOfAlgebra - HasRange - HasRankAction - HasRankMat - HasRankOfTransformation - HasRankPGroup - HasRat - HasRationalClasses - HasRationalFunctionsFamily - HasRationalizedMat - HasRealClasses - HasRecNames - HasReducedConfluentRewritingSystem - HasReesCongruenceOfSemigroupIdeal - HasReesZeroMatrixSemigroupElementIsZero - HasRefinedPcGroup - HasRegularActionHomomorphism - HasRelationsOfFpMonoid - HasRelationsOfFpSemigroup - HasRelativeOrders - HasRelatorsOfFpAlgebra - HasRelatorsOfFpGroup - HasRepresentative - HasRepresentativeSmallest - HasRepresentativesContainedRightCosets - HasRepresentativesMinimalBlocksAttr - HasRepresentativesPerfectSubgroups - HasRepresentativesSimpleSubgroups - HasRespectsAddition - HasRespectsAdditiveInverses - HasRespectsInverses - HasRespectsMultiplication - HasRespectsOne - HasRespectsScalarMultiplication - HasRespectsZero - HasRightActingAlgebra - HasRightActingDomain - HasRightActingGroup - HasRightActingRingOfIdeal - HasRightDerivations - HasRightTransversalInParent - HasRootOfDefiningPolynomial - HasRootSystem - HasRowIndexOfReesMatrixSemigroupElement - HasRowIndexOfReesZeroMatrixSemigroupElement - HasRowsOfReesMatrixSemigroup - HasRowsOfReesZeroMatrixSemigroup - HasRules - HasSLDegree - HasSLUnderlyingField - HasSandwichMatrixOfReesMatrixSemigroup - HasSandwichMatrixOfReesZeroMatrixSemigroup - HasSemiEchelonBasis - HasSemiEchelonMat - HasSemiEchelonMatTransformation - HasSemiSimpleType - HasSemidirectFactorsOfGroup - HasSemidirectProductInfo - HasSemigroupOfRewritingSystem - HasSiftFunction - HasSiftGroup - HasSignPerm - HasSimpleSystem - HasSimsNo - HasSize - HasSizesCentralizers - HasSizesConjugacyClasses - HasSmallGeneratingSet - HasSmallestGeneratorPerm - HasSmallestMovedPoint - HasSmallestMovedPointPerm - HasSocle - HasSocleComplement - HasSocleDimensions - HasSocleTypePrimitiveGroup - HasSortingPerm - HasSource - HasSparseCartanMatrix - HasSpecialPcgs - HasSplittingField - HasStabChainImmutable - HasStabChainMutable - HasStabChainOptions - HasStabilizerOfExternalSet - HasStandardGeneratorsInfo - HasStoredExcludedOrders - HasStoredGroebnerBasis - HasStraightLineProgElmType - HasStraightLineProgramsTom - HasString - HasStructureConstantsTable - HasStructureDescription - HasSubdirectProductInfo - HasSubfields - HasSubnormalSeriesInParent - HasSubsTom - HasSubspaces - HasSubspacesAll - HasSuccessors - HasSupersolvableResiduum - HasSurjectiveActionHomomorphismAttr - HasSylowSystem - HasSymmetricDegree - HasSymmetricParentGroup - HasTableOfMarks - HasTestMonomial - HasTestMonomialQuick - HasTestQuasiPrimitive - HasTestRelativelySM - HasTestSubnormallyMonomial - HasTietzeOrigin - HasTrace - HasTranformsOneIntoZero - HasTransformationRepresentation - HasTransformsAdditionIntoMultiplication - HasTransformsAdditiveInversesIntoInverses - HasTransformsInversesIntoAdditiveInverses - HasTransformsMultiplicationIntoAddition - HasTransformsZeroIntoOne - HasTransitiveIdentification - HasTransitivity - HasTransposedMat - HasTransposedMatAttr - HasTransposedMatImmutable - HasTransposedMatrixGroup - HasTransversal - HasTriangulizedNullspaceMat - HasTrivialCharacter - HasTrivialSubFLMLOR - HasTrivialSubadditiveMagmaWithZero - HasTrivialSubalgebra - HasTrivialSubgroup - HasTrivialSubmagmaWithOne - HasTrivialSubmodule - HasTrivialSubmonoid - HasTrivialSubnearAdditiveMagmaWithZero - HasTrivialSubspace - HasTwoClosure - HasTzOptions - HasTzRules - HasUnderlyingCharacterTable - HasUnderlyingCharacteristic - HasUnderlyingCollection - HasUnderlyingElementOfReesMatrixSemigroupElement - HasUnderlyingElementOfReesZeroMatrixSemigroupElement - HasUnderlyingExternalSet - HasUnderlyingFamily - HasUnderlyingField - HasUnderlyingGeneralMapping - HasUnderlyingGroup - HasUnderlyingLeftModule - HasUnderlyingLieAlgebra - HasUnderlyingMagma - HasUnderlyingRelation - HasUnderlyingSemigroupOfReesMatrixSemigroup - HasUnderlyingSemigroupOfReesZeroMatrixSemigroup - HasUnderlyingVectorSpace - HasUnits - HasUniversalEnvelopingAlgebra - HasUpperActingDomain - HasUpperCentralSeriesOfGroup - HasValuesOfClassFunction - HasWeightOfGenerators - HasWeightsTom - HasWeylGroup - HasWreathProductInfo - HasZClassRepsQClass - HasZero - HasZeroAttr - HasZeroCoefficient - HasZeroImmutable - HasZuppos - HashDictAddDictionary - HashFunct - HashKeyBag - HashKeyEnumerator - HashTable - HasnpeGL - HasnpePSL - HasnpeSL - HasseDiagramBinaryRelation - HeadPcElementByNumber - HeadsInfoOfSemiEchelonizedMat - HeadsInfoOfSemiEchelonizedMats - HenselBound - HermiteNormalFormIntegerMat - HermiteNormalFormIntegerMatTransform - HermiteNormalFormIntegerMatTransforms - HeuGcdIntPolsCoeffs - HeuGcdIntPolsExtRep - HeuristicCancelPolynomialsExtRep - HexBlistSetup - HexStringBlist - HexStringBlistEncode - HexStringInt - HideGlobalVariables - HighestWeightModule - HirschLength - Hom - HomCoset - HomCosetFamily - HomCosetWithImage - HomFromFree - HomFromFreeOfBasicImageGroup - HomTransversal - HomeEnumerator - HomePcgs - HomomorphicCanonicalPcgs - HomomorphicInducedPcgs - Homomorphism - HomomorphismFactorSemigroup - HomomorphismFactorSemigroupByClosure - HomomorphismQuotientSemigroup - HomomorphismTransformationSemigroup - HomomorphismsSeries - HumanReadableDefinition - IBr - IMFList - IMFLoad - IMFRec - IdFunc - IdGroup - IdSmallGroup - Ideal - IdealByGenerators - IdealByGeneratorsForLieAlgebra - IdealNC - Idempotents - IdempotentsTom - IdempotentsTomInfo - IdentificationGenericGroup - IdentificationOfConjugacyClasses - IdentificationPermGroup - IdentificationSolvableGroup - Identifier - IdentifierLetters - Identity - IdentityBinaryRelation - IdentityFromSCTable - IdentityMapping - IdentityMat - IdentityTransformation - IdsOfAllGroups - IdsOfAllSmallGroups - Ignore - Image - ImageElm - ImageElmActionHomomorphism - ImageElt - ImageGroup - ImageInWord - ImageKernelBlocksHomomorphism - ImageListOfTransformation - ImageMat - ImageOnAbelianCSPG - ImageSetOfTransformation - ImageSiftedBaseImage - ImageUnderWord - Images - ImagesElm - ImagesListOfBinaryRelation - ImagesRepresentative - ImagesRepresentativeGMBIByElementsList - ImagesSet - ImagesSmallestGenerators - ImagesSource - ImfInvariants - ImfMatrixGroup - ImfNumberQClasses - ImfNumberQQClasses - ImfNumberZClasses - ImfPositionNumber - ImfRecord - ImgElmSLP - ImgElmSLPNonrecursive - ImmediateImplicationsIdentityMapping - ImmediateImplicationsZeroMapping - Immutable - ImmutableBasis - ImmutableMatrix - ImproveActionDegreeByBlocks - ImproveMaps - ImproveOperationDegreeByBlocks - InParentFOA - IncorporateCentralRelations - IncreaseCounter - IndPcgsWrtSpecFromFamOrHome - IndependentGeneratorsAbelianPPermGroup - IndependentGeneratorsOfAbelianGroup - IndependentGeneratorsOfAbelianMatrixGroup - Indeterminate - IndeterminateName - IndeterminateNumberOfLaurentPolynomial - IndeterminateNumberOfUnivariateLaurentPolynomial - IndeterminateNumberOfUnivariateRationalFunction - IndeterminateOfLaurentPolynomial - IndeterminateOfUnivariateRationalFunction - Indeterminateness - IndeterminatenessInfo - IndeterminatesOfPolynomialRing - Index - IndexCosetTab - IndexInParent - IndexInWholeGroup - IndexNC - IndexOp - Indicator - IndicatorOp - IndicesCentralNormalSteps - IndicesChiefNormalSteps - IndicesEANormalSteps - IndicesInvolutaryGenerators - IndicesNormalSteps - IndicesOfAdjointBasis - IndicesPCentralNormalStepsPGroup - IndicesStabChain - Indirected - Induced - InducedActionAutGroup - InducedActionFactor - InducedAutomorphism - InducedClassFunction - InducedClassFunctions - InducedClassFunctionsByFusionMap - InducedCyclic - InducedGModule - InducedLinearAction - InducedModule - InducedModuleByFieldReduction - InducedPcgs - InducedPcgsByGenerators - InducedPcgsByGeneratorsNC - InducedPcgsByGeneratorsWithImages - InducedPcgsByPcSequence - InducedPcgsByPcSequenceAndGenerators - InducedPcgsByPcSequenceNC - InducedPcgsWrtFamilyPcgs - InducedPcgsWrtHomePcgs - InducedPcgsWrtSpecialPcgs - InducedRepFpGroup - InducedRepresentation - InducedRepresentationImagesRepresentative - InduciblePairs - InductionScheme - Inequalities - InertiaSubgroup - InfiniteListOfGenerators - InfiniteListOfNames - Inflated - Info - InfoAction - InfoAlgebra - InfoAttributes - InfoAutGrp - InfoBasicImage - InfoBckt - InfoChain - InfoCharacterTable - InfoClassFamily - InfoClasses - InfoCoh - InfoCompPairs - InfoComplement - InfoConfluence - InfoCoset - InfoData - InfoDebug - InfoDecision - InfoDoPrint - InfoExtReps - InfoFactor - InfoFpGroup - InfoGalois - InfoGlobal - InfoGroebner - InfoGroup - InfoHash - InfoHashTables - InfoHomClass - InfoIdgroup - InfoImf - InfoKnuthBendix - InfoLattice - InfoLevel - InfoMatInt - InfoMatOrb - InfoMatrix - InfoMeatAxe - InfoMethodSelection - InfoMonomial - InfoMorph - InfoNumtheor - InfoOperation - InfoOptions - InfoOverGr - InfoPcGroup - InfoPcNormalizer - InfoPcSubgroup - InfoPerformance - InfoPoly - InfoPrimeInt - InfoQuotientGroup - InfoQuotientSystem - InfoRSS - InfoRandIso - InfoSQ - InfoSchur - InfoSearchTable - InfoSpecPcgs - InfoTeaching - InfoText - InfoTiming - InfoTom - InfoTransversal - InfoTuples - InfoWarning - InfoZLattice - InitAbsAndIrredModules - InitEpimorphismSQ - InitFusion - InitPowerMap - InitialiseCentralRelations - InitializePackagesInfoRecords - InitializeSchreierTree - Injection - InjectionZeroMagma - InnerAutomorphism - InnerAutomorphismNC - InnerAutomorphismsAutomorphismGroup - InnerSubdirectProducts - InputLogTo - InputOutputLocalProcess - InputOutputStreamByPtyDefaultType - InputTextFile - InputTextFileStillOpen - InputTextFileType - InputTextNone - InputTextNoneType - InputTextString - InputTextStringType - InputTextUser - Insert - InsertElmList - InsertTrivialStabilizer - InstallAccessToGenerators - InstallAtExit - InstallAttributeFunction - InstallAttributeMethodByGroupGeneralMappingByImages - InstallCharReadHookFunc - InstallEqMethodForMappingsFromGenerators - InstallFactorMaintenance - InstallFlushableValue - InstallGlobalFunction - InstallHandlingByNiceBasis - InstallHiddenTrueMethod - InstallImmediateMethod - InstallIsomorphismMaintenance - InstallIsomorphismMaintenanceFunction - InstallMethod - InstallMonomialOrdering - InstallOtherMethod - InstallPcgsSeriesFromIndices - InstallSubsetMaintenance - InstallTrueMethod - InstallTrueMethodNewFilter - InstallValue - InstalledPackageVersion - Int - IntFFE - IntFFESymm - IntHexString - IntScalarProducts - IntVecFFE - Integers - IntegralizedMat - IntegratedStraightLineProgram - IntermediateGroup - IntermediateSubgroups - InternalRepresentative - InterpolatedPolynomial - IntersectBlist - IntersectSet - Intersection - IntersectionBlist - IntersectionNormalClosurePermGroup - IntersectionSet - IntersectionSumPcgs - IntersectionsTom - InvariantBilinearForm - InvariantElementaryAbelianSeries - InvariantForm - InvariantLattice - InvariantQuadraticForm - InvariantSesquilinearForm - InvariantSubgroupsElementaryAbelianGroup - InvariantSubspaceOrCyclicGroup - InvariantSubspaceOrUniformCyclicPGroup - Inverse - InverseAsWord - InverseAttr - InverseClasses - InverseGeneralMapping - InverseImmutable - InverseMap - InverseMatMod - InverseMutable - InverseOp - InversePcgs - InverseRepresentative - InverseRepresentativeWord - InverseSLPElm - InverseSM - InverseSameMutability - Irr - IrrBaumClausen - IrrConlon - IrrDixonSchneider - IrrFacsPol - IrredSolGroupList - IrredSolJSGens - IrreducibleDifferences - IrreducibleModules - IrreducibleRepresentations - IrreducibleRepresentationsByBaumClausen - IrreducibleRepresentationsDixon - IrreducibleSolvableGroup - IrreducibleSolvableGroupMS - IsANFAutomorphism - IsANFAutomorphismRep - IsAbelian - IsAbelianNumberField - IsAbelianNumberFieldPolynomialRing - IsAbelianTom - IsActionHomomorphism - IsActionHomomorphismAutomGroup - IsActionHomomorphismByActors - IsActionHomomorphismByBase - IsActionHomomorphismSubset - IsAdditiveCoset - IsAdditiveCosetDefaultRep - IsAdditiveElement - IsAdditiveElementAsMultiplicativeElementRep - IsAdditiveElementCollColl - IsAdditiveElementCollCollColl - IsAdditiveElementCollection - IsAdditiveElementList - IsAdditiveElementTable - IsAdditiveElementWithInverse - IsAdditiveElementWithInverseCollColl - IsAdditiveElementWithInverseCollCollColl - IsAdditiveElementWithInverseCollection - IsAdditiveElementWithInverseList - IsAdditiveElementWithInverseTable - IsAdditiveElementWithZero - IsAdditiveElementWithZeroCollColl - IsAdditiveElementWithZeroCollCollColl - IsAdditiveElementWithZeroCollection - IsAdditiveElementWithZeroList - IsAdditiveElementWithZeroTable - IsAdditiveGroup - IsAdditiveGroupGeneralMapping - IsAdditiveGroupHomomorphism - IsAdditiveGroupToGroupGeneralMapping - IsAdditiveGroupToGroupHomomorphism - IsAdditiveMagma - IsAdditiveMagmaWithInverses - IsAdditiveMagmaWithZero - IsAdditivelyCommutative - IsAdditivelyCommutativeElement - IsAdditivelyCommutativeElementCollColl - IsAdditivelyCommutativeElementCollection - IsAdditivelyCommutativeElementFamily - IsAlgBFRep - IsAlgExtRep - IsAlgebra - IsAlgebraGeneralMapping - IsAlgebraGeneralMappingByImagesDefaultRep - IsAlgebraHomomorphism - IsAlgebraHomomorphismFromFpRep - IsAlgebraModule - IsAlgebraModuleElement - IsAlgebraModuleElementCollection - IsAlgebraModuleElementFamily - IsAlgebraWithOne - IsAlgebraWithOneGeneralMapping - IsAlgebraWithOneHomomorphism - IsAlgebraicElement - IsAlgebraicElementCollColl - IsAlgebraicElementCollCollColl - IsAlgebraicElementCollection - IsAlgebraicElementFamily - IsAlgebraicExtension - IsAlgebraicExtensionDefaultRep - IsAlgebraicExtensionPolynomialRing - IsAlphaChar - IsAlternatingGroup - IsAnticommutative - IsAntisymmetricBinaryRelation - IsAssocWord - IsAssocWordCollection - IsAssocWordFamily - IsAssocWordWithInverse - IsAssocWordWithInverseCollection - IsAssocWordWithInverseFamily - IsAssocWordWithOne - IsAssocWordWithOneCollection - IsAssocWordWithOneFamily - IsAssociated - IsAssociative - IsAssociativeAOpDSum - IsAssociativeAOpESum - IsAssociativeElement - IsAssociativeElementCollColl - IsAssociativeElementCollection - IsAssociativeLOpDProd - IsAssociativeLOpEProd - IsAssociativeROpDProd - IsAssociativeROpEProd - IsAssociativeUOpDProd - IsAssociativeUOpEProd - IsAttributeStoringRep - IsAttributeStoringRepFlags - IsAutomorphismGroup - IsBLetterAssocWordRep - IsBLetterWordsFamily - IsBasicImageEltRep - IsBasicImageEltRepCollection - IsBasicImageGroup - IsBasicWreathLessThanOrEqual - IsBasicWreathProductOrdering - IsBasis - IsBasisByNiceBasis - IsBasisFiniteFieldRep - IsBasisOfAlgebraModuleElementSpace - IsBasisOfMonomialSpaceRep - IsBasisOfSparseRowSpaceRep - IsBasisOfWeightRepElementSpace - IsBasisWithReplacedLeftModuleRep - IsBergerCondition - IsBijective - IsBinaryRelation - IsBinaryRelationDefaultRep - IsBinaryRelationOnPointsRep - IsBlist - IsBlistRep - IsBlockMatrixRep - IsBlocksHomomorphism - IsBlocksOfActionHomomorphism - IsBlowUpIsomorphism - IsBool - IsBound - IsBoundElmWPObj - IsBoundGlobal - IsBracketRep - IsBrauerTable - IsBravaisGroup - IsBuiltFromAdditiveMagmaWithInverses - IsBuiltFromGroup - IsBuiltFromMagma - IsBuiltFromMagmaWithInverses - IsBuiltFromMagmaWithOne - IsBuiltFromMonoid - IsBuiltFromSemigroup - IsCanonicalBasis - IsCanonicalBasisAbelianNumberFieldRep - IsCanonicalBasisAlgebraicExtension - IsCanonicalBasisCyclotomicFieldRep - IsCanonicalBasisFreeMagmaRingRep - IsCanonicalBasisFullMatrixModule - IsCanonicalBasisFullRowModule - IsCanonicalBasisFullSCAlgebra - IsCanonicalBasisGaussianIntegersRep - IsCanonicalBasisIntegersRep - IsCanonicalBasisRationals - IsCanonicalNiceMonomorphism - IsCanonicalPcgs - IsCanonicalPcgsWrtSpecialPcgs - IsCentral - IsCentralFromGenerators - IsChainTypeGroup - IsChar - IsCharCollection - IsCharacter - IsCharacterTable - IsCharacterTableInProgress - IsCharacteristicMatrixPGroup - IsCharacteristicSubgroup - IsCheapConwayPolynomial - IsClassFunction - IsClassFunctionsSpace - IsClassFusionOfNormalSubgroup - IsClosedStream - IsCochain - IsCochainCollection - IsCochainsSpace - IsCocycle - IsCoeffsElms - IsCollCollsElms - IsCollCollsElmsElms - IsCollCollsElmsElmsX - IsCollLieCollsElms - IsCollection - IsCollectionFamily - IsCollsCollsElms - IsCollsCollsElmsX - IsCollsCollsElmsXX - IsCollsElms - IsCollsElmsColls - IsCollsElmsElms - IsCollsElmsElmsElms - IsCollsElmsElmsX - IsCollsElmsX - IsCollsElmsXElms - IsCollsElmsXX - IsCollsXElms - IsCollsXElmsX - IsCombinatorialCollectorRep - IsCommutative - IsCommutativeElement - IsCommutativeElementCollColl - IsCommutativeElementCollection - IsCommutativeFamily - IsCommutativeFromGenerators - IsCompatiblePair - IsComponentObjectRep - IsCompositionMappingRep - IsConfluent - IsCongruenceClass - IsConjugacyClassGroupRep - IsConjugacyClassPermGroupRep - IsConjugacyClassSubgroupsByStabilizerRep - IsConjugacyClassSubgroupsRep - IsConjugate - IsConjugatorAutomorphism - IsConjugatorIsomorphism - IsConsistentPolynomial - IsConstantRationalFunction - IsConstantTimeAccessGeneralMapping - IsConstantTimeAccessList - IsConstituentHomomorphism - IsContainedInSpan - IsCopyable - IsCyc - IsCycInt - IsCyclic - IsCyclicTom - IsCyclotomic - IsCyclotomicCollColl - IsCyclotomicCollCollColl - IsCyclotomicCollection - IsCyclotomicField - IsCyclotomicMatrixGroup - IsDataObjectRep - IsDeepThoughtCollectorRep - IsDefaultGeneralMappingRep - IsDefaultRhsTypeSingleCollector - IsDefaultTupleRep - IsDenseCoeffVectorRep - IsDenseHashRep - IsDenseList - IsDiagonalMat - IsDictionary - IsDictionaryDefaultRep - IsDigitChar - IsDihedralGroup - IsDirectSumElement - IsDirectSumElementCollection - IsDirectSumElementFamily - IsDirectSumElementsSpace - IsDirectory - IsDirectoryPath - IsDirectoryRep - IsDistributive - IsDistributiveLOpDProd - IsDistributiveLOpDSum - IsDistributiveLOpEProd - IsDistributiveLOpESum - IsDistributiveROpDProd - IsDistributiveROpDSum - IsDistributiveROpEProd - IsDistributiveROpESum - IsDistributiveUOpDProd - IsDistributiveUOpDSum - IsDistributiveUOpEProd - IsDistributiveUOpESum - IsDivisionRing - IsDocumentedVariable - IsDomain - IsDoneIterator - IsDoubleCoset - IsDoubleCosetDefaultRep - IsDuplicateFree - IsDuplicateFreeCollection - IsDuplicateFreeList - IsDxLargeGroup - IsElementFinitePolycyclicGroup - IsElementFinitePolycyclicGroupCollection - IsElementOfFpAlgebra - IsElementOfFpAlgebraCollection - IsElementOfFpAlgebraFamily - IsElementOfFpGroup - IsElementOfFpGroupCollection - IsElementOfFpGroupFamily - IsElementOfFpMonoid - IsElementOfFpMonoidCollection - IsElementOfFpMonoidFamily - IsElementOfFpSemigroup - IsElementOfFpSemigroupCollection - IsElementOfFpSemigroupFamily - IsElementOfFreeGroup - IsElementOfFreeGroupFamily - IsElementOfFreeMagmaRing - IsElementOfFreeMagmaRingCollection - IsElementOfFreeMagmaRingFamily - IsElementOfMagmaRingModuloRelations - IsElementOfMagmaRingModuloRelationsCollection - IsElementOfMagmaRingModuloRelationsFamily - IsElementOfMagmaRingModuloSpanOfZeroFamily - IsElementaryAbelian - IsElementsFamilyByRws - IsElmsCoeffs - IsElmsCollColls - IsElmsCollCollsX - IsElmsCollLieColls - IsElmsColls - IsElmsCollsX - IsElmsCollsXX - IsElmsLieColls - IsEmbeddingDirectProductPermGroup - IsEmbeddingImprimitiveWreathProductPermGroup - IsEmbeddingMagmaMagmaRing - IsEmbeddingProductActionWreathProductPermGroup - IsEmbeddingRingMagmaRing - IsEmbeddingWreathProductPermGroup - IsEmpty - IsEmptyRowVectorRep - IsEmptyString - IsEndOfStream - IsEndoGeneralMapping - IsEndoMapping - IsEnumeratorByFunctions - IsEnumeratorByFunctionsRep - IsEnumeratorByPcgsRep - IsEqualSet - IsEquivalenceClass - IsEquivalenceClassDefaultRep - IsEquivalenceRelation - IsEquivalenceRelationDefaultRep - IsEquivalentByFp - IsEuclideanRing - IsEvenInt - IsExecutableFile - IsExistingFile - IsExtAElement - IsExtAElementCollColl - IsExtAElementCollection - IsExtAElementList - IsExtAElementTable - IsExtASet - IsExtLElement - IsExtLElementCollColl - IsExtLElementCollection - IsExtLElementList - IsExtLElementTable - IsExtLSet - IsExtRElement - IsExtRElementCollColl - IsExtRElementCollection - IsExtRElementList - IsExtRElementTable - IsExtRSet - IsExtUSet - IsExtensibleGeneralMapping - IsExtensiblePartialMapping - IsExternalOrbit - IsExternalOrbitByStabilizerRep - IsExternalSet - IsExternalSetByActorsRep - IsExternalSetByOperatorsRep - IsExternalSetByPcgs - IsExternalSetDefaultRep - IsExternalSubset - IsFFE - IsFFECollColl - IsFFECollCollColl - IsFFECollection - IsFFEFamily - IsFFEMatrixGroup - IsFFEMatrixGroupOverLargeSpace - IsFLMLOR - IsFLMLORWithOne - IsFamFamFam - IsFamFamFamX - IsFamFamX - IsFamFamXY - IsFamLieFam - IsFamXFam - IsFamXFamY - IsFamXYFamZ - IsFamily - IsFamilyDefaultRep - IsFamilyElementOfFreeLieAlgebra - IsFamilyOfFamilies - IsFamilyOfTypes - IsFamilyOverFullCoefficientsFamily - IsFamilyPcgs - IsField - IsFieldControlledByGaloisGroup - IsFieldElementsSpace - IsFieldHomomorphism - IsFilter - IsFinite - IsFiniteBasisDefault - IsFiniteDimensional - IsFiniteFieldPolynomialRing - IsFiniteOrderElement - IsFiniteOrderElementCollColl - IsFiniteOrderElementCollection - IsFiniteOrdersPcgs - IsFiniteSemigroupGreensRelation - IsFinitelyGeneratedGroup - IsFixedStabilizer - IsFlatHashTable - IsFlexibleGeneralMapping - IsFlexiblePartialMapping - IsFpAlgebraElementsSpace - IsFpGroup - IsFpMonoid - IsFpSemigroup - IsFptoSCAMorphism - IsFrattiniFree - IsFreeGroup - IsFreeLeftModule - IsFreeMagma - IsFreeMagmaRing - IsFreeMagmaRingWithOne - IsFreeMonoid - IsFreeSemigroup - IsFrobeniusAutomorphism - IsFromFpGroupGeneralMapping - IsFromFpGroupGeneralMappingByImages - IsFromFpGroupHomomorphism - IsFromFpGroupHomomorphismByImages - IsFromFpGroupStdGensGeneralMappingByImages - IsFromFpGroupStdGensHomomorphismByImages - IsFullFpAlgebra - IsFullHomModule - IsFullMatrixModule - IsFullRowModule - IsFullSCAlgebra - IsFullSubgroupGLorSLRespectingBilinearForm - IsFullSubgroupGLorSLRespectingQuadraticForm - IsFullSubgroupGLorSLRespectingSesquilinearForm - IsFullTransformationSemigroup - IsFunction - IsGL - IsGaussInt - IsGaussRat - IsGaussianIntegers - IsGaussianMatrixSpace - IsGaussianRationals - IsGaussianRowSpace - IsGaussianSpace - IsGeneralLinearGroup - IsGeneralMapping - IsGeneralMappingCollection - IsGeneralMappingFamily - IsGeneralPcgs - IsGeneralizedCartanMatrix - IsGeneralizedDomain - IsGeneralizedRowVector - IsGeneratorsOfMagmaWithInverses - IsGenericCharacterTableRep - IsGenericFiniteSpace - IsGreensClass - IsGreensDClass - IsGreensDRelation - IsGreensHClass - IsGreensHRelation - IsGreensJClass - IsGreensJRelation - IsGreensLClass - IsGreensLRelation - IsGreensLessThanOrEqual - IsGreensRClass - IsGreensRRelation - IsGreensRelation - IsGroup - IsGroupGeneralMapping - IsGroupGeneralMappingByAsGroupGeneralMappingByImages - IsGroupGeneralMappingByImages - IsGroupGeneralMappingByPcgs - IsGroupHClass - IsGroupHomomorphism - IsGroupOfAutomorphisms - IsGroupOfAutomorphismsFiniteGroup - IsGroupOfFamily - IsGroupRing - IsGroupToAdditiveGroupGeneralMapping - IsGroupToAdditiveGroupHomomorphism - IsHandledByNiceBasis - IsHandledByNiceMonomorphism - IsHash - IsHashTable - IsHasseDiagram - IsHomCoset - IsHomCosetCollection - IsHomCosetOfAdditiveElt - IsHomCosetOfFp - IsHomCosetOfMatrix - IsHomCosetOfPerm - IsHomCosetOfTuple - IsHomCosetToAdditiveElt - IsHomCosetToAdditiveEltCollection - IsHomCosetToAdditiveEltRep - IsHomCosetToFp - IsHomCosetToFpCollection - IsHomCosetToFpRep - IsHomCosetToMatrix - IsHomCosetToMatrixCollection - IsHomCosetToMatrixRep - IsHomCosetToObjectRep - IsHomCosetToPerm - IsHomCosetToPermCollection - IsHomCosetToPermRep - IsHomCosetToTuple - IsHomCosetToTupleCollection - IsHomCosetToTupleRep - IsHomQuotientGroup - IsHomogeneousList - IsIdeal - IsIdealInParent - IsIdealOp - IsIdempotent - IsIdenticalObj - IsIdenticalObjFamiliesColObjObj - IsIdenticalObjFamiliesColObjObjObj - IsIdenticalObjFamiliesColXXXObj - IsIdenticalObjFamiliesColXXXXXXObj - IsIdenticalObjFamiliesRwsObj - IsIdenticalObjFamiliesRwsObjObj - IsIdenticalObjFamiliesRwsObjXXX - IsIdenticalObjObjObjX - IsIdenticalObjObjXObj - IsImfMatrixGroup - IsImpossible - IsInBasicOrbit - IsInCenter - IsInCentre - IsInChain - IsIncomparableUnder - IsInducedFromNormalSubgroup - IsInducedPcgs - IsInducedPcgsRep - IsInducedPcgsWrtSpecialPcgs - IsInfBitsAssocWord - IsInfBitsFamily - IsInfiniteListOfGeneratorsRep - IsInfiniteListOfNamesRep - IsInfinity - IsInfoClass - IsInfoClassCollection - IsInfoClassListRep - IsInfoSelector - IsInjective - IsInnerAutomorphism - IsInputOutputStream - IsInputOutputStreamByPtyRep - IsInputStream - IsInputTextFileRep - IsInputTextNone - IsInputTextNoneRep - IsInputTextStream - IsInputTextStringRep - IsInt - IsIntegerMatrixGroup - IsIntegers - IsIntegralBasis - IsIntegralCyclotomic - IsIntegralRing - IsInternalRep - IsInternallyConsistent - IsInverseGeneralMappingRep - IsIrreducible - IsIrreducibleCharacter - IsIrreducibleRingElement - IsIterator - IsIteratorByFunctions - IsIteratorByFunctionsRep - IsJacobianElement - IsJacobianElementCollColl - IsJacobianElementCollection - IsJacobianRing - IsKernelPcWord - IsKnuthBendixRewritingSystem - IsKnuthBendixRewritingSystemRep - IsLDistributive - IsLatticeOrderBinaryRelation - IsLatticeSubgroupsRep - IsLaurentPolynomial - IsLaurentPolynomialDefaultRep - IsLaurentPolynomialsFamily - IsLaurentPolynomialsFamilyElement - IsLeftActedOnByDivisionRing - IsLeftActedOnByRing - IsLeftActedOnBySuperset - IsLeftAlgebraModule - IsLeftAlgebraModuleElement - IsLeftAlgebraModuleElementCollection - IsLeftIdeal - IsLeftIdealFromGenerators - IsLeftIdealInParent - IsLeftIdealOp - IsLeftMagmaCongruence - IsLeftMagmaIdeal - IsLeftModule - IsLeftModuleGeneralMapping - IsLeftModuleHomomorphism - IsLeftOperatorAdditiveGroup - IsLeftOperatorRing - IsLeftOperatorRingWithOne - IsLeftSemigroupCongruence - IsLeftSemigroupIdeal - IsLeftVectorSpace - IsLessThanOrEqualUnder - IsLessThanUnder - IsLetterAssocWordRep - IsLetterWordsFamily - IsLexicographicallyLess - IsLibTomRep - IsLibraryCharacterTableRep - IsLieAbelian - IsLieAlgebra - IsLieEmbeddingRep - IsLieFamFam - IsLieMatrix - IsLieNilpotent - IsLieNilpotentElement - IsLieObject - IsLieObjectCollection - IsLieObjectsModule - IsLieSolvable - IsLinearActionHomomorphism - IsLinearGeneralMappingByImagesDefaultRep - IsLinearMapping - IsLinearMappingByMatrixDefaultRep - IsLinearMappingsModule - IsLinearlyIndependent - IsLinearlyPrimitive - IsList - IsListDefault - IsListDictionary - IsListHashTable - IsListLookupDictionary - IsListOrCollection - IsLockedRepresentationVector - IsLookupDictionary - IsLowerAlphaChar - IsLowerTriangularMat - IsMagma - IsMagmaByMultiplicationTableObj - IsMagmaCollsMagmaRingColls - IsMagmaCongruence - IsMagmaHomomorphism - IsMagmaIdeal - IsMagmaRingModuloRelations - IsMagmaRingModuloSpanOfZero - IsMagmaRingObjDefaultRep - IsMagmaRingsMagmas - IsMagmaRingsRings - IsMagmaWithInverses - IsMagmaWithInversesIfNonzero - IsMagmaWithMultiplicativeZeroAdjoinedElementRep - IsMagmaWithOne - IsMagmasMagmaRings - IsMapping - IsMappingByFunctionRep - IsMappingByFunctionWithInverseRep - IsMatchingSublist - IsMatrix - IsMatrixCollection - IsMatrixFLMLOR - IsMatrixGroup - IsMatrixModule - IsMatrixSpace - IsMemberPcSeriesPermGroup - IsMinimalNonmonomial - IsModuloPcgs - IsModuloPcgsFpGroupRep - IsModuloPcgsPermGroupRep - IsModuloPcgsRep - IsModuloTailPcgsByListRep - IsModuloTailPcgsRep - IsModulusRep - IsMonoid - IsMonomial - IsMonomialCharacter - IsMonomialCharacterTable - IsMonomialElement - IsMonomialElementCollection - IsMonomialElementFamily - IsMonomialElementRep - IsMonomialGroup - IsMonomialMatrix - IsMonomialNumber - IsMonomialOrdering - IsMonomialOrderingDefaultRep - IsMultiplicativeElement - IsMultiplicativeElementCollColl - IsMultiplicativeElementCollCollColl - IsMultiplicativeElementCollection - IsMultiplicativeElementList - IsMultiplicativeElementTable - IsMultiplicativeElementWithInverse - IsMultiplicativeElementWithInverseByPolycyclicCollector - IsMultiplicativeElementWithInverseByPolycyclicCollectorCollection - IsMultiplicativeElementWithInverseByRws - IsMultiplicativeElementWithInverseCollColl - IsMultiplicativeElementWithInverseCollCollColl - IsMultiplicativeElementWithInverseCollection - IsMultiplicativeElementWithInverseList - IsMultiplicativeElementWithInverseTable - IsMultiplicativeElementWithOne - IsMultiplicativeElementWithOneCollColl - IsMultiplicativeElementWithOneCollCollColl - IsMultiplicativeElementWithOneCollection - IsMultiplicativeElementWithOneList - IsMultiplicativeElementWithOneTable - IsMultiplicativeElementWithZero - IsMultiplicativeElementWithZeroCollection - IsMultiplicativeGeneralizedRowVector - IsMultiplicativeZero - IsMutable - IsMutableBasis - IsMutableBasisByImmutableBasisRep - IsMutableBasisOfGaussianMatrixSpaceRep - IsMutableBasisOfGaussianRowSpaceRep - IsMutableBasisViaNiceMutableBasisRep - IsMutableBasisViaUnderlyingMutableBasisRep - IsNBitsPcWordRep - IsNameOfNoninstalledTableOfMarks - IsNaturalAlternatingGroup - IsNaturalGL - IsNaturalGLnZ - IsNaturalHomomorphismPcGroupRep - IsNaturalSL - IsNaturalSLnZ - IsNaturalSymmetricGroup - IsNearAdditiveElement - IsNearAdditiveElementCollColl - IsNearAdditiveElementCollCollColl - IsNearAdditiveElementCollection - IsNearAdditiveElementList - IsNearAdditiveElementTable - IsNearAdditiveElementWithInverse - IsNearAdditiveElementWithInverseCollColl - IsNearAdditiveElementWithInverseCollCollColl - IsNearAdditiveElementWithInverseCollection - IsNearAdditiveElementWithInverseList - IsNearAdditiveElementWithInverseTable - IsNearAdditiveElementWithZero - IsNearAdditiveElementWithZeroCollColl - IsNearAdditiveElementWithZeroCollCollColl - IsNearAdditiveElementWithZeroCollection - IsNearAdditiveElementWithZeroList - IsNearAdditiveElementWithZeroTable - IsNearAdditiveGroup - IsNearAdditiveMagma - IsNearAdditiveMagmaWithInverses - IsNearAdditiveMagmaWithZero - IsNearRing - IsNearRingElement - IsNearRingElementCollColl - IsNearRingElementCollCollColl - IsNearRingElementCollection - IsNearRingElementFamily - IsNearRingElementList - IsNearRingElementTable - IsNearRingElementWithInverse - IsNearRingElementWithInverseCollColl - IsNearRingElementWithInverseCollCollColl - IsNearRingElementWithInverseCollection - IsNearRingElementWithInverseList - IsNearRingElementWithInverseTable - IsNearRingElementWithOne - IsNearRingElementWithOneCollColl - IsNearRingElementWithOneCollCollColl - IsNearRingElementWithOneCollection - IsNearRingElementWithOneList - IsNearRingElementWithOneTable - IsNearRingWithOne - IsNearlyCharacterTable - IsNegInt - IsNegRat - IsNiceMonomorphism - IsNilpQuotientSystem - IsNilpotent - IsNilpotentCharacterTable - IsNilpotentElement - IsNilpotentGroup - IsNilpotentTom - IsNoImmediateMethodsObject - IsNonGaussianMatrixSpace - IsNonGaussianRowSpace - IsNonSPGeneralMapping - IsNonSPMappingByFunctionRep - IsNonSPMappingByFunctionWithInverseRep - IsNonTrivial - IsNonassocWord - IsNonassocWordCollection - IsNonassocWordFamily - IsNonassocWordWithOne - IsNonassocWordWithOneCollection - IsNonassocWordWithOneFamily - IsNoncharacteristicMatrixPGroup - IsNonnegativeIntegers - IsNormal - IsNormalBasis - IsNormalForm - IsNormalInParent - IsNormalOp - IsNotElmsColls - IsNotIdenticalObj - IsNullMapMatrix - IsNumberField - IsNumeratorParentForExponentsRep - IsNumeratorParentPcgsFamilyPcgs - IsObjToBePrinted - IsObject - IsOddAdditiveNestingDepthFamily - IsOddAdditiveNestingDepthObject - IsOddInt - IsOne - IsOperation - IsOperationAlgebraHomomorphismDefaultRep - IsOrdering - IsOrderingOnFamilyOfAssocWords - IsOrdinaryMatrix - IsOrdinaryMatrixCollection - IsOrdinaryTable - IsOutputStream - IsOutputTextFileRep - IsOutputTextNone - IsOutputTextNoneRep - IsOutputTextStream - IsOutputTextStringRep - IsPGroup - IsPNilpotent - IsPNilpotentOp - IsPQuotientSystem - IsPSL - IsPSolvable - IsPSolvableCharacterTable - IsPSolvableCharacterTableOp - IsPSolvableOp - IsPackedElementDefaultRep - IsPadicExtensionNumber - IsPadicExtensionNumberFamily - IsPadicNumber - IsPadicNumberCollColl - IsPadicNumberCollection - IsPadicNumberFamily - IsPadicNumberList - IsPadicNumberTable - IsParentPcgsFamilyPcgs - IsPartialOrderBinaryRelation - IsPartition - IsPcGroup - IsPcGroupGeneralMappingByImages - IsPcGroupHomomorphismByImages - IsPcgs - IsPcgsCentralSeries - IsPcgsChiefSeries - IsPcgsDefaultRep - IsPcgsElementaryAbelianSeries - IsPcgsFamily - IsPcgsPCentralSeriesPGroup - IsPcgsPermGroupRep - IsPcgsToPcgsGeneralMappingByImages - IsPcgsToPcgsHomomorphism - IsPerfect - IsPerfectCharacterTable - IsPerfectGroup - IsPerfectLibraryGroup - IsPerfectTom - IsPerm - IsPermCollColl - IsPermCollection - IsPermGroup - IsPermGroupGeneralMappingByImages - IsPermGroupHomomorphismByImages - IsPermOnEnumerator - IsPlistRep - IsPolycyclicCollector - IsPolycyclicGroup - IsPolynomial - IsPolynomialDefaultRep - IsPolynomialFunction - IsPolynomialFunctionCollection - IsPolynomialFunctionsFamily - IsPolynomialFunctionsFamilyElement - IsPolynomialRing - IsPolynomialRingIdeal - IsPosInt - IsPosRat - IsPositionDictionary - IsPositionLookupDictionary - IsPositionalObjectRep - IsPositionsList - IsPositiveIntegers - IsPowerCommutatorCollector - IsPowerConjugateCollector - IsPreOrderBinaryRelation - IsPreimagesByAsGroupGeneralMappingByImages - IsPresentation - IsPresentationDefaultRep - IsPrimGrpIterRep - IsPrime - IsPrimeField - IsPrimeInt - IsPrimeOrdersPcgs - IsPrimePowerInt - IsPrimitive - IsPrimitiveAffine - IsPrimitiveCharacter - IsPrimitiveMatrixGroup - IsPrimitivePolynomial - IsPrimitiveRootMod - IsProbablyPrimeInt - IsProbablyPrimeIntWithFail - IsProjectionDirectProductPermGroup - IsProjectionSubdirectProductPermGroup - IsPseudoCanonicalBasisFullHomModule - IsPurePadicNumber - IsPurePadicNumberFamily - IsQuasiDihedralGroup - IsQuasiPrimitive - IsQuaternion - IsQuaternionCollColl - IsQuaternionCollection - IsQuaternionGroup - IsQuickPositionList - IsQuotientSemigroup - IsQuotientSystem - IsQuotientToAdditiveGroup - IsQuotientToFpGroup - IsQuotientToMatrixGroup - IsQuotientToPermGroup - IsQuotientToTupleGroup - IsRDistributive - IsRange - IsRangeRep - IsRat - IsRationalClassGroupRep - IsRationalClassPermGroupRep - IsRationalFunction - IsRationalFunctionCollection - IsRationalFunctionDefaultRep - IsRationalFunctionOverField - IsRationalFunctionsFamily - IsRationalFunctionsFamilyElement - IsRationalMatrixGroup - IsRationals - IsRationalsPolynomialRing - IsReadOnlyGVar - IsReadOnlyGlobal - IsReadableFile - IsRecord - IsRecordCollColl - IsRecordCollection - IsRectangularTable - IsRectangularTablePlist - IsReduced - IsReducedConfluentRewritingSystem - IsReducedForm - IsReductionOrdering - IsReesCongruence - IsReesCongruenceSemigroup - IsReesMatrixSemigroup - IsReesMatrixSemigroupElement - IsReesMatrixSemigroupElementCollection - IsReesMatrixSemigroupElementRep - IsReesZeroMatrixSemigroup - IsReesZeroMatrixSemigroupElement - IsReesZeroMatrixSemigroupElementCollection - IsReflexiveBinaryRelation - IsRegular - IsRegularDClass - IsRegularSemigroup - IsRegularSemigroupElement - IsRelativeBasisDefaultRep - IsRelativelySM - IsRestrictedLieAlgebra - IsRewritingSystem - IsRightActedOnByDivisionRing - IsRightActedOnByRing - IsRightActedOnBySuperset - IsRightAlgebraModule - IsRightAlgebraModuleElement - IsRightAlgebraModuleElementCollection - IsRightCoset - IsRightCosetDefaultRep - IsRightIdeal - IsRightIdealFromGenerators - IsRightIdealInParent - IsRightIdealOp - IsRightMagmaCongruence - IsRightMagmaIdeal - IsRightModule - IsRightOperatorAdditiveGroup - IsRightSemigroupCongruence - IsRightSemigroupIdeal - IsRightTransversal - IsRightTransversalCollection - IsRightTransversalFpGroupRep - IsRightTransversalPcGroupRep - IsRightTransversalPermGroupRep - IsRightTransversalRep - IsRightTransversalViaCosetsRep - IsRing - IsRingCollsMagmaRingColls - IsRingElement - IsRingElementCollColl - IsRingElementCollCollColl - IsRingElementCollection - IsRingElementFamily - IsRingElementList - IsRingElementTable - IsRingElementWithInverse - IsRingElementWithInverseCollColl - IsRingElementWithInverseCollCollColl - IsRingElementWithInverseCollection - IsRingElementWithInverseList - IsRingElementWithInverseTable - IsRingElementWithOne - IsRingElementWithOneCollColl - IsRingElementWithOneCollCollColl - IsRingElementWithOneCollection - IsRingElementWithOneList - IsRingElementWithOneTable - IsRingGeneralMapping - IsRingHomomorphism - IsRingWithOne - IsRingWithOneGeneralMapping - IsRingWithOneHomomorphism - IsRingsMagmaRings - IsRootSystem - IsRootSystemFromLieAlgebra - IsRowModule - IsRowSpace - IsRowVector - IsSCAlgebraObj - IsSCAlgebraObjCollColl - IsSCAlgebraObjCollCollColl - IsSCAlgebraObjCollection - IsSCAlgebraObjFamily - IsSCAlgebraObjSpace - IsSL - IsSPGeneralMapping - IsSPMappingByFunctionRep - IsSPMappingByFunctionWithInverseRep - IsSSortedList - IsScalar - IsScalarCollColl - IsScalarCollection - IsScalarList - IsScalarTable - IsSearchTable - IsSemiEchelonBasisOfGaussianMatrixSpaceRep - IsSemiEchelonBasisOfGaussianRowSpaceRep - IsSemiEchelonized - IsSemiRegular - IsSemigroup - IsSemigroupCongruence - IsSemigroupIdeal - IsSemiring - IsSemiringWithOne - IsSemiringWithOneAndZero - IsSemiringWithZero - IsSet - IsShortLexLessThanOrEqual - IsShortLexOrdering - IsSimple - IsSimpleAlgebra - IsSimpleCharacterTable - IsSimpleGroup - IsSimpleSemigroup - IsSingleCollectorRep - IsSingleValued - IsSkewFieldFamily - IsSlicedPerm - IsSlicedPermInv - IsSmallIntRep - IsSmallList - IsSolvable - IsSolvableCharacterTable - IsSolvableGroup - IsSolvableTom - IsSortDictionary - IsSortLookupDictionary - IsSortedList - IsSortedPcgsRep - IsSpaceOfElementsOfMagmaRing - IsSpaceOfRationalFunctions - IsSpaceOfUEAElements - IsSparseHashRep - IsSparseRowSpaceElement - IsSparseRowSpaceElementCollection - IsSparseRowSpaceElementFamily - IsSpecialLinearGroup - IsSpecialPcgs - IsSporadicSimple - IsSporadicSimpleCharacterTable - IsSporadicSimpleGroup - IsStabChainViaChainSubgroup - IsStandardGeneratorsOfGroup - IsStandardized - IsStraightLineProgElm - IsStraightLineProgram - IsStream - IsString - IsStringRep - IsSubalgebraFpAlgebra - IsSubgroup - IsSubgroupFgGroup - IsSubgroupFpGroup - IsSubgroupOfWholeGroupByQuotientRep - IsSubgroupSL - IsSubmonoidFpMonoid - IsSubnormal - IsSubnormallyMonomial - IsSubsemigroupFpSemigroup - IsSubsemigroupReesMatrixSemigroup - IsSubsemigroupReesZeroMatrixSemigroup - IsSubset - IsSubsetBlist - IsSubsetInducedNumeratorModuloTailPcgsRep - IsSubsetInducedPcgsRep - IsSubsetLocallyFiniteGroup - IsSubsetSet - IsSubspace - IsSubspacesFullRowSpaceDefaultRep - IsSubspacesVectorSpace - IsSubspacesVectorSpaceDefaultRep - IsSupersolvable - IsSupersolvableCharacterTable - IsSupersolvableGroup - IsSurjective - IsSyllableAssocWordRep - IsSyllableWordsFamily - IsSymmetricBinaryRelation - IsSymmetricGroup - IsSymmetricPowerElement - IsSymmetricPowerElementCollection - IsTable - IsTableOfMarks - IsTableOfMarksWithGens - IsTailInducedPcgsRep - IsTensorElement - IsTensorElementCollection - IsToBeDefinedObj - IsToFpGroupGeneralMappingByImages - IsToFpGroupHomomorphismByImages - IsToPcGroupGeneralMappingByImages - IsToPcGroupHomomorphismByImages - IsToPermGroupGeneralMappingByImages - IsToPermGroupHomomorphismByImages - IsTotal - IsTotalOrdering - IsTransformation - IsTransformationCollection - IsTransformationMonoid - IsTransformationRep - IsTransformationRepOfEndo - IsTransformationSemigroup - IsTransitive - IsTransitiveBinaryRelation - IsTranslationInvariantOrdering - IsTransvByDirProd - IsTransvByDirProdCollection - IsTransvByHomomorphism - IsTransvByHomomorphismCollection - IsTransvBySchreierTree - IsTransvBySchreierTreeCollection - IsTransvBySiftFunct - IsTransvBySiftFunctCollection - IsTransvByTrivSubgrp - IsTransvByTrivSubgrpCollection - IsTrivial - IsTrivialAOpEZero - IsTrivialHomCoset - IsTrivialLOpEOne - IsTrivialLOpEZero - IsTrivialRBase - IsTrivialROpEOne - IsTrivialROpEZero - IsTrivialUOpEOne - IsTrivialUOpEZero - IsTuple - IsTupleCollection - IsTupleFamily - IsTwoSidedIdeal - IsTwoSidedIdealInParent - IsTwoSidedIdealOp - IsType - IsTypeDefaultRep - IsUEALatticeElement - IsUEALatticeElementCollection - IsUEALatticeElementFamily - IsUFDFamily - IsUniformMatrixGroup - IsUniqueFactorizationRing - IsUnit - IsUnivariatePolynomial - IsUnivariatePolynomialRing - IsUnivariatePolynomialsFamily - IsUnivariatePolynomialsFamilyElement - IsUnivariateRationalFunction - IsUnivariateRationalFunctionDefaultRep - IsUnknown - IsUnknownDefaultRep - IsUnsortedPcgsRep - IsUpToDatePolycyclicCollector - IsUpperActedOnByGroup - IsUpperActedOnBySuperset - IsUpperAlphaChar - IsUpperTriangularMat - IsValidIdentifier - IsVector - IsVectorCollColl - IsVectorCollection - IsVectorList - IsVectorSearchTable - IsVectorSearchTableDefaultRep - IsVectorSpace - IsVectorSpaceHomomorphism - IsVectorTable - IsVirtualCharacter - IsWLetterAssocWordRep - IsWLetterWordsFamily - IsWPObj - IsWeakPointerObject - IsWedgeElement - IsWedgeElementCollection - IsWeightLexOrdering - IsWeightRepElement - IsWeightRepElementCollection - IsWeightRepElementFamily - IsWellFoundedOrdering - IsWeylGroup - IsWholeFamily - IsWord - IsWordCollection - IsWordWithInverse - IsWordWithOne - IsWreathProductElement - IsWreathProductElementCollection - IsWreathProductElementDefaultRep - IsWreathProductOrdering - IsWritableFile - IsZDFRE - IsZDFRECollColl - IsZDFRECollection - IsZero - IsZeroCochainRep - IsZeroCyc - IsZeroGroup - IsZeroMultiplicationRing - IsZeroRationalFunction - IsZeroSimpleSemigroup - IsZeroSquaredElement - IsZeroSquaredElementCollColl - IsZeroSquaredElementCollection - IsZeroSquaredRing - IsZmodnZObj - IsZmodnZObjNonprime - IsZmodnZObjNonprimeCollColl - IsZmodnZObjNonprimeCollCollColl - IsZmodnZObjNonprimeCollection - IsZmodnZObjNonprimeFamily - IsZmodpZObj - IsZmodpZObjLarge - IsZmodpZObjSmall - IsolatePoint - IsomorphicSubgroups - IsomorphismAbelianGroups - IsomorphismFpAlgebra - IsomorphismFpFLMLOR - IsomorphismFpGroup - IsomorphismFpGroupByCompositionSeries - IsomorphismFpGroupByGenerators - IsomorphismFpGroupByGeneratorsNC - IsomorphismFpGroupByPcgs - IsomorphismFpGroupBySubnormalSeries - IsomorphismFpMonoid - IsomorphismFpSemigroup - IsomorphismGroups - IsomorphismMatrixAlgebra - IsomorphismMatrixFLMLOR - IsomorphismPcGroup - IsomorphismPermGroup - IsomorphismPermGroupImfGroup - IsomorphismPermGroupOrFailFpGroup - IsomorphismPermGroups - IsomorphismReesMatrixSemigroup - IsomorphismRefinedPcGroup - IsomorphismSCAlgebra - IsomorphismSCFLMLOR - IsomorphismSimplifiedFpGroup - IsomorphismSolvableSmallGroups - IsomorphismSpecialPcGroup - IsomorphismToFullRowSpace - IsomorphismTransformationSemigroup - IsomorphismTypeInfoFiniteSimpleGroup - Iterated - Iterator - IteratorByBasis - IteratorByFunctions - IteratorList - IteratorSorted - IteratorsFamily - Jacobi - JenningsLieAlgebra - JenningsSeries - JoinEquivalenceRelations - JoinMagmaCongruences - JoinSemigroupCongruences - JoinStringsWithSeparator - JordanDecomposition - KBOverlaps - KappaPerp - Kernel - KernelHcommaC - KernelOfAdditiveGeneralMapping - KernelOfCharacter - KernelOfHomQuotientGroup - KernelOfMultiplicativeGeneralMapping - KernelOfTransformation - KernelUnderDualAction - KeyDependentOperation - KillingMatrix - KnownAttributesOfObject - KnownNaturalHomomorphismsPool - KnownPropertiesOfObject - KnownTruePropertiesOfObject - KnowsDictionary - KnowsHowToDecompose - KnuthBendixRewritingSystem - KroneckerProduct - KuKGenerators - LClassOfHClass - LGFirst - LGHeads - LGLayers - LGLength - LGTails - LGWeights - LLLReducedBasis - LLLReducedGramMat - LLLint - LMPSLPSeed - LaTeX - LaTeXObj - LaTeXStringDecompositionMatrix - LaTeXToHTMLString - LabsLims - Lambda - LargeGaloisField - LargestElementGroup - LargestElementStabChain - LargestMovedPoint - LargestMovedPointPerm - LargestMovedPointPerms - LargestUnknown - LastHashIndex - LastReadValue - LastSystemError - LatticeByCyclicExtension - LatticeGeneratorsInUEA - LatticeSubgroups - LatticeSubgroupsByTom - LaurentPolynomialByCoefficients - LaurentPolynomialByExtRep - Lcm - LcmInt - LcmOp - LcmPP - LeadCoeffsIGS - LeadingCoefficient - LeadingCoefficientOfPolynomial - LeadingExponentOfPcElement - LeadingMonomial - LeadingMonomialOfPolynomial - LeadingMonomialPosExtRep - LeadingTermOfPolynomial - LeadingUEALatticeMonomial - LeastBadComplementLayer - LeastBadHallLayer - LeftActingAlgebra - LeftActingDomain - LeftActingGroup - LeftActingRingOfIdeal - LeftAction - LeftAlgebraModule - LeftAlgebraModuleByGenerators - LeftDerivations - LeftIdeal - LeftIdealByGenerators - LeftIdealNC - LeftMagmaCongruence - LeftMagmaCongruenceByGeneratingPairs - LeftMagmaIdeal - LeftMagmaIdealByGenerators - LeftModuleByGenerators - LeftModuleByHomomorphismToMatAlg - LeftModuleGeneralMappingByImages - LeftModuleGeneratorsForIdealFromGenerators - LeftModuleHomomorphismByImages - LeftModuleHomomorphismByImagesNC - LeftModuleHomomorphismByMatrix - LeftNormedComm - LeftQuotient - LeftQuotientPowerPcgsElement - LeftReduceUEALatticeElement - LeftSemigroupCongruenceByGeneratingPairs - LeftSemigroupIdealEnumeratorDataGetElement - LeftShiftRowVector - Legendre - Length - LengthOfDescendingSeries - LengthOfLongestCommonPrefixOfTwoAssocWords - LengthWPObj - LengthsTom - LenstraBase - LessBoxedObj - LessThanFunction - LessThanOrEqualFunction - LetterRepAssocWord - LetterRepWordsLessFunc - LevelsOfGenerators - LeviMalcevDecomposition - LexicographicOrdering - LexicographicOrderingNC - LieAlgebra - LieAlgebraByDomain - LieAlgebraByStructureConstants - LieBracket - LieCenter - LieCentralizer - LieCentralizerInParent - LieCentre - LieCoboundaryOperator - LieDerivedSeries - LieDerivedSubalgebra - LieFamily - LieLowerCentralSeries - LieNilRadical - LieNormalizer - LieNormalizerInParent - LieObject - LieSolvableRadical - LieUpperCentralSeries - LiftAbsAndIrredModules - LiftEpimorphism - LiftEpimorphismSQ - LiftInduciblePair - LiftedInducedPcgs - LiftedPcElement - LineNumberStringPosition - LinearAction - LinearActionBasis - LinearActionLayer - LinearCharacters - LinearCombination - LinearCombinationPcgs - LinearCombinationVecs - LinearGroupParameters - LinearIndependentColumns - LinearOperation - LinearOperationLayer - LinesOfStraightLineProgram - List - ListBlist - ListHashParams - ListN - ListOp - ListPerm - ListSorted - ListStabChain - ListWithIdenticalEntries - ListX - ListXHelp - ListsFamily - LoadAllPackages - LoadDynamicModule - LoadPackage - LoadPackageDocumentation - LoadStaticModule - LoadedModules - LockNaturalHomomorphismsPool - Log - LogFFE - LogInputTo - LogInt - LogMod - LogModRhoIterate - LogModShanks - LogOutputTo - LogTo - LongestWeylWordPerm - LookupDictionary - LowIndexSubgroupsFpGroup - LowerCentralSeries - LowerCentralSeriesOfGroup - LowerTriangularMatrix - LowercaseString - Lucas - MATINTbezout - MATINTmgcdex - MATINTrgcd - MATINTsplit - Magma - MagmaByGenerators - MagmaByMultiplicationTable - MagmaByMultiplicationTableCreator - MagmaCongruenceByGeneratingPairs - MagmaCongruencePartition - MagmaElement - MagmaGeneratorsOfFamily - MagmaHomomorphismByFunctionNC - MagmaIdeal - MagmaIdealByGenerators - MagmaInputString - MagmaIsomorphismByFunctionsNC - MagmaRingModuloSpanOfZero - MagmaWithInverses - MagmaWithInversesByGenerators - MagmaWithInversesByMultiplicationTable - MagmaWithOne - MagmaWithOneByGenerators - MagmaWithOneByMultiplicationTable - MakeCanonical - MakeConfluent - MakeConsequences - MakeConsequencesPres - MakeFormulaVector - MakeGAPDocDoc - MakeHomChain - MakeImagesInfoLinearGeneralMappingByImages - MakeImmutable - MakeKnuthBendixRewritingSystemConfluent - MakeLIBTOMLIST - MakeMagmaWithInversesByFiniteGenerators - MakeMapping - MakeMonomialOrdering - MakePreImagesInfoLinearGeneralMappingByImages - MakePreImagesInfoLinearMappingByMatrix - MakePreImagesInfoOperationAlgebraHomomorphism - MakeReadOnlyGVar - MakeReadOnlyGlobal - MakeReadWriteGVar - MakeReadWriteGlobal - MakeStabChainLong - ManageableQuotientOfAbelianPGroup - ManageableQuotientOfNilpotentGroup - MappedExpression - MappedExpressionForElementOfFreeAssociativeAlgebra - MappedPcElement - MappedVector - MappedWord - MappedWordSyllableAssocWord - MappingByFunction - MappingGeneratorsImages - MappingOfWhichItIsAsGGMBI - MappingPermListList - MarksTom - MatAlgebra - MatAutomorphismsFamily - MatCharsWreathSymmetric - MatClassMultCoeffsCharTable - MatLieAlgebra - MatOrbs - MatOrbsApprox - MatScalarProducts - MatSpace - MatTom - MathieuGroup - MathieuGroupCons - MatricesOfRelator - MatrixAlgebra - MatrixAutomorphisms - MatrixByBlockMatrix - MatrixDimension - MatrixLieAlgebra - MatrixNewBasePoint - MatrixOfAction - MatrixOperationOfCP - MatrixOperationOfCPGroup - MatrixSpace - MatrixSpinCharsSn - MaxHashViewSize - MaxNumeratorCoeffAlgElm - MaximalAbelianQuotient - MaximalBlocks - MaximalBlocksAttr - MaximalBlocksOp - MaximalNormalSubgroups - MaximalSubgroupClassReps - MaximalSubgroupClassesRepsLayer - MaximalSubgroups - MaximalSubgroupsLattice - MaximalSubgroupsSymmAlt - MaximalSubgroupsTom - Maximum - MaximumList - MeetEquivalenceRelations - MeetMagmaCongruences - MeetMaps - MeetPartitionStrat - MeetPartitionStratCell - MeetSemigroupCongruences - MembershipTestKnownBase - MinimalBlockDimension - MinimalElementCosetStabChain - MinimalGeneratingSet - MinimalGensLayer - MinimalNonmonomialGroup - MinimalNormalSubgroups - MinimalPolynomial - MinimalPolynomialMatrixNC - MinimalStabChain - MinimalSupergroupsLattice - MinimalSupergroupsTom - MinimizeExplicitTransversal - MinimizedBombieriNorm - Minimum - MinimumGroupOnSubgroupsOrbit - MinimumList - MinusCharacter - ModGauss - ModifyMinGens - ModifyPcgs - ModularCharacterDegree - ModuleByRestriction - ModuleOfExtension - ModuloPcgs - ModuloPcgsByPcSequence - ModuloPcgsByPcSequenceNC - ModuloTailPcgsByList - ModulusOfZmodnZObj - MoebiusMu - MoebiusTom - MolienSeries - MolienSeriesInfo - MolienSeriesWithGivenDenominator - Monoid - MonoidByGenerators - MonoidByMultiplicationTable - MonoidOfRewritingSystem - MonomialComparisonFunction - MonomialExtGrlexLess - MonomialExtrepComparisonFun - MonomialGrevlexOrdering - MonomialGrlexOrdering - MonomialLexOrdering - MonomialOrderingsFamily - MonomialTotalDegreeLess - MorClassLoop - MorClassOrbs - MorFindGeneratingSystem - MorFroWords - MorMaxFusClasses - MorRatClasses - Morphium - MorrisRecursion - MostFrequentGeneratorFpGroup - MovedPoints - MovedPointsPerms - MulExt - MultCoeffs - MultMatrixPadicNumbersByCoefficientsList - MultRowVector - MultiplicationTable - MultiplicativeElementsWithInversesFamilyByRws - MultiplicativeNeutralElement - MultiplicativeZero - MultiplicativeZeroOp - Multiply - MutableBasis - MutableBasisOfClosureUnderAction - MutableBasisOfIdealInNonassociativeAlgebra - MutableBasisOfNonassociativeAlgebra - MutableBasisOfProductSpace - MutableCopyMat - MutableIdentityMat - MutableNullMat - MutableTransposedMat - MutableTransposedMatDestructive - MyFingerprint - MyIntCoefficients - Naive - Name - NameFunction - NameIsomorphismClass - NameMonth - NameRNam - NameWeekDay - NamesFilter - NamesGVars - NamesLibTom - NamesLocalVariablesFunction - NamesOfComponents - NamesOfFusionSources - NamesSystemGVars - NamesUserGVars - NaturalActedSpace - NaturalCharacter - NaturalHomomorphismByFixedPointSubspace - NaturalHomomorphismByGenerators - NaturalHomomorphismByHomVW - NaturalHomomorphismByIdeal - NaturalHomomorphismByInvariantSubspace - NaturalHomomorphismByNilpotentClassTwoElement - NaturalHomomorphismByNormalSubgroup - NaturalHomomorphismByNormalSubgroupInParent - NaturalHomomorphismByNormalSubgroupNC - NaturalHomomorphismByNormalSubgroupNCInParent - NaturalHomomorphismByNormalSubgroupNCOp - NaturalHomomorphismByNormalSubgroupNCOrig - NaturalHomomorphismByNormalSubgroupOp - NaturalHomomorphismBySubAlgebraModule - NaturalHomomorphismBySubspace - NaturalHomomorphismBySubspaceOntoFullRowSpace - NaturalHomomorphismsPool - NaturalIsomorphismByPcgs - NearAdditiveGroup - NearAdditiveGroupByGenerators - NearAdditiveMagma - NearAdditiveMagmaByGenerators - NearAdditiveMagmaWithInverses - NearAdditiveMagmaWithInversesByGenerators - NearAdditiveMagmaWithZero - NearAdditiveMagmaWithZeroByGenerators - NearlyCharacterTablesFamily - NegativeRootVectors - NegativeRoots - NestingDepthA - NestingDepthM - NewAttribute - NewCategory - NewConstructor - NewDictionary - NewFamily - NewFilter - NewInfoClass - NewOperation - NewProperty - NewRepresentation - NewToBeDefinedObj - NewType - NewmanInfinityCriterion - NextIterator - NextLevelRegularGroups - NextPrimeInt - NextRBasePoint - NextStepCentralizer - NiceAlgebraMonomorphism - NiceBasis - NiceBasisFiltersInfo - NiceBasisNC - NiceFreeLeftModule - NiceFreeLeftModuleForFLMLOR - NiceFreeLeftModuleInfo - NiceMonomorphism - NiceMonomorphismAutomGroup - NiceNormalFormByExtRepFunction - NiceObject - NiceVector - NicomorphismOfFFEMatrixGroup - NicomorphismOfGeneralMatrixGroup - NilpotencyClassOfGroup - NilpotentClassTwoElement - NilpotentQuotientOfFpLieAlgebra - NinKernelCSPG - NonLieNilpotentElement - NonNilpotentElement - NonPerfectCSPG - NonSplitExtensions - NonTrivialRightHandSides - NonassocWord - NonnegIntScalarProducts - NonnegativeIntegers - NorSerPermPcgs - Norm - NormalBase - NormalClosure - NormalClosureByChain - NormalClosureInParent - NormalClosureOp - NormalFormIntMat - NormalIntersection - NormalIntersectionPcgs - NormalMaximalSubgroups - NormalSeriesByPcgs - NormalSubgroupClasses - NormalSubgroupClassesInfo - NormalSubgroups - NormalSubgroupsAbove - NormalSubgroupsCalc - NormalizeNameAndKey - NormalizeWhitespace - NormalizedArgList - NormalizedElementOfMagmaRingModuloRelations - NormalizedNameAndKey - NormalizedWhitespace - Normalizer - NormalizerInGLnZ - NormalizerInGLnZBravaisGroup - NormalizerInHomePcgs - NormalizerInParent - NormalizerOp - NormalizerParentSA - NormalizerStabCSPG - NormalizerTom - NormalizersTom - NormalizingReducedGL - NormedRowVector - NormedRowVectors - NormedVectors - NotifiedFusionsOfLibTom - NotifiedFusionsToLibTom - NrAffinePrimitiveGroups - NrArrangements - NrArrangementsMSetA - NrArrangementsMSetK - NrArrangementsSetA - NrArrangementsSetK - NrArrangementsX - NrBasisVectors - NrBitsInt - NrCombinations - NrCombinationsMSetA - NrCombinationsMSetK - NrCombinationsSetA - NrCombinationsSetK - NrCombinationsX - NrCompatiblePolynomials - NrConjugacyClasses - NrConjugacyClassesGL - NrConjugacyClassesGU - NrConjugacyClassesInSupergroup - NrConjugacyClassesPGL - NrConjugacyClassesPGU - NrConjugacyClassesPSL - NrConjugacyClassesPSU - NrConjugacyClassesSL - NrConjugacyClassesSLIsogeneous - NrConjugacyClassesSU - NrConjugacyClassesSUIsogeneous - NrDerangements - NrDerangementsK - NrInputsOfStraightLineProgram - NrIrreducibleSolvableGroups - NrMovedPoints - NrMovedPointsPerm - NrMovedPointsPerms - NrOrderedPartitions - NrPartitionTuples - NrPartitions - NrPartitionsSet - NrPerfectGroups - NrPerfectLibraryGroups - NrPermutationsList - NrPolyhedralSubgroups - NrPrimitiveGroups - NrRestrictedPartitions - NrRestrictedPartitionsK - NrSmallGroups - NrSolvableAffinePrimitiveGroups - NrSubsTom - NrSyllables - NrTransitiveGroups - NrTuples - NrUnorderedTuples - NthChainSubgroup - NthFundamentalOrbit - NthRoot - NthSchreierTransversalOfChainSubgroup - NthSiftOneLevel - Nucleus - NullAlgebra - NullMapMatrix - NullMat - NullspaceIntMat - NullspaceMat - NullspaceMatDestructive - NullspaceModQ - NumBol - Number - NumberArgumentsFunction - NumberCells - NumberCoset - NumberDigits - NumberFFVector - NumberField - NumberGeneratorsOfRws - NumberIrreducibleSolvableGroups - NumberOfCommutators - NumberOfNewGenerators - NumberOp - NumberPerfectGroups - NumberPerfectLibraryGroups - NumberSmallGroups - NumberSyllables - NumeratorOfModuloPcgs - NumeratorOfRationalFunction - NumeratorRat - OCAddBigMatrices - OCAddCentralizer - OCAddComplement - OCAddGenerators - OCAddGeneratorsGeneral - OCAddGeneratorsPcgs - OCAddMatrices - OCAddRelations - OCAddSumMatrices - OCAddToFunctions - OCConjugatingWord - OCCoprimeComplement - OCEquationMatrix - OCEquationVector - OCNormalRelations - OCOneCoboundaries - OCOneCocycles - OCSmallEquationMatrix - OCSmallEquationVector - OCTestRelations - OCTestRelators - ONanScottType - ObjByExponents - ObjByExtRep - ObjByVector - Objectify - ObjectifyWithAttributes - OccuringVariableIndices - OctaveAlgebra - OddSpinVals - OldGeneratorsOfPresentation - OldKernelHcommaC - OldSubspaceVectorSpaceGroup - Omega - OmegaAndLowerPCentralSeries - OmegaOp - OmegaSeries - OminusEven - OnBreak - OnBreakMessage - OnCharReadHookExcFds - OnCharReadHookExcFuncs - OnCharReadHookExcStreams - OnCharReadHookInFds - OnCharReadHookInFuncs - OnCharReadHookInStreams - OnCharReadHookOutFds - OnCharReadHookOutFuncs - OnCharReadHookOutStreams - OnCocycle - OnIndeterminates - OnLeftAntiOperation - OnLeftInverse - OnLines - OnPairs - OnPoints - OnQuit - OnRelVector - OnRight - OnSets - OnSetsDisjointSets - OnSetsSets - OnSetsTuples - OnSubspacesByCanonicalBasis - OnTuples - OnTuplesSets - OnTuplesTuples - One - OneAttr - OneCoboundaries - OneCocycles - OneFactorBound - OneGroup - OneImmutable - OneIrreducibleSolvableGroup - OneMutable - OneNormalizerfixedBlockSystem - OneOfPcgs - OneOp - OnePrimitiveGroup - OneSM - OneSameMutability - OneSmallGroup - OneTransitiveGroup - OperationAlgebraHomomorphism - OperatorOfExternalSet - OplusEven - OpmOdd - OpmSmall - OptionsStack - Orbit - OrbitByPosOp - OrbitChar - OrbitFusions - OrbitGenerators - OrbitGeneratorsInv - OrbitGeneratorsOfGroup - OrbitLength - OrbitLengthOp - OrbitLengths - OrbitLengthsDomain - OrbitOp - OrbitPerms - OrbitPowerMaps - OrbitRepresentativesCharacters - OrbitShortVectors - OrbitSplit - OrbitStabChain - OrbitStabilizer - OrbitStabilizerAlgorithm - OrbitStabilizerOp - OrbitStabilizingParentGroup - OrbitalPartition - OrbitishFO - OrbitishReq - Orbits - OrbitsByPosOp - OrbitsCharacters - OrbitsDomain - OrbitsPartition - OrbitsPerms - OrbitsishOperation - OrbitsishReq - Order - OrderKnownDividendList - OrderMatLimit - OrderMatTrial - OrderMod - OrderModK - OrderOfRewritingSystem - OrderOfSchurLift - OrderPerm - OrderedPartitions - OrderedPartitionsA - OrderedPartitionsK - OrderingByLessThanFunctionNC - OrderingByLessThanOrEqualFunctionNC - OrderingOfRewritingSystem - OrderingOnGenerators - OrderingsFamily - OrdersClassRepresentatives - OrdersTom - Ordinal - OrdinaryCharacterTable - OrthogonalComponents - OrthogonalEmbeddings - OrthogonalEmbeddingsSpecialDimension - OrthogonalSpaceInFullRowSpace - OrthogonalityDefectEuclideanLattice - OutdatePolycyclicCollector - OutputLogTo - OutputTextFile - OutputTextFileStillOpen - OutputTextFileType - OutputTextNone - OutputTextNoneType - OutputTextString - OutputTextStringType - OutputTextUser - OzeroEven - OzeroOdd - PBIsMinimal - PCentralLieAlgebra - PCentralNormalSeriesByPcgsPGroup - PCentralSeries - PCentralSeriesOp - PClassPGroup - PCore - PCoreOp - PCover - PERFRec - PGroupGeneratorsOfAbelianGroup - PMultiplicator - PQStatistics - PQuotient - PRIMGrp - PRump - PRumpOp - PSLDegree - PSLUnderlyingField - PSp - PackageInfo - PackageVariablesInfo - PadicCoefficients - PadicExpansionByRat - PadicExtensionNumberFamily - PadicNumber - Page - PageDisplay - Pager - Parametrized - Parent - ParentAttr - ParentPcgs - ParityPol - ParseArguments - ParseBibFiles - ParseError - ParseTreeXMLString - PartialClosureOfCongruence - PartialOrderByOrderingFunction - PartialOrderOfHasseDiagram - Partition - PartitionBacktrack - PartitionSortedPoints - PartitionStabilizerPermGroup - PartitionTuples - Partitions - PartitionsA - PartitionsGreatestEQ - PartitionsGreatestLE - PartitionsK - PartitionsRecursively - PartitionsSet - PartitionsSetA - PartitionsSetK - PartitionsTest - PcElementByExponents - PcElementByExponentsNC - PcGroupClassMatrixColumn - PcGroupCode - PcGroupCodeRec - PcGroupFpGroup - PcGroupFpGroupNC - PcGroupWithPcgs - PcSeries - Pcgs - PcgsByIndependentGeneratorsOfAbelianGroup - PcgsByPcSequence - PcgsByPcSequenceCons - PcgsByPcSequenceNC - PcgsCentralSeries - PcgsChiefSeries - PcgsElAbSerFromSpecPcgs - PcgsElementaryAbelianSeries - PcgsHomSoImPow - PcgsMemberPcSeriesPermGroup - PcgsPCentralSeriesPGroup - PcgsStabChainSeries - PcgsSystemLGSeries - PcgsSystemWithComplementSystem - PcgsSystemWithHallSystem - PcgsSystemWithWf - PerfGrpConst - PerfGrpLoad - PerfectCSPG - PerfectCentralProduct - PerfectGroup - PerfectIdentification - PerfectResiduum - PerfectSubdirectProduct - PerfectSubgroupsAlternatingGroup - Perform - PermBounds - PermCandidates - PermCandidatesFaithful - PermCharInfo - PermCharInfoRelative - PermChars - PermCharsTom - PermComb - PermLeftQuoTransformation - PermList - PermListList - PermMatrixGroup - PermNatAnTestDetect - PermNewBasePoint - PermOnEnumerator - Permanent - PermgpContainsAn - PermpcgsPcGroupPcgs - Permut - Permutation - PermutationCharacter - PermutationCycle - PermutationCycleOp - PermutationGModule - PermutationMat - PermutationOp - PermutationToSortCharacters - PermutationToSortClasses - PermutationTom - PermutationsFamily - PermutationsList - PermutationsListK - Permuted - Phi - PlainListCopy - PlainListCopyOp - PointInCellNo - PolycyclicFactorGroup - PolycyclicFactorGroupByRelators - PolycyclicFactorGroupByRelatorsNC - PolycyclicFactorGroupNC - PolynomialByExtRep - PolynomialByExtRepNC - PolynomialCoefficientsOfPolynomial - PolynomialDivisionAlgorithm - PolynomialModP - PolynomialReducedRemainder - PolynomialReduction - PolynomialRing - PopOptions - PosSublOdd - PosVecEnumFF - Position - PositionBound - PositionCanonical - PositionFirstComponent - PositionMatchingDelimiter - PositionNonZero - PositionNot - PositionNthOccurrence - PositionNthTrueBlist - PositionProperty - PositionSet - PositionSorted - PositionStream - PositionSublist - PositionWord - PositionsTrueBlist - PositiveExponentsPresentationFpHom - PositiveIntegers - PositiveRootVectors - PositiveRoots - PositiveRootsAsWeights - PossibleClassFusions - PossibleFusionsCharTableTom - PossiblePowerMaps - PostMakeImmutable - Pover - PowerDecompositions - PowerMap - PowerMapByComposition - PowerMapOfGroup - PowerMapOfGroupWithInvariants - PowerMapOp - PowerMapsAllowedBySymmetrisations - PowerMapsAllowedBySymmetrizations - PowerMod - PowerModCoeffs - PowerModEvalPol - PowerModInt - PowerPartition - PowerPcgsElement - PowerS - PowerSi - PowerSubalgebraSeries - PowerWreath - PowersumsElsyms - PreBasis - PreImage - PreImageElm - PreImageSetStabBlocksHomomorphism - PreImageWord - PreImages - PreImagesElm - PreImagesRange - PreImagesRepresentative - PreImagesRepresentativeOperationAlgebraHomomorphism - PreImagesSet - PreOrbishProcessing - PreferredGenerators - PrefrattiniSubgroup - PreimagesOfTransformation - Presentation - PresentationAugmentedCosetTable - PresentationFpGroup - PresentationNormalClosure - PresentationNormalClosureRrs - PresentationRegularPermutationGroup - PresentationRegularPermutationGroupNC - PresentationSubgroup - PresentationSubgroupMtc - PresentationSubgroupRrs - PresentationViaCosetTable - PresentationsFamily - PrevPrimeInt - PriGroItNext - PrimGrpLoad - PrimaryGeneratorWords - PrimeBlocks - PrimeBlocksOp - PrimeField - PrimeOfPGroup - PrimePGroup - PrimePowerComponent - PrimePowerComponents - PrimePowerPcSequence - PrimePowersInt - PrimeResidues - PrimeResiduesCache - Primes - PrimitiveElement - PrimitiveFacExtRepRatPol - PrimitiveGroup - PrimitiveGroupSims - PrimitiveGroupsIterator - PrimitiveIdentification - PrimitiveIndexIrreducibleSolvableGroup - PrimitivePolynomial - PrimitiveRoot - PrimitiveRootMod - Print - PrintAmbiguity - PrintArray - PrintBibAsBib - PrintBibAsHTML - PrintBibAsText - PrintCharacterTable - PrintCounters - PrintFactorsInt - PrintFormattedString - PrintFormattingStatus - PrintGAPDocElementTemplates - PrintHashWithNames - PrintObj - PrintPadicExpansion - PrintRecIndent - PrintSixFile - PrintTo - ProbabilityShapes - Process - ProcessFixpoint - ProdCoefRatfun - ProdCoeffLaurpol - ProdCoeffUnivfunc - Product - ProductCoeffs - ProductMod - ProductOp - ProductPP - ProductPol - ProductRootsPol - ProductSpace - ProductX - ProductXHelp - ProfileFunctions - ProfileFunctionsInGlobalVariables - ProfileGlobalFunctions - ProfileMethods - ProfileOperations - ProfileOperationsAndMethods - ProfileOperationsAndMethodsOff - ProfileOperationsAndMethodsOn - ProfileOperationsOff - ProfileOperationsOn - ProjectedInducedPcgs - ProjectedPcElement - Projection - ProjectionMap - ProjectionOntoFullRowSpace - ProjectionOntoVectorSubspace - ProjectiveActionHomomorphismMatrixGroup - ProjectiveActionOnFullSpace - ProjectiveCharDeg - ProjectiveGeneralLinearGroup - ProjectiveGeneralLinearGroupCons - ProjectiveGeneralUnitaryGroup - ProjectiveGeneralUnitaryGroupCons - ProjectiveOrder - ProjectiveSpecialLinearGroup - ProjectiveSpecialLinearGroupCons - ProjectiveSpecialUnitaryGroup - ProjectiveSpecialUnitaryGroupCons - ProjectiveSymplecticGroup - ProjectiveSymplecticGroupCons - PropertyMethodByNiceMonomorphism - PropertyMethodByNiceMonomorphismCollColl - PropertyMethodByNiceMonomorphismCollElm - PropertyMethodByNiceMonomorphismElmColl - PseudoRandom - PseudoRandomSeed - PthPowerImage - PthPowerImages - PullBack - PullbackCSPG - PullbackKernelCSPG - PurePadicNumberFamily - PushOptions - Quadratic - QuasiDihedralGenerators - QuaternionAlgebra - QuaternionGenerators - QuickInverseRepresentative - QuoInt - QuotRemLaurpols - QuotRemPolList - QuotSysDefinitionByIndex - QuotSysIndexByDefinition - Quotient - QuotientFromSCTable - QuotientGroup - QuotientGroupByChainHomomorphicImage - QuotientGroupByHomomorphism - QuotientGroupByImages - QuotientGroupByImagesNC - QuotientGroupHom - QuotientMod - QuotientPolynomialsExtRep - QuotientRemainder - QuotientSemigroupCongruence - QuotientSemigroupHomomorphism - QuotientSemigroupPreimage - QuotientSystem - RBaseGroupsBloxPermGroup - RClassOfHClass - RNamObj - RPFactorsModPrime - RPGcdCRT - RPGcdModPrime - RPGcdRepresentationModPrime - RPIFactors - RPIGcd - RPQuotientModPrime - RPSquareHensel - RRefine - RSSDefaultOptions - RadicalGroup - RadicalOfAlgebra - RanImgSrcSurjBloho - RanImgSrcSurjTraho - Random - RandomBinaryRelationOnPoints - RandomByPcs - RandomCommutatorSubproduct - RandomElmAsWord - RandomHashKey - RandomInvertibleMat - RandomIsomorphismTest - RandomList - RandomMat - RandomNormalSubproduct - RandomPcgsSylowSubgroup - RandomPol - RandomPrimitivePolynomial - RandomSchreierSims - RandomSpecialPcgsCoded - RandomSubprod - RandomTransformation - RandomUnimodularMat - Range - Rank - RankAction - RankFilter - RankMat - RankMatDestructive - RankOfTransformation - RankPGroup - RanksOfDescendingSeries - Rat - RatClasPElmArrangeClasses - RatPairString - RationalClass - RationalClasses - RationalClassesInEANS - RationalClassesPElements - RationalClassesPermGroup - RationalClassesSolvableGroup - RationalClassesTry - RationalFunctionByExtRep - RationalFunctionByExtRepWithCancellation - RationalFunctionsFamily - RationalIdentificationPermGroup - RationalizedMat - Rationals - ReObjectify - Read - ReadAll - ReadAllIoStreamByPty - ReadAllLine - ReadAndCheckFunc - ReadAsFunction - ReadByte - ReadGapRoot - ReadGrp - ReadLib - ReadLine - ReadOrComplete - ReadPackage - ReadPkg - ReadPrim - ReadSmall - ReadSmallLib - ReadTest - ReadTom - ReadTrans - RealClasses - RealizableBrauerCharacters - RecFields - RecNames - RecordsFamily - RecurseSchreierTree - RedispatchOnCondition - ReduceCoefficientsOfRws - ReduceCoeffs - ReduceCoeffsMod - ReduceLetterRepWordsRewSys - ReduceRules - ReduceStabChain - ReduceWordUsingRewritingSystem - Reduced - ReducedAdditiveInverse - ReducedByIsomorphisms - ReducedCharacters - ReducedClassFunctions - ReducedComm - ReducedConfluentRewritingSystem - ReducedConfluentRwsFromKbrwsNC - ReducedConjugate - ReducedDifference - ReducedForm - ReducedGaloisStabilizerInfo - ReducedGroebnerBasis - ReducedInverse - ReducedLeftQuotient - ReducedOne - ReducedOrdinary - ReducedPcElement - ReducedPower - ReducedProduct - ReducedQuotient - ReducedRrsWord - ReducedSCTable - ReducedScalarProduct - ReducedSum - ReducedVectorLTM - ReducedZero - Ree - ReeGroup - ReeGroupCons - ReesCongruenceOfSemigroupIdeal - ReesMatrixSemigroup - ReesMatrixSemigroupElement - ReesMatrixSemigroupEnumeratorGetElement - ReesZeroMatrixSemigroup - ReesZeroMatrixSemigroupElement - ReesZeroMatrixSemigroupElementIsZero - ReesZeroMatrixSemigroupEnumeratorGetElement - RefinedChain - RefinedPcGroup - RefinedSymmetrisations - RefinedSymmetrizations - Refinements - ReflectionMat - ReflexiveClosureBinaryRelation - RegisterRBasePoint - RegularActionHomomorphism - RegularModule - RegularModuleByGens - RegularNinKernelCSPG - RelVectorToCocycle - RelationsOfFpMonoid - RelationsOfFpSemigroup - RelativeBasis - RelativeBasisNC - RelativeOrderOfPcElement - RelativeOrders - RelatorFixedMultiplier - RelatorMatrixAbelianizedNormalClosure - RelatorMatrixAbelianizedNormalClosureRrs - RelatorMatrixAbelianizedSubgroup - RelatorMatrixAbelianizedSubgroupMtc - RelatorMatrixAbelianizedSubgroupRrs - RelatorRepresentatives - RelatorsCode - RelatorsOfFpAlgebra - RelatorsOfFpGroup - RelatorsPermGroupHom - RelsSortedByStartGen - RelsViaCosetTable - RemInt - RemoveCharacters - RemoveElmList - RemoveFile - RemoveOuterCoeffs - RemoveRelator - RemoveRootParseTree - RemoveSet - RemoveStabChain - RenumberHighestWeightGenerators - RenumberTree - RenumberedWord - RepOpElmTuplesPermGroup - RepOpSetsPermGroup - RepeatedString - ReplacedString - RepresentationsOfMatrix - RepresentationsOfObject - Representative - RepresentativeAction - RepresentativeActionOp - RepresentativeFromGenerators - RepresentativeLinearOperation - RepresentativeSmallest - RepresentativeTom - RepresentativeTomByGenerators - RepresentativeTomByGeneratorsNC - RepresentativesContainedRightCosets - RepresentativesFusions - RepresentativesMinimalBlocks - RepresentativesMinimalBlocksAttr - RepresentativesMinimalBlocksOp - RepresentativesPerfectSubgroups - RepresentativesPowerMaps - RepresentativesSimpleSubgroups - RepsPerfSimpSub - RequirePackage - Reread - RereadAndCheckFunc - RereadGrp - RereadLib - RereadPackage - RereadPkg - RereadPrim - RereadSmall - RereadTrans - ResetFilterObj - ResetOptionsStack - ResizeFlatHashTable - ResizeListHashTable - RespectsAddition - RespectsAdditiveInverses - RespectsInverses - RespectsMultiplication - RespectsOne - RespectsScalarMultiplication - RespectsZero - RestoreStateRandom - Restricted - RestrictedClassFunction - RestrictedClassFunctions - RestrictedExternalSet - RestrictedMapping - RestrictedNiceMonomorphism - RestrictedPartitions - RestrictedPartitionsA - RestrictedPartitionsK - RestrictedPerm - RestrictedTransformation - ResultOfLineOfStraightLineProgram - ResultOfStraightLineProgram - Resultant - ReturnFail - ReturnFalse - ReturnNextBasePoint - ReturnPopOptions - ReturnTrue - Reversed - ReversedOp - Revision - RewindStream - RewriteAbelianizedSubgroupRelators - RewriteSubgroupRelators - RewriteWord - RightActingAlgebra - RightActingDomain - RightActingGroup - RightActingRingOfIdeal - RightAction - RightAlgebraModule - RightAlgebraModuleByGenerators - RightCoset - RightCosetCanonicalRepresentativeDeterminator - RightCosets - RightCosetsNC - RightDerivations - RightIdeal - RightIdealByGenerators - RightIdealNC - RightMagmaCongruence - RightMagmaCongruenceByGeneratingPairs - RightMagmaIdeal - RightMagmaIdealByGenerators - RightModuleByHomomorphismToMatAlg - RightSemigroupCongruenceByGeneratingPairs - RightSemigroupIdealEnumeratorDataGetElement - RightShiftRowVector - RightTransversal - RightTransversalInParent - RightTransversalOp - RightTransversalPermGroupConstructor - Ring - RingByGenerators - RingElmTimesElm - RingFromFFE - RingWithOne - RingWithOneByGenerators - Root - RootBound - RootInt - RootMod - RootModPrime - RootModPrimePower - RootOfDefiningPolynomial - RootSystem - RootsMod - RootsModPrime - RootsModPrimePower - RootsOfUPol - RootsRepresentativeFFPol - RootsUnityMod - RootsUnityModPrime - RootsUnityModPrimePower - RoundCyc - RoundCycDown - RowEchelonFormLTM - RowIndexOfReesMatrixSemigroupElement - RowIndexOfReesZeroMatrixSemigroupElement - RowSpace - RowsOfReesMatrixSemigroup - RowsOfReesZeroMatrixSemigroup - Rules - RunImmediateMethods - Runtime - Runtimes - SCMinSmaGens - SCRExtend - SCRExtendRecord - SCRMakeStabStrong - SCRNotice - SCRRandomPerm - SCRRandomString - SCRRandomSubproduct - SCRRestoredRecord - SCRSchTree - SCRSift - SCRStrongGenTest - SCTableEntry - SCTableProduct - SLDegree - SLUnderlyingField - SNFofREF - SPolynomial - SSortedList - SSortedListList - STDOut - STGSelFunc - SameBlock - SandwichMatrixOfReesMatrixSemigroup - SandwichMatrixOfReesZeroMatrixSemigroup - SaveWorkspace - ScalarProduct - SchreierTransversal - SchreierTreeDepth - SchreierTreeInternalConsistencyCheck - SchuMu - SchurCover - SchurCoverFP - ScriptFromString - Search - SecHMSM - SecondaryGeneratorWordsAugmentedCosetTable - SecondaryImagesAugmentedCosetTable - SecondsDMYhms - SeekPositionStream - SelectSmallGroups - SelectTransitiveGroups - SemiEchelonBasis - SemiEchelonBasisNC - SemiEchelonMat - SemiEchelonMatDestructive - SemiEchelonMatTransformation - SemiEchelonMatTransformationDestructive - SemiEchelonMats - SemiEchelonMatsDestructive - SemiEchelonMatsNoCo - SemiSimpleType - SemidirectFactorsOfGroup - SemidirectProduct - SemidirectProductInfo - Semigroup - SemigroupByGenerators - SemigroupByMultiplicationTable - SemigroupCongruenceByGeneratingPairs - SemigroupIdealByGenerators - SemigroupIdealEnumeratorDataGetElement - SemigroupOfRewritingSystem - SemigroupTCInitialTableSize - SemigroupToddCoxeterInfo - Semiring - SemiringByGenerators - SemiringWithOne - SemiringWithOneAndZero - SemiringWithOneAndZeroByGenerators - SemiringWithOneByGenerators - SemiringWithZero - SemiringWithZeroByGenerators - SeqsOrbits - Set - SetANonReesCongruenceOfSemigroup - SetAbelianInvariants - SetAbelianInvariantsOfList - SetAbsoluteValue - SetActingDomain - SetActionHomomorphismAttr - SetActionKernelExternalSet - SetActorOfExternalSet - SetActualLibFileName - SetAdditiveElementAsMultiplicativeElement - SetAdditiveElementsAsMultiplicativeElementsFamily - SetAdditiveInverse - SetAdditiveInverseAttr - SetAdditiveInverseImmutable - SetAdditiveNeutralElement - SetAdditivelyActingDomain - SetAdjointBasis - SetAdjointModule - SetAlgebraicElementsFamilies - SetAllBlocks - SetAllInfoLevels - SetAlpha - SetAlternatingDegree - SetAlternatingSubgroup - SetAsDuplicateFreeList - SetAsGroup - SetAsGroupGeneralMappingByImages - SetAsLeftModuleGeneralMappingByImages - SetAsList - SetAsMagma - SetAsMonoid - SetAsNearRing - SetAsPolynomial - SetAsRing - SetAsSSortedList - SetAsSemigroup - SetAsSemiring - SetAsSemiringWithOne - SetAsSemiringWithOneAndZero - SetAsSemiringWithZero - SetAsSortedList - SetAsSubgroupOfWholeGroupByQuotient - SetAssertionLevel - SetAssociatedReesMatrixSemigroupOfDClass - SetAssociatedSemigroup - SetAugmentationIdeal - SetAugmentedCosetTableMtcInWholeGroup - SetAugmentedCosetTableNormalClosureInWholeGroup - SetAugmentedCosetTableRrsInWholeGroup - SetAutomorphismDomain - SetAutomorphismGroup - SetAutomorphismsOfTable - SetBaseIntMat - SetBaseMat - SetBaseOfBasicImageGroup - SetBaseOfGroup - SetBaseOrthogonalSpaceMat - SetBasis - SetBasisOfHomCosetAddMatrixGroup - SetBasisVectors - SetBaumClausenInfo - SetBilinearFormMat - SetBlocksAttr - SetBlocksInfo - SetBrauerCharacterValue - SetBravaisGroup - SetBravaisSubgroups - SetBravaisSupergroups - SetCanEasilyCompareElements - SetCanEasilySortElements - SetCanFindNilpotentClassTwoElement - SetCanonicalBasis - SetCanonicalElt - SetCanonicalGenerators - SetCanonicalNiceMonomorphism - SetCanonicalPcgs - SetCanonicalPcgsWrtFamilyPcgs - SetCanonicalPcgsWrtHomePcgs - SetCanonicalPcgsWrtSpecialPcgs - SetCanonicalRepresentativeDeterminatorOfExternalSet - SetCanonicalRepresentativeOfExternalOrbitByPcgs - SetCanonicalRepresentativeOfExternalSet - SetCartanMatrix - SetCartanSubalgebra - SetCayleyGraphDualSemigroup - SetCayleyGraphSemigroup - SetCenter - SetCentralCharacter - SetCentralIdempotentsOfSemiring - SetCentralNormalSeriesByPcgs - SetCentralizerInGLnZ - SetCentralizerInParent - SetCentre - SetCentreOfCharacter - SetChainSubgroup - SetChainSubgroupQuotient - SetCharacterDegrees - SetCharacterNames - SetCharacterParameters - SetCharacteristic - SetCharacteristicPolynomial - SetChevalleyBasis - SetChiefNormalSeriesByPcgs - SetChiefSeries - SetClassNames - SetClassNamesTom - SetClassParameters - SetClassPermutation - SetClassPositionsOfCentre - SetClassPositionsOfDerivedSubgroup - SetClassPositionsOfDirectProductDecompositions - SetClassPositionsOfElementaryAbelianSeries - SetClassPositionsOfFittingSubgroup - SetClassPositionsOfKernel - SetClassPositionsOfLowerCentralSeries - SetClassPositionsOfMaximalNormalSubgroups - SetClassPositionsOfNormalSubgroups - SetClassPositionsOfSolvableResiduum - SetClassPositionsOfSupersolvableResiduum - SetClassPositionsOfUpperCentralSeries - SetClassRoots - SetClassTypesTom - SetCoKernelOfAdditiveGeneralMapping - SetCoKernelOfMultiplicativeGeneralMapping - SetCoefficientsAndMagmaElements - SetCoefficientsFamily - SetCoefficientsOfLaurentPolynomial - SetCoefficientsOfUnivariatePolynomial - SetCoefficientsOfUnivariateRationalFunction - SetCoefficientsRing - SetCollectionsFamily - SetColumnIndexOfReesMatrixSemigroupElement - SetColumnIndexOfReesZeroMatrixSemigroupElement - SetColumnsOfReesMatrixSemigroup - SetColumnsOfReesZeroMatrixSemigroup - SetCommutator - SetCommutatorANC - SetCommutatorFactorGroup - SetCommutatorLength - SetCommutatorNC - SetComplementSystem - SetComplexConjugate - SetComponentsOfTuplesFamily - SetCompositionSeries - SetComputedAgemos - SetComputedAscendingChains - SetComputedBrauerTables - SetComputedClassFusions - SetComputedCyclicExtensionsTom - SetComputedHallSubgroups - SetComputedIndicators - SetComputedIsPNilpotents - SetComputedIsPSolvableCharacterTables - SetComputedIsPSolvables - SetComputedOmegas - SetComputedPCentralSeriess - SetComputedPCores - SetComputedPRumps - SetComputedPowerMaps - SetComputedPrimeBlockss - SetComputedSylowComplements - SetComputedSylowSubgroups - SetConductor - SetConfluentRws - SetConjugacyClasses - SetConjugacyClassesMaximalSubgroups - SetConjugacyClassesPerfectSubgroups - SetConjugacyClassesSubgroups - SetConjugate - SetConjugateANC - SetConjugateNC - SetConjugates - SetConjugatorInnerAutomorphism - SetConjugatorOfConjugatorIsomorphism - SetConstantTimeAccessList - SetConstituentsOfCharacter - SetConvertBasicImageGroupElement - SetCoreInParent - SetCosetTableFpHom - SetCosetTableInWholeGroup - SetCosetTableNormalClosureInWholeGroup - SetCosetTableOfFpSemigroup - SetCrystGroupDefaultAction - SetCycleStructurePerm - SetCyclicExtensionsTom - SetDataType - SetDecompositionMatrix - SetDecompositionTypesOfGroup - SetDefaultFieldOfMatrix - SetDefaultFieldOfMatrixGroup - SetDefectApproximation - SetDefiningPcgs - SetDefiningPolynomial - SetDefinitionNC - SetDegreeAction - SetDegreeOfBinaryRelation - SetDegreeOfCharacter - SetDegreeOfLaurentPolynomial - SetDegreeOfMatrixGroup - SetDegreeOfTransformation - SetDegreeOfTransformationSemigroup - SetDegreeOperation - SetDegreeOverPrimeField - SetDelta - SetDenominatorOfModuloPcgs - SetDenominatorOfRationalFunction - SetDepthOfUpperTriangularMatrix - SetDerivations - SetDerivative - SetDerivedLength - SetDerivedSeriesOfGroup - SetDerivedSubgroup - SetDerivedSubgroupsTomPossible - SetDerivedSubgroupsTomUnique - SetDeterminantMat - SetDeterminantOfCharacter - SetDihedralGenerators - SetDimension - SetDimensionOfMatrixGroup - SetDimensionOfVectors - SetDimensionsLoewyFactors - SetDimensionsMat - SetDirectFactorsOfGroup - SetDirectProductInfo - SetDirectSumDecomposition - SetDisplayOptions - SetDixonRecord - SetEANormalSeriesByPcgs - SetEarns - SetEggBoxOfDClass - SetElementTestFunction - SetElementaryAbelianSeries - SetElementaryAbelianSeriesLargeSteps - SetElementaryAbelianSubseries - SetElementsFamily - SetElmWPObj - SetEmptyRowVector - SetEntrySCTable - SetEnumerator - SetEnumeratorByBasis - SetEnumeratorSorted - SetEquivalenceClassRelation - SetEquivalenceClasses - SetEquivalenceRelationPartition - SetErrorHandler - SetExponent - SetExponentOfPowering - SetExtRepDenominatorRatFun - SetExtRepNumeratorRatFun - SetExtRepPolynomialRatFun - SetExternalOrbits - SetExternalOrbitsStabilizers - SetExternalSet - SetFactorsOfDirectProduct - SetFaithfulModule - SetFamiliesOfGeneralMappingsAndRanges - SetFamilyForOrdering - SetFamilyForRewritingSystem - SetFamilyPcgs - SetFamilyRange - SetFamilySource - SetFeatureObj - SetFieldOfMatrixGroup - SetFilterObj - SetFittingSubgroup - SetFpElmComparisonMethod - SetFpElmEqualityMethod - SetFpElmKBRWS - SetFrattiniSubgroup - SetFrattinifactorId - SetFrattinifactorSize - SetFreeAlgebraOfFpAlgebra - SetFreeGeneratorsOfFpAlgebra - SetFreeGeneratorsOfFpGroup - SetFreeGeneratorsOfFpMonoid - SetFreeGeneratorsOfFpSemigroup - SetFreeGroupOfBasicImageGroup - SetFreeGroupOfFpGroup - SetFreeMonoidOfFpMonoid - SetFreeMonoidOfRewritingSystem - SetFreeSemigroupOfFpSemigroup - SetFreeSemigroupOfRewritingSystem - SetFrobeniusAutomorphism - SetFunctionAction - SetFusionConjugacyClassesOp - SetFusionsOfLibTom - SetFusionsToLibTom - SetFusionsTom - SetGLDegree - SetGLUnderlyingField - SetGaloisGroup - SetGaloisMat - SetGaloisStabilizer - SetGaloisType - SetGapDocHTMLOptions - SetGapDocLaTeXOptions - SetGapDocTxtOptions - SetGasmanMessageStatus - SetGeneralizedPcgs - SetGeneratingPairsOfLeftMagmaCongruence - SetGeneratingPairsOfMagmaCongruence - SetGeneratingPairsOfRightMagmaCongruence - SetGeneratingSetIsComplete - SetGeneratorOfCyclicGroup - SetGeneratorsOfAdditiveGroup - SetGeneratorsOfAdditiveMagma - SetGeneratorsOfAdditiveMagmaWithInverses - SetGeneratorsOfAdditiveMagmaWithZero - SetGeneratorsOfAlgebra - SetGeneratorsOfAlgebraModule - SetGeneratorsOfAlgebraWithOne - SetGeneratorsOfDivisionRing - SetGeneratorsOfDomain - SetGeneratorsOfEquivalenceRelationPartition - SetGeneratorsOfExtASet - SetGeneratorsOfExtLSet - SetGeneratorsOfExtRSet - SetGeneratorsOfExtUSet - SetGeneratorsOfFLMLOR - SetGeneratorsOfFLMLORWithOne - SetGeneratorsOfField - SetGeneratorsOfGroup - SetGeneratorsOfIdeal - SetGeneratorsOfLeftIdeal - SetGeneratorsOfLeftMagmaIdeal - SetGeneratorsOfLeftModule - SetGeneratorsOfLeftOperatorAdditiveGroup - SetGeneratorsOfLeftOperatorRing - SetGeneratorsOfLeftOperatorRingWithOne - SetGeneratorsOfLeftVectorSpace - SetGeneratorsOfMagma - SetGeneratorsOfMagmaIdeal - SetGeneratorsOfMagmaWithInverses - SetGeneratorsOfMagmaWithOne - SetGeneratorsOfMonoid - SetGeneratorsOfNearAdditiveGroup - SetGeneratorsOfNearAdditiveMagma - SetGeneratorsOfNearAdditiveMagmaWithInverses - SetGeneratorsOfNearAdditiveMagmaWithZero - SetGeneratorsOfRightIdeal - SetGeneratorsOfRightMagmaIdeal - SetGeneratorsOfRightModule - SetGeneratorsOfRightOperatorAdditiveGroup - SetGeneratorsOfRing - SetGeneratorsOfRingWithOne - SetGeneratorsOfRws - SetGeneratorsOfSemigroup - SetGeneratorsOfSemiring - SetGeneratorsOfSemiringWithOne - SetGeneratorsOfSemiringWithOneAndZero - SetGeneratorsOfSemiringWithZero - SetGeneratorsOfTwoSidedIdeal - SetGeneratorsOfVectorSpace - SetGeneratorsSmallest - SetGeneratorsSubgroupsTom - SetGlobalPartitionOfClasses - SetGrading - SetGreensDRelation - SetGreensHRelation - SetGreensJRelation - SetGreensLRelation - SetGreensRRelation - SetGroupByPcgs - SetGroupHClassOfGreensDClass - SetGroupOfPcgs - SetHallSystem - SetHashEntry - SetHashEntryAtLastIndex - SetHelpViewer - SetHirschLength - SetHomCosetFamily - SetHomFromFreeOfBasicImageGroup - SetHomeEnumerator - SetHomePcgs - SetIBr - SetIdGroup - SetIdempotents - SetIdempotentsTom - SetIdempotentsTomInfo - SetIdentificationOfConjugacyClasses - SetIdentifier - SetIdentity - SetIdentityMapping - SetImage - SetImageElt - SetImageListOfTransformation - SetImageSetOfTransformation - SetImagesSmallestGenerators - SetImagesSource - SetImfRecord - SetIndependentGeneratorsOfAbelianGroup - SetIndependentGeneratorsOfAbelianMatrixGroup - SetIndeterminateName - SetIndeterminateNumberOfLaurentPolynomial - SetIndeterminateNumberOfUnivariateLaurentPolynomial - SetIndeterminateNumberOfUnivariateRationalFunction - SetIndeterminateOfUnivariateRationalFunction - SetIndeterminatesOfPolynomialRing - SetIndexInParent - SetIndexInWholeGroup - SetIndicesCentralNormalSteps - SetIndicesChiefNormalSteps - SetIndicesEANormalSteps - SetIndicesInvolutaryGenerators - SetIndicesNormalSteps - SetIndicesOfAdjointBasis - SetIndicesPCentralNormalStepsPGroup - SetInducedPcgs - SetInducedPcgsWrtFamilyPcgs - SetInducedPcgsWrtHomePcgs - SetInducedPcgsWrtSpecialPcgs - SetInfoLevel - SetInfoText - SetInjectionZeroMagma - SetInnerAutomorphismsAutomorphismGroup - SetInt - SetInternalRepresentative - SetInvariantBilinearForm - SetInvariantForm - SetInvariantLattice - SetInvariantQuadraticForm - SetInvariantSesquilinearForm - SetInverse - SetInverseAttr - SetInverseClasses - SetInverseGeneralMapping - SetInverseImmutable - SetIrr - SetIrrBaumClausen - SetIrrConlon - SetIrrDixonSchneider - SetIrrFacsPol - SetIrreducibleRepresentations - SetIsAbelian - SetIsAbelianNumberField - SetIsAbelianTom - SetIsAdditiveGroupGeneralMapping - SetIsAdditiveGroupHomomorphism - SetIsAdditiveGroupToGroupGeneralMapping - SetIsAdditiveGroupToGroupHomomorphism - SetIsAdditivelyCommutative - SetIsAlgebraGeneralMapping - SetIsAlgebraHomomorphism - SetIsAlgebraModule - SetIsAlgebraWithOneGeneralMapping - SetIsAlgebraWithOneHomomorphism - SetIsAlternatingGroup - SetIsAnticommutative - SetIsAntisymmetricBinaryRelation - SetIsAssociative - SetIsAutomorphismGroup - SetIsBasicWreathProductOrdering - SetIsBergerCondition - SetIsBijective - SetIsBravaisGroup - SetIsBuiltFromAdditiveMagmaWithInverses - SetIsBuiltFromGroup - SetIsBuiltFromMagma - SetIsBuiltFromMagmaWithInverses - SetIsBuiltFromMagmaWithOne - SetIsBuiltFromMonoid - SetIsBuiltFromSemigroup - SetIsCanonicalBasis - SetIsCanonicalBasisFullMatrixModule - SetIsCanonicalBasisFullRowModule - SetIsCanonicalBasisFullSCAlgebra - SetIsCanonicalNiceMonomorphism - SetIsCanonicalPcgs - SetIsCanonicalPcgsWrtSpecialPcgs - SetIsChainTypeGroup - SetIsCharacter - SetIsCharacteristicMatrixPGroup - SetIsCommutative - SetIsCommutativeFamily - SetIsConfluent - SetIsConjugatorAutomorphism - SetIsConjugatorIsomorphism - SetIsConstantRationalFunction - SetIsConstantTimeAccessGeneralMapping - SetIsCycInt - SetIsCyclic - SetIsCyclicTom - SetIsCyclicWithSize - SetIsCyclotomicField - SetIsDihedralGroup - SetIsDistributive - SetIsDivisionRing - SetIsDuplicateFree - SetIsDuplicateFreeList - SetIsElementaryAbelian - SetIsEmpty - SetIsEndoGeneralMapping - SetIsEndoMapping - SetIsEquivalenceRelation - SetIsFFEMatrixGroupOverLargeSpace - SetIsFamilyPcgs - SetIsField - SetIsFieldHomomorphism - SetIsFinite - SetIsFiniteDimensional - SetIsFiniteOrdersPcgs - SetIsFiniteSemigroupGreensRelation - SetIsFinitelyGeneratedGroup - SetIsFrattiniFree - SetIsFreeMonoid - SetIsFreeSemigroup - SetIsFullFpAlgebra - SetIsFullHomModule - SetIsFullMatrixModule - SetIsFullRowModule - SetIsFullSCAlgebra - SetIsFullSubgroupGLorSLRespectingBilinearForm - SetIsFullSubgroupGLorSLRespectingQuadraticForm - SetIsFullSubgroupGLorSLRespectingSesquilinearForm - SetIsFullTransformationSemigroup - SetIsGL - SetIsGeneralLinearGroup - SetIsGeneralizedCartanMatrix - SetIsGeneratorsOfMagmaWithInverses - SetIsGreensClass - SetIsGreensDClass - SetIsGreensDRelation - SetIsGreensHClass - SetIsGreensHRelation - SetIsGreensJClass - SetIsGreensJRelation - SetIsGreensLClass - SetIsGreensLRelation - SetIsGreensRClass - SetIsGreensRRelation - SetIsGreensRelation - SetIsGroupGeneralMapping - SetIsGroupHClass - SetIsGroupHomomorphism - SetIsGroupOfAutomorphisms - SetIsGroupOfAutomorphismsFiniteGroup - SetIsGroupRing - SetIsGroupToAdditiveGroupGeneralMapping - SetIsGroupToAdditiveGroupHomomorphism - SetIsHandledByNiceMonomorphism - SetIsHasseDiagram - SetIsHomCosetOfAdditiveElt - SetIsHomCosetOfFp - SetIsHomCosetOfMatrix - SetIsHomCosetOfPerm - SetIsHomCosetOfTuple - SetIsIdealInParent - SetIsIdempotent - SetIsImpossible - SetIsInducedFromNormalSubgroup - SetIsInducedPcgsWrtSpecialPcgs - SetIsInjective - SetIsInnerAutomorphism - SetIsIntegerMatrixGroup - SetIsIntegralBasis - SetIsIntegralCyclotomic - SetIsIntegralRing - SetIsIrreducibleCharacter - SetIsJacobianRing - SetIsLDistributive - SetIsLatticeOrderBinaryRelation - SetIsLaurentPolynomial - SetIsLeftActedOnByDivisionRing - SetIsLeftAlgebraModule - SetIsLeftIdealInParent - SetIsLeftModuleGeneralMapping - SetIsLeftModuleHomomorphism - SetIsLeftSemigroupCongruence - SetIsLeftSemigroupIdeal - SetIsLieAbelian - SetIsLieAlgebra - SetIsLieNilpotent - SetIsLieSolvable - SetIsLinearlyPrimitive - SetIsMagmaHomomorphism - SetIsMapping - SetIsMatrixModule - SetIsMinimalNonmonomial - SetIsMonoid - SetIsMonomialCharacter - SetIsMonomialCharacterTable - SetIsMonomialGroup - SetIsMonomialMatrix - SetIsMonomialNumber - SetIsNaturalAlternatingGroup - SetIsNaturalGL - SetIsNaturalSL - SetIsNaturalSymmetricGroup - SetIsNearRing - SetIsNearRingWithOne - SetIsNilpQuotientSystem - SetIsNilpotentCharacterTable - SetIsNilpotentGroup - SetIsNilpotentTom - SetIsNonTrivial - SetIsNoncharacteristicMatrixPGroup - SetIsNormalBasis - SetIsNormalForm - SetIsNormalInParent - SetIsNumberField - SetIsNumeratorParentPcgsFamilyPcgs - SetIsOne - SetIsOrderingOnFamilyOfAssocWords - SetIsPGroup - SetIsPQuotientSystem - SetIsPSL - SetIsParentPcgsFamilyPcgs - SetIsPartialOrderBinaryRelation - SetIsPcgsCentralSeries - SetIsPcgsChiefSeries - SetIsPcgsElementaryAbelianSeries - SetIsPcgsPCentralSeriesPGroup - SetIsPerfectCharacterTable - SetIsPerfectGroup - SetIsPerfectTom - SetIsPolycyclicGroup - SetIsPolynomial - SetIsPositionsList - SetIsPreOrderBinaryRelation - SetIsPrimeField - SetIsPrimeOrdersPcgs - SetIsPrimitive - SetIsPrimitiveAffine - SetIsPrimitiveCharacter - SetIsPrimitiveMatrixGroup - SetIsPseudoCanonicalBasisFullHomModule - SetIsQuasiDihedralGroup - SetIsQuasiPrimitive - SetIsQuaternionGroup - SetIsRDistributive - SetIsRationalMatrixGroup - SetIsRectangularTable - SetIsReduced - SetIsReesCongruence - SetIsReesCongruenceSemigroup - SetIsReesMatrixSemigroup - SetIsReesZeroMatrixSemigroup - SetIsReflexiveBinaryRelation - SetIsRegular - SetIsRegularDClass - SetIsRegularSemigroup - SetIsRelativelySM - SetIsRestrictedLieAlgebra - SetIsRightAlgebraModule - SetIsRightIdealInParent - SetIsRightSemigroupCongruence - SetIsRightSemigroupIdeal - SetIsRing - SetIsRingGeneralMapping - SetIsRingHomomorphism - SetIsRingWithOne - SetIsRingWithOneGeneralMapping - SetIsRingWithOneHomomorphism - SetIsRowModule - SetIsSL - SetIsSSortedList - SetIsSemiEchelonized - SetIsSemiRegular - SetIsSemigroup - SetIsSemigroupCongruence - SetIsSemigroupIdeal - SetIsSemiring - SetIsSemiringWithOne - SetIsSemiringWithOneAndZero - SetIsSemiringWithZero - SetIsShortLexOrdering - SetIsSimpleAlgebra - SetIsSimpleCharacterTable - SetIsSimpleGroup - SetIsSimpleSemigroup - SetIsSingleValued - SetIsSkewFieldFamily - SetIsSmallList - SetIsSolvableCharacterTable - SetIsSolvableGroup - SetIsSolvableTom - SetIsSortedList - SetIsSpecialLinearGroup - SetIsSpecialPcgs - SetIsSporadicSimpleCharacterTable - SetIsSporadicSimpleGroup - SetIsStabChainViaChainSubgroup - SetIsSubgroupSL - SetIsSubmonoidFpMonoid - SetIsSubnormallyMonomial - SetIsSubsemigroupFpSemigroup - SetIsSubsemigroupReesMatrixSemigroup - SetIsSubsemigroupReesZeroMatrixSemigroup - SetIsSubsetLocallyFiniteGroup - SetIsSupersolvableCharacterTable - SetIsSupersolvableGroup - SetIsSurjective - SetIsSymmetricBinaryRelation - SetIsSymmetricGroup - SetIsTotal - SetIsTotalOrdering - SetIsTransformationMonoid - SetIsTransformationSemigroup - SetIsTransitive - SetIsTransitiveBinaryRelation - SetIsTranslationInvariantOrdering - SetIsTrivial - SetIsTwoSidedIdealInParent - SetIsUFDFamily - SetIsUniformMatrixGroup - SetIsUnivariatePolynomial - SetIsUnivariateRationalFunction - SetIsVectorSpaceHomomorphism - SetIsVirtualCharacter - SetIsWeightLexOrdering - SetIsWellFoundedOrdering - SetIsWeylGroup - SetIsWholeFamily - SetIsWreathProductOrdering - SetIsZero - SetIsZeroGroup - SetIsZeroMultiplicationRing - SetIsZeroRationalFunction - SetIsZeroSimpleSemigroup - SetIsZeroSquaredRing - SetIsomorphismFpAlgebra - SetIsomorphismFpFLMLOR - SetIsomorphismFpGroup - SetIsomorphismFpMonoid - SetIsomorphismFpSemigroup - SetIsomorphismMatrixAlgebra - SetIsomorphismMatrixFLMLOR - SetIsomorphismPcGroup - SetIsomorphismPermGroup - SetIsomorphismReesMatrixSemigroup - SetIsomorphismRefinedPcGroup - SetIsomorphismSCAlgebra - SetIsomorphismSCFLMLOR - SetIsomorphismSimplifiedFpGroup - SetIsomorphismSpecialPcGroup - SetIsomorphismTransformationSemigroup - SetJenningsLieAlgebra - SetJenningsSeries - SetJordanDecomposition - SetKernelOfAdditiveGeneralMapping - SetKernelOfCharacter - SetKernelOfMultiplicativeGeneralMapping - SetKernelOfTransformation - SetKillingMatrix - SetKnowsHowToDecompose - SetLClassOfHClass - SetLGFirst - SetLGHeads - SetLGLayers - SetLGLength - SetLGTails - SetLGWeights - SetLargestElementGroup - SetLargestMovedPoint - SetLargestMovedPointPerm - SetLatticeGeneratorsInUEA - SetLatticeSubgroups - SetLeadCoeffsIGS - SetLeftActingAlgebra - SetLeftActingDomain - SetLeftActingGroup - SetLeftActingRingOfIdeal - SetLeftDerivations - SetLength - SetLengthsTom - SetLessThanFunction - SetLessThanOrEqualFunction - SetLetterRepWordsLessFunc - SetLevelsOfGenerators - SetLeviMalcevDecomposition - SetLieAlgebraByDomain - SetLieCenter - SetLieCentralizerInParent - SetLieCentre - SetLieDerivedSeries - SetLieDerivedSubalgebra - SetLieFamily - SetLieLowerCentralSeries - SetLieNilRadical - SetLieNormalizerInParent - SetLieObject - SetLieSolvableRadical - SetLieUpperCentralSeries - SetLinearActionBasis - SetLinearCharacters - SetLinesOfStraightLineProgram - SetLongestWeylWordPerm - SetLowerCentralSeriesOfGroup - SetMagmaGeneratorsOfFamily - SetMappingGeneratorsImages - SetMappingOfWhichItIsAsGGMBI - SetMarksTom - SetMatTom - SetMatrixByBlockMatrix - SetMatrixDimension - SetMaximalAbelianQuotient - SetMaximalBlocksAttr - SetMaximalNormalSubgroups - SetMaximalSubgroupClassReps - SetMaximalSubgroups - SetMaximalSubgroupsLattice - SetMaximalSubgroupsTom - SetMinimalBlockDimension - SetMinimalGeneratingSet - SetMinimalNormalSubgroups - SetMinimalStabChain - SetMinimalSupergroupsLattice - SetMinimizedBombieriNorm - SetModuleOfExtension - SetModulusOfZmodnZObj - SetMoebiusTom - SetMolienSeriesInfo - SetMonoidOfRewritingSystem - SetMonomialComparisonFunction - SetMonomialExtrepComparisonFun - SetMovedPoints - SetMultipleAttributes - SetMultiplicationTable - SetMultiplicativeNeutralElement - SetMultiplicativeZero - SetName - SetNameIsomorphismClass - SetNamesLibTom - SetNamesOfFusionSources - SetNaturalCharacter - SetNaturalHomomorphismByNormalSubgroupNCInParent - SetNaturalHomomorphismsPool - SetNegativeRootVectors - SetNegativeRoots - SetNestingDepthA - SetNestingDepthM - SetNiceAlgebraMonomorphism - SetNiceBasis - SetNiceFreeLeftModule - SetNiceFreeLeftModuleInfo - SetNiceMonomorphism - SetNiceNormalFormByExtRepFunction - SetNiceObject - SetNilpotencyClassOfGroup - SetNilpotentClassTwoElement - SetNonLieNilpotentElement - SetNonNilpotentElement - SetNorm - SetNormalBase - SetNormalClosureInParent - SetNormalMaximalSubgroups - SetNormalSeriesByPcgs - SetNormalSubgroupClassesInfo - SetNormalSubgroups - SetNormalizerInGLnZ - SetNormalizerInGLnZBravaisGroup - SetNormalizerInHomePcgs - SetNormalizerInParent - SetNormalizersTom - SetNormedRowVector - SetNormedRowVectors - SetNormedVectors - SetNotifiedFusionsOfLibTom - SetNotifiedFusionsToLibTom - SetNrConjugacyClasses - SetNrInputsOfStraightLineProgram - SetNrMovedPoints - SetNrMovedPointsPerm - SetNrSubsTom - SetNrSyllables - SetNullAlgebra - SetNullspaceIntMat - SetNullspaceMat - SetNumberGeneratorsOfRws - SetNumberSyllables - SetNumeratorOfModuloPcgs - SetNumeratorOfRationalFunction - SetONanScottType - SetOccuringVariableIndices - SetOmegaAndLowerPCentralSeries - SetOmegaSeries - SetOne - SetOneAttr - SetOneImmutable - SetOneOfPcgs - SetOperatorOfExternalSet - SetOrbitGeneratorsOfGroup - SetOrbitLengths - SetOrbitLengthsDomain - SetOrbitStabilizingParentGroup - SetOrbits - SetOrbitsDomain - SetOrder - SetOrderingOfRewritingSystem - SetOrderingOnGenerators - SetOrderingsFamily - SetOrdersClassRepresentatives - SetOrdersTom - SetOrdinaryCharacterTable - SetOrthogonalSpaceInFullRowSpace - SetPCentralLieAlgebra - SetPCentralNormalSeriesByPcgsPGroup - SetPClassPGroup - SetPSLDegree - SetPSLUnderlyingField - SetPackageInfo - SetParent - SetParentAttr - SetParentPcgs - SetPartialClosureOfCongruence - SetPartialOrderOfHasseDiagram - SetPcGroupWithPcgs - SetPcSeries - SetPcgs - SetPcgsCentralSeries - SetPcgsChiefSeries - SetPcgsElementaryAbelianSeries - SetPcgsPCentralSeriesPGroup - SetPerfectIdentification - SetPerfectResiduum - SetPermutationTom - SetPositiveRootVectors - SetPositiveRoots - SetPositiveRootsAsWeights - SetPower - SetPowerANC - SetPowerNC - SetPowerS - SetPowerSubalgebraSeries - SetPreBasis - SetPreImagesRange - SetPreferredGenerators - SetPrefrattiniSubgroup - SetPresentation - SetPrimaryGeneratorWords - SetPrimeField - SetPrimePGroup - SetPrimePowerComponents - SetPrimitiveElement - SetPrimitiveIdentification - SetPrimitiveRoot - SetPrintFormattingStatus - SetProjectiveOrder - SetPseudoRandomSeed - SetPthPowerImages - SetQuasiDihedralGenerators - SetQuaternionGenerators - SetQuotientGroup - SetQuotientGroupHom - SetQuotientSemigroupCongruence - SetQuotientSemigroupHomomorphism - SetQuotientSemigroupPreimage - SetRClassOfHClass - SetRadicalGroup - SetRadicalOfAlgebra - SetRange - SetRankAction - SetRankMat - SetRankOfTransformation - SetRankPGroup - SetRat - SetRationalClasses - SetRationalFunctionsFamily - SetRationalizedMat - SetRealClasses - SetRecNames - SetRecursionTrapInterval - SetReducedConfluentRewritingSystem - SetReducedMultiplication - SetReesCongruenceOfSemigroupIdeal - SetReesZeroMatrixSemigroupElementIsZero - SetRefinedPcGroup - SetRegularActionHomomorphism - SetRelationsOfFpMonoid - SetRelationsOfFpSemigroup - SetRelativeOrder - SetRelativeOrderNC - SetRelativeOrders - SetRelatorsOfFpAlgebra - SetRelatorsOfFpGroup - SetRepresentative - SetRepresentativeSmallest - SetRepresentativesContainedRightCosets - SetRepresentativesMinimalBlocksAttr - SetRepresentativesPerfectSubgroups - SetRepresentativesSimpleSubgroups - SetRespectsAddition - SetRespectsAdditiveInverses - SetRespectsInverses - SetRespectsMultiplication - SetRespectsOne - SetRespectsScalarMultiplication - SetRespectsZero - SetRightActingAlgebra - SetRightActingDomain - SetRightActingGroup - SetRightActingRingOfIdeal - SetRightDerivations - SetRightTransversalInParent - SetRootOfDefiningPolynomial - SetRootSystem - SetRowIndexOfReesMatrixSemigroupElement - SetRowIndexOfReesZeroMatrixSemigroupElement - SetRowsOfReesMatrixSemigroup - SetRowsOfReesZeroMatrixSemigroup - SetRules - SetSLDegree - SetSLUnderlyingField - SetSandwichMatrixOfReesMatrixSemigroup - SetSandwichMatrixOfReesZeroMatrixSemigroup - SetSemiEchelonBasis - SetSemiEchelonMat - SetSemiEchelonMatTransformation - SetSemiSimpleType - SetSemidirectFactorsOfGroup - SetSemidirectProductInfo - SetSemigroupOfRewritingSystem - SetSiftFunction - SetSiftGroup - SetSignPerm - SetSimpleSystem - SetSimsNo - SetSize - SetSizesCentralizers - SetSizesConjugacyClasses - SetSmallGeneratingSet - SetSmallestGeneratorPerm - SetSmallestMovedPoint - SetSmallestMovedPointPerm - SetSocle - SetSocleComplement - SetSocleDimensions - SetSocleTypePrimitiveGroup - SetSortingPerm - SetSource - SetSparseCartanMatrix - SetSpecialPcgs - SetSplittingField - SetStabChainImmutable - SetStabChainMutable - SetStabChainOptions - SetStabilizerOfExternalSet - SetStandardGeneratorsInfo - SetStoredExcludedOrders - SetStoredGroebnerBasis - SetStraightLineProgElmType - SetStraightLineProgramsTom - SetString - SetStructureConstantsTable - SetStructureDescription - SetSubdirectProductInfo - SetSubfields - SetSubnormalSeriesInParent - SetSubsTom - SetSubspaces - SetSubspacesAll - SetSuccessors - SetSupersolvableResiduum - SetSurjectiveActionHomomorphismAttr - SetSylowSystem - SetSymmetricDegree - SetSymmetricParentGroup - SetTableOfMarks - SetTestMonomial - SetTestMonomialQuick - SetTestQuasiPrimitive - SetTestRelativelySM - SetTestSubnormallyMonomial - SetTietzeOrigin - SetTrace - SetTranformsOneIntoZero - SetTransformationRepresentation - SetTransformsAdditionIntoMultiplication - SetTransformsAdditiveInversesIntoInverses - SetTransformsInversesIntoAdditiveInverses - SetTransformsMultiplicationIntoAddition - SetTransformsZeroIntoOne - SetTransitiveIdentification - SetTransitivity - SetTransposedMat - SetTransposedMatAttr - SetTransposedMatImmutable - SetTransposedMatrixGroup - SetTransversal - SetTriangulizedNullspaceMat - SetTrivialCharacter - SetTrivialSubFLMLOR - SetTrivialSubadditiveMagmaWithZero - SetTrivialSubalgebra - SetTrivialSubgroup - SetTrivialSubmagmaWithOne - SetTrivialSubmodule - SetTrivialSubmonoid - SetTrivialSubnearAdditiveMagmaWithZero - SetTrivialSubspace - SetTwoClosure - SetTypeObj - SetTzOptions - SetTzRules - SetUnderlyingCharacterTable - SetUnderlyingCharacteristic - SetUnderlyingCollection - SetUnderlyingElementOfReesMatrixSemigroupElement - SetUnderlyingElementOfReesZeroMatrixSemigroupElement - SetUnderlyingExternalSet - SetUnderlyingFamily - SetUnderlyingField - SetUnderlyingGeneralMapping - SetUnderlyingGroup - SetUnderlyingLeftModule - SetUnderlyingLieAlgebra - SetUnderlyingMagma - SetUnderlyingRelation - SetUnderlyingSemigroupOfReesMatrixSemigroup - SetUnderlyingSemigroupOfReesZeroMatrixSemigroup - SetUnderlyingVectorSpace - SetUnits - SetUniversalEnvelopingAlgebra - SetUpperActingDomain - SetUpperCentralSeriesOfGroup - SetValueOption - SetValuesOfClassFunction - SetWeightOfGenerators - SetWeightsTom - SetWeylGroup - SetWreathProductInfo - SetX - SetXHelp - SetZClassRepsQClass - SetZero - SetZeroAttr - SetZeroCoefficient - SetZeroImmutable - SetZuppos - SetnpeGL - SetnpePSL - SetnpeSL - SetsOrbits - Setter - ShallowCopy - ShapeFrequencies - SharedObj - SharedType - ShiftedCoeffs - ShiftedPadicNumber - ShortLexOrdering - ShortLexOrderingNC - ShortestVectors - ShowArgument - ShowArguments - ShowDetails - ShowImpliedFilters - ShowMethods - ShowOtherMethods - ShowPackageVariables - ShrinkCoeffs - ShrinkRowVector - ShrinkableHashTable - ShrinkableSingleValuedHashTable - Sift - SiftAsWord - SiftForStrongGenerator - SiftFunction - SiftGroup - SiftOneLevel - SiftVector - SiftedPcElement - SiftedPermutation - SiftedVector - SiftedVectorForGaussianMatrixSpace - SiftedVectorForGaussianRowSpace - SiftedWord - Sigma - SignInt - SignPartition - SignPerm - SignPermGroup - SimpleLieAlgebra - SimpleLieAlgebraTypeH - SimpleLieAlgebraTypeK - SimpleLieAlgebraTypeS - SimpleLieAlgebraTypeW - SimpleSystem - SimplifiedFpGroup - SimplifyPresentation - SimsName - SimsNo - SimultaneousEigenvalues - SingleCollector - SingleCollectorByGenerators - SingleCollectorByRelators - SingleValuedHashTable - Size - SizeBlist - SizeConsiderFunction - SizeGL - SizeNumbersPerfectGroups - SizeOfChainOfGroup - SizeOfFieldOfDefinition - SizeOfGLdZmodmZ - SizePSL - SizePolynomialUnipotentClassGL - SizeSL - SizeScreen - SizeStabChain - SizeUpperBound - SizesCentralizers - SizesConjugacyClasses - SizesPerfectGroups - Sleep - SmallGeneratingSet - SmallGroup - SmallGroupsInformation - SmallSpaceCutoff - SmallerDegreePermutationRepresentation - SmallestGeneratorPerm - SmallestMovedPoint - SmallestMovedPointPerm - SmallestMovedPointPerms - SmallestPrimeDivisor - SmallestRootInt - SmithNormalFormIntegerMat - SmithNormalFormIntegerMatTransforms - SmithNormalFormSQ - Socle - SocleComplement - SocleDimensions - SocleTypePrimitiveGroup - SolutionIntMat - SolutionMat - SolutionMatDestructive - SolutionMatNoCo - SolutionNullspaceIntMat - SolutionSQ - SolvableNormalClosurePermGroup - SolvableQuotient - SomeVerbalSubgroups - Sort - SortParallel - SortRationalClasses - SortRelsSortedByStartGen - SortedCharacterTable - SortedCharacters - SortedList - SortedSparseActionHomomorphism - SortedSparseActionHomomorphismOp - SortedTom - Sortex - SortingPerm - Source - SourceElt - Sp - SpanOfMatrixGroup - SpanningTree - SparseActionHomomorphism - SparseActionHomomorphismOp - SparseCartanMatrix - SparseHashTable - SparseIntKey - SpecialLinearGroup - SpecialLinearGroupCons - SpecialOrthogonalGroup - SpecialOrthogonalGroupCons - SpecialPcgs - SpecialPcgsFactor - SpecialPcgsSubgroup - SpecialUnitaryGroup - SpecialUnitaryGroupCons - SpecializedExtRepPol - SpinInductionScheme - SpinorNorm - SplitCell - SplitCharacters - SplitExtension - SplitStep - SplitString - SplitStringInternal - SplitTwoSpace - SplitUpSublistsByFpFunc - SplitWordTail - SplittingField - Sqrt - SquareRoots - StabChain - StabChainBaseStrongGenerators - StabChainForcePoint - StabChainImmutable - StabChainMutable - StabChainOp - StabChainOptions - StabChainPermGroupToPermGroupGeneralMappingByImages - StabChainRandomPermGroup - StabChainStrong - StabChainSwap - Stabilizer - StabilizerByMatrixOperation - StabilizerFunc - StabilizerFuncOp - StabilizerOfBlockNC - StabilizerOfExternalSet - StabilizerOp - StabilizerPcgs - StandardAssociate - StandardClassMatrixColumn - StandardGeneratorsFunctions - StandardGeneratorsInfo - StandardGeneratorsOfFullHomModule - StandardGeneratorsOfFullMatrixModule - StandardGeneratorsOfGroup - StandardScalarProduct - StandardizeTable - StandardizeTableC - StarCyc - StateRandom - StatusRandom - StepModGauss - StopNumConsecSiftToOne - StopNumSift - StopSize - StoreAlgExtFam - StoreFactorsPol - StoreFusion - StoreInfoFreeMagma - StoredExcludedOrders - StoredGroebnerBasis - StraightLineProgElm - StraightLineProgElmType - StraightLineProgGens - StraightLineProgram - StraightLineProgramElmRankFilter - StraightLineProgramNC - StraightLineProgramsDefaultType - StraightLineProgramsFamily - StraightLineProgramsTom - StratMeetPartition - StreamsFamily - StretchImportantSLPElement - String - StringDate - StringFamily - StringFile - StringImType - StringOfResultOfLineOfStraightLineProgram - StringOfResultOfStraightLineProgram - StringOfUnivariateRationalPolynomialByCoefficients - StringPP - StringPrint - StringStreamInputTextFile - StringTime - StringToStraightLineProgram - StringUnivariateLaurent - StringView - StripBeginEnd - StripEscapeSequences - StrongGeneratorsStabChain - StrongGens - StronglyConnectedComponents - StructuralCopy - StructureConstantsPadicNumbers - StructureConstantsTable - StructureDescription - SuPeRfail - SubAlgebraModule - SubFLMLOR - SubFLMLORNC - SubFLMLORWithOne - SubFLMLORWithOneNC - SubGModLeadPos - SubSyllables - SubadditiveGroup - SubadditiveGroupNC - SubadditiveMagma - SubadditiveMagmaNC - SubadditiveMagmaWithInverses - SubadditiveMagmaWithInversesNC - SubadditiveMagmaWithZero - SubadditiveMagmaWithZeroNC - Subalgebra - SubalgebraNC - SubalgebraWithOne - SubalgebraWithOneNC - SubdirProdPcGroups - SubdirectDiagonalPerms - SubdirectProduct - SubdirectProductInfo - SubdirectProductOp - SubdirectProducts - Subfield - SubfieldNC - Subfields - SubgpConjSymmgp - Subgroup - SubgroupByPcgs - SubgroupByProperty - SubgroupGeneratorsCosetTable - SubgroupMethodByNiceMonomorphism - SubgroupMethodByNiceMonomorphismCollColl - SubgroupMethodByNiceMonomorphismCollElm - SubgroupMethodByNiceMonomorphismCollOther - SubgroupNC - SubgroupOfWholeGroupByCosetTable - SubgroupOfWholeGroupByQuotientSubgroup - SubgroupProperty - SubgroupShell - SubgroupsMethodByNiceMonomorphism - SubgroupsOrbitsAndNormalizers - SubgroupsSolvableGroup - Submagma - SubmagmaNC - SubmagmaWithInverses - SubmagmaWithInversesNC - SubmagmaWithOne - SubmagmaWithOneNC - Submodule - SubmoduleNC - Submonoid - SubmonoidNC - SubnearAdditiveGroup - SubnearAdditiveGroupNC - SubnearAdditiveMagma - SubnearAdditiveMagmaNC - SubnearAdditiveMagmaWithInverses - SubnearAdditiveMagmaWithInversesNC - SubnearAdditiveMagmaWithZero - SubnearAdditiveMagmaWithZeroNC - SubnormalSeries - SubnormalSeriesInParent - SubnormalSeriesOp - SuboLiBli - SuboSiBli - SuboTruePos - SuboUniteBlist - Suborbits - Subring - SubringNC - SubringWithOne - SubringWithOneNC - SubsTom - Subsemigroup - SubsemigroupNC - Subsemiring - SubsemiringNC - SubsemiringWithOne - SubsemiringWithOneAndZero - SubsemiringWithOneAndZeroNC - SubsemiringWithOneNC - SubsemiringWithZero - SubsemiringWithZeroNC - Subspace - SubspaceNC - SubspaceVectorSpaceGroup - Subspaces - SubspacesAll - SubspacesDim - SubstitutedWord - SubstitutionSublist - SubtractBlist - SubtractBlistOrbitStabChain - SubtractSet - Subtype - Subword - Successors - SuggestUpgrades - Sum - SumCoefPolynomial - SumCoefRatfun - SumCoeffLaurpol - SumCoeffUnivfunc - SumFactorizationFunctionPcgs - SumIntersectionMat - SumOfMBMAndMapping - SumOfMappingAndMBM - SumOfPcElement - SumOp - SumPcgs - SumRootsPol - SumRootsPolComp - SumX - SumXHelp - SummandMolienSeries - SupType - SupersolvableResiduum - SupersolvableResiduumDefault - SupportedCharacterTableInfo - SupportedLibraryTableComponents - SurjectiveActionHomomorphismAttr - SuzukiGroup - SuzukiGroupCons - SyllableRepAssocWord - SyllableWordObjByExtRep - SylowComplement - SylowComplementOp - SylowSubgroup - SylowSubgroupOp - SylowSubgroupPermGroup - SylowSystem - SymAdic - SymmetricClosureBinaryRelation - SymmetricDegree - SymmetricGroup - SymmetricGroupCons - SymmetricParentGroup - SymmetricParts - SymmetricPower - SymmetricPowerOfAlgebraModule - Symmetrisations - Symmetrizations - SymplecticComponents - SymplecticGroup - SymplecticGroupCons - SyzygyCriterion - Sz - TRANSGrp - TRANSProperties - TableAutomorphisms - TableHasIntKeyFun - TableOfMarks - TableOfMarksByLattice - TableOfMarksComponents - TableOfMarksCyclic - TableOfMarksDihedral - TableOfMarksFamily - TableOfMarksFrobenius - TableOfMarksFromLibrary - TailOfPcgsPermGroup - TailsInverses - Tau - TeX - TeXObj - TemporaryGlobalVarName - TensorProduct - TensorProductGModule - TensorProductOfAlgebraModules - TensorWreathProductOfMatrixGroup - Tensored - TestConsistencyMaps - TestHomogeneous - TestInducedFromNormalSubgroup - TestJacobi - TestMonomial - TestMonomialFromLattice - TestMonomialQuick - TestMonomialUseLattice - TestPackageAvailability - TestQuasiPrimitive - TestRelativelySM - TestRelativelySMFun - TestRow - TestSubnormallyMonomial - Tester - TextAttr - TextM - TietzeOrigin - TietzeWordAbstractWord - TmpDirectory - TmpName - ToBeDefinedObjFamily - ToBeDefinedObjType - ToggleEcho - TopExtensionsByAutomorphism - Trace - TraceDefinition - TraceImmediateMethods - TraceMat - TraceMethods - TraceModQF - TracePolynomial - TracedCosetFpGroup - TrailingEntriesLTM - TranformsOneIntoZero - TransArrange - TransCombinat - TransGrpLoad - TransStabCSPG - TransferDiagram - TransferPcgsInfo - TransferedExtensionPol - Transformation - TransformationData - TransformationFamily - TransformationNC - TransformationRelation - TransformationRepresentation - TransformationType - TransformingPermutationFamily - TransformingPermutations - TransformingPermutationsCharacterTables - TransformsAdditionIntoMultiplication - TransformsAdditiveInversesIntoInverses - TransformsInversesIntoAdditiveInverses - TransformsMultiplicationIntoAddition - TransformsZeroIntoOne - TransitiveClosureBinaryRelation - TransitiveGroup - TransitiveIdentification - Transitivity - TranslateString - TranslatorSubalgebra - TransposedMat - TransposedMatAttr - TransposedMatDestructive - TransposedMatImmutable - TransposedMatMutable - TransposedMatOp - TransposedMatrixGroup - TransvByDirProdFamily - TransvByHomomorphismFamily - TransvBySchreierTreeFamily - TransvBySiftFunctFamily - TransvByTrivSubgrpFamily - Transversal - TransversalBySiftFunction - TransversalByTrivial - TransversalElt - TransversalOfChainSubgroup - TreeEntry - TreeRepresentedWord - TrialQuotientRPF - TriangulizeIntegerMat - TriangulizeMat - TriangulizeMonomialElementList - TriangulizeWeightRepElementList - TriangulizedGeneratorsByMatrix - TriangulizedIntegerMat - TriangulizedIntegerMatTransform - TriangulizedIntegerMatTransforms - TriangulizedNullspaceMat - TriangulizedNullspaceMatDestructive - TriangulizedNullspaceMatNT - TrivialCharacter - TrivialGModule - TrivialGroup - TrivialGroupCons - TrivialIterator - TrivialModule - TrivialPartition - TrivialQuotientSubgroup - TrivialSubFLMLOR - TrivialSubadditiveMagmaWithZero - TrivialSubalgebra - TrivialSubgroup - TrivialSubmagmaWithOne - TrivialSubmodule - TrivialSubmonoid - TrivialSubnearAdditiveMagmaWithZero - TrivialSubspace - TryCombinations - TryConwayPolynomialForFrobeniusCharacterValue - TryCosetTableInWholeGroup - TryGcdCancelExtRepPolynomials - TryLayerSQ - TryModuleSQ - TryNextMethod - TryPcgsPermGroup - TrySecondaryImages - Tschirnhausen - Tuple - TupleNC - Tuples - TuplesFamily - TuplesK - TwoClosure - TwoClosurePermGroup - TwoCoboundaries - TwoCoboundariesSQ - TwoCocycles - TwoCocyclesSQ - TwoCohomology - TwoCohomologySQ - TwoSeqPol - TwoSidedIdeal - TwoSidedIdealByGenerators - TwoSidedIdealNC - TwoSquares - TypeObj - TypeOfDefaultGeneralMapping - TypeOfFamilies - TypeOfFamilyOfFamilies - TypeOfFamilyOfTypes - TypeOfTypes - TzCheckRecord - TzEliminate - TzEliminateFromTree - TzEliminateGen - TzEliminateGens - TzFindCyclicJoins - TzGeneratorExponents - TzGo - TzGoGo - TzImagesOldGens - TzInitGeneratorImages - TzMostFrequentPairs - TzNewGenerator - TzOccurrences - TzOccurrencesPairs - TzOptionNames - TzOptions - TzPreImagesNewGens - TzPrint - TzPrintGeneratorImages - TzPrintGenerators - TzPrintLengths - TzPrintOptions - TzPrintPairs - TzPrintPresentation - TzPrintRelators - TzPrintStatus - TzRelator - TzRemoveGenerators - TzRenumberGens - TzReplaceGens - TzRules - TzSearch - TzSearchC - TzSearchEqual - TzSort - TzSortC - TzSubstitute - TzSubstituteCyclicJoins - TzSubstituteGen - TzSubstituteWord - TzTestInitialSetup - TzUpdateGeneratorImages - TzWordAbstractWord - UNIXSelect - UglyVector - UnInstallCharReadHookFunc - UnSetImage - Unbind - UnbindElmWPObj - UnbindGlobal - UnderlyingCharacterTable - UnderlyingCharacteristic - UnderlyingCollection - UnderlyingDomainOfBinaryRelation - UnderlyingElement - UnderlyingElementOfReesMatrixSemigroupElement - UnderlyingElementOfReesZeroMatrixSemigroupElement - UnderlyingExternalSet - UnderlyingFamily - UnderlyingField - UnderlyingGeneralMapping - UnderlyingGroup - UnderlyingLeftModule - UnderlyingLieAlgebra - UnderlyingMagma - UnderlyingRelation - UnderlyingSemigroupOfReesMatrixSemigroup - UnderlyingSemigroupOfReesZeroMatrixSemigroup - UnderlyingVectorSpace - UndoRefinement - UnhideGlobalVariables - Union - UnionBlist - UnionSet - UnipotentSubgroup - Unique - UniteBlist - UniteBlistList - UniteSet - Units - UnivariateLaurentPolynomialByCoefficients - UnivariatePolynomial - UnivariatePolynomialByCoefficients - UnivariatePolynomialRing - UnivariateRationalFunctionByCoefficients - UnivariateRationalFunctionByExtRep - UnivariatenessTestRationalFunction - UniversalEnvelopingAlgebra - Unknown - UnknownsType - UnloadSmallGroupsData - UnlockNaturalHomomorphismsPool - UnmarkTree - UnorderedTuples - UnorderedTuplesK - UnprofileFunctions - UnprofileMethods - UntraceMethods - UpEnv - UpdateMap - UpdatePolycyclicCollector - UpdateWeightInfo - UpperActingDomain - UpperCentralSeries - UpperCentralSeriesOfGroup - UpperSubdiagonal - UseBasis - UseFactorRelation - UseIsomorphismRelation - UseMatrixChainSubgroups - UsePermChainSubgroups - UseStabChainViaChainSubgroup - UseSubsetRelation - UseSubsetRelationNC - VPActionHom - VSTInsertToLeft - VSTNode - ValidatePackageInfo - Valuation - Value - ValueCochain - ValueGlobal - ValueMolienSeries - ValueOption - ValuePol - ValuesOfClassFunction - VectorOfRelator - VectorSearchTable - VectorSpace - VectorSpaceByPcgsOfElementaryAbelianGroup - VerifySGS - VerifyStabilizer - View - ViewFullHomModule - ViewLength - ViewMolienSeries - ViewObj - VirtualCharacter - WallForm - WeakPointerObj - WedgeGModule - WeekDay - WeightLexOrdering - WeightLexOrderingNC - WeightOfGenerators - WeightVecFFE - WeightsTom - WeylGroup - WeylOrbitIterator - Where - WindowCmd - Word - WordAlp - WordsString - WreathElm - WreathProduct - WreathProductImprimitiveAction - WreathProductInfo - WreathProductOfMatrixGroup - WreathProductOrdering - WreathProductProductAction - WriteAll - WriteBibFile - WriteByte - WriteLine - ZClassRepsQClass - ZOp - ZassenhausIntersection - Zero - ZeroAttr - ZeroCoefficient - ZeroCoefficientRatFun - ZeroImmutable - ZeroMapping - ZeroMutable - ZeroOp - ZeroSM - ZeroSameMutability - ZevData - ZevDataValue - ZippedListQuotient - ZippedProduct - ZippedSum - ZmodnZ - ZmodnZObj - ZmodpZ - ZmodpZNC - ZumbroichBase - Zuppos - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/gcc.xml ktexteditor-5.31.0/src/syntax/data/gcc.xml --- ktexteditor-5.28.0/src/syntax/data/gcc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gcc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,581 +0,0 @@ - - - - - -]> - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/gcode.xml ktexteditor-5.31.0/src/syntax/data/gcode.xml --- ktexteditor-5.28.0/src/syntax/data/gcode.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gcode.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,203 +0,0 @@ - - - - - - - - and - or - xor - eq - ne - gt - ge - lt - le - mod - - - - atan - abs - acos - asin - cos - exp - exists - fix - fup - ln - round - sin - sqrt - tan - - - - sub - endsub - call - return - - - - do - while - endwhile - repeat - endrepeat - break - continue - if - elseif - else - endif - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/gdb.xml ktexteditor-5.31.0/src/syntax/data/gdb.xml --- ktexteditor-5.28.0/src/syntax/data/gdb.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gdb.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/gdl.xml ktexteditor-5.31.0/src/syntax/data/gdl.xml --- ktexteditor-5.28.0/src/syntax/data/gdl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gdl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,313 +0,0 @@ - - - - - - white - blue - red - green - yellow - magenta - cyan - darkgrey - darkgray - darkblue - darkred - darkgreen - darkyellow - darkmagenta - darkcyan - gold - lightgrey - lightgray - lightblue - lightred - lightgreen - lightyellow - lightmagenta - lightcyan - lilac - turquoise - aquamarine - khaki - purple - yellowgreen - pink - orange - orchid - black - - - box - triangle - circle - ellipse - hexagon - rhomb - rhomboid - trapeze - uptrapeze - trapezoid - uptrapezoid - lparallelogram - rparallelogram - - - unfolded - folded - boxed - clustered - wrapped - exclusive - white - - - normal - tree - forcedir - dfs - minbackward - maxdepth - maxdepthslow - mindepth - mindepthslow - minindegree - minoutdegree - maxindegree - maxoutdegree - maxdegree - mindegree - - - attraction - repulsion - randomfactor - randomimpulse - randomrounds - tempscheme - temptreshold - tempmin - tempmax - - - no - polar - circular - polcircular - orthogonal - - - toptobottom - bottomtotop - lefttoright - righttoleft - top_to_bottom - bottom_to_top - left_to_right - right_to_left - - - solid - continuous - dashed - dotted - double - triple - invisible - - - pfish - cfish - fpfish - fcfish - dpfish - dcfish - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/generate-php.pl ktexteditor-5.31.0/src/syntax/data/generate-php.pl --- ktexteditor-5.28.0/src/syntax/data/generate-php.pl 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/generate-php.pl 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -#!/usr/bin/perl - -# This perl script read stdin and write on stdout. It shall be an XML language file. -# -# * If the name of the language is 'HTML', then it creates the language 'PHP (HTML)' -# which shall be used for PHP hl. -# -# * If the name of the language is something else (say '*'), it creates the language '*/PHP'. -# This new language is the same as the old one, but is able to detect PHP everywhere. -# -# This script will correctly set extensions & mimetype, and will replace -# by -# -# Generated languages need a language named 'PHP/PHP', which shall take care of PHP hl itself -# and which will be called every time something like -# License: LGPL - -my $file = ""; - -while (<>) -{ - $file .= $_; -} - -$warning = "\n\n\n"; - -$file =~ s/(?=]+name="HTML"/) -{ - $root = 1; -} - -if ($root == 1) -{ - $file =~ s/]+)name="[^"]*"/]+)section="[^"]*"/]+)extensions="[^"]*"/]+)mimetype="[^"]*"/]+)name="([^"]*)"/
        ,' \ - | sort \ - | uniq \ - | grep -v EXPORT \ - | grep -v QT_BEGIN_ \ - | grep -v QT_END_ \ - | grep -v QT_MANGLE_ -else - cat < - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/git-ignore.xml ktexteditor-5.31.0/src/syntax/data/git-ignore.xml --- ktexteditor-5.28.0/src/syntax/data/git-ignore.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/git-ignore.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/gitolite.xml ktexteditor-5.31.0/src/syntax/data/gitolite.xml --- ktexteditor-5.28.0/src/syntax/data/gitolite.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gitolite.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ - - - - - - repo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/git-rebase.xml ktexteditor-5.31.0/src/syntax/data/git-rebase.xml --- ktexteditor-5.28.0/src/syntax/data/git-rebase.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/git-rebase.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ - - - - - - p - pick - - - r - reword - - - e - edit - - - s - squash - - - f - fixup - - - x - exec - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/glosstex.xml ktexteditor-5.31.0/src/syntax/data/glosstex.xml --- ktexteditor-5.28.0/src/syntax/data/glosstex.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/glosstex.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/glsl.xml ktexteditor-5.31.0/src/syntax/data/glsl.xml --- ktexteditor-5.28.0/src/syntax/data/glsl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/glsl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1217 +0,0 @@ - - - - - - break - continue - do - for - while - - if - else - - true - false - - discard - return - - struct - subroutine - layout - uniform - buffer - invariant - - - float - int - void - bool - - mat2 - mat3 - mat4 - - vec2 - vec3 - vec4 - ivec2 - ivec3 - ivec4 - bvec2 - bvec3 - bvec4 - - sampler1D - sampler2D - sampler3D - samplerCube - sampler2DRect - sampler1DArray - sampler2DArray - samplerCubeArray - samplerBuffer - sampler2DMS - sampler2DMSArray - - sampler1DShadow - sampler2DShadow - samplerCubeShadow - sampler2DRectShadow - sampler1DArrayShadow - sampler2DArrayShadow - samplerCubeArrayShadow - - isampler1D - isampler2D - isampler3D - isamplerCube - isampler2DRect - isampler1DArray - isampler2DArray - isamplerCubeArray - isamplerBuffer - isampler2DMS - isampler2DMSArray - - isampler1DShadow - isampler2DShadow - isamplerCubeShadow - isampler2DRectShadow - isampler1DArrayShadow - isampler2DArrayShadow - isamplerCubeArrayShadow - - usampler1D - usampler2D - usampler3D - usamplerCube - usampler2DRect - usampler1DArray - usampler2DArray - usamplerCubeArray - usamplerBuffer - usampler2DMS - usampler2DMSArray - - usampler1DShadow - usampler2DShadow - usamplerCubeShadow - usampler2DRectShadow - usampler1DArrayShadow - usampler2DArrayShadow - usamplerCubeArrayShadow - - atomic_uint - - - attribute - const - varying - - in - out - inout - - - flat - noperspective - smooth - - - location - component - binding - index - offset - - - row_major - packed - shared - std140 - std430 - - - xfb_buffer - xfb_offset - xfb_stride - - - origin_upper_left - pixel_center_integer - early_fragment_tests - - - points - lines - lines_adjacency - triangles - triangles_adjacency - line_strip - triangle_strip - max_vertices - invocations - stream - - - isolines - triangles - quads - point_mode - equal_spacing - fractional_even_spacing - fractional_odd_spacing - cw - ccw - vertices - - - coherent - volatile - restrict - readonly - writeonly - - - FIXME - TODO - BUG - - - - abs - acos - acosh - glActiveShaderProgram - glActiveTexture - all - any - asin - asinh - atan - atanh - atomicAdd - atomicAnd - atomicCompSwap - atomicCounter - atomicCounterDecrement - atomicCounterIncrement - atomicExchange - atomicMax - atomicMin - atomicOr - atomicXor - glAttachShader - barrier - glBeginConditionalRender - glBeginQuery - glBeginQueryIndexed - glBeginTransformFeedback - glBindAttribLocation - glBindBuffer - glBindBufferBase - glBindBufferRange - glBindBuffersBase - glBindBuffersRange - glBindFragDataLocation - glBindFragDataLocationIndexed - glBindFramebuffer - glBindImageTexture - glBindImageTextures - glBindProgramPipeline - glBindRenderbuffer - glBindSampler - glBindSamplers - glBindTexture - glBindTextures - glBindTextureUnit - glBindTransformFeedback - glBindVertexArray - glBindVertexBuffer - glBindVertexBuffers - bitCount - bitfieldExtract - bitfieldInsert - bitfieldReverse - glBlendColor - glBlendEquation - glBlendEquationi - glBlendEquationSeparate - glBlendEquationSeparatei - glBlendFunc - glBlendFunci - glBlendFuncSeparate - glBlendFuncSeparatei - glBlitFramebuffer - glBlitNamedFramebuffer - glBufferData - glBufferStorage - glBufferSubData - ceil - glCheckFramebufferStatus - glCheckNamedFramebufferStatus - clamp - glClampColor - glClear - glClearBuffer - glClearBufferData - glClearBufferfi - glClearBufferfv - glClearBufferiv - glClearBufferSubData - glClearBufferuiv - glClearColor - glClearDepth - glClearDepthf - glClearNamedBufferData - glClearNamedBufferSubData - glClearNamedFramebufferfi - glClearNamedFramebufferfv - glClearNamedFramebufferiv - glClearNamedFramebufferuiv - glClearStencil - glClearTexImage - glClearTexSubImage - glClientWaitSync - glClipControl - glColorMask - glColorMaski - glCompileShader - glCompressedTexImage1D - glCompressedTexImage2D - glCompressedTexImage3D - glCompressedTexSubImage1D - glCompressedTexSubImage2D - glCompressedTexSubImage3D - glCompressedTextureSubImage1D - glCompressedTextureSubImage2D - glCompressedTextureSubImage3D - glCopyBufferSubData - glCopyImageSubData - glCopyNamedBufferSubData - glCopyTexImage1D - glCopyTexImage2D - glCopyTexSubImage1D - glCopyTexSubImage2D - glCopyTexSubImage3D - glCopyTextureSubImage1D - glCopyTextureSubImage2D - glCopyTextureSubImage3D - cos - cosh - glCreateBuffers - glCreateFramebuffers - glCreateProgram - glCreateProgramPipelines - glCreateQueries - glCreateRenderbuffers - glCreateSamplers - glCreateShader - glCreateShaderProgram - glCreateShaderProgramv - glCreateTextures - glCreateTransformFeedbacks - glCreateVertexArrays - cross - glCullFace - glDebugMessageCallback - glDebugMessageControl - glDebugMessageInsert - degrees - glDeleteBuffers - glDeleteFramebuffers - glDeleteProgram - glDeleteProgramPipelines - glDeleteQueries - glDeleteRenderbuffers - glDeleteSamplers - glDeleteShader - glDeleteSync - glDeleteTextures - glDeleteTransformFeedbacks - glDeleteVertexArrays - glDepthFunc - glDepthMask - glDepthRange - glDepthRangeArray - glDepthRangeArrayv - glDepthRangef - glDepthRangeIndexed - glDetachShader - determinant - dFdx - dFdxCoarse - dFdxFine - dFdy - dFdyCoarse - dFdyFine - glDisable - glDisablei - glDisableVertexArrayAttrib - glDisableVertexAttribArray - glDispatchCompute - glDispatchComputeIndirect - distance - dot - glDrawArrays - glDrawArraysIndirect - glDrawArraysInstanced - glDrawArraysInstancedBaseInstance - glDrawBuffer - glDrawBuffers - glDrawElements - glDrawElementsBaseVertex - glDrawElementsIndirect - glDrawElementsInstanced - glDrawElementsInstancedBaseInstance - glDrawElementsInstancedBaseVertex - glDrawElementsInstancedBaseVertexBaseInstance - glDrawRangeElements - glDrawRangeElementsBaseVertex - glDrawTransformFeedback - glDrawTransformFeedbackInstanced - glDrawTransformFeedbackStream - glDrawTransformFeedbackStreamInstanced - EmitStreamVertex - EmitVertex - glEnable - glEnablei - glEnableVertexArrayAttrib - glEnableVertexAttribArray - glEndConditionalRender - EndPrimitive - glEndQuery - glEndQueryIndexed - EndStreamPrimitive - glEndTransformFeedback - equal - exp - exp2 - faceforward - glFenceSync - findLSB - findMSB - glFinish - floatBitsToInt - floatBitsToUint - floor - glFlush - glFlushMappedBufferRange - glFlushMappedNamedBufferRange - fma - fract - glFramebufferParameteri - glFramebufferRenderbuffer - glFramebufferTexture - glFramebufferTexture1D - glFramebufferTexture2D - glFramebufferTexture3D - glFramebufferTextureLayer - frexp - glFrontFace - fwidth - fwidthCoarse - fwidthFine - glGenBuffers - glGenerateMipmap - glGenerateTextureMipmap - glGenFramebuffers - glGenProgramPipelines - glGenQueries - glGenRenderbuffers - glGenSamplers - glGenTextures - glGenTransformFeedbacks - glGenVertexArrays - glGet - glGetActiveAtomicCounterBufferiv - glGetActiveAttrib - glGetActiveSubroutineName - glGetActiveSubroutineUniform - glGetActiveSubroutineUniformiv - glGetActiveSubroutineUniformName - glGetActiveUniform - glGetActiveUniformBlock - glGetActiveUniformBlockiv - glGetActiveUniformBlockName - glGetActiveUniformName - glGetActiveUniformsiv - glGetAttachedShaders - glGetAttribLocation - glGetBooleani_v - glGetBooleanv - glGetBufferParameter - glGetBufferParameteri64v - glGetBufferParameteriv - glGetBufferPointerv - glGetBufferSubData - glGetCompressedTexImage - glGetCompressedTextureImage - glGetCompressedTextureSubImage - glGetDebugMessageLog - glGetDoublei_v - glGetDoublev - glGetError - glGetFloati_v - glGetFloatv - glGetFragDataIndex - glGetFragDataLocation - glGetFramebufferAttachmentParameter - glGetFramebufferAttachmentParameteriv - glGetFramebufferParameter - glGetFramebufferParameteriv - glGetGraphicsResetStatus - glGetInteger64i_v - glGetInteger64v - glGetIntegeri_v - glGetIntegerv - glGetInternalformat - glGetInternalformati64v - glGetInternalformativ - glGetMultisample - glGetMultisamplefv - glGetNamedBufferParameteri64v - glGetNamedBufferParameteriv - glGetNamedBufferPointerv - glGetNamedBufferSubData - glGetNamedFramebufferAttachmentParameteriv - glGetNamedFramebufferParameteriv - glGetNamedRenderbufferParameteriv - glGetnCompressedTexImage - glGetnTexImage - glGetnUniformdv - glGetnUniformfv - glGetnUniformiv - glGetnUniformuiv - glGetObjectLabel - glGetObjectPtrLabel - glGetPointerv - glGetProgram - glGetProgramBinary - glGetProgramInfoLog - glGetProgramInterface - glGetProgramInterfaceiv - glGetProgramiv - glGetProgramPipeline - glGetProgramPipelineInfoLog - glGetProgramPipelineiv - glGetProgramResource - glGetProgramResourceIndex - glGetProgramResourceiv - glGetProgramResourceLocation - glGetProgramResourceLocationIndex - glGetProgramResourceName - glGetProgramStage - glGetProgramStageiv - glGetQueryIndexed - glGetQueryIndexediv - glGetQueryiv - glGetQueryObject - glGetQueryObjecti64v - glGetQueryObjectiv - glGetQueryObjectui64v - glGetQueryObjectuiv - glGetRenderbufferParameter - glGetRenderbufferParameteriv - glGetSamplerParameter - glGetSamplerParameterfv - glGetSamplerParameterIiv - glGetSamplerParameterIuiv - glGetSamplerParameteriv - glGetShader - glGetShaderInfoLog - glGetShaderiv - glGetShaderPrecisionFormat - glGetShaderSource - glGetString - glGetStringi - glGetSubroutineIndex - glGetSubroutineUniformLocation - glGetSync - glGetSynciv - glGetTexImage - glGetTexLevelParameter - glGetTexLevelParameterfv - glGetTexLevelParameteriv - glGetTexParameter - glGetTexParameterfv - glGetTexParameterIiv - glGetTexParameterIuiv - glGetTexParameteriv - glGetTextureImage - glGetTextureLevelParameterfv - glGetTextureLevelParameteriv - glGetTextureParameterfv - glGetTextureParameterIiv - glGetTextureParameterIuiv - glGetTextureParameteriv - glGetTextureSubImage - glGetTransformFeedback - glGetTransformFeedbacki64_v - glGetTransformFeedbacki_v - glGetTransformFeedbackiv - glGetTransformFeedbackVarying - glGetUniform - glGetUniformBlockIndex - glGetUniformdv - glGetUniformfv - glGetUniformIndices - glGetUniformiv - glGetUniformLocation - glGetUniformSubroutine - glGetUniformSubroutineuiv - glGetUniformuiv - glGetVertexArrayIndexed - glGetVertexArrayIndexed64iv - glGetVertexArrayIndexediv - glGetVertexArrayiv - glGetVertexAttrib - glGetVertexAttribdv - glGetVertexAttribfv - glGetVertexAttribIiv - glGetVertexAttribIuiv - glGetVertexAttribiv - glGetVertexAttribLdv - glGetVertexAttribPointerv - gl_ClipDistance - gl_CullDistance - gl_FragCoord - gl_FragDepth - gl_FrontFacing - gl_GlobalInvocationID - gl_HelperInvocation - gl_InstanceID - gl_InvocationID - gl_Layer - gl_LocalInvocationID - gl_LocalInvocationIndex - gl_NumSamples - gl_NumWorkGroups - gl_PatchVerticesIn - gl_PointCoord - gl_PointSize - gl_Position - gl_PrimitiveID - gl_PrimitiveIDIn - gl_SampleID - gl_SampleMask - gl_SampleMaskIn - gl_SamplePosition - gl_TessCoord - gl_TessLevelInner - gl_TessLevelOuter - gl_VertexID - gl_ViewportIndex - gl_WorkGroupID - gl_WorkGroupSize - greaterThan - greaterThanEqual - groupMemoryBarrier - glHint - imageAtomicAdd - imageAtomicAnd - imageAtomicCompSwap - imageAtomicExchange - imageAtomicMax - imageAtomicMin - imageAtomicOr - imageAtomicXor - imageLoad - imageSamples - imageSize - imageStore - imulExtended - intBitsToFloat - interpolateAtCentroid - interpolateAtOffset - interpolateAtSample - glInvalidateBufferData - glInvalidateBufferSubData - glInvalidateFramebuffer - glInvalidateNamedFramebufferData - glInvalidateNamedFramebufferSubData - glInvalidateSubFramebuffer - glInvalidateTexImage - glInvalidateTexSubImage - inverse - inversesqrt - glIsBuffer - glIsEnabled - glIsEnabledi - glIsFramebuffer - isinf - isnan - glIsProgram - glIsProgramPipeline - glIsQuery - glIsRenderbuffer - glIsSampler - glIsShader - glIsSync - glIsTexture - glIsTransformFeedback - glIsVertexArray - ldexp - length - lessThan - lessThanEqual - glLineWidth - glLinkProgram - log - log2 - glLogicOp - glMapBuffer - glMapBufferRange - glMapNamedBuffer - glMapNamedBufferRange - matrixCompMult - max - memoryBarrier - glMemoryBarrier - memoryBarrierAtomicCounter - memoryBarrierBuffer - glMemoryBarrierByRegion - memoryBarrierImage - memoryBarrierShared - min - glMinSampleShading - mix - mod - modf - glMultiDrawArrays - glMultiDrawArraysIndirect - glMultiDrawElements - glMultiDrawElementsBaseVertex - glMultiDrawElementsIndirect - glNamedBufferData - glNamedBufferStorage - glNamedBufferSubData - glNamedFramebufferDrawBuffer - glNamedFramebufferDrawBuffers - glNamedFramebufferParameteri - glNamedFramebufferReadBuffer - glNamedFramebufferRenderbuffer - glNamedFramebufferTexture - glNamedFramebufferTextureLayer - glNamedRenderbufferStorage - glNamedRenderbufferStorageMultisample - noise - noise1 - noise2 - noise3 - noise4 - normalize - not - notEqual - glObjectLabel - glObjectPtrLabel - outerProduct - packDouble2x32 - packHalf2x16 - packSnorm2x16 - packSnorm4x8 - packUnorm - packUnorm2x16 - packUnorm4x8 - glPatchParameter - glPatchParameterfv - glPatchParameteri - glPauseTransformFeedback - glPixelStore - glPixelStoref - glPixelStorei - glPointParameter - glPointParameterf - glPointParameterfv - glPointParameteri - glPointParameteriv - glPointSize - glPolygonMode - glPolygonOffset - glPopDebugGroup - pow - glPrimitiveRestartIndex - glProgramBinary - glProgramParameter - glProgramParameteri - glProgramUniform - glProgramUniform1f - glProgramUniform1fv - glProgramUniform1i - glProgramUniform1iv - glProgramUniform1ui - glProgramUniform1uiv - glProgramUniform2f - glProgramUniform2fv - glProgramUniform2i - glProgramUniform2iv - glProgramUniform2ui - glProgramUniform2uiv - glProgramUniform3f - glProgramUniform3fv - glProgramUniform3i - glProgramUniform3iv - glProgramUniform3ui - glProgramUniform3uiv - glProgramUniform4f - glProgramUniform4fv - glProgramUniform4i - glProgramUniform4iv - glProgramUniform4ui - glProgramUniform4uiv - glProgramUniformMatrix2fv - glProgramUniformMatrix2x3fv - glProgramUniformMatrix2x4fv - glProgramUniformMatrix3fv - glProgramUniformMatrix3x2fv - glProgramUniformMatrix3x4fv - glProgramUniformMatrix4fv - glProgramUniformMatrix4x2fv - glProgramUniformMatrix4x3fv - glProvokingVertex - glPushDebugGroup - glQueryCounter - radians - glReadBuffer - glReadnPixels - glReadPixels - reflect - refract - glReleaseShaderCompiler - removedTypes - glRenderbufferStorage - glRenderbufferStorageMultisample - glResumeTransformFeedback - round - roundEven - glSampleCoverage - glSampleMaski - glSamplerParameter - glSamplerParameterf - glSamplerParameterfv - glSamplerParameteri - glSamplerParameterIiv - glSamplerParameterIuiv - glSamplerParameteriv - glScissor - glScissorArray - glScissorArrayv - glScissorIndexed - glScissorIndexedv - glShaderBinary - glShaderSource - glShaderStorageBlockBinding - sign - sin - sinh - smoothstep - sqrt - glStencilFunc - glStencilFuncSeparate - glStencilMask - glStencilMaskSeparate - glStencilOp - glStencilOpSeparate - step - tan - tanh - glTexBuffer - glTexBufferRange - texelFetch - texelFetchOffset - glTexImage1D - glTexImage2D - glTexImage2DMultisample - glTexImage3D - glTexImage3DMultisample - glTexParameter - glTexParameterf - glTexParameterfv - glTexParameteri - glTexParameterIiv - glTexParameterIuiv - glTexParameteriv - glTexStorage1D - glTexStorage2D - glTexStorage2DMultisample - glTexStorage3D - glTexStorage3DMultisample - glTexSubImage1D - glTexSubImage2D - glTexSubImage3D - texture - glTextureBarrier - glTextureBuffer - glTextureBufferRange - textureGather - textureGatherOffset - textureGatherOffsets - textureGrad - textureGradOffset - textureLod - textureLodOffset - textureOffset - glTextureParameterf - glTextureParameterfv - glTextureParameteri - glTextureParameterIiv - glTextureParameterIuiv - glTextureParameteriv - textureProj - textureProjGrad - textureProjGradOffset - textureProjLod - textureProjLodOffset - textureProjOffset - textureQueryLevels - textureQueryLod - textureSamples - textureSize - glTextureStorage1D - glTextureStorage2D - glTextureStorage2DMultisample - glTextureStorage3D - glTextureStorage3DMultisample - glTextureSubImage1D - glTextureSubImage2D - glTextureSubImage3D - glTextureView - glTransformFeedbackBufferBase - glTransformFeedbackBufferRange - glTransformFeedbackVaryings - transpose - trunc - uaddCarry - uintBitsToFloat - umulExtended - glUniform - glUniform1f - glUniform1fv - glUniform1i - glUniform1iv - glUniform1ui - glUniform1uiv - glUniform2f - glUniform2fv - glUniform2i - glUniform2iv - glUniform2ui - glUniform2uiv - glUniform3f - glUniform3fv - glUniform3i - glUniform3iv - glUniform3ui - glUniform3uiv - glUniform4f - glUniform4fv - glUniform4i - glUniform4iv - glUniform4ui - glUniform4uiv - glUniformBlockBinding - glUniformMatrix2fv - glUniformMatrix2x3fv - glUniformMatrix2x4fv - glUniformMatrix3fv - glUniformMatrix3x2fv - glUniformMatrix3x4fv - glUniformMatrix4fv - glUniformMatrix4x2fv - glUniformMatrix4x3fv - glUniformSubroutines - glUniformSubroutinesuiv - glUnmapBuffer - glUnmapNamedBuffer - unpackDouble2x32 - unpackHalf2x16 - unpackSnorm2x16 - unpackSnorm4x8 - unpackUnorm - unpackUnorm2x16 - unpackUnorm4x8 - glUseProgram - glUseProgramStages - usubBorrow - glValidateProgram - glValidateProgramPipeline - glVertexArrayAttribBinding - glVertexArrayAttribFormat - glVertexArrayAttribIFormat - glVertexArrayAttribLFormat - glVertexArrayBindingDivisor - glVertexArrayElementBuffer - glVertexArrayVertexBuffer - glVertexArrayVertexBuffers - glVertexAttrib - glVertexAttrib1d - glVertexAttrib1dv - glVertexAttrib1f - glVertexAttrib1fv - glVertexAttrib1s - glVertexAttrib1sv - glVertexAttrib2d - glVertexAttrib2dv - glVertexAttrib2f - glVertexAttrib2fv - glVertexAttrib2s - glVertexAttrib2sv - glVertexAttrib3d - glVertexAttrib3dv - glVertexAttrib3f - glVertexAttrib3fv - glVertexAttrib3s - glVertexAttrib3sv - glVertexAttrib4bv - glVertexAttrib4d - glVertexAttrib4dv - glVertexAttrib4f - glVertexAttrib4fv - glVertexAttrib4iv - glVertexAttrib4Nbv - glVertexAttrib4Niv - glVertexAttrib4Nsv - glVertexAttrib4Nub - glVertexAttrib4Nubv - glVertexAttrib4Nuiv - glVertexAttrib4Nusv - glVertexAttrib4s - glVertexAttrib4sv - glVertexAttrib4ubv - glVertexAttrib4uiv - glVertexAttrib4usv - glVertexAttribBinding - glVertexAttribDivisor - glVertexAttribFormat - glVertexAttribI1i - glVertexAttribI1iv - glVertexAttribI1ui - glVertexAttribI1uiv - glVertexAttribI2i - glVertexAttribI2iv - glVertexAttribI2ui - glVertexAttribI2uiv - glVertexAttribI3i - glVertexAttribI3iv - glVertexAttribI3ui - glVertexAttribI3uiv - glVertexAttribI4bv - glVertexAttribI4i - glVertexAttribI4iv - glVertexAttribI4sv - glVertexAttribI4ubv - glVertexAttribI4ui - glVertexAttribI4uiv - glVertexAttribI4usv - glVertexAttribIFormat - glVertexAttribIPointer - glVertexAttribL1d - glVertexAttribL1dv - glVertexAttribL2d - glVertexAttribL2dv - glVertexAttribL3d - glVertexAttribL3dv - glVertexAttribL4d - glVertexAttribL4dv - glVertexAttribLFormat - glVertexAttribLPointer - glVertexAttribP1ui - glVertexAttribP2ui - glVertexAttribP3ui - glVertexAttribP4ui - glVertexAttribPointer - glVertexBindingDivisor - glViewport - glViewportArray - glViewportArrayv - glViewportIndexed - glViewportIndexedf - glViewportIndexedfv - glWaitSync - - - - gl_Position - gl_PointSize - gl_ClipVertex - - - gl_FragCoord - gl_FragFacing - gl_FragColor - gl_FragData - gl_FragDepth - - - gl_Color - gl_SecondaryColor - gl_Normal - gl_Vertex - gl_MultiTexCoord0 - gl_MultiTexCoord1 - gl_MultiTexCoord2 - gl_MultiTexCoord2 - gl_MultiTexCoord3 - gl_MultiTexCoord4 - gl_MultiTexCoord5 - gl_MultiTexCoord6 - gl_MultiTexCoord7 - gl_FogColor - - - gl_ClipDistance - gl_PrimitiveIDIn - gl_InvocationID - gl_PrimitiveID - gl_Layer - gl_ViewportIndex - - - gl_TessCoord - gl_PatchVerticesIn - gl_TessLevelOuter - gl_TessLevelInner - gl_MaxPatchVertices - gl_in - gl_out - - - gl_MaxLights - gl_MaxClipPlanes - gl_MaxTextureUnits - gl_MaxTextureCoords - gl_MaxVertexAttributes - gl_MaxVertexUniformComponents - gl_MaxVaryingFloats - gl_MaxVertexTextureImageUnits - gl_MaxCombinedTextureImageUnits - gl_MaxTextureImageUnits - gl_MaxFragmentUniformComponents - gl_MaxDrawBuffers - - - gl_ModelViewMatrix - gl_ProjectionMatrix - gl_ModelViewProjectionMatrix - gl_TextureMatrix - gl_NormalMatrix - gl_ModelViewMatrixInverse - gl_ProjectionMatrixInverse - gl_ModelViewProjectionMatrixInverse - gl_TextureMatrixInverse - gl_ModelViewMatrixTranspose - gl_ProjectionMatrixTranspose - gl_ModelViewProjectionMatrixTranspose - gl_TextureMatrixTranspose - gl_ModelViewMatrixInverseTranspose - gl_ProjectionMatrixInverseTranspose - gl_ModelViewProjectionMatrixInverseTranspose - gl_TextureMatrixInverseTranspose - gl_NormScale - gl_DepthRangeParameters - gl_DepthRange - gl_ClipPlane - gl_PointParameters - gl_Point - gl_MaterialParameters - gl_FrontMaterial - gl_BackMaterial - gl_LightSourceParameters - gl_LightSource - gl_LightModelParameters - gl_LightModel - gl_LightModelProducts - gl_FrontLightModelProduct - gl_BackLightModelProduct - gl_LightProducts - gl_FrontLightProduct - gl_BackLightProduct - gl_TextureEnvColor - gl_EyePlaneS - gl_EyePlaneT - gl_EyePlaneR - gl_EyePlaneQ - gl_ObjectPlaneS - gl_ObjectPlaneT - gl_ObjectPlaneR - gl_ObjectPlaneQ - gl_FogParameters - gl_Fog - - - gl_FrontColor - gl_BackColor - gl_FrontSecondaryColor - gl_BackSecondaryColor - gl_TexCoord - gl_FogFragCoord - gl_Color - gl_SecondaryColor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/gnuassembler.xml ktexteditor-5.31.0/src/syntax/data/gnuassembler.xml --- ktexteditor-5.28.0/src/syntax/data/gnuassembler.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gnuassembler.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,303 +0,0 @@ - - - - - - - - .abort - .align - .app-file - .appline - .ascii - .asciz - .att_syntax - .balign - .balignl - .balignw - .byte - .code16 - .code32 - .comm - .common.s - .common - .data - .dc.b - .dc.d - .dc.l - .dc.s - .dc.w - .dc.x - .dc - .dcb.b - .dcb.d - .dcb.l - .dcb.s - .dcb.w - .dcb.x - .dcb - .debug - .def - .desc - .dim - .double - .ds.b - .ds.d - .ds.l - .ds.p - .ds.s - .ds.w - .ds.x - .ds - .dsect - .eject - .else - .elsec - .elseif - .end - .endc - .endef - .endfunc - .endif - .endm - .endr - .equ - .equiv - .err - .exitm - .extend - .extern - .fail - .file - .fill - .float - .format - .func - .global - .globl - .hidden - .hword - .ident - .if - .ifc - .ifdef - .ifeq - .ifeqs - .ifge - .ifgt - .ifle - .iflt - .ifnc - .ifndef - .ifne - .ifnes - .ifnotdef - .include - .int - .intel_syntax - .internal - .irep - .irepc - .irp - .irpc - .lcomm - .lflags - .line - .linkonce - .list - .llen - .ln - .long - .lsym - .macro - .mexit - .name - .noformat - .nolist - .nopage - noprefix - .octa - .offset - .org - .p2align - .p2alignl - .p2alignw - .page - .plen - .popsection - .previous - .print - .protected - .psize - .purgem - .pushsection - .quad - .rodata - .rep - .rept - .rva - .sbttl - .scl - .sect.s - .sect - .section.s - .section - .set - .short - .single - .size - .skip - .sleb128 - .space - .spc - .stabd - .stabn - .stabs - .string - .struct - .subsection - .symver - .tag - .text - .title - .ttl - .type - .uleb128 - .use - .val - .version - .vtable_entry - .vtable_inherit - .weak - .word - .xcom - .xdef - .xref - .xstabs - .zero - - .arm - .bss - .code - .even - .force_thumb - .ldouble - .loc - .ltorg - .packed - .pool - .req - .thumb - .thumb_func - .thumb_set - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/gnuplot.xml ktexteditor-5.31.0/src/syntax/data/gnuplot.xml --- ktexteditor-5.28.0/src/syntax/data/gnuplot.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/gnuplot.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,890 +0,0 @@ - - - - - - noarrow - noborder - noclabel - noclip - nocontour - nodgrid3d - nogrid - nohidden3d - nokey - nolabel - nolinestyle - nomultiplot - nomx2tics - nomxtics - nomy2tics - nomytics - nomztics - nooffsets - noparametric - nopolar - nosurface - notimestamp - nox2dtics - nox2mtics - nox2tics - nox2zeroaxis - noxdtics - noxmtics - noxtics - noxzeroaxis - noy2dtics - noy2mtics - noy2tics - noy2zeroaxis - noydtics - noymtics - noytics - noyzeroaxis - nozdtics - nozeroaxis - nozmtics - noztics - - - - grid - parametric - - - - angles - arrow - bar - border - boxwidth - clip - cntrparam - data - dgrid3d - dummy - encoding - format - function - functions - hidden3d - isosamples - label - linestyle - mapping - margin - mx2tics - mxtics - my2tics - mytics - mztics - offsets - origin - parametric - pointsize - polar - samples - size - data style - function style - surface - tics - ticscale - ticslevel - timefmt - timestamp - variables - version - view - x2data - x2dtics - x2label - x2mtics - x2tics - x2zeroaxis - xdata - xdtics - xmtics - xtics - xzeroaxis - y2data - y2dtics - y2mtics - y2tics - y2zeroaxis - ydata - ydtics - ymtics - ytics - yzeroaxis - zdata - zdtics - zero - zeroaxis - zmtics - ztics - - - - clabel - title - xlabel - x2label - ylabel - y2label - zlabel - - - - rrange - trange - urange - vrange - x2range - xrange - y2range - yrange - zrange - - - - base - surface - both - - - - left - right - top - bottom - outside - below - Left - Right - noreverse - reverse - - - - noautoscale - autoscale - nologscale - - - - x - y - z - x2 - y2 - xy - - - - aed512 - aed767 - aifm - bitgraph - cgm - dumb - dxf - dxy800a - eepic - epson-180dpi - epson-60dpi - epson-lx800 - excl - gpic - hp2623a - hp2648 - kc-tek40xx - km-tek40xx - kyo - mf - mif - mp - nec-cp6 - okidata - prescribe - pstricks - qms - regis - rgip - selanar - starc - table - tandy-60dpi - tek40xx - tek410x - texdraw - uniplex - unixplot - vttek - vx384 - x11 - - - - landscape - portrait - eps - default - enhanced - noenhanced - solid - dashed - defaultplex - simplex - duplex - - - - courier - roman - default - - - - color - monochrome - dashed - rotate - norotate - auxfile - - - - transparent - notransparent - - - - small - medium - large - monochrome - gray - color - - - - landscape - portrait - solid - dashed - - - - monochrome - color - small - big - pointsmax - landscape - portrait - metric - inches - fontsize - size - thickness - depth - - - - monochrome - color - - - - FNT5X9 - FNT9X17 - FNT13X25 - - - - mode - landscape - portrait - monochrome - color - solid - dashed - letter - legal - noextended - extended - stick - univers - cg_times - zapf_dingbats - antique_olive - arial - courier - garamond_antigua - letter_gothic - cg_omega - albertus - times_new_roman - clarendon - coronet - marigold - truetype_symbols - wingdings - - - - 75 - 100 - 150 - 300 - - - - landscape - portrait - - - - acsplines - bezier - csplines - sbezier - unique - - - - x1y1 - x2y1 - x1y2 - x2y2 - - - - lines - l - points - p - linespoints - linesp - impulses - i - dots - d - steps - fsteps - histeps - - - - errorbars - xerrorbars - yerrorbars - xyerrorbars - boxes - boxerrorbars - boxxyerrorbars - financebars - candlesticks - vector - - - - linestyle - ls - linetype - lt - linewidth - lw - pointtype - pt - pointsize - ps - - - - replot - exit - quit - clear - reset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/go.xml ktexteditor-5.31.0/src/syntax/data/go.xml --- ktexteditor-5.28.0/src/syntax/data/go.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/go.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,176 +0,0 @@ - - - - - - - - - - - break - case - chan - const - continue - default - defer - else - fallthrough - for - func - go - goto - if - import - interface - map - package - range - return - select - struct - switch - type - var - - - bool - byte - complex64 - complex128 - error - float32 - float64 - int - int8 - int16 - int32 - int64 - rune - string - uint - uintptr - uint8 - uint16 - uint32 - uint64 - - - append - cap - close - complex - copy - delete - imag - len - make - new - panic - print - println - real - recover - - - false - nil - true - iota - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/grammar.xml ktexteditor-5.31.0/src/syntax/data/grammar.xml --- ktexteditor-5.28.0/src/syntax/data/grammar.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/grammar.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,145 +0,0 @@ - - - - - - - ast_extra_members - export_macro - export_macro_header - namespace - parserclass - token - token_stream - parser_declaration_header - parser_bits_header - ast_header - ast_base - parser_base - bin - pre - post - tern - paren - left - right - < - > - - - try/rollback - try/recover - catch - - - public - protected - private - - - declaration - destructor - constructor - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/groovy.xml ktexteditor-5.31.0/src/syntax/data/groovy.xml --- ktexteditor-5.28.0/src/syntax/data/groovy.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/groovy.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3884 +0,0 @@ - - - - - - - ACTIVE - ACTIVITY_COMPLETED - ACTIVITY_REQUIRED - ARG_IN - ARG_INOUT - ARG_OUT - AWTError - AWTEvent - AWTEventListener - AWTEventListenerProxy - AWTEventMulticaster - AWTException - AWTKeyStroke - AWTPermission - AbstractAction - AbstractBorder - AbstractButton - AbstractCellEditor - AbstractCollection - AbstractColorChooserPanel - AbstractDocument - AbstractDocument.AttributeContext - AbstractDocument.Content - AbstractDocument.ElementEdit - AbstractExecutorService - AbstractInterruptibleChannel - AbstractLayoutCache - AbstractLayoutCache.NodeDimensions - AbstractList - AbstractListModel - AbstractMap - AbstractMethodError - AbstractPreferences - AbstractQueue - AbstractQueuedSynchronizer - AbstractSelectableChannel - AbstractSelectionKey - AbstractSelector - AbstractSequentialList - AbstractSet - AbstractSpinnerModel - AbstractTableModel - AbstractUndoableEdit - AbstractWriter - AccessControlContext - AccessControlException - AccessController - AccessException - Accessible - AccessibleAction - AccessibleAttributeSequence - AccessibleBundle - AccessibleComponent - AccessibleContext - AccessibleEditableText - AccessibleExtendedComponent - AccessibleExtendedTable - AccessibleExtendedText - AccessibleHyperlink - AccessibleHypertext - AccessibleIcon - AccessibleKeyBinding - AccessibleObject - AccessibleRelation - AccessibleRelationSet - AccessibleResourceBundle - AccessibleRole - AccessibleSelection - AccessibleState - AccessibleStateSet - AccessibleStreamable - AccessibleTable - AccessibleTableModelChange - AccessibleText - AccessibleTextSequence - AccessibleValue - AccountException - AccountExpiredException - AccountLockedException - AccountNotFoundException - Acl - AclEntry - AclNotFoundException - Action - ActionEvent - ActionListener - ActionMap - ActionMapUIResource - Activatable - ActivateFailedException - ActivationDesc - ActivationException - ActivationGroup - ActivationGroupDesc - ActivationGroupDesc.CommandEnvironment - ActivationGroupID - ActivationGroup_Stub - ActivationID - ActivationInstantiator - ActivationMonitor - ActivationSystem - Activator - ActiveEvent - ActivityCompletedException - ActivityRequiredException - AdapterActivator - AdapterActivatorOperations - AdapterAlreadyExists - AdapterAlreadyExistsHelper - AdapterInactive - AdapterInactiveHelper - AdapterManagerIdHelper - AdapterNameHelper - AdapterNonExistent - AdapterNonExistentHelper - AdapterStateHelper - AddressHelper - Adjustable - AdjustmentEvent - AdjustmentListener - Adler32 - AffineTransform - AffineTransformOp - AlgorithmParameterGenerator - AlgorithmParameterGeneratorSpi - AlgorithmParameterSpec - AlgorithmParameters - AlgorithmParametersSpi - AllPermission - AlphaComposite - AlreadyBound - AlreadyBoundException - AlreadyBoundHelper - AlreadyBoundHolder - AlreadyConnectedException - AncestorEvent - AncestorListener - AnnotatedElement - Annotation - Annotation - AnnotationFormatError - AnnotationTypeMismatchException - Any - AnyHolder - AnySeqHelper - AnySeqHelper - AnySeqHolder - AppConfigurationEntry - AppConfigurationEntry.LoginModuleControlFlag - Appendable - Applet - AppletContext - AppletInitializer - AppletStub - ApplicationException - Arc2D - Arc2D.Double - Arc2D.Float - Area - AreaAveragingScaleFilter - ArithmeticException - Array - Array - ArrayBlockingQueue - ArrayIndexOutOfBoundsException - ArrayList - ArrayStoreException - ArrayType - Arrays - AssertionError - AsyncBoxView - AsynchronousCloseException - AtomicBoolean - AtomicInteger - AtomicIntegerArray - AtomicIntegerFieldUpdater - AtomicLong - AtomicLongArray - AtomicLongFieldUpdater - AtomicMarkableReference - AtomicReference - AtomicReferenceArray - AtomicReferenceFieldUpdater - AtomicStampedReference - Attr - Attribute - Attribute - Attribute - AttributeChangeNotification - AttributeChangeNotificationFilter - AttributeException - AttributeInUseException - AttributeList - AttributeList - AttributeList - AttributeListImpl - AttributeModificationException - AttributeNotFoundException - AttributeSet - AttributeSet - AttributeSet.CharacterAttribute - AttributeSet.ColorAttribute - AttributeSet.FontAttribute - AttributeSet.ParagraphAttribute - AttributeSetUtilities - AttributeValueExp - AttributedCharacterIterator - AttributedCharacterIterator.Attribute - AttributedString - Attributes - Attributes - Attributes - Attributes.Name - Attributes2 - Attributes2Impl - AttributesImpl - AudioClip - AudioFileFormat - AudioFileFormat.Type - AudioFileReader - AudioFileWriter - AudioFormat - AudioFormat.Encoding - AudioInputStream - AudioPermission - AudioSystem - AuthPermission - AuthProvider - AuthenticationException - AuthenticationException - AuthenticationNotSupportedException - Authenticator - Authenticator.RequestorType - AuthorizeCallback - Autoscroll - BAD_CONTEXT - BAD_INV_ORDER - BAD_OPERATION - BAD_PARAM - BAD_POLICY - BAD_POLICY_TYPE - BAD_POLICY_VALUE - BAD_QOS - BAD_TYPECODE - BMPImageWriteParam - BackingStoreException - BadAttributeValueExpException - BadBinaryOpValueExpException - BadKind - BadLocationException - BadPaddingException - BadStringOperationException - BandCombineOp - BandedSampleModel - BaseRowSet - BasicArrowButton - BasicAttribute - BasicAttributes - BasicBorders - BasicBorders.ButtonBorder - BasicBorders.FieldBorder - BasicBorders.MarginBorder - BasicBorders.MenuBarBorder - BasicBorders.RadioButtonBorder - BasicBorders.RolloverButtonBorder - BasicBorders.SplitPaneBorder - BasicBorders.ToggleButtonBorder - BasicButtonListener - BasicButtonUI - BasicCheckBoxMenuItemUI - BasicCheckBoxUI - BasicColorChooserUI - BasicComboBoxEditor - BasicComboBoxEditor.UIResource - BasicComboBoxRenderer - BasicComboBoxRenderer.UIResource - BasicComboBoxUI - BasicComboPopup - BasicControl - BasicDesktopIconUI - BasicDesktopPaneUI - BasicDirectoryModel - BasicEditorPaneUI - BasicFileChooserUI - BasicFormattedTextFieldUI - BasicGraphicsUtils - BasicHTML - BasicIconFactory - BasicInternalFrameTitlePane - BasicInternalFrameUI - BasicLabelUI - BasicListUI - BasicLookAndFeel - BasicMenuBarUI - BasicMenuItemUI - BasicMenuUI - BasicOptionPaneUI - BasicOptionPaneUI.ButtonAreaLayout - BasicPanelUI - BasicPasswordFieldUI - BasicPermission - BasicPopupMenuSeparatorUI - BasicPopupMenuUI - BasicProgressBarUI - BasicRadioButtonMenuItemUI - BasicRadioButtonUI - BasicRootPaneUI - BasicScrollBarUI - BasicScrollPaneUI - BasicSeparatorUI - BasicSliderUI - BasicSpinnerUI - BasicSplitPaneDivider - BasicSplitPaneUI - BasicStroke - BasicTabbedPaneUI - BasicTableHeaderUI - BasicTableUI - BasicTextAreaUI - BasicTextFieldUI - BasicTextPaneUI - BasicTextUI - BasicTextUI.BasicCaret - BasicTextUI.BasicHighlighter - BasicToggleButtonUI - BasicToolBarSeparatorUI - BasicToolBarUI - BasicToolTipUI - BasicTreeUI - BasicViewportUI - BatchUpdateException - BeanContext - BeanContextChild - BeanContextChildComponentProxy - BeanContextChildSupport - BeanContextContainerProxy - BeanContextEvent - BeanContextMembershipEvent - BeanContextMembershipListener - BeanContextProxy - BeanContextServiceAvailableEvent - BeanContextServiceProvider - BeanContextServiceProviderBeanInfo - BeanContextServiceRevokedEvent - BeanContextServiceRevokedListener - BeanContextServices - BeanContextServicesListener - BeanContextServicesSupport - BeanContextServicesSupport.BCSSServiceProvider - BeanContextSupport - BeanContextSupport.BCSIterator - BeanDescriptor - BeanInfo - Beans - BevelBorder - Bidi - BigDecimal - BigInteger - BinaryRefAddr - BindException - Binding - Binding - BindingHelper - BindingHolder - BindingIterator - BindingIteratorHelper - BindingIteratorHolder - BindingIteratorOperations - BindingIteratorPOA - BindingListHelper - BindingListHolder - BindingType - BindingTypeHelper - BindingTypeHolder - BitSet - Blob - BlockView - BlockingQueue - Book - Boolean - BooleanControl - BooleanControl.Type - BooleanHolder - BooleanSeqHelper - BooleanSeqHolder - Border - BorderFactory - BorderLayout - BorderUIResource - BorderUIResource.BevelBorderUIResource - BorderUIResource.CompoundBorderUIResource - BorderUIResource.EmptyBorderUIResource - BorderUIResource.EtchedBorderUIResource - BorderUIResource.LineBorderUIResource - BorderUIResource.MatteBorderUIResource - BorderUIResource.TitledBorderUIResource - BoundedRangeModel - Bounds - Bounds - Box - Box.Filler - BoxLayout - BoxView - BoxedValueHelper - BreakIterator - BrokenBarrierException - Buffer - BufferCapabilities - BufferCapabilities.FlipContents - BufferOverflowException - BufferStrategy - BufferUnderflowException - BufferedImage - BufferedImageFilter - BufferedImageOp - BufferedInputStream - BufferedOutputStream - BufferedReader - BufferedWriter - Button - ButtonGroup - ButtonModel - ButtonUI - Byte - ByteArrayInputStream - ByteArrayOutputStream - ByteBuffer - ByteChannel - ByteHolder - ByteLookupTable - ByteOrder - CDATASection - CMMException - CODESET_INCOMPATIBLE - COMM_FAILURE - CRC32 - CRL - CRLException - CRLSelector - CSS - CSS.Attribute - CTX_RESTRICT_SCOPE - CacheRequest - CacheResponse - CachedRowSet - Calendar - Callable - CallableStatement - Callback - CallbackHandler - CancelablePrintJob - CancellationException - CancelledKeyException - CannotProceed - CannotProceedException - CannotProceedHelper - CannotProceedHolder - CannotRedoException - CannotUndoException - Canvas - CardLayout - Caret - CaretEvent - CaretListener - CellEditor - CellEditorListener - CellRendererPane - CertPath - CertPath.CertPathRep - CertPathBuilder - CertPathBuilderException - CertPathBuilderResult - CertPathBuilderSpi - CertPathParameters - CertPathTrustManagerParameters - CertPathValidator - CertPathValidatorException - CertPathValidatorResult - CertPathValidatorSpi - CertSelector - CertStore - CertStoreException - CertStoreParameters - CertStoreSpi - Certificate - Certificate - Certificate - Certificate.CertificateRep - CertificateEncodingException - CertificateEncodingException - CertificateException - CertificateException - CertificateExpiredException - CertificateExpiredException - CertificateFactory - CertificateFactorySpi - CertificateNotYetValidException - CertificateNotYetValidException - CertificateParsingException - CertificateParsingException - ChangeEvent - ChangeListener - ChangedCharSetException - Channel - ChannelBinding - Channels - CharArrayReader - CharArrayWriter - CharBuffer - CharConversionException - CharHolder - CharSeqHelper - CharSeqHolder - CharSequence - Character - Character.Subset - Character.UnicodeBlock - CharacterCodingException - CharacterData - CharacterIterator - Charset - CharsetDecoder - CharsetEncoder - CharsetProvider - Checkbox - CheckboxGroup - CheckboxMenuItem - CheckedInputStream - CheckedOutputStream - Checksum - Choice - ChoiceCallback - ChoiceFormat - Chromaticity - Cipher - CipherInputStream - CipherOutputStream - CipherSpi - Class - ClassCastException - ClassCircularityError - ClassDefinition - ClassDesc - ClassFileTransformer - ClassFormatError - ClassLoader - ClassLoaderRepository - ClassLoadingMXBean - ClassNotFoundException - ClientRequestInfo - ClientRequestInfoOperations - ClientRequestInterceptor - ClientRequestInterceptorOperations - Clip - Clipboard - ClipboardOwner - Clob - CloneNotSupportedException - Cloneable - Closeable - ClosedByInterruptException - ClosedChannelException - ClosedSelectorException - CodeSets - CodeSigner - CodeSource - Codec - CodecFactory - CodecFactoryHelper - CodecFactoryOperations - CodecOperations - CoderMalfunctionError - CoderResult - CodingErrorAction - CollationElementIterator - CollationKey - Collator - Collection - CollectionCertStoreParameters - Collections - Color - ColorChooserComponentFactory - ColorChooserUI - ColorConvertOp - ColorModel - ColorSelectionModel - ColorSpace - ColorSupported - ColorType - ColorUIResource - ComboBoxEditor - ComboBoxModel - ComboBoxUI - ComboPopup - Comment - CommunicationException - Comparable - Comparator - CompilationMXBean - Compiler - CompletionService - CompletionStatus - CompletionStatusHelper - Component - ComponentAdapter - ComponentColorModel - ComponentEvent - ComponentIdHelper - ComponentInputMap - ComponentInputMapUIResource - ComponentListener - ComponentOrientation - ComponentSampleModel - ComponentUI - ComponentView - Composite - CompositeContext - CompositeData - CompositeDataSupport - CompositeName - CompositeType - CompositeView - CompoundBorder - CompoundControl - CompoundControl.Type - CompoundEdit - CompoundName - Compression - ConcurrentHashMap - ConcurrentLinkedQueue - ConcurrentMap - ConcurrentModificationException - Condition - Configuration - ConfigurationException - ConfirmationCallback - ConnectException - ConnectException - ConnectIOException - Connection - ConnectionEvent - ConnectionEventListener - ConnectionPendingException - ConnectionPoolDataSource - ConsoleHandler - Constructor - Container - ContainerAdapter - ContainerEvent - ContainerListener - ContainerOrderFocusTraversalPolicy - ContentHandler - ContentHandler - ContentHandlerFactory - ContentModel - Context - Context - ContextList - ContextNotEmptyException - ContextualRenderedImageFactory - Control - Control - Control.Type - ControlFactory - ControllerEventListener - ConvolveOp - CookieHandler - CookieHolder - Copies - CopiesSupported - CopyOnWriteArrayList - CopyOnWriteArraySet - CountDownLatch - CounterMonitor - CounterMonitorMBean - CredentialException - CredentialExpiredException - CredentialNotFoundException - CropImageFilter - CubicCurve2D - CubicCurve2D.Double - CubicCurve2D.Float - Currency - Current - Current - Current - CurrentHelper - CurrentHelper - CurrentHelper - CurrentHolder - CurrentOperations - CurrentOperations - CurrentOperations - Cursor - CustomMarshal - CustomValue - Customizer - CyclicBarrier - DATA_CONVERSION - DESKeySpec - DESedeKeySpec - DGC - DHGenParameterSpec - DHKey - DHParameterSpec - DHPrivateKey - DHPrivateKeySpec - DHPublicKey - DHPublicKeySpec - DISCARDING - DOMConfiguration - DOMError - DOMErrorHandler - DOMException - DOMImplementation - DOMImplementationLS - DOMImplementationList - DOMImplementationRegistry - DOMImplementationSource - DOMLocator - DOMLocator - DOMResult - DOMSource - DOMStringList - DSAKey - DSAKeyPairGenerator - DSAParameterSpec - DSAParams - DSAPrivateKey - DSAPrivateKeySpec - DSAPublicKey - DSAPublicKeySpec - DTD - DTDConstants - DTDHandler - DataBuffer - DataBufferByte - DataBufferDouble - DataBufferFloat - DataBufferInt - DataBufferShort - DataBufferUShort - DataFlavor - DataFormatException - DataInput - DataInputStream - DataInputStream - DataLine - DataLine.Info - DataOutput - DataOutputStream - DataOutputStream - DataSource - DataTruncation - DatabaseMetaData - DatagramChannel - DatagramPacket - DatagramSocket - DatagramSocketImpl - DatagramSocketImplFactory - DatatypeConfigurationException - DatatypeConstants - DatatypeConstants.Field - DatatypeFactory - Date - Date - DateFormat - DateFormat.Field - DateFormatSymbols - DateFormatter - DateTimeAtCompleted - DateTimeAtCreation - DateTimeAtProcessing - DateTimeSyntax - DebugGraphics - DecimalFormat - DecimalFormatSymbols - DeclHandler - DefaultBoundedRangeModel - DefaultButtonModel - DefaultCaret - DefaultCellEditor - DefaultColorSelectionModel - DefaultComboBoxModel - DefaultDesktopManager - DefaultEditorKit - DefaultEditorKit.BeepAction - DefaultEditorKit.CopyAction - DefaultEditorKit.CutAction - DefaultEditorKit.DefaultKeyTypedAction - DefaultEditorKit.InsertBreakAction - DefaultEditorKit.InsertContentAction - DefaultEditorKit.InsertTabAction - DefaultEditorKit.PasteAction - DefaultFocusManager - DefaultFocusTraversalPolicy - DefaultFormatter - DefaultFormatterFactory - DefaultHandler - DefaultHandler2 - DefaultHighlighter - DefaultHighlighter.DefaultHighlightPainter - DefaultKeyboardFocusManager - DefaultListCellRenderer - DefaultListCellRenderer.UIResource - DefaultListModel - DefaultListSelectionModel - DefaultLoaderRepository - DefaultLoaderRepository - DefaultMenuLayout - DefaultMetalTheme - DefaultMutableTreeNode - DefaultPersistenceDelegate - DefaultSingleSelectionModel - DefaultStyledDocument - DefaultStyledDocument.AttributeUndoableEdit - DefaultStyledDocument.ElementSpec - DefaultTableCellRenderer - DefaultTableCellRenderer.UIResource - DefaultTableColumnModel - DefaultTableModel - DefaultTextUI - DefaultTreeCellEditor - DefaultTreeCellRenderer - DefaultTreeModel - DefaultTreeSelectionModel - DefinitionKind - DefinitionKindHelper - Deflater - DeflaterOutputStream - DelayQueue - Delayed - Delegate - Delegate - Delegate - DelegationPermission - Deprecated - Descriptor - DescriptorAccess - DescriptorSupport - DesignMode - DesktopIconUI - DesktopManager - DesktopPaneUI - Destination - DestroyFailedException - Destroyable - Dialog - Dictionary - DigestException - DigestInputStream - DigestOutputStream - Dimension - Dimension2D - DimensionUIResource - DirContext - DirObjectFactory - DirStateFactory - DirStateFactory.Result - DirectColorModel - DirectoryManager - DisplayMode - DnDConstants - Doc - DocAttribute - DocAttributeSet - DocFlavor - DocFlavor.BYTE_ARRAY - DocFlavor.CHAR_ARRAY - DocFlavor.INPUT_STREAM - DocFlavor.READER - DocFlavor.SERVICE_FORMATTED - DocFlavor.STRING - DocFlavor.URL - DocPrintJob - Document - Document - DocumentBuilder - DocumentBuilderFactory - DocumentEvent - DocumentEvent.ElementChange - DocumentEvent.EventType - DocumentFilter - DocumentFilter.FilterBypass - DocumentFragment - DocumentHandler - DocumentListener - DocumentName - DocumentParser - DocumentType - Documented - DomainCombiner - DomainManager - DomainManagerOperations - Double - DoubleBuffer - DoubleHolder - DoubleSeqHelper - DoubleSeqHolder - DragGestureEvent - DragGestureListener - DragGestureRecognizer - DragSource - DragSourceAdapter - DragSourceContext - DragSourceDragEvent - DragSourceDropEvent - DragSourceEvent - DragSourceListener - DragSourceMotionListener - Driver - DriverManager - DriverPropertyInfo - DropTarget - DropTarget.DropTargetAutoScroller - DropTargetAdapter - DropTargetContext - DropTargetDragEvent - DropTargetDropEvent - DropTargetEvent - DropTargetListener - DuplicateFormatFlagsException - DuplicateName - DuplicateNameHelper - Duration - DynAny - DynAny - DynAnyFactory - DynAnyFactoryHelper - DynAnyFactoryOperations - DynAnyHelper - DynAnyOperations - DynAnySeqHelper - DynArray - DynArray - DynArrayHelper - DynArrayOperations - DynEnum - DynEnum - DynEnumHelper - DynEnumOperations - DynFixed - DynFixed - DynFixedHelper - DynFixedOperations - DynSequence - DynSequence - DynSequenceHelper - DynSequenceOperations - DynStruct - DynStruct - DynStructHelper - DynStructOperations - DynUnion - DynUnion - DynUnionHelper - DynUnionOperations - DynValue - DynValue - DynValueBox - DynValueBoxOperations - DynValueCommon - DynValueCommonOperations - DynValueHelper - DynValueOperations - DynamicImplementation - DynamicImplementation - DynamicMBean - ECField - ECFieldF2m - ECFieldFp - ECGenParameterSpec - ECKey - ECParameterSpec - ECPoint - ECPrivateKey - ECPrivateKeySpec - ECPublicKey - ECPublicKeySpec - ENCODING_CDR_ENCAPS - EOFException - EditorKit - Element - Element - Element - ElementIterator - ElementType - Ellipse2D - Ellipse2D.Double - Ellipse2D.Float - EllipticCurve - EmptyBorder - EmptyStackException - EncodedKeySpec - Encoder - Encoding - EncryptedPrivateKeyInfo - Entity - Entity - EntityReference - EntityResolver - EntityResolver2 - Enum - EnumConstantNotPresentException - EnumControl - EnumControl.Type - EnumMap - EnumSet - EnumSyntax - Enumeration - Environment - Error - ErrorHandler - ErrorListener - ErrorManager - EtchedBorder - Event - EventContext - EventDirContext - EventHandler - EventListener - EventListenerList - EventListenerProxy - EventObject - EventQueue - EventSetDescriptor - Exception - ExceptionDetailMessage - ExceptionInInitializerError - ExceptionList - ExceptionListener - Exchanger - ExecutionException - Executor - ExecutorCompletionService - ExecutorService - Executors - ExemptionMechanism - ExemptionMechanismException - ExemptionMechanismSpi - ExpandVetoException - ExportException - Expression - ExtendedRequest - ExtendedResponse - Externalizable - FREE_MEM - FactoryConfigurationError - FailedLoginException - FeatureDescriptor - Fidelity - Field - FieldNameHelper - FieldNameHelper - FieldPosition - FieldView - File - FileCacheImageInputStream - FileCacheImageOutputStream - FileChannel - FileChannel.MapMode - FileChooserUI - FileDescriptor - FileDialog - FileFilter - FileFilter - FileHandler - FileImageInputStream - FileImageOutputStream - FileInputStream - FileLock - FileLockInterruptionException - FileNameMap - FileNotFoundException - FileOutputStream - FilePermission - FileReader - FileSystemView - FileView - FileWriter - FilenameFilter - Filter - FilterInputStream - FilterOutputStream - FilterReader - FilterWriter - FilteredImageSource - FilteredRowSet - Finishings - FixedHeightLayoutCache - FixedHolder - FlatteningPathIterator - FlavorEvent - FlavorException - FlavorListener - FlavorMap - FlavorTable - Float - FloatBuffer - FloatControl - FloatControl.Type - FloatHolder - FloatSeqHelper - FloatSeqHolder - FlowLayout - FlowView - FlowView.FlowStrategy - Flushable - FocusAdapter - FocusEvent - FocusListener - FocusManager - FocusTraversalPolicy - Font - FontFormatException - FontMetrics - FontRenderContext - FontUIResource - FormSubmitEvent - FormSubmitEvent.MethodType - FormView - Format - Format.Field - FormatConversionProvider - FormatFlagsConversionMismatchException - FormatMismatch - FormatMismatchHelper - Formattable - FormattableFlags - Formatter - Formatter - FormatterClosedException - ForwardRequest - ForwardRequest - ForwardRequestHelper - ForwardRequestHelper - Frame - Future - FutureTask - GSSContext - GSSCredential - GSSException - GSSManager - GSSName - GZIPInputStream - GZIPOutputStream - GapContent - GarbageCollectorMXBean - GatheringByteChannel - GaugeMonitor - GaugeMonitorMBean - GeneralPath - GeneralSecurityException - GenericArrayType - GenericDeclaration - GenericSignatureFormatError - GlyphJustificationInfo - GlyphMetrics - GlyphVector - GlyphView - GlyphView.GlyphPainter - GradientPaint - GraphicAttribute - Graphics - Graphics2D - GraphicsConfigTemplate - GraphicsConfiguration - GraphicsDevice - GraphicsEnvironment - GrayFilter - GregorianCalendar - GridBagConstraints - GridBagLayout - GridLayout - Group - Guard - GuardedObject - HOLDING - HTML - HTML.Attribute - HTML.Tag - HTML.UnknownTag - HTMLDocument - HTMLDocument.Iterator - HTMLEditorKit - HTMLEditorKit.HTMLFactory - HTMLEditorKit.HTMLTextAction - HTMLEditorKit.InsertHTMLTextAction - HTMLEditorKit.LinkController - HTMLEditorKit.Parser - HTMLEditorKit.ParserCallback - HTMLFrameHyperlinkEvent - HTMLWriter - Handler - HandlerBase - HandshakeCompletedEvent - HandshakeCompletedListener - HasControls - HashAttributeSet - HashDocAttributeSet - HashMap - HashPrintJobAttributeSet - HashPrintRequestAttributeSet - HashPrintServiceAttributeSet - HashSet - Hashtable - HeadlessException - HierarchyBoundsAdapter - HierarchyBoundsListener - HierarchyEvent - HierarchyListener - Highlighter - Highlighter.Highlight - Highlighter.HighlightPainter - HostnameVerifier - HttpRetryException - HttpURLConnection - HttpsURLConnection - HyperlinkEvent - HyperlinkEvent.EventType - HyperlinkListener - ICC_ColorSpace - ICC_Profile - ICC_ProfileGray - ICC_ProfileRGB - IDLEntity - IDLType - IDLTypeHelper - IDLTypeOperations - ID_ASSIGNMENT_POLICY_ID - ID_UNIQUENESS_POLICY_ID - IIOByteBuffer - IIOException - IIOImage - IIOInvalidTreeException - IIOMetadata - IIOMetadataController - IIOMetadataFormat - IIOMetadataFormatImpl - IIOMetadataNode - IIOParam - IIOParamController - IIOReadProgressListener - IIOReadUpdateListener - IIOReadWarningListener - IIORegistry - IIOServiceProvider - IIOWriteProgressListener - IIOWriteWarningListener - IMPLICIT_ACTIVATION_POLICY_ID - IMP_LIMIT - INACTIVE - INITIALIZE - INTERNAL - INTF_REPOS - INVALID_ACTIVITY - INVALID_TRANSACTION - INV_FLAG - INV_IDENT - INV_OBJREF - INV_POLICY - IOException - IOR - IORHelper - IORHolder - IORInfo - IORInfoOperations - IORInterceptor - IORInterceptorOperations - IORInterceptor_3_0 - IORInterceptor_3_0Helper - IORInterceptor_3_0Holder - IORInterceptor_3_0Operations - IRObject - IRObjectOperations - Icon - IconUIResource - IconView - IdAssignmentPolicy - IdAssignmentPolicyOperations - IdAssignmentPolicyValue - IdUniquenessPolicy - IdUniquenessPolicyOperations - IdUniquenessPolicyValue - IdentifierHelper - Identity - IdentityHashMap - IdentityScope - IllegalAccessError - IllegalAccessException - IllegalArgumentException - IllegalBlockSizeException - IllegalBlockingModeException - IllegalCharsetNameException - IllegalClassFormatException - IllegalComponentStateException - IllegalFormatCodePointException - IllegalFormatConversionException - IllegalFormatException - IllegalFormatFlagsException - IllegalFormatPrecisionException - IllegalFormatWidthException - IllegalMonitorStateException - IllegalPathStateException - IllegalSelectorException - IllegalStateException - IllegalThreadStateException - Image - ImageCapabilities - ImageConsumer - ImageFilter - ImageGraphicAttribute - ImageIO - ImageIcon - ImageInputStream - ImageInputStreamImpl - ImageInputStreamSpi - ImageObserver - ImageOutputStream - ImageOutputStreamImpl - ImageOutputStreamSpi - ImageProducer - ImageReadParam - ImageReader - ImageReaderSpi - ImageReaderWriterSpi - ImageTranscoder - ImageTranscoderSpi - ImageTypeSpecifier - ImageView - ImageWriteParam - ImageWriter - ImageWriterSpi - ImagingOpException - ImplicitActivationPolicy - ImplicitActivationPolicyOperations - ImplicitActivationPolicyValue - IncompatibleClassChangeError - IncompleteAnnotationException - InconsistentTypeCode - InconsistentTypeCode - InconsistentTypeCodeHelper - IndexColorModel - IndexOutOfBoundsException - IndexedPropertyChangeEvent - IndexedPropertyDescriptor - IndirectionException - Inet4Address - Inet6Address - InetAddress - InetSocketAddress - Inflater - InflaterInputStream - InheritableThreadLocal - Inherited - InitialContext - InitialContextFactory - InitialContextFactoryBuilder - InitialDirContext - InitialLdapContext - InlineView - InputContext - InputEvent - InputMap - InputMapUIResource - InputMethod - InputMethodContext - InputMethodDescriptor - InputMethodEvent - InputMethodHighlight - InputMethodListener - InputMethodRequests - InputMismatchException - InputSource - InputStream - InputStream - InputStream - InputStreamReader - InputSubset - InputVerifier - Insets - InsetsUIResource - InstanceAlreadyExistsException - InstanceNotFoundException - InstantiationError - InstantiationException - Instrument - Instrumentation - InsufficientResourcesException - IntBuffer - IntHolder - Integer - IntegerSyntax - Interceptor - InterceptorOperations - InternalError - InternalFrameAdapter - InternalFrameEvent - InternalFrameFocusTraversalPolicy - InternalFrameListener - InternalFrameUI - InternationalFormatter - InterruptedException - InterruptedIOException - InterruptedNamingException - InterruptibleChannel - IntrospectionException - IntrospectionException - Introspector - Invalid - InvalidActivityException - InvalidAddress - InvalidAddressHelper - InvalidAddressHolder - InvalidAlgorithmParameterException - InvalidApplicationException - InvalidAttributeIdentifierException - InvalidAttributeValueException - InvalidAttributeValueException - InvalidAttributesException - InvalidClassException - InvalidDnDOperationException - InvalidKeyException - InvalidKeyException - InvalidKeySpecException - InvalidMarkException - InvalidMidiDataException - InvalidName - InvalidName - InvalidName - InvalidNameException - InvalidNameHelper - InvalidNameHelper - InvalidNameHolder - InvalidObjectException - InvalidOpenTypeException - InvalidParameterException - InvalidParameterSpecException - InvalidPolicy - InvalidPolicyHelper - InvalidPreferencesFormatException - InvalidPropertiesFormatException - InvalidRelationIdException - InvalidRelationServiceException - InvalidRelationTypeException - InvalidRoleInfoException - InvalidRoleValueException - InvalidSearchControlsException - InvalidSearchFilterException - InvalidSeq - InvalidSlot - InvalidSlotHelper - InvalidTargetObjectTypeException - InvalidTransactionException - InvalidTypeForEncoding - InvalidTypeForEncodingHelper - InvalidValue - InvalidValue - InvalidValueHelper - InvocationEvent - InvocationHandler - InvocationTargetException - InvokeHandler - IstringHelper - ItemEvent - ItemListener - ItemSelectable - Iterable - Iterator - IvParameterSpec - JApplet - JButton - JCheckBox - JCheckBoxMenuItem - JColorChooser - JComboBox - JComboBox.KeySelectionManager - JComponent - JDesktopPane - JDialog - JEditorPane - JFileChooser - JFormattedTextField - JFormattedTextField.AbstractFormatter - JFormattedTextField.AbstractFormatterFactory - JFrame - JInternalFrame - JInternalFrame.JDesktopIcon - JLabel - JLayeredPane - JList - JMException - JMRuntimeException - JMXAuthenticator - JMXConnectionNotification - JMXConnector - JMXConnectorFactory - JMXConnectorProvider - JMXConnectorServer - JMXConnectorServerFactory - JMXConnectorServerMBean - JMXConnectorServerProvider - JMXPrincipal - JMXProviderException - JMXServerErrorException - JMXServiceURL - JMenu - JMenuBar - JMenuItem - JOptionPane - JPEGHuffmanTable - JPEGImageReadParam - JPEGImageWriteParam - JPEGQTable - JPanel - JPasswordField - JPopupMenu - JPopupMenu.Separator - JProgressBar - JRadioButton - JRadioButtonMenuItem - JRootPane - JScrollBar - JScrollPane - JSeparator - JSlider - JSpinner - JSpinner.DateEditor - JSpinner.DefaultEditor - JSpinner.ListEditor - JSpinner.NumberEditor - JSplitPane - JTabbedPane - JTable - JTable.PrintMode - JTableHeader - JTextArea - JTextComponent - JTextComponent.KeyBinding - JTextField - JTextPane - JToggleButton - JToggleButton.ToggleButtonModel - JToolBar - JToolBar.Separator - JToolTip - JTree - JTree.DynamicUtilTreeNode - JTree.EmptySelectionModel - JViewport - JWindow - JarEntry - JarException - JarFile - JarInputStream - JarOutputStream - JarURLConnection - JdbcRowSet - JobAttributes - JobAttributes.DefaultSelectionType - JobAttributes.DestinationType - JobAttributes.DialogType - JobAttributes.MultipleDocumentHandlingType - JobAttributes.SidesType - JobHoldUntil - JobImpressions - JobImpressionsCompleted - JobImpressionsSupported - JobKOctets - JobKOctetsProcessed - JobKOctetsSupported - JobMediaSheets - JobMediaSheetsCompleted - JobMediaSheetsSupported - JobMessageFromOperator - JobName - JobOriginatingUserName - JobPriority - JobPrioritySupported - JobSheets - JobState - JobStateReason - JobStateReasons - JoinRowSet - Joinable - KerberosKey - KerberosPrincipal - KerberosTicket - Kernel - Key - KeyAdapter - KeyAgreement - KeyAgreementSpi - KeyAlreadyExistsException - KeyEvent - KeyEventDispatcher - KeyEventPostProcessor - KeyException - KeyFactory - KeyFactorySpi - KeyGenerator - KeyGeneratorSpi - KeyListener - KeyManagementException - KeyManager - KeyManagerFactory - KeyManagerFactorySpi - KeyPair - KeyPairGenerator - KeyPairGeneratorSpi - KeyRep - KeyRep.Type - KeySpec - KeyStore - KeyStore.Builder - KeyStore.CallbackHandlerProtection - KeyStore.Entry - KeyStore.LoadStoreParameter - KeyStore.PasswordProtection - KeyStore.PrivateKeyEntry - KeyStore.ProtectionParameter - KeyStore.SecretKeyEntry - KeyStore.TrustedCertificateEntry - KeyStoreBuilderParameters - KeyStoreException - KeyStoreSpi - KeyStroke - KeyboardFocusManager - Keymap - LDAPCertStoreParameters - LIFESPAN_POLICY_ID - LOCATION_FORWARD - LSException - LSInput - LSLoadEvent - LSOutput - LSParser - LSParserFilter - LSProgressEvent - LSResourceResolver - LSSerializer - LSSerializerFilter - Label - LabelUI - LabelView - LanguageCallback - LastOwnerException - LayeredHighlighter - LayeredHighlighter.LayerPainter - LayoutFocusTraversalPolicy - LayoutManager - LayoutManager2 - LayoutQueue - LdapContext - LdapName - LdapReferralException - Lease - Level - LexicalHandler - LifespanPolicy - LifespanPolicyOperations - LifespanPolicyValue - LimitExceededException - Line - Line.Info - Line2D - Line2D.Double - Line2D.Float - LineBorder - LineBreakMeasurer - LineEvent - LineEvent.Type - LineListener - LineMetrics - LineNumberInputStream - LineNumberReader - LineUnavailableException - LinkException - LinkLoopException - LinkRef - LinkageError - LinkedBlockingQueue - LinkedHashMap - LinkedHashSet - LinkedList - List - List - ListCellRenderer - ListDataEvent - ListDataListener - ListIterator - ListModel - ListResourceBundle - ListSelectionEvent - ListSelectionListener - ListSelectionModel - ListUI - ListView - ListenerNotFoundException - LoaderHandler - LocalObject - Locale - LocateRegistry - Locator - Locator2 - Locator2Impl - LocatorImpl - Lock - LockSupport - LogManager - LogRecord - LogStream - Logger - LoggingMXBean - LoggingPermission - LoginContext - LoginException - LoginModule - Long - LongBuffer - LongHolder - LongLongSeqHelper - LongLongSeqHolder - LongSeqHelper - LongSeqHolder - LookAndFeel - LookupOp - LookupTable - MARSHAL - MBeanAttributeInfo - MBeanConstructorInfo - MBeanException - MBeanFeatureInfo - MBeanInfo - MBeanNotificationInfo - MBeanOperationInfo - MBeanParameterInfo - MBeanPermission - MBeanRegistration - MBeanRegistrationException - MBeanServer - MBeanServerBuilder - MBeanServerConnection - MBeanServerDelegate - MBeanServerDelegateMBean - MBeanServerFactory - MBeanServerForwarder - MBeanServerInvocationHandler - MBeanServerNotification - MBeanServerNotificationFilter - MBeanServerPermission - MBeanTrustPermission - MGF1ParameterSpec - MLet - MLetMBean - Mac - MacSpi - MalformedInputException - MalformedLinkException - MalformedObjectNameException - MalformedParameterizedTypeException - MalformedURLException - ManageReferralControl - ManagementFactory - ManagementPermission - ManagerFactoryParameters - Manifest - Map - Map.Entry - MappedByteBuffer - MarshalException - MarshalledObject - MaskFormatter - MatchResult - Matcher - Math - MathContext - MatteBorder - Media - MediaName - MediaPrintableArea - MediaSize - MediaSize.Engineering - MediaSize.ISO - MediaSize.JIS - MediaSize.NA - MediaSize.Other - MediaSizeName - MediaTracker - MediaTray - Member - MemoryCacheImageInputStream - MemoryCacheImageOutputStream - MemoryHandler - MemoryImageSource - MemoryMXBean - MemoryManagerMXBean - MemoryNotificationInfo - MemoryPoolMXBean - MemoryType - MemoryUsage - Menu - MenuBar - MenuBarUI - MenuComponent - MenuContainer - MenuDragMouseEvent - MenuDragMouseListener - MenuElement - MenuEvent - MenuItem - MenuItemUI - MenuKeyEvent - MenuKeyListener - MenuListener - MenuSelectionManager - MenuShortcut - MessageDigest - MessageDigestSpi - MessageFormat - MessageFormat.Field - MessageProp - MetaEventListener - MetaMessage - MetalBorders - MetalBorders.ButtonBorder - MetalBorders.Flush3DBorder - MetalBorders.InternalFrameBorder - MetalBorders.MenuBarBorder - MetalBorders.MenuItemBorder - MetalBorders.OptionDialogBorder - MetalBorders.PaletteBorder - MetalBorders.PopupMenuBorder - MetalBorders.RolloverButtonBorder - MetalBorders.ScrollPaneBorder - MetalBorders.TableHeaderBorder - MetalBorders.TextFieldBorder - MetalBorders.ToggleButtonBorder - MetalBorders.ToolBarBorder - MetalButtonUI - MetalCheckBoxIcon - MetalCheckBoxUI - MetalComboBoxButton - MetalComboBoxEditor - MetalComboBoxEditor.UIResource - MetalComboBoxIcon - MetalComboBoxUI - MetalDesktopIconUI - MetalFileChooserUI - MetalIconFactory - MetalIconFactory.FileIcon16 - MetalIconFactory.FolderIcon16 - MetalIconFactory.PaletteCloseIcon - MetalIconFactory.TreeControlIcon - MetalIconFactory.TreeFolderIcon - MetalIconFactory.TreeLeafIcon - MetalInternalFrameTitlePane - MetalInternalFrameUI - MetalLabelUI - MetalLookAndFeel - MetalMenuBarUI - MetalPopupMenuSeparatorUI - MetalProgressBarUI - MetalRadioButtonUI - MetalRootPaneUI - MetalScrollBarUI - MetalScrollButton - MetalScrollPaneUI - MetalSeparatorUI - MetalSliderUI - MetalSplitPaneUI - MetalTabbedPaneUI - MetalTextFieldUI - MetalTheme - MetalToggleButtonUI - MetalToolBarUI - MetalToolTipUI - MetalTreeUI - Method - MethodDescriptor - MidiChannel - MidiDevice - MidiDevice.Info - MidiDeviceProvider - MidiEvent - MidiFileFormat - MidiFileReader - MidiFileWriter - MidiMessage - MidiSystem - MidiUnavailableException - MimeTypeParseException - MinimalHTMLWriter - MissingFormatArgumentException - MissingFormatWidthException - MissingResourceException - Mixer - Mixer.Info - MixerProvider - ModelMBean - ModelMBeanAttributeInfo - ModelMBeanConstructorInfo - ModelMBeanInfo - ModelMBeanInfoSupport - ModelMBeanNotificationBroadcaster - ModelMBeanNotificationInfo - ModelMBeanOperationInfo - ModificationItem - Modifier - Monitor - MonitorMBean - MonitorNotification - MonitorSettingException - MouseAdapter - MouseDragGestureRecognizer - MouseEvent - MouseInfo - MouseInputAdapter - MouseInputListener - MouseListener - MouseMotionAdapter - MouseMotionListener - MouseWheelEvent - MouseWheelListener - MultiButtonUI - MultiColorChooserUI - MultiComboBoxUI - MultiDesktopIconUI - MultiDesktopPaneUI - MultiDoc - MultiDocPrintJob - MultiDocPrintService - MultiFileChooserUI - MultiInternalFrameUI - MultiLabelUI - MultiListUI - MultiLookAndFeel - MultiMenuBarUI - MultiMenuItemUI - MultiOptionPaneUI - MultiPanelUI - MultiPixelPackedSampleModel - MultiPopupMenuUI - MultiProgressBarUI - MultiRootPaneUI - MultiScrollBarUI - MultiScrollPaneUI - MultiSeparatorUI - MultiSliderUI - MultiSpinnerUI - MultiSplitPaneUI - MultiTabbedPaneUI - MultiTableHeaderUI - MultiTableUI - MultiTextUI - MultiToolBarUI - MultiToolTipUI - MultiTreeUI - MultiViewportUI - MulticastSocket - MultipleComponentProfileHelper - MultipleComponentProfileHolder - MultipleDocumentHandling - MultipleMaster - MutableAttributeSet - MutableComboBoxModel - MutableTreeNode - NON_EXISTENT - NO_IMPLEMENT - NO_MEMORY - NO_PERMISSION - NO_RESOURCES - NO_RESPONSE - NVList - Name - NameAlreadyBoundException - NameCallback - NameClassPair - NameComponent - NameComponentHelper - NameComponentHolder - NameDynAnyPair - NameDynAnyPairHelper - NameDynAnyPairSeqHelper - NameHelper - NameHolder - NameList - NameNotFoundException - NameParser - NameValuePair - NameValuePair - NameValuePairHelper - NameValuePairHelper - NameValuePairSeqHelper - NamedNodeMap - NamedValue - NamespaceChangeListener - NamespaceContext - NamespaceSupport - Naming - NamingContext - NamingContextExt - NamingContextExtHelper - NamingContextExtHolder - NamingContextExtOperations - NamingContextExtPOA - NamingContextHelper - NamingContextHolder - NamingContextOperations - NamingContextPOA - NamingEnumeration - NamingEvent - NamingException - NamingExceptionEvent - NamingListener - NamingManager - NamingSecurityException - NavigationFilter - NavigationFilter.FilterBypass - NegativeArraySizeException - NetPermission - NetworkInterface - NoClassDefFoundError - NoConnectionPendingException - NoContext - NoContextHelper - NoInitialContextException - NoPermissionException - NoRouteToHostException - NoServant - NoServantHelper - NoSuchAlgorithmException - NoSuchAttributeException - NoSuchElementException - NoSuchFieldError - NoSuchFieldException - NoSuchMethodError - NoSuchMethodException - NoSuchObjectException - NoSuchPaddingException - NoSuchProviderException - Node - NodeChangeEvent - NodeChangeListener - NodeList - NonReadableChannelException - NonWritableChannelException - NoninvertibleTransformException - NotActiveException - NotBoundException - NotCompliantMBeanException - NotContextException - NotEmpty - NotEmptyHelper - NotEmptyHolder - NotFound - NotFoundHelper - NotFoundHolder - NotFoundReason - NotFoundReasonHelper - NotFoundReasonHolder - NotOwnerException - NotSerializableException - NotYetBoundException - NotYetConnectedException - Notation - Notification - NotificationBroadcaster - NotificationBroadcasterSupport - NotificationEmitter - NotificationFilter - NotificationFilterSupport - NotificationListener - NotificationResult - NullCipher - NullPointerException - Number - NumberFormat - NumberFormat.Field - NumberFormatException - NumberFormatter - NumberOfDocuments - NumberOfInterveningJobs - NumberUp - NumberUpSupported - NumericShaper - OAEPParameterSpec - OBJECT_NOT_EXIST - OBJ_ADAPTER - OMGVMCID - ORB - ORB - ORBIdHelper - ORBInitInfo - ORBInitInfoOperations - ORBInitializer - ORBInitializerOperations - ObjID - Object - Object - ObjectAlreadyActive - ObjectAlreadyActiveHelper - ObjectChangeListener - ObjectFactory - ObjectFactoryBuilder - ObjectHelper - ObjectHolder - ObjectIdHelper - ObjectIdHelper - ObjectImpl - ObjectImpl - ObjectInput - ObjectInputStream - ObjectInputStream.GetField - ObjectInputValidation - ObjectInstance - ObjectName - ObjectNotActive - ObjectNotActiveHelper - ObjectOutput - ObjectOutputStream - ObjectOutputStream.PutField - ObjectReferenceFactory - ObjectReferenceFactoryHelper - ObjectReferenceFactoryHolder - ObjectReferenceTemplate - ObjectReferenceTemplateHelper - ObjectReferenceTemplateHolder - ObjectReferenceTemplateSeqHelper - ObjectReferenceTemplateSeqHolder - ObjectStreamClass - ObjectStreamConstants - ObjectStreamException - ObjectStreamField - ObjectView - Observable - Observer - OceanTheme - OctetSeqHelper - OctetSeqHolder - Oid - OpenDataException - OpenMBeanAttributeInfo - OpenMBeanAttributeInfoSupport - OpenMBeanConstructorInfo - OpenMBeanConstructorInfoSupport - OpenMBeanInfo - OpenMBeanInfoSupport - OpenMBeanOperationInfo - OpenMBeanOperationInfoSupport - OpenMBeanParameterInfo - OpenMBeanParameterInfoSupport - OpenType - OpenType - OperatingSystemMXBean - Operation - OperationNotSupportedException - OperationsException - Option - OptionPaneUI - OptionalDataException - OrientationRequested - OutOfMemoryError - OutputDeviceAssigned - OutputKeys - OutputStream - OutputStream - OutputStream - OutputStreamWriter - OverlappingFileLockException - OverlayLayout - Override - Owner - PBEKey - PBEKeySpec - PBEParameterSpec - PDLOverrideSupported - PERSIST_STORE - PKCS8EncodedKeySpec - PKIXBuilderParameters - PKIXCertPathBuilderResult - PKIXCertPathChecker - PKIXCertPathValidatorResult - PKIXParameters - POA - POAHelper - POAManager - POAManagerOperations - POAOperations - PRIVATE_MEMBER - PSSParameterSpec - PSource - PSource.PSpecified - PUBLIC_MEMBER - Pack200 - Pack200.Packer - Pack200.Unpacker - Package - PackedColorModel - PageAttributes - PageAttributes.ColorType - PageAttributes.MediaType - PageAttributes.OrientationRequestedType - PageAttributes.OriginType - PageAttributes.PrintQualityType - PageFormat - PageRanges - Pageable - PagedResultsControl - PagedResultsResponseControl - PagesPerMinute - PagesPerMinuteColor - Paint - PaintContext - PaintEvent - Panel - PanelUI - Paper - ParagraphView - ParagraphView - Parameter - ParameterBlock - ParameterDescriptor - ParameterMetaData - ParameterMode - ParameterModeHelper - ParameterModeHolder - ParameterizedType - ParseException - ParsePosition - Parser - Parser - ParserAdapter - ParserConfigurationException - ParserDelegator - ParserFactory - PartialResultException - PasswordAuthentication - PasswordCallback - PasswordView - Patch - PathIterator - Pattern - PatternSyntaxException - Permission - Permission - PermissionCollection - Permissions - PersistenceDelegate - PersistentMBean - PhantomReference - Pipe - Pipe.SinkChannel - Pipe.SourceChannel - PipedInputStream - PipedOutputStream - PipedReader - PipedWriter - PixelGrabber - PixelInterleavedSampleModel - PlainDocument - PlainView - Point - Point2D - Point2D.Double - Point2D.Float - PointerInfo - Policy - Policy - Policy - PolicyError - PolicyErrorCodeHelper - PolicyErrorHelper - PolicyErrorHolder - PolicyFactory - PolicyFactoryOperations - PolicyHelper - PolicyHolder - PolicyListHelper - PolicyListHolder - PolicyNode - PolicyOperations - PolicyQualifierInfo - PolicyTypeHelper - Polygon - PooledConnection - Popup - PopupFactory - PopupMenu - PopupMenuEvent - PopupMenuListener - PopupMenuUI - Port - Port.Info - PortUnreachableException - PortableRemoteObject - PortableRemoteObjectDelegate - Position - Position.Bias - Predicate - PreferenceChangeEvent - PreferenceChangeListener - Preferences - PreferencesFactory - PreparedStatement - PresentationDirection - Principal - Principal - PrincipalHolder - PrintEvent - PrintException - PrintGraphics - PrintJob - PrintJobAdapter - PrintJobAttribute - PrintJobAttributeEvent - PrintJobAttributeListener - PrintJobAttributeSet - PrintJobEvent - PrintJobListener - PrintQuality - PrintRequestAttribute - PrintRequestAttributeSet - PrintService - PrintServiceAttribute - PrintServiceAttributeEvent - PrintServiceAttributeListener - PrintServiceAttributeSet - PrintServiceLookup - PrintStream - PrintWriter - Printable - PrinterAbortException - PrinterException - PrinterGraphics - PrinterIOException - PrinterInfo - PrinterIsAcceptingJobs - PrinterJob - PrinterLocation - PrinterMakeAndModel - PrinterMessageFromOperator - PrinterMoreInfo - PrinterMoreInfoManufacturer - PrinterName - PrinterResolution - PrinterState - PrinterStateReason - PrinterStateReasons - PrinterURI - PriorityBlockingQueue - PriorityQueue - PrivateClassLoader - PrivateCredentialPermission - PrivateKey - PrivateMLet - PrivilegedAction - PrivilegedActionException - PrivilegedExceptionAction - Process - ProcessBuilder - ProcessingInstruction - ProfileDataException - ProfileIdHelper - ProgressBarUI - ProgressMonitor - ProgressMonitorInputStream - Properties - PropertyChangeEvent - PropertyChangeListener - PropertyChangeListenerProxy - PropertyChangeSupport - PropertyDescriptor - PropertyEditor - PropertyEditorManager - PropertyEditorSupport - PropertyPermission - PropertyResourceBundle - PropertyVetoException - ProtectionDomain - ProtocolException - Provider - Provider.Service - ProviderException - Proxy - Proxy - Proxy.Type - ProxySelector - PublicKey - PushbackInputStream - PushbackReader - QName - QuadCurve2D - QuadCurve2D.Double - QuadCurve2D.Float - Query - QueryEval - QueryExp - Queue - QueuedJobCount - RC2ParameterSpec - RC5ParameterSpec - REBIND - REQUEST_PROCESSING_POLICY_ID - RGBImageFilter - RMIClassLoader - RMIClassLoaderSpi - RMIClientSocketFactory - RMIConnection - RMIConnectionImpl - RMIConnectionImpl_Stub - RMIConnector - RMIConnectorServer - RMICustomMaxStreamFormat - RMIFailureHandler - RMIIIOPServerImpl - RMIJRMPServerImpl - RMISecurityException - RMISecurityManager - RMIServer - RMIServerImpl - RMIServerImpl_Stub - RMIServerSocketFactory - RMISocketFactory - RSAKey - RSAKeyGenParameterSpec - RSAMultiPrimePrivateCrtKey - RSAMultiPrimePrivateCrtKeySpec - RSAOtherPrimeInfo - RSAPrivateCrtKey - RSAPrivateCrtKeySpec - RSAPrivateKey - RSAPrivateKeySpec - RSAPublicKey - RSAPublicKeySpec - RTFEditorKit - Random - RandomAccess - RandomAccessFile - Raster - RasterFormatException - RasterOp - Rdn - ReadOnlyBufferException - ReadWriteLock - Readable - ReadableByteChannel - Reader - RealmCallback - RealmChoiceCallback - Receiver - Rectangle - Rectangle2D - Rectangle2D.Double - Rectangle2D.Float - RectangularShape - ReentrantLock - ReentrantReadWriteLock - ReentrantReadWriteLock.ReadLock - ReentrantReadWriteLock.WriteLock - Ref - RefAddr - Reference - Reference - ReferenceQueue - ReferenceUriSchemesSupported - Referenceable - ReferralException - ReflectPermission - ReflectionException - RefreshFailedException - Refreshable - Region - RegisterableService - Registry - RegistryHandler - RejectedExecutionException - RejectedExecutionHandler - Relation - RelationException - RelationNotFoundException - RelationNotification - RelationService - RelationServiceMBean - RelationServiceNotRegisteredException - RelationSupport - RelationSupportMBean - RelationType - RelationTypeNotFoundException - RelationTypeSupport - RemarshalException - Remote - RemoteCall - RemoteException - RemoteObject - RemoteObjectInvocationHandler - RemoteRef - RemoteServer - RemoteStub - RenderContext - RenderableImage - RenderableImageOp - RenderableImageProducer - RenderedImage - RenderedImageFactory - Renderer - RenderingHints - RenderingHints.Key - RepaintManager - ReplicateScaleFilter - RepositoryIdHelper - Request - RequestInfo - RequestInfoOperations - RequestProcessingPolicy - RequestProcessingPolicyOperations - RequestProcessingPolicyValue - RequestingUserName - RequiredModelMBean - RescaleOp - ResolutionSyntax - ResolveResult - Resolver - ResourceBundle - ResponseCache - ResponseHandler - Result - ResultSet - ResultSetMetaData - Retention - RetentionPolicy - ReverbType - Robot - Role - RoleInfo - RoleInfoNotFoundException - RoleList - RoleNotFoundException - RoleResult - RoleStatus - RoleUnresolved - RoleUnresolvedList - RootPaneContainer - RootPaneUI - RoundRectangle2D - RoundRectangle2D.Double - RoundRectangle2D.Float - RoundingMode - RowMapper - RowSet - RowSetEvent - RowSetInternal - RowSetListener - RowSetMetaData - RowSetMetaDataImpl - RowSetReader - RowSetWarning - RowSetWriter - RuleBasedCollator - RunTime - RunTimeOperations - Runnable - Runtime - RuntimeErrorException - RuntimeException - RuntimeMBeanException - RuntimeMXBean - RuntimeOperationsException - RuntimePermission - SAXException - SAXNotRecognizedException - SAXNotSupportedException - SAXParseException - SAXParser - SAXParserFactory - SAXResult - SAXSource - SAXTransformerFactory - SERVANT_RETENTION_POLICY_ID - SQLData - SQLException - SQLInput - SQLInputImpl - SQLOutput - SQLOutputImpl - SQLPermission - SQLWarning - SSLContext - SSLContextSpi - SSLEngine - SSLEngineResult - SSLEngineResult.HandshakeStatus - SSLEngineResult.Status - SSLException - SSLHandshakeException - SSLKeyException - SSLPeerUnverifiedException - SSLPermission - SSLProtocolException - SSLServerSocket - SSLServerSocketFactory - SSLSession - SSLSessionBindingEvent - SSLSessionBindingListener - SSLSessionContext - SSLSocket - SSLSocketFactory - SUCCESSFUL - SYNC_WITH_TRANSPORT - SYSTEM_EXCEPTION - SampleModel - Sasl - SaslClient - SaslClientFactory - SaslException - SaslServer - SaslServerFactory - Savepoint - Scanner - ScatteringByteChannel - ScheduledExecutorService - ScheduledFuture - ScheduledThreadPoolExecutor - Schema - SchemaFactory - SchemaFactoryLoader - SchemaViolationException - ScrollBarUI - ScrollPane - ScrollPaneAdjustable - ScrollPaneConstants - ScrollPaneLayout - ScrollPaneLayout.UIResource - ScrollPaneUI - Scrollable - Scrollbar - SealedObject - SearchControls - SearchResult - SecretKey - SecretKeyFactory - SecretKeyFactorySpi - SecretKeySpec - SecureCacheResponse - SecureClassLoader - SecureRandom - SecureRandomSpi - Security - SecurityException - SecurityManager - SecurityPermission - Segment - SelectableChannel - SelectionKey - Selector - SelectorProvider - Semaphore - SeparatorUI - Sequence - SequenceInputStream - Sequencer - Sequencer.SyncMode - SerialArray - SerialBlob - SerialClob - SerialDatalink - SerialException - SerialJavaObject - SerialRef - SerialStruct - Serializable - SerializablePermission - Servant - ServantActivator - ServantActivatorHelper - ServantActivatorOperations - ServantActivatorPOA - ServantAlreadyActive - ServantAlreadyActiveHelper - ServantLocator - ServantLocatorHelper - ServantLocatorOperations - ServantLocatorPOA - ServantManager - ServantManagerOperations - ServantNotActive - ServantNotActiveHelper - ServantObject - ServantRetentionPolicy - ServantRetentionPolicyOperations - ServantRetentionPolicyValue - ServerCloneException - ServerError - ServerException - ServerIdHelper - ServerNotActiveException - ServerRef - ServerRequest - ServerRequestInfo - ServerRequestInfoOperations - ServerRequestInterceptor - ServerRequestInterceptorOperations - ServerRuntimeException - ServerSocket - ServerSocketChannel - ServerSocketFactory - ServiceContext - ServiceContextHelper - ServiceContextHolder - ServiceContextListHelper - ServiceContextListHolder - ServiceDetail - ServiceDetailHelper - ServiceIdHelper - ServiceInformation - ServiceInformationHelper - ServiceInformationHolder - ServiceNotFoundException - ServicePermission - ServiceRegistry - ServiceRegistry.Filter - ServiceUI - ServiceUIFactory - ServiceUnavailableException - Set - SetOfIntegerSyntax - SetOverrideType - SetOverrideTypeHelper - Severity - Shape - ShapeGraphicAttribute - SheetCollate - Short - ShortBuffer - ShortBufferException - ShortHolder - ShortLookupTable - ShortMessage - ShortSeqHelper - ShortSeqHolder - Sides - Signature - SignatureException - SignatureSpi - SignedObject - Signer - SimpleAttributeSet - SimpleBeanInfo - SimpleDateFormat - SimpleDoc - SimpleFormatter - SimpleTimeZone - SimpleType - SinglePixelPackedSampleModel - SingleSelectionModel - Size2DSyntax - SizeLimitExceededException - SizeRequirements - SizeSequence - Skeleton - SkeletonMismatchException - SkeletonNotFoundException - SliderUI - Socket - SocketAddress - SocketChannel - SocketException - SocketFactory - SocketHandler - SocketImpl - SocketImplFactory - SocketOptions - SocketPermission - SocketSecurityException - SocketTimeoutException - SoftBevelBorder - SoftReference - SortControl - SortKey - SortResponseControl - SortedMap - SortedSet - SortingFocusTraversalPolicy - Soundbank - SoundbankReader - SoundbankResource - Source - SourceDataLine - SourceLocator - SpinnerDateModel - SpinnerListModel - SpinnerModel - SpinnerNumberModel - SpinnerUI - SplitPaneUI - Spring - SpringLayout - SpringLayout.Constraints - SslRMIClientSocketFactory - SslRMIServerSocketFactory - Stack - StackOverflowError - StackTraceElement - StandardMBean - StartTlsRequest - StartTlsResponse - State - StateEdit - StateEditable - StateFactory - Statement - Statement - StreamCorruptedException - StreamHandler - StreamPrintService - StreamPrintServiceFactory - StreamResult - StreamSource - StreamTokenizer - Streamable - StreamableValue - StrictMath - String - StringBuffer - StringBufferInputStream - StringBuilder - StringCharacterIterator - StringContent - StringHolder - StringIndexOutOfBoundsException - StringMonitor - StringMonitorMBean - StringNameHelper - StringReader - StringRefAddr - StringSelection - StringSeqHelper - StringSeqHolder - StringTokenizer - StringValueExp - StringValueHelper - StringWriter - Stroke - Struct - StructMember - StructMemberHelper - Stub - StubDelegate - StubNotFoundException - Style - StyleConstants - StyleConstants.CharacterConstants - StyleConstants.ColorConstants - StyleConstants.FontConstants - StyleConstants.ParagraphConstants - StyleContext - StyleSheet - StyleSheet.BoxPainter - StyleSheet.ListPainter - StyledDocument - StyledEditorKit - StyledEditorKit.AlignmentAction - StyledEditorKit.BoldAction - StyledEditorKit.FontFamilyAction - StyledEditorKit.FontSizeAction - StyledEditorKit.ForegroundAction - StyledEditorKit.ItalicAction - StyledEditorKit.StyledTextAction - StyledEditorKit.UnderlineAction - Subject - SubjectDelegationPermission - SubjectDomainCombiner - SupportedValuesAttribute - SuppressWarnings - SwingConstants - SwingPropertyChangeSupport - SwingUtilities - SyncFactory - SyncFactoryException - SyncFailedException - SyncProvider - SyncProviderException - SyncResolver - SyncScopeHelper - SynchronousQueue - SynthConstants - SynthContext - SynthGraphicsUtils - SynthLookAndFeel - SynthPainter - SynthStyle - SynthStyleFactory - Synthesizer - SysexMessage - System - SystemColor - SystemException - SystemFlavorMap - TAG_ALTERNATE_IIOP_ADDRESS - TAG_CODE_SETS - TAG_INTERNET_IOP - TAG_JAVA_CODEBASE - TAG_MULTIPLE_COMPONENTS - TAG_ORB_TYPE - TAG_POLICIES - TAG_RMI_CUSTOM_MAX_STREAM_FORMAT - TCKind - THREAD_POLICY_ID - TIMEOUT - TRANSACTION_MODE - TRANSACTION_REQUIRED - TRANSACTION_ROLLEDBACK - TRANSACTION_UNAVAILABLE - TRANSIENT - TRANSPORT_RETRY - TabExpander - TabSet - TabStop - TabableView - TabbedPaneUI - TableCellEditor - TableCellRenderer - TableColumn - TableColumnModel - TableColumnModelEvent - TableColumnModelListener - TableHeaderUI - TableModel - TableModelEvent - TableModelListener - TableUI - TableView - TabularData - TabularDataSupport - TabularType - TagElement - TaggedComponent - TaggedComponentHelper - TaggedComponentHolder - TaggedProfile - TaggedProfileHelper - TaggedProfileHolder - Target - TargetDataLine - TargetedNotification - Templates - TemplatesHandler - Text - TextAction - TextArea - TextAttribute - TextComponent - TextEvent - TextField - TextHitInfo - TextInputCallback - TextLayout - TextLayout.CaretPolicy - TextListener - TextMeasurer - TextOutputCallback - TextSyntax - TextUI - TexturePaint - Thread - Thread.State - Thread.UncaughtExceptionHandler - ThreadDeath - ThreadFactory - ThreadGroup - ThreadInfo - ThreadLocal - ThreadMXBean - ThreadPolicy - ThreadPolicyOperations - ThreadPolicyValue - ThreadPoolExecutor - ThreadPoolExecutor.AbortPolicy - ThreadPoolExecutor.CallerRunsPolicy - ThreadPoolExecutor.DiscardOldestPolicy - ThreadPoolExecutor.DiscardPolicy - Throwable - Tie - TileObserver - Time - TimeLimitExceededException - TimeUnit - TimeZone - TimeoutException - Timer - Timer - Timer - TimerAlarmClockNotification - TimerMBean - TimerNotification - TimerTask - Timestamp - Timestamp - TitledBorder - TooManyListenersException - ToolBarUI - ToolTipManager - ToolTipUI - Toolkit - Track - TransactionRequiredException - TransactionRolledbackException - TransactionService - TransactionalWriter - TransferHandler - Transferable - TransformAttribute - Transformer - TransformerConfigurationException - TransformerException - TransformerFactory - TransformerFactoryConfigurationError - TransformerHandler - Transmitter - Transparency - TreeCellEditor - TreeCellRenderer - TreeExpansionEvent - TreeExpansionListener - TreeMap - TreeModel - TreeModelEvent - TreeModelListener - TreeNode - TreePath - TreeSelectionEvent - TreeSelectionListener - TreeSelectionModel - TreeSet - TreeUI - TreeWillExpandListener - TrustAnchor - TrustManager - TrustManagerFactory - TrustManagerFactorySpi - Type - TypeCode - TypeCodeHolder - TypeInfo - TypeInfoProvider - TypeMismatch - TypeMismatch - TypeMismatch - TypeMismatchHelper - TypeMismatchHelper - TypeNotPresentException - TypeVariable - Types - UID - UIDefaults - UIDefaults.ActiveValue - UIDefaults.LazyInputMap - UIDefaults.LazyValue - UIDefaults.ProxyLazyValue - UIManager - UIManager.LookAndFeelInfo - UIResource - ULongLongSeqHelper - ULongLongSeqHolder - ULongSeqHelper - ULongSeqHolder - UNKNOWN - UNKNOWN - UNSUPPORTED_POLICY - UNSUPPORTED_POLICY_VALUE - URI - URIException - URIResolver - URISyntax - URISyntaxException - URL - URLClassLoader - URLConnection - URLDecoder - URLEncoder - URLStreamHandler - URLStreamHandlerFactory - URLStringHelper - USER_EXCEPTION - UShortSeqHelper - UShortSeqHolder - UTFDataFormatException - UUID - UndeclaredThrowableException - UndoManager - UndoableEdit - UndoableEditEvent - UndoableEditListener - UndoableEditSupport - UnexpectedException - UnicastRemoteObject - UnionMember - UnionMemberHelper - UnknownEncoding - UnknownEncodingHelper - UnknownError - UnknownException - UnknownFormatConversionException - UnknownFormatFlagsException - UnknownGroupException - UnknownHostException - UnknownHostException - UnknownObjectException - UnknownServiceException - UnknownUserException - UnknownUserExceptionHelper - UnknownUserExceptionHolder - UnmappableCharacterException - UnmarshalException - UnmodifiableClassException - UnmodifiableSetException - UnrecoverableEntryException - UnrecoverableKeyException - Unreferenced - UnresolvedAddressException - UnresolvedPermission - UnsatisfiedLinkError - UnsolicitedNotification - UnsolicitedNotificationEvent - UnsolicitedNotificationListener - UnsupportedAddressTypeException - UnsupportedAudioFileException - UnsupportedCallbackException - UnsupportedCharsetException - UnsupportedClassVersionError - UnsupportedEncodingException - UnsupportedFlavorException - UnsupportedLookAndFeelException - UnsupportedOperationException - UserDataHandler - UserException - Util - UtilDelegate - Utilities - VMID - VM_ABSTRACT - VM_CUSTOM - VM_NONE - VM_TRUNCATABLE - Validator - ValidatorHandler - ValueBase - ValueBaseHelper - ValueBaseHolder - ValueExp - ValueFactory - ValueHandler - ValueHandlerMultiFormat - ValueInputStream - ValueMember - ValueMemberHelper - ValueOutputStream - VariableHeightLayoutCache - Vector - VerifyError - VersionSpecHelper - VetoableChangeListener - VetoableChangeListenerProxy - VetoableChangeSupport - View - ViewFactory - ViewportLayout - ViewportUI - VirtualMachineError - Visibility - VisibilityHelper - VoiceStatus - Void - VolatileImage - WCharSeqHelper - WCharSeqHolder - WStringSeqHelper - WStringSeqHolder - WStringValueHelper - WeakHashMap - WeakReference - WebRowSet - WildcardType - Window - WindowAdapter - WindowConstants - WindowEvent - WindowFocusListener - WindowListener - WindowStateListener - WrappedPlainView - WritableByteChannel - WritableRaster - WritableRenderedImage - WriteAbortedException - Writer - WrongAdapter - WrongAdapterHelper - WrongPolicy - WrongPolicyHelper - WrongTransaction - WrongTransactionHelper - WrongTransactionHolder - X500Principal - X500PrivateCredential - X509CRL - X509CRLEntry - X509CRLSelector - X509CertSelector - X509Certificate - X509Certificate - X509EncodedKeySpec - X509ExtendedKeyManager - X509Extension - X509KeyManager - X509TrustManager - XAConnection - XADataSource - XAException - XAResource - XMLConstants - XMLDecoder - XMLEncoder - XMLFilter - XMLFilterImpl - XMLFormatter - XMLGregorianCalendar - XMLParseException - XMLReader - XMLReaderAdapter - XMLReaderFactory - XPath - XPathConstants - XPathException - XPathExpression - XPathExpressionException - XPathFactory - XPathFactoryConfigurationException - XPathFunction - XPathFunctionException - XPathFunctionResolver - XPathVariableResolver - Xid - XmlReader - XmlWriter - ZipEntry - ZipException - ZipFile - ZipInputStream - ZipOutputStream - ZoneView - _BindingIteratorImplBase - _BindingIteratorStub - _DynAnyFactoryStub - _DynAnyStub - _DynArrayStub - _DynEnumStub - _DynFixedStub - _DynSequenceStub - _DynStructStub - _DynUnionStub - _DynValueStub - _IDLTypeStub - _NamingContextExtStub - _NamingContextImplBase - _NamingContextStub - _PolicyStub - _Remote_Stub - _ServantActivatorStub - _ServantLocatorStub - - - - AbstractAnnotationValueVisitor6 - AbstractElementVisitor6 - AbstractMarshallerImpl - AbstractOwnableSynchronizer - AbstractProcessor - AbstractQueuedLongSynchronizer - AbstractScriptEngine - AbstractTypeVisitor6 - AbstractUnmarshallerImpl - ActivationDataFlavor - AlgorithmMethod - AnnotationMirror - AnnotationValue - AnnotationValueVisitor - ArrayDeque - AsyncHandler - AttachmentMarshaller - AttachmentPart - AttachmentUnmarshaller - Binder - BindingProvider - Bindings - BlockingDeque - BreakIteratorProvider - C14NMethodParameterSpec - CanonicalizationMethod - Characters - ClientInfoStatus - CollapsedStringAdapter - CollatorProvider - CommandInfo - CommandMap - CommandObject - CommonDataSource - Compilable - CompiledScript - Completion - Completions - CompositeDataInvocationHandler - CompositeDataView - ConcurrentNavigableMap - ConcurrentSkipListMap - ConcurrentSkipListSet - ConfigurationSpi - Console - ConstructorProperties - CookieManager - CookiePolicy - CookieStore - CurrencyNameProvider - Data - DataContentHandler - DataContentHandlerFactory - DataHandler - DatatypeConverter - DatatypeConverterInterface - DateFormatProvider - DateFormatSymbolsProvider - DecimalFormatSymbolsProvider - DeclaredType - DefaultRowSorter - DefaultValidationEventHandler - DeflaterInputStream - Deque - DescriptorKey - DescriptorRead - Desktop - Detail - DetailEntry - Diagnostic - DiagnosticCollector - DiagnosticListener - DigestMethod - DigestMethodParameterSpec - Dispatch - DOMCryptoContext - DomHandler - DOMSignContext - DOMStructure - DOMURIReference - DOMValidateContext - DropMode - ElementFilter - ElementKind - ElementKindVisitor6 - Elements - ElementScanner6 - ElementVisitor - EndDocument - EndElement - Endpoint - EntityDeclaration - ErrorType - EventException - EventFilter - EventReaderDelegate - EventTarget - ExcC14NParameterSpec - ExecutableElement - ExecutableType - FileDataSource - FileNameExtensionFilter - FileObject - Filer - FilerException - FileTypeMap - ForwardingFileObject - ForwardingJavaFileManager - ForwardingJavaFileObject - Generated - GridBagLayoutInfo - GroupLayout - HandlerChain - HandlerResolver - HexBinaryAdapter - HMACParameterSpec - Holder - HTTPBinding - HttpCookie - HTTPException - IDN - ImmutableDescriptor - InflaterOutputStream - InitParam - InterfaceAddress - Invocable - IOError - JavaCompiler - JavaFileManager - JavaFileObject - JAXBContext - JAXBElement - JAXBException - JAXBIntrospector - JAXBResult - JAXBSource - JMX - JMXAddressable - KeyInfo - KeyInfoFactory - KeyName - KeySelector - KeySelectorException - KeySelectorResult - KeyValue - LayoutPath - LayoutStyle - LinearGradientPaint - LinkedBlockingDeque - LocaleNameProvider - LocaleServiceProvider - Location - LockInfo - LogicalHandler - LogicalMessage - LogicalMessageContext - MailcapCommandMap - Marshaller - MessageContext - MessageFactory - Messager - MimeHeader - MimeHeaders - MimeType - MimeTypeParameterList - MimetypesFileTypeMap - MirroredTypeException - MirroredTypesException - MLetContent - MonitorInfo - MultipleGradientPaint - MutationEvent - MXBean - Namespace - NavigableMap - NavigableSet - NClob - NestingKind - NodeSetData - NormalizedStringAdapter - Normalizer - NoSuchMechanismException - NotationDeclaration - NotIdentifiableEvent - NotIdentifiableEventImpl - NoType - NullType - NumberFormatProvider - OctetStreamData - Oneway - OptionChecker - PackageElement - ParseConversionEvent - ParseConversionEventImpl - Path2D - PGPData - PolicySpi - PortInfo - PostConstruct - PreDestroy - PrimitiveType - PrintConversionEvent - PrintConversionEventImpl - ProcessingEnvironment - Processor - PropertyException - RadialGradientPaint - ReferenceType - RequestWrapper - Resource - Resources - Response - ResponseWrapper - RetrievalMethod - RoundEnvironment - RowFilter - RowId - RowIdLifetime - RowSorter - RowSorterEvent - RowSorterListener - RunnableFuture - RunnableScheduledFuture - SAAJMetaFactory - SAAJResult - SchemaOutputResolver - ScriptContext - ScriptEngine - ScriptEngineFactory - ScriptEngineManager - ScriptException - Service - ServiceConfigurationError - ServiceDelegate - ServiceLoader - ServiceMode - SignatureMethod - SignatureMethodParameterSpec - SignatureProperties - SignatureProperty - SignedInfo - SimpleAnnotationValueVisitor6 - SimpleBindings - SimpleElementVisitor6 - SimpleJavaFileObject - SimpleScriptContext - SimpleTypeVisitor6 - SOAPBinding - SOAPBinding - SOAPBody - SOAPBodyElement - SOAPConnection - SOAPConnectionFactory - SOAPConstants - SOAPElement - SOAPElementFactory - SOAPEnvelope - SOAPException - SOAPFactory - SOAPFault - SOAPFaultElement - SOAPFaultException - SOAPHandler - SOAPHeader - SOAPHeaderElement - SOAPMessage - SOAPMessageContext - SOAPMessageHandler - SOAPMessageHandlers - SOAPPart - SortOrder - SourceVersion - SplashScreen - SQLClientInfoException - SQLDataException - SQLFeatureNotSupportedException - SQLIntegrityConstraintViolationException - SQLInvalidAuthorizationSpecException - SQLNonTransientConnectionException - SQLNonTransientException - SQLRecoverableException - SQLSyntaxErrorException - SQLTimeoutException - SQLTransactionRollbackException - SQLTransientConnectionException - SQLTransientException - SQLXML - SSLParameters - StandardEmitterMBean - StandardJavaFileManager - StandardLocation - StartDocument - StartElement - StatementEvent - StatementEventListener - StAXResult - StAXSource - StreamFilter - StreamReaderDelegate - SupportedAnnotationTypes - SupportedOptions - SupportedSourceVersion - SwingWorker - SystemTray - TableRowSorter - TableStringConverter - TimeZoneNameProvider - Tool - ToolProvider - Transform - TransformException - TransformParameterSpec - TransformService - TrayIcon - TypeConstraintException - TypeElement - TypeKind - TypeKindVisitor6 - TypeMirror - TypeParameterElement - TypeVisitor - UIEvent - UnknownAnnotationValueException - UnknownElementException - UnknownTypeException - Unmarshaller - UnmarshallerHandler - UnsupportedDataTypeException - URIDereferencer - URIParameter - URIReference - URIReferenceException - URLDataSource - ValidationEvent - ValidationEventCollector - ValidationEventHandler - ValidationEventImpl - ValidationEventLocator - ValidationEventLocatorImpl - ValidationException - VariableElement - W3CDomHandler - WebEndpoint - WebFault - WebMethod - WebParam - WebResult - WebService - WebServiceClient - WebServiceContext - WebServiceException - WebServicePermission - WebServiceProvider - WebServiceRef - WebServiceRefs - Wrapper - X509Data - X509IssuerSerial - XmlAccessOrder - XmlAccessorOrder - XmlAccessorType - XmlAccessType - XmlAdapter - XmlAnyAttribute - XmlAnyElement - XmlAttachmentRef - XmlAttribute - XMLCryptoContext - XmlElement - XmlElementDecl - XmlElementRef - XmlElementRefs - XmlElements - XmlElementWrapper - XmlEnum - XmlEnumValue - XMLEvent - XMLEventAllocator - XMLEventConsumer - XMLEventFactory - XMLEventReader - XMLEventWriter - XmlID - XmlIDREF - XmlInlineBinaryData - XMLInputFactory - XmlJavaTypeAdapter - XmlJavaTypeAdapters - XmlList - XmlMimeType - XmlMixed - XmlNs - XmlNsForm - XMLObject - XMLOutputFactory - XmlRegistry - XMLReporter - XMLResolver - XmlRootElement - XmlSchema - XmlSchemaType - XmlSchemaTypes - XMLSignature - XMLSignatureException - XMLSignatureFactory - XMLSignContext - XMLStreamConstants - XMLStreamException - XMLStreamReader - XMLStreamWriter - XMLStructure - XmlTransient - XmlType - XMLValidateContext - XmlValue - XPathFilter2ParameterSpec - XPathFilterParameterSpec - XPathType - XSLTTransformParameterSpec - ZipError - - - - - as - in - - abstract - break - case - catch - class - continue - default - do - else - enum - extends - false - finally - for - goto - if - implements - instanceof - @interface - interface - native - new - null - private - protected - public - return - super - strictfp - switch - synchronized - this - throws - throw - transient - true - try - volatile - while - - - def - - boolean - byte - char - const - double - final - float - int - long - short - static - void - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/hamlet.xml ktexteditor-5.31.0/src/syntax/data/hamlet.xml --- ktexteditor-5.28.0/src/syntax/data/hamlet.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/hamlet.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,104 +0,0 @@ - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/haml.xml ktexteditor-5.31.0/src/syntax/data/haml.xml --- ktexteditor-5.28.0/src/syntax/data/haml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/haml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,523 +0,0 @@ - - - - - - - - - - - - - - - - - BEGIN - END - and - begin - break - case - defined? - do - else - elsif - end - ensure - for - if - in - include - next - not - or - redo - rescue - retry - return - then - unless - until - when - while - yield - - - - private_class_method - private - protected - public_class_method - public - - - - attr_reader - attr_writer - attr_accessor - - - - alias - module - class - def - undef - - - - self - super - nil - false - true - caller - __FILE__ - __LINE__ - - - - $stdout - $defout - $stderr - $deferr - $stdin - - - - - - abort - at_exit - autoload - autoload? - binding - block_given? - callcc - caller - catch - chomp - chomp! - chop - chop! - eval - exec - exit - exit! - fail - fork - format - getc - gets - global_variables - gsub - gsub! - iterator? - lambda - load - local_variables - loop - method_missing - open - p - print - printf - proc - putc - puts - raise - rand - readline - readlines - require - scan - select - set_trace_func - sleep - split - sprintf - srand - sub - sub! - syscall - system - test - throw - trace_var - trap - untrace_var - warn - - - - TODO - FIXME - NOTE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/haskell.xml ktexteditor-5.31.0/src/syntax/data/haskell.xml --- ktexteditor-5.28.0/src/syntax/data/haskell.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/haskell.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,518 +0,0 @@ - - - - - - case - class - data - deriving - do - else - if - in - infixl - infixr - instance - let - module - newtype - of - primitive - then - type - where - - - FilePath - IOError - abs - acos - acosh - all - and - any - appendFile - approxRational - asTypeOf - asin - asinh - atan - atan2 - atanh - basicIORun - break - catch - ceiling - chr - compare - concat - concatMap - const - cos - cosh - curry - cycle - decodeFloat - denominator - digitToInt - div - divMod - drop - dropWhile - either - elem - encodeFloat - enumFrom - enumFromThen - enumFromThenTo - enumFromTo - error - even - exp - exponent - fail - filter - flip - floatDigits - floatRadix - floatRange - floor - fmap - foldl - foldl1 - foldMap - foldr - foldr1 - fromDouble - fromEnum - fromInt - fromInteger - fromIntegral - fromRational - fst - gcd - getChar - getContents - getLine - group - head - id - inRange - index - init - intToDigit - interact - ioError - isAlpha - isAlphaNum - isAscii - isControl - isDenormalized - isDigit - isHexDigit - isIEEE - isInfinite - isLower - isNaN - isNegativeZero - isOctDigit - isPrint - isSpace - isUpper - iterate - last - lcm - length - lex - lexDigits - lexLitChar - lines - log - logBase - lookup - map - mappend - mapM - mapM_ - max - maxBound - maximum - maybe - mconcat - mempty - min - minBound - minimum - mod - negate - not - notElem - null - numerator - odd - or - ord - otherwise - pack - pi - pred - primExitWith - print - product - properFraction - pure - putChar - putStr - putStrLn - quot - quotRem - range - rangeSize - read - readDec - readFile - readFloat - readHex - readIO - readInt - readList - readLitChar - readLn - readOct - readParen - readSigned - reads - readsPrec - realToFrac - recip - rem - repeat - replicate - return - reverse - round - scaleFloat - scanl - scanl1 - scanr - scanr1 - seq - sequence - sequenceA - sequence_ - show - showChar - showInt - showList - showLitChar - showParen - showSigned - showString - shows - showsPrec - significand - signum - sin - sinh - snd - sort - span - splitAt - sqrt - subtract - succ - sum - tail - take - takeWhile - tan - tanh - threadToIOResult - toEnum - toInt - toInteger - toLower - toRational - toUpper - traverse - truncate - uncurry - undefined - unlines - until - unwords - unzip - unzip3 - userError - words - writeFile - zip - zip3 - zipWith - zipWith3 - - - Applicative - Bounded - Enum - Eq - Floating - Foldable - Fractional - Functor - Integral - Ix - Monad - Monoid - Num - Ord - Read - Real - RealFloat - RealFrac - Show - Traversable - - - Bool - ByteString - Char - Double - Either - FilePath - Float - Int - Integer - IO - IOError - Maybe - Ordering - Ratio - Rational - ReadS - ShowS - String - Word - - - False - True - Left - Right - Just - Nothing - EQ - LT - GT - - - defined - if - ifdef - ifndef - include - undef - - - qualified - lib - prefix - as - with - call - pure - unsafe - get - set - foreign - stable - nocode - - - as - qualified - hiding - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/haxe.xml ktexteditor-5.31.0/src/syntax/data/haxe.xml --- ktexteditor-5.28.0/src/syntax/data/haxe.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/haxe.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,181 +0,0 @@ - - - - - - - - - break - - case - cast - catch - class - continue - - default - - else - enum - extends - - false - for - function - - if - implements - in - inline - interface - - new - null - - override - - private - public - - return - - static - super - switch - - this - throw - trace - true - try - typedef - - untyped - - var - - while - - - - - package - import - - - - Array - Void - Bool - Int - UInt - Float - Dynamic - String - List - Error - Unknown - Type - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/html.xml ktexteditor-5.31.0/src/syntax/data/html.xml --- ktexteditor-5.28.0/src/syntax/data/html.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/html.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,226 +0,0 @@ - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/hunspell-aff.xml ktexteditor-5.31.0/src/syntax/data/hunspell-aff.xml --- ktexteditor-5.28.0/src/syntax/data/hunspell-aff.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/hunspell-aff.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,236 +0,0 @@ - - - - - - - - - - SET - FLAG - LANG - - - - TRY - WORDCHARS - IGNORE - - - - BREAK - COMPOUNDSYLLABLE - - - - SFX - PFX - - - - - COMPOUNDRULE - PHONE - ICONV - OCONV - KEY - MAP - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/hunspell-dat.xml ktexteditor-5.31.0/src/syntax/data/hunspell-dat.xml --- ktexteditor-5.28.0/src/syntax/data/hunspell-dat.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/hunspell-dat.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/hunspell-dic.xml ktexteditor-5.31.0/src/syntax/data/hunspell-dic.xml --- ktexteditor-5.28.0/src/syntax/data/hunspell-dic.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/hunspell-dic.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,85 +0,0 @@ - - - - - - - - LEFTHYPHENMIN - RIGHTHYPHENMIN - COMPOUNDLEFTHYPHENMIN - COMPOUNDRIGHTHYPHENMIN - NEXTWORD - NOHYPHEN - NEXTLEVEL - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/hunspell-idx.xml ktexteditor-5.31.0/src/syntax/data/hunspell-idx.xml --- ktexteditor-5.28.0/src/syntax/data/hunspell-idx.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/hunspell-idx.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/idconsole.xml ktexteditor-5.31.0/src/syntax/data/idconsole.xml --- ktexteditor-5.28.0/src/syntax/data/idconsole.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/idconsole.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,2146 +0,0 @@ - - - - - - - ForceCloseComman - _config_com_baud - _config_com_modem - _vid_default_mode - _vid_default_mode_win - _vid_wait_override - _windowed_mouse - addip - addressbook - adjust_crosshair - advancedupdate - allow_download - allow_download_maps - allow_download_models - allow_download_skins - allow_download_sounds - allskins - appenddemo - autosave - ban - banClient - banUser - banid - baseskin - begin - bf - bgetmod - bindlist - block_switch - bottomcolor - buyNow - buyequip - cache_endgather - cache_flush - cache_mapchange - cache_print - cache_profile - cache_setindex - cache_startgather - cache_usedfile - cancelselect - cd - centerview - changeVectors - changelevel - changelevel2 - changing - chase_active - cinematic - cl_deadbodyfilter - cl_gibfilter - cl_hightrack - cl_hudswap - cl_messages - cl_nodelta - cl_nolerp - cl_nopred - cl_predict_players - cl_rate - cl_sbar - cl_sbar_separator - cl_shownet - cl_sidespeed - cl_solid_players - cl_warncmd - cl_writecfg - clear - clearplayers - clientinfo - clientkick - cmd - cmdline - cmdlist - color - commands - condebug - condump - configstrings - confirm_quit - connect - contimes - coop - crash - credits - cropimages - crosshair - cvar_restart - cvarlist - d_mipcap - d_subdiv16 - deathmatch - delta_clear - delta_stats - demo - demolist - demomap - demos - developer - devmap - dir - disconnect - dlfile - dmoptions - download - drawradar - drop - dropclient - dumpuser - edict - edictcount - edicts - endmovie - entities - envmap - error - escape - exec - exit - fastsprites - fdir - filterban - firstperson - floodprot - floodprotmsg - flush - fly - force_centerview - fov - fraglogfile - freelook - freeze - front - fs_openedList - fs_referencedList - fullinfo - fullserverinfo - game - gameCompleteStatus - gamedir - gamemap - gameversion - getcertificate - gfxinfo - gg - gib - gibload - gibstats - give - gl_affinemodels - gl_clear - gl_colorlights - gl_constretch - gl_cull - gl_dlight_lightmap - gl_dlight_polyblend - gl_dlight_smooth - gl_fb_bmodels - gl_fb_models - gl_finish - gl_fires - gl_flashblend - gl_keeptjunctions - gl_lerp_anim - gl_lightmode - gl_max_size - gl_multitexture - gl_nobind - gl_nocolors - gl_picmip - gl_playermip - gl_polyblend - gl_reportjunctions - gl_sky_clip - gl_skymultipass - gl_smoothmodels - gl_texsort - gl_texturemode - gl_triplebuffer - gl_ztrick - globalservers - god - gun - gun_model - gun_next - gun_prev - gunsmoke - heartbeat - help - hideconsole - hideradar - host_speeds - hostname - hpkextract - hpklist - hpkremove - hpkval - hud_centerid - imagelist - impulse - imt - in_bind - in_paste_buffer - in_restart - in_unbind - info - interp - invdrop - inven - invnext - invnextp - invnextw - invprev - invprevp - invprevw - invuse - joinserver - joy - joy_advancedupdate - joy_enable - joyadvanced - joyadvancedupdat - joyadvancedupdate - joyname - joystick - keys - kick - kill - killserver - lefthand - link - list - listdemo - listen - listid - listip - listmaps - load - loadas8bit - loadgame - loading - loadsky - loadtranslations - loc - localinfo - localservers - log - logaddress - logfile - lookspring - lookstrafe - m_filter - main - map - map_restart - maplist - maps - maxplayers - max_smokepuffs - max_shells - mcache - meminfo - menu - menu_addressbook - menu_credits - menu_help - menu_keys - menu_load - menu_loadgame - menu_main - menu_multiplayer - menu_options - menu_playerconfig - menu_quit - menu_save - menu_savegame - menu_setup - menu_select - menu_singleplayer - menu_startserver - menu_video - menu_dmoptions - menu_game - menu_joinserver - messagemode - messagemode2 - messagemode3 - messagemode4 - model - modelist - modellist - msg - multiplayer - music - name - net_stats - new - next - nextul - nightvision - no_pogo_stick - noaim - noclip - noexit - nomonsters - noskins - nosound - notarget - options - packet - password - path - pausable - pause - paused - ping - pingservers - play - playdemo - playerconfig - players - playvol - pushlatency - pointfile - ppdemostart - pr_boundscheck - precache - prespawn - prev - profile - profilequit - prog - quit - r_drawentities - r_drawflat - r_draworder - r_drawviewmodel - r_dspeeds - r_dynamic - r_fullbright - r_lightmap - r_netgraph - r_netgraph_box - r_norefresh - r_novis - r_numedges - r_numsurfs - r_particles - r_polymodelstats - r_reportsurfout - r_shadows - r_speeds - r_timegraph - r_wateralpha - r_waterripple - r_waterwarp - r_zgraph - rcon - rcon_password - reconnect - record - registered - reload - removedemo - removeid - removeip - rerecord - reset - resetrcon - restart - retry - s_disable_a3d - s_enable_a3d - s_info - s_list - s_stop - samelevel - save - savegame - savetranslations - score - screenshot - screenshotJPEG - sectorlist - sendents - serverinfo - serverprofile - serverrecord - serverstatus - serverstop - setRecommended - setdemoinfo - setenv - setinfo - setmaster - setrom - shaderlist - show_fps - show_time - showdrop - showinfo - showip - showpackets - showpause - showram - showturtle - shutdownserver - singlePlayLink - sizedown - sizeup - skill - skin - skinlist - skins - sky - skyboxlist - slist - slot1 - slot10 - slot2 - slot3 - slot4 - slot5 - slot6 - slot7 - slot8 - slot9 - snap - snapall - snapshot - snapto - snd - snd_noextraupdate - snd_restart - snd_show - soundfade - soundinfo - soundlist - spawn - spdevmap - speak - special - specmode - spectator - spectator_password - spk - spmap - startLimboMode - startSingleplayer - startdemos - startmovie - startserver - stat - stats - status - stop - stopLimboMode - stopdemo - stoprecord - stopsound - stopul - streamingsound - stuffcmd - stuffcmds - sv - sv_allow_log - sv_allow_pings - sv_allow_status - sv_gamedir - sv_highchars - sv_mapcheck - sv_nostep - sv_spectatormaxspeed - sv_spetalk - sv_maplist - swapdemo - sys_cpuid - sys_dead_sleep - sys_extrasleep - sys_nostdout - systeminfo - taginfo - team - teamplay - tell - test - test2 - time - thirdperson - timedemo - timeleft - timerefresh - toggle - togglebrowser - togglechat - toggleconsole - togglemenu - topcolor - touchFile - trackplayer - ui_restart - unalias - unbindall - updatehunkusage - updatescreen - upload - use - user - userinfo - users - v_centerspeed - v_cshift - v_idlescale - version - vid - vid_center - vid_config_x - vid_describecurrentmode - vid_describemode - vid_describemodes - vid_forcemode - vid_fullscreen - vid_fullscreen_mode - vid_minimize - vid_nopageflip - vid_nummodes - vid_restart - vid_stretch_by_2 - vid_testmode - vid_windowed - vid_windowed_mode - vid_front - video - viewframe - viewmodel - viewnext - viewpos - viewprev - vminfo - vmprofile - voice_showbanned - votemap - vstr - wait - watervis - wave - weapon - weapon_knife - weaplast - weapnext - weapprev - windowsr_drawentities - writecfg - writeconfig - writeid - writeip - z_stats - - - - - ah - ActiveAction - _cl_color - _cl_name - _config_com_baud - _config_com_irq - _config_com_modem - _config_com_port - _config_modem_clear - _config_modem_dialtype - _config_modem_hangup - _config_modem_init - _snd_mixahead - _vid_default_mode - _vid_default_mode_win - _vid_wait_override - _windowed_mouse - address - adr - adr0 - adr1 - adr2 - adr3 - adr4 - adr5 - adr6 - adr7 - adr8 - advanced - advaxisr - advaxisu - advaxisv - advaxisx - advaxisy - advaxisz - airaccelerate - allow - allow_download_players - ambient_fade - ambient_level - anglespeedkey - arch - array - arrays - att - auto - autoskins - b - bgmbuffer - bgmvolume - bit - bitdepth - blend - bob - bob_pitch - bob_roll - bob_up - bot_aasoptimize - bot_challenge - bot_debug - bot_developer - bot_enable - bot_fastchat - bot_forceclustering - bot_forcereachability - bot_forcewrite - bot_grapple - bot_groundonly - bot_interbreedbots - bot_interbreedchar - bot_interbreedcycle - bot_interbreedwrite - bot_maxdebugpolys - bot_miniplayers - bot_minplayers - bot_nochat - bot_pause - bot_reachability - bot_reloadcharacters - bot_report - bot_rocketjump - bot_saveroutingcache - bot_testclusters - bot_testichat - bot_testrchat - bot_testsolid - bot_thinktime - bot_visualizejumppads - brighten - brightness - broken - cd - cd_loopcount - cd_looptrack - cd_nocd - cd_plugin - centermove - centerspeed - centertime - cg_autoactivate - cg_autoswitch - cg_blinktime - cg_bloodTime - cg_bobpitch - cg_bobroll - cg_bobup - cg_brassTime - cg_cameraOrbitDelay - cg_clipboardName - cg_coronafardist - cg_coronas - cg_crosshairAlpha - cg_crosshairHealth - cg_crosshairSize - cg_crosshairX - cg_crosshairY - cg_currentSelectedPlayer - cg_currentSelectedPlayerName - cg_cursorHints - cg_cycleAllWeaps - cg_deferPlayers - cg_descriptiveText - cg_draw2D - cg_draw3dIcons - cg_drawAllWeaps - cg_drawAmmoWarning - cg_drawAttacker - cg_drawCompass - cg_drawCrosshair - cg_drawCrosshairNames - cg_drawCrosshairPickups - cg_drawFPGun - cg_drawFPS - cg_drawFrags - cg_drawGun - cg_drawIcons - cg_drawNotifyText - cg_drawRewards - cg_drawSnapshot - cg_drawSpreadScale - cg_drawStatus - cg_drawTeamOverlay - cg_drawTimer - cg_emptyswitch - cg_fov - cg_forcemodel - cg_gibs - cg_hudAlpha - cg_hudFiles - cg_lagometer - cg_marks - cg_marktime - cg_noplayeranims - cg_nopredict - cg_noTaunt - cg_noVoiceChats - cg_noVoiceText - cg_particleDist - cg_particleLOD - cg_popupLimboMenu - cg_predictItems - cg_quickMessageAlt - cg_railTrailTime - cg_recoilPitch - cg_reticleBrightness - cg_reticleType - cg_runpitch - cg_runroll - cg_scorePlums - cg_selectedPlayer - cg_selectedPlayerName - cg_shadows - cg_showblood - cg_simpleItems - cg_skybox - cg_stereoSeparation - cg_teamChatHeight - cg_teamChatTime - cg_teamChatsOnly - cg_thirdperson - cg_thirdpersonrange - cg_thirdPersonAngle - cg_useWeapsForZoom - cg_uselessNostalgia - cg_viewsize - cg_voiceSpriteTime - cg_weaponCycleDelay - cg_wolfparticles - cg_zoomDefaultBinoc - cg_zoomDefaultFG - cg_zoomDefaultSniper - cg_zoomDefaultSnooper - cg_zoomStepBinoc - cg_zoomStepFG - cg_zoomStepSnooper - cg_zoomfov - cg_zoomstepsniper - chase_active - chase_back - chase_right - chase_up - cheats - cl - cl_allowDownload - cl_anglespeedkey - cl_anonymous - cl_autoexec - cl_autoskins - cl_avidemo - cl_backspeed - cl_blend - cl_bob - cl_bobcycle - cl_bobup - cl_bypassMouseInput - cl_cacheGathering - cl_camera_maxpitch - cl_camera_maxyaw - cl_chasecam - cl_chatmode - cl_conXOffset - cl_crossx - cl_crossy - cl_cshift_bonus - cl_cshift_content - cl_cshift_damage - cl_cshift_powerup - cl_debugMove - cl_debugTranslation - cl_demospeed - cl_entities - cl_footsteps - cl_forceavidemo - cl_forwardspeed - cl_freelook - cl_freezeDemo - cl_gun - cl_hidefrags - cl_hightrack - cl_hudswap - cl_language - cl_lights - cl_maxPing - cl_maxfps - cl_maxpackets - cl_motd - cl_motdString - cl_mouseAccel - cl_movespeedkey - cl_nodelta - cl_nofake - cl_nolerp - cl_nopred - cl_noprint - cl_noskins - cl_packetdup - cl_parsesay - cl_particles - cl_paused - cl_pitchspeed - cl_predict - cl_predict_players - cl_predict_players2 - cl_observercrosshair - cl_quakerc - cl_rollangle - cl_rollspeed - cl_run - cl_running - cl_serverStatusResendTime - cl_showfps - cl_showSend - cl_showServerCommands - cl_showTimeDelta - cl_showmiss - cl_showmouserate - cl_shownet - cl_shownuments - cl_sidespeed - cl_stats - cl_stereo - cl_stereo_separation - cl_testblend - cl_testentities - cl_testlights - cl_testparticles - cl_timeNudge - cl_timeout - cl_upspeed - cl_verstring - cl_visibleClients - cl_vwep - cl_waitForFire - cl_wavefilerecord - cl_yawspeed - clear - clearcolor - clientport - cm_playerCurveClip - cmd_highchars - cmd_warncmd - cmdlist - color - color1 - color2 - com_blood - com_buildScript - com_cameraMode - com_dropsim - com_hunkMegs - com_hunkused - com_introplayed - com_maxfps - com_recommendedSet - com_showtrace - com_soundMegs - com_speeds - com_zoneMegs - compiled - con_debug - con_notifytime - con_restricted - conspeed - contrast - coop - crosshair - crosshaircolor - cull - d_mipcap - d_mipscale - deathmatch - debug_protocol - debuggraph - dedicated - devdll - developer - dlabs - dmflags - dm - down - download - drawall - drawbuffer - drawentities - drawflat - draworder - drawworld - driver - dspeeds - dynamic - easter_eggs - edgefriction - empty - enforcetime - entities - entlatency - ext - filter - filterban - finish - fixedtime - flashblend - flood - flood_msgs - flood_persecond - flood_waitdelay - flushmap - footsteps - forward - forwardsensitivity - forwardspeed - forwardthreshold - fov - fraglimit - freelook - fs_basegame - fs_basepath - fs_cdpath - fs_copyfiles - fs_debug - fs_game - fs_globalcfg - fs_homepath - fs_pluginpath - fs_restrict - fs_sharepath - fs_skinbase - fs_usercfg - fs_userpath - fullbright - fullscreen - g_allowvote - g_altStopwatchMode - g_arenasFile - g_blueTeam - g_botsFile - g_complaintlimit - g_currentRound - g_friendlyFire - g_gameskill - g_gametype - g_maxlives - g_minGameClients - g_missionStats - g_nextTimeLimit - g_noTeamSwitching - g_redTeam - g_select_empty - g_spAwards - g_spScores1 - g_spScores2 - g_spScores3 - g_spScores4 - g_spScores5 - g_spSkill - g_spVideos - g_userAlliedRespawnTime - g_userAxisRespawnTime - g_userTimeLimit - game - gamecfg - gamedate - gamedir - gamename - gamestate - gamma - gender - gender_auto - gl_3dlabs_broken - gl_allow_software - gl_bitdepth - gl_clear - gl_conalpha - gl_conspin - gl_cshiftpercent - gl_cull - gl_drawbuffer - gl_driver - gl_dynamic - gl_ext_compiled_vertex_array - gl_ext_multitexture - gl_ext_palettedtexture - gl_ext_pointparameters - gl_ext_swapinterval - gl_finish - gl_flashblend - gl_keeptjunctions - gl_lightmap - gl_lightmap_align - gl_lightmap_subimage - gl_lockpvs - gl_log - gl_max_size - gl_mesh_cache - gl_mode - gl_modulate - gl_monolightmap - gl_nobind - gl_nocolors - gl_nosubimage - gl_occlusion - gl_particle_att_a - gl_particle_att_b - gl_particle_att_c - gl_particle_max_size - gl_particle_min_size - gl_particle_mip - gl_particle_size - gl_picmip - gl_playermip - gl_polyblend - gl_reporttjunctions - gl_round_down - gl_saturatelighting - gl_screenshot_byte_swap - gl_shadows - gl_showtris - gl_sky_debug - gl_sky_divide - gl_skymip - gl_smoothmodels - gl_subdivide_size - gl_swapinterval - gl_texsort - gl_texturealphamode - gl_texturemode - gl_texturesolidmode - gl_triplebuffer - gl_vertex_arrays - gl_ztrick - graphheight - graphscale - graphshift - gravity - gun - gun_x - gun_y - gun_z - hand - handicap - head - headModel - headmodel - host - host_framerate - host_speeds - hostname - hostport - hud_fastswitch - in - in_amp - in_bind_imt - in_debugjoystick - in_dga - in_dga_mouseaccel - in_dgamouse - in_grab - in_joystick - in_midi - in_mouse - in_mouse_amp - in_mouse_filter - in_mouse_pre_amp - in_pre_amp - initsound - intensity - ip - ip_clientport - ip_hostport - ipx - ipx_clientport - ipx_hostport - journal - joy - joy_advanced - joy_advaxisr - joy_advaxisu - joy_advaxisv - joy_advaxisx - joy_advaxisy - joy_advaxisz - joy_amp - joy_device - joy_forwardsensitivity - joy_forwardthreshold - joy_name - joy_pitchsensitivity - joy_pitchthreshold - joy_pre_amp - joy_sensitivity - joy_sidesensitivity - joy_sidethreshold - joy_threshold - joy_upsensitivity - joy_upthreshold - joy_yawsensitivity - joy_yawthreshold - joyadvanced - joyadvaxisr - joyadvaxisu - joyadvaxisv - joyadvaxisx - joyadvaxisy - joyadvaxisz - joyaxis1 - joyaxis2 - joyaxis3 - joyaxis4 - joyaxis5 - joyaxis6 - joyaxis7 - joyaxis8 - joyforwardsensitivity - joyforwardthreshold - joyname - joypitchsensitivity - joypitchthreshold - joysidesensitivity - joysidethreshold - joystick - joywwhack1 - joywwhack2 - joyyawsensitivity - joyyawthreshold - khz - lcd_x - lcd_yaw - lerpmodels - lightmap - lights - limit - listen - loadas - loadas8bit - localid - lockpvs - log - log_stats - logfile - lookspring - lookstrafe - loopcount - looptrack - m_filter - m_forward - m_pitch - m_side - m_yaw - mapname - maps - max - maxclients - maxedges - maxentities - maxfps - maxplayers - maxspectators - maxsurfs - maxvelocity - min - mipcap - mipscale - mixahead - mode - model - models - modex - modulate - monolightmap - mouse - mp_currentPlayerType - mp_currentTeam - mp_playerType - mp_team - mp_weapon - mp_autokick - mp_autoteambalance - mp_c4timer - mp_flashlight - mp_footsteps - mp_forcechasecam - mp_freezetime - mp_friendlyfire - mp_hostagepenalty - mp_limitteams - mp_logmessages - mp_mapvoteration - mp_roundtime - mp_timelimit - mp_tkpunish - msg - msgs - multitexture - name - net_graph - net_ip - net_messagetimeout - net_noudp - net_port - net_qport - net_restart - netdosexpire - netdosvalues - netgraph - nextdemo - nextmap - nextserver - noalttab - nobind - nocd - nocull - nodelta - noexit - nomonsters - norefresh - noreload - noskins - nosound - nosubimage - novis - palettedtexture - particle - particles - password - pausable - persecond - picmip - pitch - pitchsensitivity - pitchspeed - pitchthreshold - playermip - players - pointparameters - polyblend - polymodelstats - port - pr_checkextensions - pr_deadbeef_ents - pr_deadbeef_locals - pr_debug - pr_source_path - precache - predict - primary - printspeed - protocol - public - pushlatency - qport - r_aliastransadj - r_aliastransbase - r_allowExtensions - r_allowSoftwareGL - r_ambient - r_ambientScale - r_bonesDebug - r_cache - r_cacheModels - r_cacheShaders - r_clear - r_clearcolor - r_colorMipLevels - r_colorbits - r_compressModels - r_customaspect - r_customheight - r_customwidth - r_debugSort - r_debugSurface - r_debuglight - r_depthbits - r_detailtextures - r_directedScale - r_displayRefresh - r_dlightBacks - r_dlight_lightmap - r_dlight_max - r_drawBuffer - r_drawSun - r_drawentities - r_drawexplosions - r_drawflat - r_draworder - r_drawviewmodel - r_drawworld - r_dspeeds - r_dynamic - r_dynamiclight - r_explosionclip - r_exportCompressedModels - r_ext_compiled_vertex_array - r_ext_compress_textures - r_ext_compressed_textures - r_ext_gamma_control - r_ext_multitexture - r_ext_texture_env_add - r_facePlaneCull - r_fastsky - r_finish - r_firecolor - r_flareFade - r_flareSize - r_flares - r_fullbright - r_fullscreen - r_gamma - r_glDriver - r_glIgnoreWicked3D - r_graphheight - r_highQualit - r_highQualityVideo - r_ignore - r_ignoreFastPath - r_ignoreGLErrors - r_ignorehwgamma - r_inGameVideo - r_intensity - r_lastValidRenderer - r_lerpmodels - r_lightmap - r_lightmap_components - r_lockpvs - r_lodCurveError - r_lodbias - r_lodscale - r_logFile - r_lowMemTextureSize - r_lowMemTextureThreshold - r_mapOverBrightBits - r_maxedges - r_maxpolys - r_maxpolyverts - r_maxsurfs - r_measureOverdraw - r_mirroralpha - r_mode - r_netgraph - r_netgraph_alpha - r_nobind - r_nocull - r_nocurves - r_noportals - r_norefresh - r_novis - r_numedges - r_numsurfs - r_offsetfactor - r_offsetunits - r_overBrightBits - r_particles_max - r_particles_style - r_picmip - r_picmip2 - r_polymodelstats - r_portalOnly - r_preloadTextures - r_previousglDriver - r_primitives - r_printShaders - r_railCoreWidth - r_railSegmentLength - r_railWidth - r_reportedgeout - r_reportsurfout - r_rmse - r_roundImagesDown - r_saveFontData - r_shadows - r_showImages - r_showSmp - r_showcluster - r_shownormals - r_showsky - r_showtris - r_simpleMipMaps - r_singleShader - r_skipBackEnd - r_skyname - r_smp - r_speeds - r_stencilbits - r_stereo - r_subdivisions - r_swapInterval - r_textureMode - r_texturebits - r_timegraph - r_uiFullScreen - r_verbose - r_vertexLight - r_wateralpha - r_waterwarp - r_wolffog - r_zfar - r_znear - rate - rcon - rconAddress - rconPassword - rcon_address - rcon_password - reconnect - ref - registered - reportedgeout - reportsurfout - roll - rollangle - rollspeed - round - run - run_pitch - run_roll - s_compression - s_defaultsound - s_doppler - s_initsound - s_khz - s_loadas8bit - s_mixPreStep - s_mixahead - s_musicvolume - s_mute - s_nocompressed - s_usingA3D - s_primary - s_separation - s_show - s_testsound - s_volume - s_wavonly - samelevel - saturatelighting - saved1 - saved2 - saved3 - saved4 - savedgamecfg - scr - scr_centertime - scr_consize - scr_conspeed - scr_drawall - scr_ofsx - scr_ofsy - scr_ofsz - scr_printspeed - scr_showpause - scr_showturtle - scratch1 - scratch2 - scratch3 - scratch4 - screenshot - select - sensitivity - separation - server1 - server10 - server11 - server12 - server13 - server14 - server15 - server16 - server2 - server3 - server4 - server5 - server6 - server7 - server8 - server9 - serverprofile - sex - shadows - show - showclamp - showdrop - showmiss - shownet - showpackets - showpause - showram - showtrace - showtris - showturtle - side - sidesensitivity - sidespeed - sidethreshold - size - skill - skin - skymip - snaps - snd_bits - snd_device - snd_interp - snd_loadas8bit - snd_mixahead - snd_noextraupdate - snd_oss_mmaped - snd_output - snd_phasesep - snd_rate - snd_render - snd_show - snd_stereo - snd_volumesep - sndbits - sndchannels - snddevice - sndspeed - software - sounds - spectator - spectator_password - speeds - stats - stereo - stipplealpha - surfcacheoverride - sv - sv_accelerate - sv_aim - sv_airaccelerate - sv_allowAnonymous - sv_allowDownload - sv_cheats - sv_enforcetime - sv_floodProtect - sv_fps - sv_friction - sv_gravity - sv_hostname - sv_idealpitchscale - sv_keywords - sv_killserver - sv_mapChecksum - sv_master1 - sv_master2 - sv_master3 - sv_master4 - sv_master5 - sv_maxPing - sv_maxRate - sv_maxclients - sv_maxrate - sv_maxspeed - sv_maxtic - sv_maxvelocity - sv_minPing - sv_minqfversion - sv_mintic - sv_netdosprotect - sv_noreload - sv_nostep - sv_onlyVisibleClients - sv_padPackets - sv_pakNames - sv_paks - sv_paused - sv_phs - sv_privateClients - sv_privatePassword - sv_progs - sv_pure - sv_reconnect_limit - sv_reconnectlimit - sv_referencedPakNames - sv_referencedPaks - sv_restartround - sv_rollangle - sv_rollspeed - sv_running - sv_serverid - sv_showAverageBPS - sv_showloss - sv_spectalk - sv_stopspeed - sv_timefmt - sv_timekick - sv_timekick_fuzz - sv_timekick_interval - sv_timeout - sv_timestamps - sv_wateraccelerate - sv_waterfriction - sv_zombietime - sw - sw_allow_modex - sw_clearcolor - sw_drawflat - sw_draworder - sw_maxedges - sw_maxsurfs - sw_mipcap - sw_mipscale - sw_mode - sw_polymodelstats - sw_reportedgeout - sw_reportsurfout - sw_stipplealpha - sw_surfcacheoverride - sw_waterwarp - swapinterval - sys_cpustring - sys_nostdout - sys_sleep - sys_ticrate - team - team_headmodel - team_model - teamplay - teamtask - temp1 - testblend - testentities - testlights - testparticles - testsound - texturealphamode - texturemode - texturesolidmode - timedemo - timegraph - timelimit - timeout - timescale - topcolor - triplebuffer - ttycon - ui_Q3Model - ui_actualNetGametype - ui_bigFont - ui_browserGameType - ui_browserMaster - ui_browserShowEmpty - ui_browserShowFriendlyFire - ui_browserShowFull - ui_browserShowMaxlives - ui_browserShowTourney - ui_browserSortKey - ui_cdkeychecked - ui_class - ui_cmd - ui_ctf_capturelimit - ui_ctf_friendly - ui_ctf_timelimit - ui_currentMap - ui_currentNetMap - ui_dedicated - ui_ffa_fraglimit - ui_ffa_timelimit - ui_gametype - ui_glCustom - ui_isSpectator - ui_joinGametype - ui_limboMode - ui_limboObjective - ui_limboOptions - ui_limboPrevOptions - ui_mapIndex - ui_master - ui_menuFiles - ui_mousePitch - ui_netGametype - ui_netSource - ui_notebookCurrentPage - ui_objective - ui_prevClass - ui_prevTeam - ui_prevWeapon - ui_serverStatusTimeOut - ui_singlePlayerActive - ui_smallFont - ui_spSelection - ui_team - ui_teamArenaFirstRun - ui_team_fraglimit - ui_team_friendly - ui_team_timelimit - ui_tourney_fraglimit - ui_tourney_timelimit - ui_userAlliedRespawnTime - ui_userAxisRespawnTime - ui_userTimeLimit - ui_weapon - up - upsensitivity - upspeed - upthreshold - username - v_centermove - v_centerspeed - v_idlescale - v_ipitch_cycle - v_ipitch_level - v_iroll_cycle - v_iroll_level - v_iuaw_cycle - v_iyaw_cycle - v_iyaw_level - v_kickpitch - v_kickroll - v_kicktime - version - vertex - vid - vid_config_x - vid_config_y - vid_fullscreen - vid_fullscreen_mode - vid_gamma - vid_height - vid_mode - vid_nopageflip - vid_ref - vid_system_gamma - vid_use8bit - vid_wait - vid_width - vid_window_x - vid_window_y - vid_windowed_mode - vid_xpos - vid_ypos - viewlog - viewsize - vm_cgame - vm_game - vm_ui - volume - vwep - waitdelay - waterwarp - wavonly - win - win_noalttab - win_hinstance - win_wndproc - xpos - yaw - yawsensitivity - yawspeed - yawthreshold - ypos - zombietime - ztrick - - - - - +attack - +ttack2 - +alt1 - +activate - +back - +break - +button0 - +button1 - +button10 - +button11 - +button12 - +button13 - +button14 - +button2 - +button3 - +button4 - +button5 - +button6 - +button7 - +button8 - +button9 - +camdistance - +camin - +cammousemove - +camout - +campitchdown - +campitchup - +camyawleft - +camyawright - +commandmenu - +dropweapon - +duck - +forward - +graph - +jlook - +jump - +kick - +klook - +leanleft - +leanright - +left - +lookdown - +lookup - +mlook - +movedown - +moveleft - +moveright - +moveup - +nvgadjust - +quickgren - +reload - +right - +salute - +score - +showscores - +speed - +sprint - +strafe - +use - +useitem - +voicerecord - +wbutton7 - +zoom - -activate - -alt1 - -attack - -attack2 - -back - -break - -button0 - -button1 - -button10 - -button11 - -button12 - -button13 - -button14 - -button2 - -button3 - -button4 - -button5 - -button6 - -button7 - -button8 - -button9 - -camdistance - -camin - -cammousemove - -camout - -campitchdown - -campitchup - -camyawleft - -camyawright - -commandmenu - -dropweapon - -duck - -forward - -graph - -jlook - -jump - -kick - -klook - -leanleft - -leanright - -left - -lookdown - -lookup - -mlook - -movedown - -moveleft - -moveright - -moveup - -nvgadjust - -quickgren - -reload - -right - -salute - -score - -showscores - -speed - -sprint - -strafe - -use - -useitem - -voicerecord - -wbutton7 - -zoom - - - - - * - [ - ] - \ - / - ' - = - - - + - , - . - ` - ~ - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 0 - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - x - w - y - z - ALT - AUX1 - AUX10 - AUX11 - AUX12 - AUX13 - AUX14 - AUX15 - AUX16 - AUX17 - AUX18 - AUX2 - AUX20 - AUX21 - AUX22 - AUX23 - AUX24 - AUX25 - AUX26 - AUX27 - AUX28 - AUX29 - AUX3 - AUX30 - AUX31 - AUX32 - AUX4 - AUX5 - AUX6 - AUX7 - AUX8 - AUX9 - BACKSPACE - CTRL - DEL - DOWNARROW - END - ENTER - ESCAPE - F1 - F10 - F11 - F12 - F2 - F3 - F4 - F5 - F6 - F7 - F8 - F9 - HOME - INS - JOY1 - JOY2 - JOY3 - JOY4 - KP_SLASH - KP_5 - KP_UPARROW - KP_LEFTARROW - KP_RIGHTARROW - KP_DOWNARROW - KP_HOME - KP_END - KP_PGUP - KP_PGDN - KP_INS - KP_DEL - LEFTARROW - MOUSE1 - MOUSE2 - MOUSE3 - MWHEELDOWN - MWHEELUP - PAUSE - PGDN - PGUP - RIGHTARROW - SEMICOLON - CAPSLOCK - SHIFT - SPACE - TAB - UPARROW - - - - ; - $ - - - bind - unbind - - - set - seta - setu - sets - - - echo - say_team - say - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/idl.xml ktexteditor-5.31.0/src/syntax/data/idl.xml --- ktexteditor-5.28.0/src/syntax/data/idl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/idl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,116 +0,0 @@ - - - - - - any - attribute - case - const - context - default - enum - exception - FALSE - fixed - public - in - inout - interface - module - Object - oneway - out - raises - readonly - sequence - struct - switch - TRUE - typedef - unsigned - union - - - boolean - char - double - float - long - octet - short - string - void - wchar - wstring - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ilerpg.xml ktexteditor-5.31.0/src/syntax/data/ilerpg.xml --- ktexteditor-5.28.0/src/syntax/data/ilerpg.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ilerpg.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,725 +0,0 @@ - - - - - - - EXTPROC - EXTPGM - OPDESC - DATFMT - DIM - LIKEDS - LIKEREC - LIKE - PROCPTR - TIMFMT - VARYING - ASCEND - CONST - NOOPT - OPTIONS - VALUE - QUALIFIED - INZ - BASED - - - DATFMT - DIM - LIKE - LIKEDS - LIKEREC - PROCPTR - TIMFMT - - - FREE - END-FREE - TITLE - EJECT - SPACE - COPY - INCLUDE - DEFINE - UNDEFINE - IF - ELSE - EXEC - END-EXEC - ELSEIF - ENDIF - EOF - - - NOT - DEFINED - - - DEFINED - - - ABS - ADDR - ALLOC - BITAND - BITNOT - BITOR - BITXOR - CHAR - CHECK - CHECKR - DATE - DAYS - DEC - DECH - DECPOS - DIFF - DIV - EDITC - EDITFLT - EDITW - ELEM - EOF - EQUAL - ERROR - FIELDS - FLOAT - FOUND - GRAPH - HOURS - INT - INTH - KDS - LEN - LOOKUP - LOOKUPLT - LOOKUPLE - LOOKUPGT - LOOKUPGE - MINUTES - MONTHS - MSECONDS - NULLIND - OCCUR - OPEN - PADDR - PARMS - REALLOC - REM - REPLACE - SCAN - SECONDS - SHTDN - SIZE - SQRT - STATUS - STR - SUBARR - SUBDT - SUBST - THIS - TIME - TIMESTAMP - TLOOKUP - TLOOKUPLT - TLOOKUPLE - TLOOKUPGT - TLOOKUPGE - TRIM - TRIML - TRIMR - UCS2 - UNS - UNSH - XFOOT - XLATE - YEARS - - - IF - - - DOW - DOU - FOR - - - WHEN - EVAL - - - EVALR - - - RETURN - - - ON-ERROR - - - DO - IN - OR - - - ACQ - ADD - AND - CAB - CAS - CAT - DIV - DOU - END - MVR - OUT - REL - SUB - TAG - - - CALL - COMP - DUMP - ELSE - EXSR - FEOD - GOTO - IFGT - IFLT - IFEQ - IFNE - IFGE - IFLE - ITER - KFLD - MOVE - MULT - NEXT - OPEN - ORGT - ORLT - OREQ - ORNE - ORGE - ORLE - PARM - POST - READ - SCAN - SQRT - TEST - TIME - - - ALLOC - ANDGT - ANDLT - ANDEQ - ANDNE - ANDGE - ANDLE - BEGSR - BITON - CABGT - CABLT - CABEQ - CABNE - CABGE - CABLE - CALLB - CALLP - CASGT - CASLT - CASEQ - CASNE - CASGE - CASLE - CHAIN - CHECK - CLEAR - CLOSE - CHECK - CLEAR - CLOSE - DOWGT - DOWLT - DOWEQ - DOWNE - DOWGE - DOWLE - DOUGT - DOULT - DOUEQ - DOUNE - DOUGE - DOULE - DSPLY - ENDCS - ENDDO - ENDIF - ENDSL - ENDSR - EXFMT - FORCE - KLIST - LEAVE - MHHZO - MHLZO - MLHZO - MLLZO - MOVEA - MOVEL - OCCUR - OTHER - PLIST - READC - READE - READP - RESET - ROLBK - SETGT - SETLL - SETON - SHTDN - SORTA - SUBST - TESTB - TESTN - TESTZ - WRITE - XFOOT - XLATE - - - ADDDUR - BITOFF - CHECKR - COMMIT - DEFINE - DELETE - EXCEPT - EXTRCT - LOOKUP - READPE - RETURN - SELECT - SETOFF - SUBDUR - UNLOCK - UPDATE - WHENGT - WHENLT - WHENEQ - WHENNR - WHENGE - WHENLE - - - DEALLOC - REALLOC - - - ACQ - BEGSR - CALLP - CHAIN - CLEAR - CLOSE - COMMIT - DEALLOC - DELETE - DOU - DOW - DSPLY - DUMP - ELSE - ELSEIF - ENDDO - ENDFOR - ENDIF - ENDMON - ENDSL - ENDSR - EVAL - EVALR - EXCEPT - EXFMT - EXSR - FEOD - FOR - FORCE - IF - IN - ITER - LEAVE - LEAVESR - MONITOR - NEXT - ON-ERROR - OPEN - OTHER - OUT - POST - READ - READC - READE - READP - READPE - REL - RESET - RETURN - ROLBK - SELECT - SETGT - SETLL - SORTA - TEST - UNLOCK - UPDATE - WHEN - WRITE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/inform.xml ktexteditor-5.31.0/src/syntax/data/inform.xml --- ktexteditor-5.28.0/src/syntax/data/inform.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/inform.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,405 +0,0 @@ - - - - - - - - if - for - else - box - break - continue - do - until - font - give - inversion - jump - on - to - move - new_line - objectloop - print - print_ret - quit - read - remove - restore - return - rtrue - rfalse - save - spaces - spring - style - switch - - - - metaclass - parent - child - children - Achieved - AddToScope - allowpushdir - CDefArt - ChangeDefault - DefArt - DoMenu - EnglishNumber - HasLightSource - InDefArt - Locale - LoopOverScope - NextWord - NextWordStopped - NounDomain - ObjectIsUntouchable - OffersLight - PlaceInScope - PlayerTo - PrintShortName - ScopeWithin - SetTime - StartDaemon - StartTimer - StopDaemon - StopTimer - TestScope - TryNumber - UnsignedCompare - WordAddress - WordLenght - WriteListFrom - YesOrNo - ZRegion - - - Pronouns - Quit - Restore - Save - Verify - Restart - ScriptOn - ScriptOff - NotifyOn - NotifyOff - Places - Objects - Score - FullScore - Version - LMode1 - LMode2 - LMode3 - Inv - - - Inv - InvTall - InvWide - Take - Drop - Empty - Enter - Exit - GetOff - Go - GoIn - Look - Examine - Search - Give - Show - Unlock - Lock - SwitchOn - SwitchOff - Open - Close - Disrobe - Wear - Eat - - LetGo - Receive - Insert - PutOn - Transfer - Empty - EmptyT - GetOff - GoIn - Listen - Taste - Touch - - Pull - Push - Wave - Turn - PushDir - ThrowAt - ThrownAt - JumpOn - Drink - Attack - Tie - Fill - Swing - Blow - Rub - Set - SetTo - Buy - Climb - Squeeze - Climb - Burn - Cut - Dig - - Consult - Tell - Answer - Ask - AskFor - Kiss - - Sleep - Sing - WaveHands - Swim - Sorry - Sing - Strong - Mild - Smell - Pray - Jump - Think - VagueGo - Yes - No - Sing - - - - String - Routine - bold - roman - underline - fixed - nothing - true - false - on - off - sender - self - location - score - action - actor - noun - second - the_time - consult_from - consult_words - wn - actors_location - buffer - player - - - - Ifdef - Ifndef - Iftrue - Iffalse - Ifnot - Endif - End - Abbreviate - Array - Attribute - Constant - Default - Extend - Global - Ifnot - Iftrue - Iffalse - Import - Include - Link - Lowstring - Message - Property - Release - Replace - Serial - Switches - Statusline - score - System_file - Verb - - - - #ifdef - #else - #ifndef - #endif - - - - has - hasn't - in - notin - provides - ofclass - or - - - - with - private - has - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ini.xml ktexteditor-5.31.0/src/syntax/data/ini.xml --- ktexteditor-5.28.0/src/syntax/data/ini.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ini.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,80 +0,0 @@ - - - - - - -On -Off -Default -Defaults -Localhost -Null -True -False -Yes -No -Normal - - -E_ALL -E_ERROR -E_WARNING -E_PARSE -E_NOTICE -E_STRICT -E_CORE_ERROR -E_CORE_WARNING -E_COMPILE_ERROR -E_COMPILE_WARNING -E_USER_ERROR -E_USER_WARNING -E_USER_NOTICE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/isocpp.xml ktexteditor-5.31.0/src/syntax/data/isocpp.xml --- ktexteditor-5.28.0/src/syntax/data/isocpp.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/isocpp.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,516 +0,0 @@ - - - - - - - -]> - - - - - break - case - catch - continue - default - do - else - for - goto - if - return - switch - throw - try - while - - - alignof - alignas - asm - auto - class - constexpr - const_cast - decltype - delete - dynamic_cast - enum - explicit - export - false - final - friend - inline - namespace - new - noexcept - nullptr - operator - override - private - protected - public - reinterpret_cast - sizeof - static_assert - static_cast - struct - template - this - true - typedef - typeid - typename - union - using - virtual - - and - and_eq - bitand - bitor - compl - not - not_eq - or - or_eq - xor - xor_eq - - - - template - - - - - - noreturn - carries_dependency - - deprecated - - - - bool - char - char16_t - char32_t - double - float - int - long - short - signed - unsigned - void - int8_t - int16_t - int32_t - int64_t - uint8_t - uint16_t - uint32_t - uint64_t - int_least8_t - int_least16_t - int_least32_t - int_least64_t - uint_least8_t - uint_least16_t - uint_least32_t - uint_least64_t - int_fast8_t - int_fast16_t - int_fast32_t - int_fast64_t - uint_fast8_t - uint_fast16_t - uint_fast32_t - uint_fast64_t - size_t - ssize_t - wchar_t - intptr_t - uintptr_t - intmax_t - uintmax_t - ptrdiff_t - sig_atomic_t - wint_t - - - const - extern - mutable - register - static - thread_local - volatile - - - __FILE__ - __LINE__ - __DATE__ - __TIME__ - __STDC__ - __STDC_VERSION__ - __STDC_HOSTED__ - __STDC_ISO_10646__ - __STDC_MB_MIGHT_NEQ_WC__ - __cplusplus - __func__ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/jam.xml ktexteditor-5.31.0/src/syntax/data/jam.xml --- ktexteditor-5.28.0/src/syntax/data/jam.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/jam.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,347 +0,0 @@ - - - - - - - - actions - break - continue - for - in - if - else - include - local - on - return - rule - switch - case - while - - - local - - - existing - ignore - piecemeal - quietly - together - updated - - - bind - - : - ; - [ - ] - ( - ) - { - } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/javadoc.xml ktexteditor-5.31.0/src/syntax/data/javadoc.xml --- ktexteditor-5.28.0/src/syntax/data/javadoc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/javadoc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/javascript.xml ktexteditor-5.31.0/src/syntax/data/javascript.xml --- ktexteditor-5.28.0/src/syntax/data/javascript.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/javascript.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,258 +0,0 @@ - - - - - - - - - break - case - catch - continue - debugger - do - else - finally - for - if - return - switch - throw - try - while - with - - - const - delete - function - in - instanceof - new - this - typeof - var - void - - - class - enum - extends - super - - - implements - interface - let - private - protected - public - static - yield - - - import - from - as - default - export - package - - - Infinity - NaN - false - null - true - undefined - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/java.xml ktexteditor-5.31.0/src/syntax/data/java.xml --- ktexteditor-5.28.0/src/syntax/data/java.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/java.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3858 +0,0 @@ - - - - - - ACTIVE - ACTIVITY_COMPLETED - ACTIVITY_REQUIRED - ARG_IN - ARG_INOUT - ARG_OUT - AWTError - AWTEvent - AWTEventListener - AWTEventListenerProxy - AWTEventMulticaster - AWTException - AWTKeyStroke - AWTPermission - AbstractAction - AbstractBorder - AbstractButton - AbstractCellEditor - AbstractCollection - AbstractColorChooserPanel - AbstractDocument - AbstractDocument.AttributeContext - AbstractDocument.Content - AbstractDocument.ElementEdit - AbstractExecutorService - AbstractInterruptibleChannel - AbstractLayoutCache - AbstractLayoutCache.NodeDimensions - AbstractList - AbstractListModel - AbstractMap - AbstractMethodError - AbstractPreferences - AbstractQueue - AbstractQueuedSynchronizer - AbstractSelectableChannel - AbstractSelectionKey - AbstractSelector - AbstractSequentialList - AbstractSet - AbstractSpinnerModel - AbstractTableModel - AbstractUndoableEdit - AbstractWriter - AccessControlContext - AccessControlException - AccessController - AccessException - Accessible - AccessibleAction - AccessibleAttributeSequence - AccessibleBundle - AccessibleComponent - AccessibleContext - AccessibleEditableText - AccessibleExtendedComponent - AccessibleExtendedTable - AccessibleExtendedText - AccessibleHyperlink - AccessibleHypertext - AccessibleIcon - AccessibleKeyBinding - AccessibleObject - AccessibleRelation - AccessibleRelationSet - AccessibleResourceBundle - AccessibleRole - AccessibleSelection - AccessibleState - AccessibleStateSet - AccessibleStreamable - AccessibleTable - AccessibleTableModelChange - AccessibleText - AccessibleTextSequence - AccessibleValue - AccountException - AccountExpiredException - AccountLockedException - AccountNotFoundException - Acl - AclEntry - AclNotFoundException - Action - ActionEvent - ActionListener - ActionMap - ActionMapUIResource - Activatable - ActivateFailedException - ActivationDesc - ActivationException - ActivationGroup - ActivationGroupDesc - ActivationGroupDesc.CommandEnvironment - ActivationGroupID - ActivationGroup_Stub - ActivationID - ActivationInstantiator - ActivationMonitor - ActivationSystem - Activator - ActiveEvent - ActivityCompletedException - ActivityRequiredException - AdapterActivator - AdapterActivatorOperations - AdapterAlreadyExists - AdapterAlreadyExistsHelper - AdapterInactive - AdapterInactiveHelper - AdapterManagerIdHelper - AdapterNameHelper - AdapterNonExistent - AdapterNonExistentHelper - AdapterStateHelper - AddressHelper - Adjustable - AdjustmentEvent - AdjustmentListener - Adler32 - AffineTransform - AffineTransformOp - AlgorithmParameterGenerator - AlgorithmParameterGeneratorSpi - AlgorithmParameterSpec - AlgorithmParameters - AlgorithmParametersSpi - AllPermission - AlphaComposite - AlreadyBound - AlreadyBoundException - AlreadyBoundHelper - AlreadyBoundHolder - AlreadyConnectedException - AncestorEvent - AncestorListener - AnnotatedElement - Annotation - AnnotationFormatError - AnnotationTypeMismatchException - Any - AnyHolder - AnySeqHelper - AnySeqHelper - AnySeqHolder - AppConfigurationEntry - AppConfigurationEntry.LoginModuleControlFlag - Appendable - Applet - AppletContext - AppletInitializer - AppletStub - ApplicationException - Arc2D - Arc2D.Double - Arc2D.Float - Area - AreaAveragingScaleFilter - ArithmeticException - Array - Array - ArrayBlockingQueue - ArrayIndexOutOfBoundsException - ArrayList - ArrayStoreException - ArrayType - Arrays - AssertionError - AsyncBoxView - AsynchronousCloseException - AtomicBoolean - AtomicInteger - AtomicIntegerArray - AtomicIntegerFieldUpdater - AtomicLong - AtomicLongArray - AtomicLongFieldUpdater - AtomicMarkableReference - AtomicReference - AtomicReferenceArray - AtomicReferenceFieldUpdater - AtomicStampedReference - Attr - Attribute - Attribute - Attribute - AttributeChangeNotification - AttributeChangeNotificationFilter - AttributeException - AttributeInUseException - AttributeList - AttributeList - AttributeList - AttributeListImpl - AttributeModificationException - AttributeNotFoundException - AttributeSet - AttributeSet - AttributeSet.CharacterAttribute - AttributeSet.ColorAttribute - AttributeSet.FontAttribute - AttributeSet.ParagraphAttribute - AttributeSetUtilities - AttributeValueExp - AttributedCharacterIterator - AttributedCharacterIterator.Attribute - AttributedString - Attributes - Attributes - Attributes - Attributes.Name - Attributes2 - Attributes2Impl - AttributesImpl - AudioClip - AudioFileFormat - AudioFileFormat.Type - AudioFileReader - AudioFileWriter - AudioFormat - AudioFormat.Encoding - AudioInputStream - AudioPermission - AudioSystem - AuthPermission - AuthProvider - AuthenticationException - AuthenticationException - AuthenticationNotSupportedException - Authenticator - Authenticator.RequestorType - AuthorizeCallback - Autoscroll - BAD_CONTEXT - BAD_INV_ORDER - BAD_OPERATION - BAD_PARAM - BAD_POLICY - BAD_POLICY_TYPE - BAD_POLICY_VALUE - BAD_QOS - BAD_TYPECODE - BMPImageWriteParam - BackingStoreException - BadAttributeValueExpException - BadBinaryOpValueExpException - BadKind - BadLocationException - BadPaddingException - BadStringOperationException - BandCombineOp - BandedSampleModel - BaseRowSet - BasicArrowButton - BasicAttribute - BasicAttributes - BasicBorders - BasicBorders.ButtonBorder - BasicBorders.FieldBorder - BasicBorders.MarginBorder - BasicBorders.MenuBarBorder - BasicBorders.RadioButtonBorder - BasicBorders.RolloverButtonBorder - BasicBorders.SplitPaneBorder - BasicBorders.ToggleButtonBorder - BasicButtonListener - BasicButtonUI - BasicCheckBoxMenuItemUI - BasicCheckBoxUI - BasicColorChooserUI - BasicComboBoxEditor - BasicComboBoxEditor.UIResource - BasicComboBoxRenderer - BasicComboBoxRenderer.UIResource - BasicComboBoxUI - BasicComboPopup - BasicControl - BasicDesktopIconUI - BasicDesktopPaneUI - BasicDirectoryModel - BasicEditorPaneUI - BasicFileChooserUI - BasicFormattedTextFieldUI - BasicGraphicsUtils - BasicHTML - BasicIconFactory - BasicInternalFrameTitlePane - BasicInternalFrameUI - BasicLabelUI - BasicListUI - BasicLookAndFeel - BasicMenuBarUI - BasicMenuItemUI - BasicMenuUI - BasicOptionPaneUI - BasicOptionPaneUI.ButtonAreaLayout - BasicPanelUI - BasicPasswordFieldUI - BasicPermission - BasicPopupMenuSeparatorUI - BasicPopupMenuUI - BasicProgressBarUI - BasicRadioButtonMenuItemUI - BasicRadioButtonUI - BasicRootPaneUI - BasicScrollBarUI - BasicScrollPaneUI - BasicSeparatorUI - BasicSliderUI - BasicSpinnerUI - BasicSplitPaneDivider - BasicSplitPaneUI - BasicStroke - BasicTabbedPaneUI - BasicTableHeaderUI - BasicTableUI - BasicTextAreaUI - BasicTextFieldUI - BasicTextPaneUI - BasicTextUI - BasicTextUI.BasicCaret - BasicTextUI.BasicHighlighter - BasicToggleButtonUI - BasicToolBarSeparatorUI - BasicToolBarUI - BasicToolTipUI - BasicTreeUI - BasicViewportUI - BatchUpdateException - BeanContext - BeanContextChild - BeanContextChildComponentProxy - BeanContextChildSupport - BeanContextContainerProxy - BeanContextEvent - BeanContextMembershipEvent - BeanContextMembershipListener - BeanContextProxy - BeanContextServiceAvailableEvent - BeanContextServiceProvider - BeanContextServiceProviderBeanInfo - BeanContextServiceRevokedEvent - BeanContextServiceRevokedListener - BeanContextServices - BeanContextServicesListener - BeanContextServicesSupport - BeanContextServicesSupport.BCSSServiceProvider - BeanContextSupport - BeanContextSupport.BCSIterator - BeanDescriptor - BeanInfo - Beans - BevelBorder - Bidi - BigDecimal - BigInteger - BinaryRefAddr - BindException - Binding - Binding - BindingHelper - BindingHolder - BindingIterator - BindingIteratorHelper - BindingIteratorHolder - BindingIteratorOperations - BindingIteratorPOA - BindingListHelper - BindingListHolder - BindingType - BindingTypeHelper - BindingTypeHolder - BitSet - Blob - BlockView - BlockingQueue - Book - Boolean - BooleanControl - BooleanControl.Type - BooleanHolder - BooleanSeqHelper - BooleanSeqHolder - Border - BorderFactory - BorderLayout - BorderUIResource - BorderUIResource.BevelBorderUIResource - BorderUIResource.CompoundBorderUIResource - BorderUIResource.EmptyBorderUIResource - BorderUIResource.EtchedBorderUIResource - BorderUIResource.LineBorderUIResource - BorderUIResource.MatteBorderUIResource - BorderUIResource.TitledBorderUIResource - BoundedRangeModel - Bounds - Bounds - Box - Box.Filler - BoxLayout - BoxView - BoxedValueHelper - BreakIterator - BrokenBarrierException - Buffer - BufferCapabilities - BufferCapabilities.FlipContents - BufferOverflowException - BufferStrategy - BufferUnderflowException - BufferedImage - BufferedImageFilter - BufferedImageOp - BufferedInputStream - BufferedOutputStream - BufferedReader - BufferedWriter - Button - ButtonGroup - ButtonModel - ButtonUI - Byte - ByteArrayInputStream - ByteArrayOutputStream - ByteBuffer - ByteChannel - ByteHolder - ByteLookupTable - ByteOrder - CDATASection - CMMException - CODESET_INCOMPATIBLE - COMM_FAILURE - CRC32 - CRL - CRLException - CRLSelector - CSS - CSS.Attribute - CTX_RESTRICT_SCOPE - CacheRequest - CacheResponse - CachedRowSet - Calendar - Callable - CallableStatement - Callback - CallbackHandler - CancelablePrintJob - CancellationException - CancelledKeyException - CannotProceed - CannotProceedException - CannotProceedHelper - CannotProceedHolder - CannotRedoException - CannotUndoException - Canvas - CardLayout - Caret - CaretEvent - CaretListener - CellEditor - CellEditorListener - CellRendererPane - CertPath - CertPath.CertPathRep - CertPathBuilder - CertPathBuilderException - CertPathBuilderResult - CertPathBuilderSpi - CertPathParameters - CertPathTrustManagerParameters - CertPathValidator - CertPathValidatorException - CertPathValidatorResult - CertPathValidatorSpi - CertSelector - CertStore - CertStoreException - CertStoreParameters - CertStoreSpi - Certificate - Certificate - Certificate - Certificate.CertificateRep - CertificateEncodingException - CertificateEncodingException - CertificateException - CertificateException - CertificateExpiredException - CertificateExpiredException - CertificateFactory - CertificateFactorySpi - CertificateNotYetValidException - CertificateNotYetValidException - CertificateParsingException - CertificateParsingException - ChangeEvent - ChangeListener - ChangedCharSetException - Channel - ChannelBinding - Channels - CharArrayReader - CharArrayWriter - CharBuffer - CharConversionException - CharHolder - CharSeqHelper - CharSeqHolder - CharSequence - Character - Character.Subset - Character.UnicodeBlock - CharacterCodingException - CharacterData - CharacterIterator - Charset - CharsetDecoder - CharsetEncoder - CharsetProvider - Checkbox - CheckboxGroup - CheckboxMenuItem - CheckedInputStream - CheckedOutputStream - Checksum - Choice - ChoiceCallback - ChoiceFormat - Chromaticity - Cipher - CipherInputStream - CipherOutputStream - CipherSpi - Class - ClassCastException - ClassCircularityError - ClassDefinition - ClassDesc - ClassFileTransformer - ClassFormatError - ClassLoader - ClassLoaderRepository - ClassLoadingMXBean - ClassNotFoundException - ClientRequestInfo - ClientRequestInfoOperations - ClientRequestInterceptor - ClientRequestInterceptorOperations - Clip - Clipboard - ClipboardOwner - Clob - CloneNotSupportedException - Cloneable - Closeable - ClosedByInterruptException - ClosedChannelException - ClosedSelectorException - CodeSets - CodeSigner - CodeSource - Codec - CodecFactory - CodecFactoryHelper - CodecFactoryOperations - CodecOperations - CoderMalfunctionError - CoderResult - CodingErrorAction - CollationElementIterator - CollationKey - Collator - Collection - CollectionCertStoreParameters - Collections - Color - ColorChooserComponentFactory - ColorChooserUI - ColorConvertOp - ColorModel - ColorSelectionModel - ColorSpace - ColorSupported - ColorType - ColorUIResource - ComboBoxEditor - ComboBoxModel - ComboBoxUI - ComboPopup - Comment - CommunicationException - Comparable - Comparator - CompilationMXBean - Compiler - CompletionService - CompletionStatus - CompletionStatusHelper - Component - ComponentAdapter - ComponentColorModel - ComponentEvent - ComponentIdHelper - ComponentInputMap - ComponentInputMapUIResource - ComponentListener - ComponentOrientation - ComponentSampleModel - ComponentUI - ComponentView - Composite - CompositeContext - CompositeData - CompositeDataSupport - CompositeName - CompositeType - CompositeView - CompoundBorder - CompoundControl - CompoundControl.Type - CompoundEdit - CompoundName - Compression - ConcurrentHashMap - ConcurrentLinkedQueue - ConcurrentMap - ConcurrentModificationException - Condition - Configuration - ConfigurationException - ConfirmationCallback - ConnectException - ConnectException - ConnectIOException - Connection - ConnectionEvent - ConnectionEventListener - ConnectionPendingException - ConnectionPoolDataSource - ConsoleHandler - Constructor - Container - ContainerAdapter - ContainerEvent - ContainerListener - ContainerOrderFocusTraversalPolicy - ContentHandler - ContentHandler - ContentHandlerFactory - ContentModel - Context - Context - ContextList - ContextNotEmptyException - ContextualRenderedImageFactory - Control - Control - Control.Type - ControlFactory - ControllerEventListener - ConvolveOp - CookieHandler - CookieHolder - Copies - CopiesSupported - CopyOnWriteArrayList - CopyOnWriteArraySet - CountDownLatch - CounterMonitor - CounterMonitorMBean - CredentialException - CredentialExpiredException - CredentialNotFoundException - CropImageFilter - CubicCurve2D - CubicCurve2D.Double - CubicCurve2D.Float - Currency - Current - Current - Current - CurrentHelper - CurrentHelper - CurrentHelper - CurrentHolder - CurrentOperations - CurrentOperations - CurrentOperations - Cursor - CustomMarshal - CustomValue - Customizer - CyclicBarrier - DATA_CONVERSION - DESKeySpec - DESedeKeySpec - DGC - DHGenParameterSpec - DHKey - DHParameterSpec - DHPrivateKey - DHPrivateKeySpec - DHPublicKey - DHPublicKeySpec - DISCARDING - DOMConfiguration - DOMError - DOMErrorHandler - DOMException - DOMImplementation - DOMImplementationLS - DOMImplementationList - DOMImplementationRegistry - DOMImplementationSource - DOMLocator - DOMLocator - DOMResult - DOMSource - DOMStringList - DSAKey - DSAKeyPairGenerator - DSAParameterSpec - DSAParams - DSAPrivateKey - DSAPrivateKeySpec - DSAPublicKey - DSAPublicKeySpec - DTD - DTDConstants - DTDHandler - DataBuffer - DataBufferByte - DataBufferDouble - DataBufferFloat - DataBufferInt - DataBufferShort - DataBufferUShort - DataFlavor - DataFormatException - DataInput - DataInputStream - DataInputStream - DataLine - DataLine.Info - DataOutput - DataOutputStream - DataOutputStream - DataSource - DataTruncation - DatabaseMetaData - DatagramChannel - DatagramPacket - DatagramSocket - DatagramSocketImpl - DatagramSocketImplFactory - DatatypeConfigurationException - DatatypeConstants - DatatypeConstants.Field - DatatypeFactory - Date - Date - DateFormat - DateFormat.Field - DateFormatSymbols - DateFormatter - DateTimeAtCompleted - DateTimeAtCreation - DateTimeAtProcessing - DateTimeSyntax - DebugGraphics - DecimalFormat - DecimalFormatSymbols - DeclHandler - DefaultBoundedRangeModel - DefaultButtonModel - DefaultCaret - DefaultCellEditor - DefaultColorSelectionModel - DefaultComboBoxModel - DefaultDesktopManager - DefaultEditorKit - DefaultEditorKit.BeepAction - DefaultEditorKit.CopyAction - DefaultEditorKit.CutAction - DefaultEditorKit.DefaultKeyTypedAction - DefaultEditorKit.InsertBreakAction - DefaultEditorKit.InsertContentAction - DefaultEditorKit.InsertTabAction - DefaultEditorKit.PasteAction - DefaultFocusManager - DefaultFocusTraversalPolicy - DefaultFormatter - DefaultFormatterFactory - DefaultHandler - DefaultHandler2 - DefaultHighlighter - DefaultHighlighter.DefaultHighlightPainter - DefaultKeyboardFocusManager - DefaultListCellRenderer - DefaultListCellRenderer.UIResource - DefaultListModel - DefaultListSelectionModel - DefaultLoaderRepository - DefaultLoaderRepository - DefaultMenuLayout - DefaultMetalTheme - DefaultMutableTreeNode - DefaultPersistenceDelegate - DefaultSingleSelectionModel - DefaultStyledDocument - DefaultStyledDocument.AttributeUndoableEdit - DefaultStyledDocument.ElementSpec - DefaultTableCellRenderer - DefaultTableCellRenderer.UIResource - DefaultTableColumnModel - DefaultTableModel - DefaultTextUI - DefaultTreeCellEditor - DefaultTreeCellRenderer - DefaultTreeModel - DefaultTreeSelectionModel - DefinitionKind - DefinitionKindHelper - Deflater - DeflaterOutputStream - DelayQueue - Delayed - Delegate - Delegate - Delegate - DelegationPermission - Deprecated - Descriptor - DescriptorAccess - DescriptorSupport - DesignMode - DesktopIconUI - DesktopManager - DesktopPaneUI - Destination - DestroyFailedException - Destroyable - Dialog - Dictionary - DigestException - DigestInputStream - DigestOutputStream - Dimension - Dimension2D - DimensionUIResource - DirContext - DirObjectFactory - DirStateFactory - DirStateFactory.Result - DirectColorModel - DirectoryManager - DisplayMode - DnDConstants - Doc - DocAttribute - DocAttributeSet - DocFlavor - DocFlavor.BYTE_ARRAY - DocFlavor.CHAR_ARRAY - DocFlavor.INPUT_STREAM - DocFlavor.READER - DocFlavor.SERVICE_FORMATTED - DocFlavor.STRING - DocFlavor.URL - DocPrintJob - Document - Document - DocumentBuilder - DocumentBuilderFactory - DocumentEvent - DocumentEvent.ElementChange - DocumentEvent.EventType - DocumentFilter - DocumentFilter.FilterBypass - DocumentFragment - DocumentHandler - DocumentListener - DocumentName - DocumentParser - DocumentType - Documented - DomainCombiner - DomainManager - DomainManagerOperations - Double - DoubleBuffer - DoubleHolder - DoubleSeqHelper - DoubleSeqHolder - DragGestureEvent - DragGestureListener - DragGestureRecognizer - DragSource - DragSourceAdapter - DragSourceContext - DragSourceDragEvent - DragSourceDropEvent - DragSourceEvent - DragSourceListener - DragSourceMotionListener - Driver - DriverManager - DriverPropertyInfo - DropTarget - DropTarget.DropTargetAutoScroller - DropTargetAdapter - DropTargetContext - DropTargetDragEvent - DropTargetDropEvent - DropTargetEvent - DropTargetListener - DuplicateFormatFlagsException - DuplicateName - DuplicateNameHelper - Duration - DynAny - DynAny - DynAnyFactory - DynAnyFactoryHelper - DynAnyFactoryOperations - DynAnyHelper - DynAnyOperations - DynAnySeqHelper - DynArray - DynArray - DynArrayHelper - DynArrayOperations - DynEnum - DynEnum - DynEnumHelper - DynEnumOperations - DynFixed - DynFixed - DynFixedHelper - DynFixedOperations - DynSequence - DynSequence - DynSequenceHelper - DynSequenceOperations - DynStruct - DynStruct - DynStructHelper - DynStructOperations - DynUnion - DynUnion - DynUnionHelper - DynUnionOperations - DynValue - DynValue - DynValueBox - DynValueBoxOperations - DynValueCommon - DynValueCommonOperations - DynValueHelper - DynValueOperations - DynamicImplementation - DynamicImplementation - DynamicMBean - ECField - ECFieldF2m - ECFieldFp - ECGenParameterSpec - ECKey - ECParameterSpec - ECPoint - ECPrivateKey - ECPrivateKeySpec - ECPublicKey - ECPublicKeySpec - ENCODING_CDR_ENCAPS - EOFException - EditorKit - Element - Element - Element - ElementIterator - ElementType - Ellipse2D - Ellipse2D.Double - Ellipse2D.Float - EllipticCurve - EmptyBorder - EmptyStackException - EncodedKeySpec - Encoder - Encoding - EncryptedPrivateKeyInfo - Entity - Entity - EntityReference - EntityResolver - EntityResolver2 - Enum - EnumConstantNotPresentException - EnumControl - EnumControl.Type - EnumMap - EnumSet - EnumSyntax - Enumeration - Environment - Error - ErrorHandler - ErrorListener - ErrorManager - EtchedBorder - Event - EventContext - EventDirContext - EventHandler - EventListener - EventListenerList - EventListenerProxy - EventObject - EventQueue - EventSetDescriptor - Exception - ExceptionDetailMessage - ExceptionInInitializerError - ExceptionList - ExceptionListener - Exchanger - ExecutionException - Executor - ExecutorCompletionService - ExecutorService - Executors - ExemptionMechanism - ExemptionMechanismException - ExemptionMechanismSpi - ExpandVetoException - ExportException - Expression - ExtendedRequest - ExtendedResponse - Externalizable - FREE_MEM - FactoryConfigurationError - FailedLoginException - FeatureDescriptor - Fidelity - Field - FieldNameHelper - FieldNameHelper - FieldPosition - FieldView - File - FileCacheImageInputStream - FileCacheImageOutputStream - FileChannel - FileChannel.MapMode - FileChooserUI - FileDescriptor - FileDialog - FileFilter - FileFilter - FileHandler - FileImageInputStream - FileImageOutputStream - FileInputStream - FileLock - FileLockInterruptionException - FileNameMap - FileNotFoundException - FileOutputStream - FilePermission - FileReader - FileSystemView - FileView - FileWriter - FilenameFilter - Filter - FilterInputStream - FilterOutputStream - FilterReader - FilterWriter - FilteredImageSource - FilteredRowSet - Finishings - FixedHeightLayoutCache - FixedHolder - FlatteningPathIterator - FlavorEvent - FlavorException - FlavorListener - FlavorMap - FlavorTable - Float - FloatBuffer - FloatControl - FloatControl.Type - FloatHolder - FloatSeqHelper - FloatSeqHolder - FlowLayout - FlowView - FlowView.FlowStrategy - Flushable - FocusAdapter - FocusEvent - FocusListener - FocusManager - FocusTraversalPolicy - Font - FontFormatException - FontMetrics - FontRenderContext - FontUIResource - FormSubmitEvent - FormSubmitEvent.MethodType - FormView - Format - Format.Field - FormatConversionProvider - FormatFlagsConversionMismatchException - FormatMismatch - FormatMismatchHelper - Formattable - FormattableFlags - Formatter - Formatter - FormatterClosedException - ForwardRequest - ForwardRequest - ForwardRequestHelper - ForwardRequestHelper - Frame - Future - FutureTask - GSSContext - GSSCredential - GSSException - GSSManager - GSSName - GZIPInputStream - GZIPOutputStream - GapContent - GarbageCollectorMXBean - GatheringByteChannel - GaugeMonitor - GaugeMonitorMBean - GeneralPath - GeneralSecurityException - GenericArrayType - GenericDeclaration - GenericSignatureFormatError - GlyphJustificationInfo - GlyphMetrics - GlyphVector - GlyphView - GlyphView.GlyphPainter - GradientPaint - GraphicAttribute - Graphics - Graphics2D - GraphicsConfigTemplate - GraphicsConfiguration - GraphicsDevice - GraphicsEnvironment - GrayFilter - GregorianCalendar - GridBagConstraints - GridBagLayout - GridLayout - Group - Guard - GuardedObject - HOLDING - HTML - HTML.Attribute - HTML.Tag - HTML.UnknownTag - HTMLDocument - HTMLDocument.Iterator - HTMLEditorKit - HTMLEditorKit.HTMLFactory - HTMLEditorKit.HTMLTextAction - HTMLEditorKit.InsertHTMLTextAction - HTMLEditorKit.LinkController - HTMLEditorKit.Parser - HTMLEditorKit.ParserCallback - HTMLFrameHyperlinkEvent - HTMLWriter - Handler - HandlerBase - HandshakeCompletedEvent - HandshakeCompletedListener - HasControls - HashAttributeSet - HashDocAttributeSet - HashMap - HashPrintJobAttributeSet - HashPrintRequestAttributeSet - HashPrintServiceAttributeSet - HashSet - Hashtable - HeadlessException - HierarchyBoundsAdapter - HierarchyBoundsListener - HierarchyEvent - HierarchyListener - Highlighter - Highlighter.Highlight - Highlighter.HighlightPainter - HostnameVerifier - HttpRetryException - HttpURLConnection - HttpsURLConnection - HyperlinkEvent - HyperlinkEvent.EventType - HyperlinkListener - ICC_ColorSpace - ICC_Profile - ICC_ProfileGray - ICC_ProfileRGB - IDLEntity - IDLType - IDLTypeHelper - IDLTypeOperations - ID_ASSIGNMENT_POLICY_ID - ID_UNIQUENESS_POLICY_ID - IIOByteBuffer - IIOException - IIOImage - IIOInvalidTreeException - IIOMetadata - IIOMetadataController - IIOMetadataFormat - IIOMetadataFormatImpl - IIOMetadataNode - IIOParam - IIOParamController - IIOReadProgressListener - IIOReadUpdateListener - IIOReadWarningListener - IIORegistry - IIOServiceProvider - IIOWriteProgressListener - IIOWriteWarningListener - IMPLICIT_ACTIVATION_POLICY_ID - IMP_LIMIT - INACTIVE - INITIALIZE - INTERNAL - INTF_REPOS - INVALID_ACTIVITY - INVALID_TRANSACTION - INV_FLAG - INV_IDENT - INV_OBJREF - INV_POLICY - IOException - IOR - IORHelper - IORHolder - IORInfo - IORInfoOperations - IORInterceptor - IORInterceptorOperations - IORInterceptor_3_0 - IORInterceptor_3_0Helper - IORInterceptor_3_0Holder - IORInterceptor_3_0Operations - IRObject - IRObjectOperations - Icon - IconUIResource - IconView - IdAssignmentPolicy - IdAssignmentPolicyOperations - IdAssignmentPolicyValue - IdUniquenessPolicy - IdUniquenessPolicyOperations - IdUniquenessPolicyValue - IdentifierHelper - Identity - IdentityHashMap - IdentityScope - IllegalAccessError - IllegalAccessException - IllegalArgumentException - IllegalBlockSizeException - IllegalBlockingModeException - IllegalCharsetNameException - IllegalClassFormatException - IllegalComponentStateException - IllegalFormatCodePointException - IllegalFormatConversionException - IllegalFormatException - IllegalFormatFlagsException - IllegalFormatPrecisionException - IllegalFormatWidthException - IllegalMonitorStateException - IllegalPathStateException - IllegalSelectorException - IllegalStateException - IllegalThreadStateException - Image - ImageCapabilities - ImageConsumer - ImageFilter - ImageGraphicAttribute - ImageIO - ImageIcon - ImageInputStream - ImageInputStreamImpl - ImageInputStreamSpi - ImageObserver - ImageOutputStream - ImageOutputStreamImpl - ImageOutputStreamSpi - ImageProducer - ImageReadParam - ImageReader - ImageReaderSpi - ImageReaderWriterSpi - ImageTranscoder - ImageTranscoderSpi - ImageTypeSpecifier - ImageView - ImageWriteParam - ImageWriter - ImageWriterSpi - ImagingOpException - ImplicitActivationPolicy - ImplicitActivationPolicyOperations - ImplicitActivationPolicyValue - IncompatibleClassChangeError - IncompleteAnnotationException - InconsistentTypeCode - InconsistentTypeCode - InconsistentTypeCodeHelper - IndexColorModel - IndexOutOfBoundsException - IndexedPropertyChangeEvent - IndexedPropertyDescriptor - IndirectionException - Inet4Address - Inet6Address - InetAddress - InetSocketAddress - Inflater - InflaterInputStream - InheritableThreadLocal - Inherited - InitialContext - InitialContextFactory - InitialContextFactoryBuilder - InitialDirContext - InitialLdapContext - InlineView - InputContext - InputEvent - InputMap - InputMapUIResource - InputMethod - InputMethodContext - InputMethodDescriptor - InputMethodEvent - InputMethodHighlight - InputMethodListener - InputMethodRequests - InputMismatchException - InputSource - InputStream - InputStream - InputStream - InputStreamReader - InputSubset - InputVerifier - Insets - InsetsUIResource - InstanceAlreadyExistsException - InstanceNotFoundException - InstantiationError - InstantiationException - Instrument - Instrumentation - InsufficientResourcesException - IntBuffer - IntHolder - Integer - IntegerSyntax - Interceptor - InterceptorOperations - InternalError - InternalFrameAdapter - InternalFrameEvent - InternalFrameFocusTraversalPolicy - InternalFrameListener - InternalFrameUI - InternationalFormatter - InterruptedException - InterruptedIOException - InterruptedNamingException - InterruptibleChannel - IntrospectionException - IntrospectionException - Introspector - Invalid - InvalidActivityException - InvalidAddress - InvalidAddressHelper - InvalidAddressHolder - InvalidAlgorithmParameterException - InvalidApplicationException - InvalidAttributeIdentifierException - InvalidAttributeValueException - InvalidAttributeValueException - InvalidAttributesException - InvalidClassException - InvalidDnDOperationException - InvalidKeyException - InvalidKeyException - InvalidKeySpecException - InvalidMarkException - InvalidMidiDataException - InvalidName - InvalidName - InvalidName - InvalidNameException - InvalidNameHelper - InvalidNameHelper - InvalidNameHolder - InvalidObjectException - InvalidOpenTypeException - InvalidParameterException - InvalidParameterSpecException - InvalidPolicy - InvalidPolicyHelper - InvalidPreferencesFormatException - InvalidPropertiesFormatException - InvalidRelationIdException - InvalidRelationServiceException - InvalidRelationTypeException - InvalidRoleInfoException - InvalidRoleValueException - InvalidSearchControlsException - InvalidSearchFilterException - InvalidSeq - InvalidSlot - InvalidSlotHelper - InvalidTargetObjectTypeException - InvalidTransactionException - InvalidTypeForEncoding - InvalidTypeForEncodingHelper - InvalidValue - InvalidValue - InvalidValueHelper - InvocationEvent - InvocationHandler - InvocationTargetException - InvokeHandler - IstringHelper - ItemEvent - ItemListener - ItemSelectable - Iterable - Iterator - IvParameterSpec - JApplet - JButton - JCheckBox - JCheckBoxMenuItem - JColorChooser - JComboBox - JComboBox.KeySelectionManager - JComponent - JDesktopPane - JDialog - JEditorPane - JFileChooser - JFormattedTextField - JFormattedTextField.AbstractFormatter - JFormattedTextField.AbstractFormatterFactory - JFrame - JInternalFrame - JInternalFrame.JDesktopIcon - JLabel - JLayeredPane - JList - JMException - JMRuntimeException - JMXAuthenticator - JMXConnectionNotification - JMXConnector - JMXConnectorFactory - JMXConnectorProvider - JMXConnectorServer - JMXConnectorServerFactory - JMXConnectorServerMBean - JMXConnectorServerProvider - JMXPrincipal - JMXProviderException - JMXServerErrorException - JMXServiceURL - JMenu - JMenuBar - JMenuItem - JOptionPane - JPEGHuffmanTable - JPEGImageReadParam - JPEGImageWriteParam - JPEGQTable - JPanel - JPasswordField - JPopupMenu - JPopupMenu.Separator - JProgressBar - JRadioButton - JRadioButtonMenuItem - JRootPane - JScrollBar - JScrollPane - JSeparator - JSlider - JSpinner - JSpinner.DateEditor - JSpinner.DefaultEditor - JSpinner.ListEditor - JSpinner.NumberEditor - JSplitPane - JTabbedPane - JTable - JTable.PrintMode - JTableHeader - JTextArea - JTextComponent - JTextComponent.KeyBinding - JTextField - JTextPane - JToggleButton - JToggleButton.ToggleButtonModel - JToolBar - JToolBar.Separator - JToolTip - JTree - JTree.DynamicUtilTreeNode - JTree.EmptySelectionModel - JViewport - JWindow - JarEntry - JarException - JarFile - JarInputStream - JarOutputStream - JarURLConnection - JdbcRowSet - JobAttributes - JobAttributes.DefaultSelectionType - JobAttributes.DestinationType - JobAttributes.DialogType - JobAttributes.MultipleDocumentHandlingType - JobAttributes.SidesType - JobHoldUntil - JobImpressions - JobImpressionsCompleted - JobImpressionsSupported - JobKOctets - JobKOctetsProcessed - JobKOctetsSupported - JobMediaSheets - JobMediaSheetsCompleted - JobMediaSheetsSupported - JobMessageFromOperator - JobName - JobOriginatingUserName - JobPriority - JobPrioritySupported - JobSheets - JobState - JobStateReason - JobStateReasons - JoinRowSet - Joinable - KerberosKey - KerberosPrincipal - KerberosTicket - Kernel - Key - KeyAdapter - KeyAgreement - KeyAgreementSpi - KeyAlreadyExistsException - KeyEvent - KeyEventDispatcher - KeyEventPostProcessor - KeyException - KeyFactory - KeyFactorySpi - KeyGenerator - KeyGeneratorSpi - KeyListener - KeyManagementException - KeyManager - KeyManagerFactory - KeyManagerFactorySpi - KeyPair - KeyPairGenerator - KeyPairGeneratorSpi - KeyRep - KeyRep.Type - KeySpec - KeyStore - KeyStore.Builder - KeyStore.CallbackHandlerProtection - KeyStore.Entry - KeyStore.LoadStoreParameter - KeyStore.PasswordProtection - KeyStore.PrivateKeyEntry - KeyStore.ProtectionParameter - KeyStore.SecretKeyEntry - KeyStore.TrustedCertificateEntry - KeyStoreBuilderParameters - KeyStoreException - KeyStoreSpi - KeyStroke - KeyboardFocusManager - Keymap - LDAPCertStoreParameters - LIFESPAN_POLICY_ID - LOCATION_FORWARD - LSException - LSInput - LSLoadEvent - LSOutput - LSParser - LSParserFilter - LSProgressEvent - LSResourceResolver - LSSerializer - LSSerializerFilter - Label - LabelUI - LabelView - LanguageCallback - LastOwnerException - LayeredHighlighter - LayeredHighlighter.LayerPainter - LayoutFocusTraversalPolicy - LayoutManager - LayoutManager2 - LayoutQueue - LdapContext - LdapName - LdapReferralException - Lease - Level - LexicalHandler - LifespanPolicy - LifespanPolicyOperations - LifespanPolicyValue - LimitExceededException - Line - Line.Info - Line2D - Line2D.Double - Line2D.Float - LineBorder - LineBreakMeasurer - LineEvent - LineEvent.Type - LineListener - LineMetrics - LineNumberInputStream - LineNumberReader - LineUnavailableException - LinkException - LinkLoopException - LinkRef - LinkageError - LinkedBlockingQueue - LinkedHashMap - LinkedHashSet - LinkedList - List - List - ListCellRenderer - ListDataEvent - ListDataListener - ListIterator - ListModel - ListResourceBundle - ListSelectionEvent - ListSelectionListener - ListSelectionModel - ListUI - ListView - ListenerNotFoundException - LoaderHandler - LocalObject - Locale - LocateRegistry - Locator - Locator2 - Locator2Impl - LocatorImpl - Lock - LockSupport - LogManager - LogRecord - LogStream - Logger - LoggingMXBean - LoggingPermission - LoginContext - LoginException - LoginModule - Long - LongBuffer - LongHolder - LongLongSeqHelper - LongLongSeqHolder - LongSeqHelper - LongSeqHolder - LookAndFeel - LookupOp - LookupTable - MARSHAL - MBeanAttributeInfo - MBeanConstructorInfo - MBeanException - MBeanFeatureInfo - MBeanInfo - MBeanNotificationInfo - MBeanOperationInfo - MBeanParameterInfo - MBeanPermission - MBeanRegistration - MBeanRegistrationException - MBeanServer - MBeanServerBuilder - MBeanServerConnection - MBeanServerDelegate - MBeanServerDelegateMBean - MBeanServerFactory - MBeanServerForwarder - MBeanServerInvocationHandler - MBeanServerNotification - MBeanServerNotificationFilter - MBeanServerPermission - MBeanTrustPermission - MGF1ParameterSpec - MLet - MLetMBean - Mac - MacSpi - MalformedInputException - MalformedLinkException - MalformedObjectNameException - MalformedParameterizedTypeException - MalformedURLException - ManageReferralControl - ManagementFactory - ManagementPermission - ManagerFactoryParameters - Manifest - Map - Map.Entry - MappedByteBuffer - MarshalException - MarshalledObject - MaskFormatter - MatchResult - Matcher - Math - MathContext - MatteBorder - Media - MediaName - MediaPrintableArea - MediaSize - MediaSize.Engineering - MediaSize.ISO - MediaSize.JIS - MediaSize.NA - MediaSize.Other - MediaSizeName - MediaTracker - MediaTray - Member - MemoryCacheImageInputStream - MemoryCacheImageOutputStream - MemoryHandler - MemoryImageSource - MemoryMXBean - MemoryManagerMXBean - MemoryNotificationInfo - MemoryPoolMXBean - MemoryType - MemoryUsage - Menu - MenuBar - MenuBarUI - MenuComponent - MenuContainer - MenuDragMouseEvent - MenuDragMouseListener - MenuElement - MenuEvent - MenuItem - MenuItemUI - MenuKeyEvent - MenuKeyListener - MenuListener - MenuSelectionManager - MenuShortcut - MessageDigest - MessageDigestSpi - MessageFormat - MessageFormat.Field - MessageProp - MetaEventListener - MetaMessage - MetalBorders - MetalBorders.ButtonBorder - MetalBorders.Flush3DBorder - MetalBorders.InternalFrameBorder - MetalBorders.MenuBarBorder - MetalBorders.MenuItemBorder - MetalBorders.OptionDialogBorder - MetalBorders.PaletteBorder - MetalBorders.PopupMenuBorder - MetalBorders.RolloverButtonBorder - MetalBorders.ScrollPaneBorder - MetalBorders.TableHeaderBorder - MetalBorders.TextFieldBorder - MetalBorders.ToggleButtonBorder - MetalBorders.ToolBarBorder - MetalButtonUI - MetalCheckBoxIcon - MetalCheckBoxUI - MetalComboBoxButton - MetalComboBoxEditor - MetalComboBoxEditor.UIResource - MetalComboBoxIcon - MetalComboBoxUI - MetalDesktopIconUI - MetalFileChooserUI - MetalIconFactory - MetalIconFactory.FileIcon16 - MetalIconFactory.FolderIcon16 - MetalIconFactory.PaletteCloseIcon - MetalIconFactory.TreeControlIcon - MetalIconFactory.TreeFolderIcon - MetalIconFactory.TreeLeafIcon - MetalInternalFrameTitlePane - MetalInternalFrameUI - MetalLabelUI - MetalLookAndFeel - MetalMenuBarUI - MetalPopupMenuSeparatorUI - MetalProgressBarUI - MetalRadioButtonUI - MetalRootPaneUI - MetalScrollBarUI - MetalScrollButton - MetalScrollPaneUI - MetalSeparatorUI - MetalSliderUI - MetalSplitPaneUI - MetalTabbedPaneUI - MetalTextFieldUI - MetalTheme - MetalToggleButtonUI - MetalToolBarUI - MetalToolTipUI - MetalTreeUI - Method - MethodDescriptor - MidiChannel - MidiDevice - MidiDevice.Info - MidiDeviceProvider - MidiEvent - MidiFileFormat - MidiFileReader - MidiFileWriter - MidiMessage - MidiSystem - MidiUnavailableException - MimeTypeParseException - MinimalHTMLWriter - MissingFormatArgumentException - MissingFormatWidthException - MissingResourceException - Mixer - Mixer.Info - MixerProvider - ModelMBean - ModelMBeanAttributeInfo - ModelMBeanConstructorInfo - ModelMBeanInfo - ModelMBeanInfoSupport - ModelMBeanNotificationBroadcaster - ModelMBeanNotificationInfo - ModelMBeanOperationInfo - ModificationItem - Modifier - Monitor - MonitorMBean - MonitorNotification - MonitorSettingException - MouseAdapter - MouseDragGestureRecognizer - MouseEvent - MouseInfo - MouseInputAdapter - MouseInputListener - MouseListener - MouseMotionAdapter - MouseMotionListener - MouseWheelEvent - MouseWheelListener - MultiButtonUI - MultiColorChooserUI - MultiComboBoxUI - MultiDesktopIconUI - MultiDesktopPaneUI - MultiDoc - MultiDocPrintJob - MultiDocPrintService - MultiFileChooserUI - MultiInternalFrameUI - MultiLabelUI - MultiListUI - MultiLookAndFeel - MultiMenuBarUI - MultiMenuItemUI - MultiOptionPaneUI - MultiPanelUI - MultiPixelPackedSampleModel - MultiPopupMenuUI - MultiProgressBarUI - MultiRootPaneUI - MultiScrollBarUI - MultiScrollPaneUI - MultiSeparatorUI - MultiSliderUI - MultiSpinnerUI - MultiSplitPaneUI - MultiTabbedPaneUI - MultiTableHeaderUI - MultiTableUI - MultiTextUI - MultiToolBarUI - MultiToolTipUI - MultiTreeUI - MultiViewportUI - MulticastSocket - MultipleComponentProfileHelper - MultipleComponentProfileHolder - MultipleDocumentHandling - MultipleMaster - MutableAttributeSet - MutableComboBoxModel - MutableTreeNode - NON_EXISTENT - NO_IMPLEMENT - NO_MEMORY - NO_PERMISSION - NO_RESOURCES - NO_RESPONSE - NVList - Name - NameAlreadyBoundException - NameCallback - NameClassPair - NameComponent - NameComponentHelper - NameComponentHolder - NameDynAnyPair - NameDynAnyPairHelper - NameDynAnyPairSeqHelper - NameHelper - NameHolder - NameList - NameNotFoundException - NameParser - NameValuePair - NameValuePair - NameValuePairHelper - NameValuePairHelper - NameValuePairSeqHelper - NamedNodeMap - NamedValue - NamespaceChangeListener - NamespaceContext - NamespaceSupport - Naming - NamingContext - NamingContextExt - NamingContextExtHelper - NamingContextExtHolder - NamingContextExtOperations - NamingContextExtPOA - NamingContextHelper - NamingContextHolder - NamingContextOperations - NamingContextPOA - NamingEnumeration - NamingEvent - NamingException - NamingExceptionEvent - NamingListener - NamingManager - NamingSecurityException - NavigationFilter - NavigationFilter.FilterBypass - NegativeArraySizeException - NetPermission - NetworkInterface - NoClassDefFoundError - NoConnectionPendingException - NoContext - NoContextHelper - NoInitialContextException - NoPermissionException - NoRouteToHostException - NoServant - NoServantHelper - NoSuchAlgorithmException - NoSuchAttributeException - NoSuchElementException - NoSuchFieldError - NoSuchFieldException - NoSuchMethodError - NoSuchMethodException - NoSuchObjectException - NoSuchPaddingException - NoSuchProviderException - Node - NodeChangeEvent - NodeChangeListener - NodeList - NonReadableChannelException - NonWritableChannelException - NoninvertibleTransformException - NotActiveException - NotBoundException - NotCompliantMBeanException - NotContextException - NotEmpty - NotEmptyHelper - NotEmptyHolder - NotFound - NotFoundHelper - NotFoundHolder - NotFoundReason - NotFoundReasonHelper - NotFoundReasonHolder - NotOwnerException - NotSerializableException - NotYetBoundException - NotYetConnectedException - Notation - Notification - NotificationBroadcaster - NotificationBroadcasterSupport - NotificationEmitter - NotificationFilter - NotificationFilterSupport - NotificationListener - NotificationResult - NullCipher - NullPointerException - Number - NumberFormat - NumberFormat.Field - NumberFormatException - NumberFormatter - NumberOfDocuments - NumberOfInterveningJobs - NumberUp - NumberUpSupported - NumericShaper - OAEPParameterSpec - OBJECT_NOT_EXIST - OBJ_ADAPTER - OMGVMCID - ORB - ORB - ORBIdHelper - ORBInitInfo - ORBInitInfoOperations - ORBInitializer - ORBInitializerOperations - ObjID - Object - Object - ObjectAlreadyActive - ObjectAlreadyActiveHelper - ObjectChangeListener - ObjectFactory - ObjectFactoryBuilder - ObjectHelper - ObjectHolder - ObjectIdHelper - ObjectIdHelper - ObjectImpl - ObjectImpl - ObjectInput - ObjectInputStream - ObjectInputStream.GetField - ObjectInputValidation - ObjectInstance - ObjectName - ObjectNotActive - ObjectNotActiveHelper - ObjectOutput - ObjectOutputStream - ObjectOutputStream.PutField - ObjectReferenceFactory - ObjectReferenceFactoryHelper - ObjectReferenceFactoryHolder - ObjectReferenceTemplate - ObjectReferenceTemplateHelper - ObjectReferenceTemplateHolder - ObjectReferenceTemplateSeqHelper - ObjectReferenceTemplateSeqHolder - ObjectStreamClass - ObjectStreamConstants - ObjectStreamException - ObjectStreamField - ObjectView - Observable - Observer - OceanTheme - OctetSeqHelper - OctetSeqHolder - Oid - OpenDataException - OpenMBeanAttributeInfo - OpenMBeanAttributeInfoSupport - OpenMBeanConstructorInfo - OpenMBeanConstructorInfoSupport - OpenMBeanInfo - OpenMBeanInfoSupport - OpenMBeanOperationInfo - OpenMBeanOperationInfoSupport - OpenMBeanParameterInfo - OpenMBeanParameterInfoSupport - OpenType - OpenType - OperatingSystemMXBean - Operation - OperationNotSupportedException - OperationsException - Option - OptionPaneUI - OptionalDataException - OrientationRequested - OutOfMemoryError - OutputDeviceAssigned - OutputKeys - OutputStream - OutputStream - OutputStream - OutputStreamWriter - OverlappingFileLockException - OverlayLayout - Override - Owner - PBEKey - PBEKeySpec - PBEParameterSpec - PDLOverrideSupported - PERSIST_STORE - PKCS8EncodedKeySpec - PKIXBuilderParameters - PKIXCertPathBuilderResult - PKIXCertPathChecker - PKIXCertPathValidatorResult - PKIXParameters - POA - POAHelper - POAManager - POAManagerOperations - POAOperations - PRIVATE_MEMBER - PSSParameterSpec - PSource - PSource.PSpecified - PUBLIC_MEMBER - Pack200 - Pack200.Packer - Pack200.Unpacker - Package - PackedColorModel - PageAttributes - PageAttributes.ColorType - PageAttributes.MediaType - PageAttributes.OrientationRequestedType - PageAttributes.OriginType - PageAttributes.PrintQualityType - PageFormat - PageRanges - Pageable - PagedResultsControl - PagedResultsResponseControl - PagesPerMinute - PagesPerMinuteColor - Paint - PaintContext - PaintEvent - Panel - PanelUI - Paper - ParagraphView - ParagraphView - Parameter - ParameterBlock - ParameterDescriptor - ParameterMetaData - ParameterMode - ParameterModeHelper - ParameterModeHolder - ParameterizedType - ParseException - ParsePosition - Parser - Parser - ParserAdapter - ParserConfigurationException - ParserDelegator - ParserFactory - PartialResultException - PasswordAuthentication - PasswordCallback - PasswordView - Patch - PathIterator - Pattern - PatternSyntaxException - Permission - Permission - PermissionCollection - Permissions - PersistenceDelegate - PersistentMBean - PhantomReference - Pipe - Pipe.SinkChannel - Pipe.SourceChannel - PipedInputStream - PipedOutputStream - PipedReader - PipedWriter - PixelGrabber - PixelInterleavedSampleModel - PlainDocument - PlainView - Point - Point2D - Point2D.Double - Point2D.Float - PointerInfo - Policy - Policy - Policy - PolicyError - PolicyErrorCodeHelper - PolicyErrorHelper - PolicyErrorHolder - PolicyFactory - PolicyFactoryOperations - PolicyHelper - PolicyHolder - PolicyListHelper - PolicyListHolder - PolicyNode - PolicyOperations - PolicyQualifierInfo - PolicyTypeHelper - Polygon - PooledConnection - Popup - PopupFactory - PopupMenu - PopupMenuEvent - PopupMenuListener - PopupMenuUI - Port - Port.Info - PortUnreachableException - PortableRemoteObject - PortableRemoteObjectDelegate - Position - Position.Bias - Predicate - PreferenceChangeEvent - PreferenceChangeListener - Preferences - PreferencesFactory - PreparedStatement - PresentationDirection - Principal - Principal - PrincipalHolder - PrintEvent - PrintException - PrintGraphics - PrintJob - PrintJobAdapter - PrintJobAttribute - PrintJobAttributeEvent - PrintJobAttributeListener - PrintJobAttributeSet - PrintJobEvent - PrintJobListener - PrintQuality - PrintRequestAttribute - PrintRequestAttributeSet - PrintService - PrintServiceAttribute - PrintServiceAttributeEvent - PrintServiceAttributeListener - PrintServiceAttributeSet - PrintServiceLookup - PrintStream - PrintWriter - Printable - PrinterAbortException - PrinterException - PrinterGraphics - PrinterIOException - PrinterInfo - PrinterIsAcceptingJobs - PrinterJob - PrinterLocation - PrinterMakeAndModel - PrinterMessageFromOperator - PrinterMoreInfo - PrinterMoreInfoManufacturer - PrinterName - PrinterResolution - PrinterState - PrinterStateReason - PrinterStateReasons - PrinterURI - PriorityBlockingQueue - PriorityQueue - PrivateClassLoader - PrivateCredentialPermission - PrivateKey - PrivateMLet - PrivilegedAction - PrivilegedActionException - PrivilegedExceptionAction - Process - ProcessBuilder - ProcessingInstruction - ProfileDataException - ProfileIdHelper - ProgressBarUI - ProgressMonitor - ProgressMonitorInputStream - Properties - PropertyChangeEvent - PropertyChangeListener - PropertyChangeListenerProxy - PropertyChangeSupport - PropertyDescriptor - PropertyEditor - PropertyEditorManager - PropertyEditorSupport - PropertyPermission - PropertyResourceBundle - PropertyVetoException - ProtectionDomain - ProtocolException - Provider - Provider.Service - ProviderException - Proxy - Proxy - Proxy.Type - ProxySelector - PublicKey - PushbackInputStream - PushbackReader - QName - QuadCurve2D - QuadCurve2D.Double - QuadCurve2D.Float - Query - QueryEval - QueryExp - Queue - QueuedJobCount - RC2ParameterSpec - RC5ParameterSpec - REBIND - REQUEST_PROCESSING_POLICY_ID - RGBImageFilter - RMIClassLoader - RMIClassLoaderSpi - RMIClientSocketFactory - RMIConnection - RMIConnectionImpl - RMIConnectionImpl_Stub - RMIConnector - RMIConnectorServer - RMICustomMaxStreamFormat - RMIFailureHandler - RMIIIOPServerImpl - RMIJRMPServerImpl - RMISecurityException - RMISecurityManager - RMIServer - RMIServerImpl - RMIServerImpl_Stub - RMIServerSocketFactory - RMISocketFactory - RSAKey - RSAKeyGenParameterSpec - RSAMultiPrimePrivateCrtKey - RSAMultiPrimePrivateCrtKeySpec - RSAOtherPrimeInfo - RSAPrivateCrtKey - RSAPrivateCrtKeySpec - RSAPrivateKey - RSAPrivateKeySpec - RSAPublicKey - RSAPublicKeySpec - RTFEditorKit - Random - RandomAccess - RandomAccessFile - Raster - RasterFormatException - RasterOp - Rdn - ReadOnlyBufferException - ReadWriteLock - Readable - ReadableByteChannel - Reader - RealmCallback - RealmChoiceCallback - Receiver - Rectangle - Rectangle2D - Rectangle2D.Double - Rectangle2D.Float - RectangularShape - ReentrantLock - ReentrantReadWriteLock - ReentrantReadWriteLock.ReadLock - ReentrantReadWriteLock.WriteLock - Ref - RefAddr - Reference - Reference - ReferenceQueue - ReferenceUriSchemesSupported - Referenceable - ReferralException - ReflectPermission - ReflectionException - RefreshFailedException - Refreshable - Region - RegisterableService - Registry - RegistryHandler - RejectedExecutionException - RejectedExecutionHandler - Relation - RelationException - RelationNotFoundException - RelationNotification - RelationService - RelationServiceMBean - RelationServiceNotRegisteredException - RelationSupport - RelationSupportMBean - RelationType - RelationTypeNotFoundException - RelationTypeSupport - RemarshalException - Remote - RemoteCall - RemoteException - RemoteObject - RemoteObjectInvocationHandler - RemoteRef - RemoteServer - RemoteStub - RenderContext - RenderableImage - RenderableImageOp - RenderableImageProducer - RenderedImage - RenderedImageFactory - Renderer - RenderingHints - RenderingHints.Key - RepaintManager - ReplicateScaleFilter - RepositoryIdHelper - Request - RequestInfo - RequestInfoOperations - RequestProcessingPolicy - RequestProcessingPolicyOperations - RequestProcessingPolicyValue - RequestingUserName - RequiredModelMBean - RescaleOp - ResolutionSyntax - ResolveResult - Resolver - ResourceBundle - ResponseCache - ResponseHandler - Result - ResultSet - ResultSetMetaData - Retention - RetentionPolicy - ReverbType - Robot - Role - RoleInfo - RoleInfoNotFoundException - RoleList - RoleNotFoundException - RoleResult - RoleStatus - RoleUnresolved - RoleUnresolvedList - RootPaneContainer - RootPaneUI - RoundRectangle2D - RoundRectangle2D.Double - RoundRectangle2D.Float - RoundingMode - RowMapper - RowSet - RowSetEvent - RowSetInternal - RowSetListener - RowSetMetaData - RowSetMetaDataImpl - RowSetReader - RowSetWarning - RowSetWriter - RuleBasedCollator - RunTime - RunTimeOperations - Runnable - Runtime - RuntimeErrorException - RuntimeException - RuntimeMBeanException - RuntimeMXBean - RuntimeOperationsException - RuntimePermission - SAXException - SAXNotRecognizedException - SAXNotSupportedException - SAXParseException - SAXParser - SAXParserFactory - SAXResult - SAXSource - SAXTransformerFactory - SERVANT_RETENTION_POLICY_ID - SQLData - SQLException - SQLInput - SQLInputImpl - SQLOutput - SQLOutputImpl - SQLPermission - SQLWarning - SSLContext - SSLContextSpi - SSLEngine - SSLEngineResult - SSLEngineResult.HandshakeStatus - SSLEngineResult.Status - SSLException - SSLHandshakeException - SSLKeyException - SSLPeerUnverifiedException - SSLPermission - SSLProtocolException - SSLServerSocket - SSLServerSocketFactory - SSLSession - SSLSessionBindingEvent - SSLSessionBindingListener - SSLSessionContext - SSLSocket - SSLSocketFactory - SUCCESSFUL - SYNC_WITH_TRANSPORT - SYSTEM_EXCEPTION - SampleModel - Sasl - SaslClient - SaslClientFactory - SaslException - SaslServer - SaslServerFactory - Savepoint - Scanner - ScatteringByteChannel - ScheduledExecutorService - ScheduledFuture - ScheduledThreadPoolExecutor - Schema - SchemaFactory - SchemaFactoryLoader - SchemaViolationException - ScrollBarUI - ScrollPane - ScrollPaneAdjustable - ScrollPaneConstants - ScrollPaneLayout - ScrollPaneLayout.UIResource - ScrollPaneUI - Scrollable - Scrollbar - SealedObject - SearchControls - SearchResult - SecretKey - SecretKeyFactory - SecretKeyFactorySpi - SecretKeySpec - SecureCacheResponse - SecureClassLoader - SecureRandom - SecureRandomSpi - Security - SecurityException - SecurityManager - SecurityPermission - Segment - SelectableChannel - SelectionKey - Selector - SelectorProvider - Semaphore - SeparatorUI - Sequence - SequenceInputStream - Sequencer - Sequencer.SyncMode - SerialArray - SerialBlob - SerialClob - SerialDatalink - SerialException - SerialJavaObject - SerialRef - SerialStruct - Serializable - SerializablePermission - Servant - ServantActivator - ServantActivatorHelper - ServantActivatorOperations - ServantActivatorPOA - ServantAlreadyActive - ServantAlreadyActiveHelper - ServantLocator - ServantLocatorHelper - ServantLocatorOperations - ServantLocatorPOA - ServantManager - ServantManagerOperations - ServantNotActive - ServantNotActiveHelper - ServantObject - ServantRetentionPolicy - ServantRetentionPolicyOperations - ServantRetentionPolicyValue - ServerCloneException - ServerError - ServerException - ServerIdHelper - ServerNotActiveException - ServerRef - ServerRequest - ServerRequestInfo - ServerRequestInfoOperations - ServerRequestInterceptor - ServerRequestInterceptorOperations - ServerRuntimeException - ServerSocket - ServerSocketChannel - ServerSocketFactory - ServiceContext - ServiceContextHelper - ServiceContextHolder - ServiceContextListHelper - ServiceContextListHolder - ServiceDetail - ServiceDetailHelper - ServiceIdHelper - ServiceInformation - ServiceInformationHelper - ServiceInformationHolder - ServiceNotFoundException - ServicePermission - ServiceRegistry - ServiceRegistry.Filter - ServiceUI - ServiceUIFactory - ServiceUnavailableException - Set - SetOfIntegerSyntax - SetOverrideType - SetOverrideTypeHelper - Severity - Shape - ShapeGraphicAttribute - SheetCollate - Short - ShortBuffer - ShortBufferException - ShortHolder - ShortLookupTable - ShortMessage - ShortSeqHelper - ShortSeqHolder - Sides - Signature - SignatureException - SignatureSpi - SignedObject - Signer - SimpleAttributeSet - SimpleBeanInfo - SimpleDateFormat - SimpleDoc - SimpleFormatter - SimpleTimeZone - SimpleType - SinglePixelPackedSampleModel - SingleSelectionModel - Size2DSyntax - SizeLimitExceededException - SizeRequirements - SizeSequence - Skeleton - SkeletonMismatchException - SkeletonNotFoundException - SliderUI - Socket - SocketAddress - SocketChannel - SocketException - SocketFactory - SocketHandler - SocketImpl - SocketImplFactory - SocketOptions - SocketPermission - SocketSecurityException - SocketTimeoutException - SoftBevelBorder - SoftReference - SortControl - SortKey - SortResponseControl - SortedMap - SortedSet - SortingFocusTraversalPolicy - Soundbank - SoundbankReader - SoundbankResource - Source - SourceDataLine - SourceLocator - SpinnerDateModel - SpinnerListModel - SpinnerModel - SpinnerNumberModel - SpinnerUI - SplitPaneUI - Spring - SpringLayout - SpringLayout.Constraints - SslRMIClientSocketFactory - SslRMIServerSocketFactory - Stack - StackOverflowError - StackTraceElement - StandardMBean - StartTlsRequest - StartTlsResponse - State - StateEdit - StateEditable - StateFactory - Statement - Statement - StreamCorruptedException - StreamHandler - StreamPrintService - StreamPrintServiceFactory - StreamResult - StreamSource - StreamTokenizer - Streamable - StreamableValue - StrictMath - String - StringBuffer - StringBufferInputStream - StringBuilder - StringCharacterIterator - StringContent - StringHolder - StringIndexOutOfBoundsException - StringMonitor - StringMonitorMBean - StringNameHelper - StringReader - StringRefAddr - StringSelection - StringSeqHelper - StringSeqHolder - StringTokenizer - StringValueExp - StringValueHelper - StringWriter - Stroke - Struct - StructMember - StructMemberHelper - Stub - StubDelegate - StubNotFoundException - Style - StyleConstants - StyleConstants.CharacterConstants - StyleConstants.ColorConstants - StyleConstants.FontConstants - StyleConstants.ParagraphConstants - StyleContext - StyleSheet - StyleSheet.BoxPainter - StyleSheet.ListPainter - StyledDocument - StyledEditorKit - StyledEditorKit.AlignmentAction - StyledEditorKit.BoldAction - StyledEditorKit.FontFamilyAction - StyledEditorKit.FontSizeAction - StyledEditorKit.ForegroundAction - StyledEditorKit.ItalicAction - StyledEditorKit.StyledTextAction - StyledEditorKit.UnderlineAction - Subject - SubjectDelegationPermission - SubjectDomainCombiner - SupportedValuesAttribute - SuppressWarnings - SwingConstants - SwingPropertyChangeSupport - SwingUtilities - SyncFactory - SyncFactoryException - SyncFailedException - SyncProvider - SyncProviderException - SyncResolver - SyncScopeHelper - SynchronousQueue - SynthConstants - SynthContext - SynthGraphicsUtils - SynthLookAndFeel - SynthPainter - SynthStyle - SynthStyleFactory - Synthesizer - SysexMessage - System - SystemColor - SystemException - SystemFlavorMap - TAG_ALTERNATE_IIOP_ADDRESS - TAG_CODE_SETS - TAG_INTERNET_IOP - TAG_JAVA_CODEBASE - TAG_MULTIPLE_COMPONENTS - TAG_ORB_TYPE - TAG_POLICIES - TAG_RMI_CUSTOM_MAX_STREAM_FORMAT - TCKind - THREAD_POLICY_ID - TIMEOUT - TRANSACTION_MODE - TRANSACTION_REQUIRED - TRANSACTION_ROLLEDBACK - TRANSACTION_UNAVAILABLE - TRANSIENT - TRANSPORT_RETRY - TabExpander - TabSet - TabStop - TabableView - TabbedPaneUI - TableCellEditor - TableCellRenderer - TableColumn - TableColumnModel - TableColumnModelEvent - TableColumnModelListener - TableHeaderUI - TableModel - TableModelEvent - TableModelListener - TableUI - TableView - TabularData - TabularDataSupport - TabularType - TagElement - TaggedComponent - TaggedComponentHelper - TaggedComponentHolder - TaggedProfile - TaggedProfileHelper - TaggedProfileHolder - Target - TargetDataLine - TargetedNotification - Templates - TemplatesHandler - Text - TextAction - TextArea - TextAttribute - TextComponent - TextEvent - TextField - TextHitInfo - TextInputCallback - TextLayout - TextLayout.CaretPolicy - TextListener - TextMeasurer - TextOutputCallback - TextSyntax - TextUI - TexturePaint - Thread - Thread.State - Thread.UncaughtExceptionHandler - ThreadDeath - ThreadFactory - ThreadGroup - ThreadInfo - ThreadLocal - ThreadMXBean - ThreadPolicy - ThreadPolicyOperations - ThreadPolicyValue - ThreadPoolExecutor - ThreadPoolExecutor.AbortPolicy - ThreadPoolExecutor.CallerRunsPolicy - ThreadPoolExecutor.DiscardOldestPolicy - ThreadPoolExecutor.DiscardPolicy - Throwable - Tie - TileObserver - Time - TimeLimitExceededException - TimeUnit - TimeZone - TimeoutException - Timer - Timer - Timer - TimerAlarmClockNotification - TimerMBean - TimerNotification - TimerTask - Timestamp - Timestamp - TitledBorder - TooManyListenersException - ToolBarUI - ToolTipManager - ToolTipUI - Toolkit - Track - TransactionRequiredException - TransactionRolledbackException - TransactionService - TransactionalWriter - TransferHandler - Transferable - TransformAttribute - Transformer - TransformerConfigurationException - TransformerException - TransformerFactory - TransformerFactoryConfigurationError - TransformerHandler - Transmitter - Transparency - TreeCellEditor - TreeCellRenderer - TreeExpansionEvent - TreeExpansionListener - TreeMap - TreeModel - TreeModelEvent - TreeModelListener - TreeNode - TreePath - TreeSelectionEvent - TreeSelectionListener - TreeSelectionModel - TreeSet - TreeUI - TreeWillExpandListener - TrustAnchor - TrustManager - TrustManagerFactory - TrustManagerFactorySpi - Type - TypeCode - TypeCodeHolder - TypeInfo - TypeInfoProvider - TypeMismatch - TypeMismatch - TypeMismatch - TypeMismatchHelper - TypeMismatchHelper - TypeNotPresentException - TypeVariable - Types - UID - UIDefaults - UIDefaults.ActiveValue - UIDefaults.LazyInputMap - UIDefaults.LazyValue - UIDefaults.ProxyLazyValue - UIManager - UIManager.LookAndFeelInfo - UIResource - ULongLongSeqHelper - ULongLongSeqHolder - ULongSeqHelper - ULongSeqHolder - UNKNOWN - UNKNOWN - UNSUPPORTED_POLICY - UNSUPPORTED_POLICY_VALUE - URI - URIException - URIResolver - URISyntax - URISyntaxException - URL - URLClassLoader - URLConnection - URLDecoder - URLEncoder - URLStreamHandler - URLStreamHandlerFactory - URLStringHelper - USER_EXCEPTION - UShortSeqHelper - UShortSeqHolder - UTFDataFormatException - UUID - UndeclaredThrowableException - UndoManager - UndoableEdit - UndoableEditEvent - UndoableEditListener - UndoableEditSupport - UnexpectedException - UnicastRemoteObject - UnionMember - UnionMemberHelper - UnknownEncoding - UnknownEncodingHelper - UnknownError - UnknownException - UnknownFormatConversionException - UnknownFormatFlagsException - UnknownGroupException - UnknownHostException - UnknownHostException - UnknownObjectException - UnknownServiceException - UnknownUserException - UnknownUserExceptionHelper - UnknownUserExceptionHolder - UnmappableCharacterException - UnmarshalException - UnmodifiableClassException - UnmodifiableSetException - UnrecoverableEntryException - UnrecoverableKeyException - Unreferenced - UnresolvedAddressException - UnresolvedPermission - UnsatisfiedLinkError - UnsolicitedNotification - UnsolicitedNotificationEvent - UnsolicitedNotificationListener - UnsupportedAddressTypeException - UnsupportedAudioFileException - UnsupportedCallbackException - UnsupportedCharsetException - UnsupportedClassVersionError - UnsupportedEncodingException - UnsupportedFlavorException - UnsupportedLookAndFeelException - UnsupportedOperationException - UserDataHandler - UserException - Util - UtilDelegate - Utilities - VMID - VM_ABSTRACT - VM_CUSTOM - VM_NONE - VM_TRUNCATABLE - Validator - ValidatorHandler - ValueBase - ValueBaseHelper - ValueBaseHolder - ValueExp - ValueFactory - ValueHandler - ValueHandlerMultiFormat - ValueInputStream - ValueMember - ValueMemberHelper - ValueOutputStream - VariableHeightLayoutCache - Vector - VerifyError - VersionSpecHelper - VetoableChangeListener - VetoableChangeListenerProxy - VetoableChangeSupport - View - ViewFactory - ViewportLayout - ViewportUI - VirtualMachineError - Visibility - VisibilityHelper - VoiceStatus - Void - VolatileImage - WCharSeqHelper - WCharSeqHolder - WStringSeqHelper - WStringSeqHolder - WStringValueHelper - WeakHashMap - WeakReference - WebRowSet - WildcardType - Window - WindowAdapter - WindowConstants - WindowEvent - WindowFocusListener - WindowListener - WindowStateListener - WrappedPlainView - WritableByteChannel - WritableRaster - WritableRenderedImage - WriteAbortedException - Writer - WrongAdapter - WrongAdapterHelper - WrongPolicy - WrongPolicyHelper - WrongTransaction - WrongTransactionHelper - WrongTransactionHolder - X500Principal - X500PrivateCredential - X509CRL - X509CRLEntry - X509CRLSelector - X509CertSelector - X509Certificate - X509Certificate - X509EncodedKeySpec - X509ExtendedKeyManager - X509Extension - X509KeyManager - X509TrustManager - XAConnection - XADataSource - XAException - XAResource - XMLConstants - XMLDecoder - XMLEncoder - XMLFilter - XMLFilterImpl - XMLFormatter - XMLGregorianCalendar - XMLParseException - XMLReader - XMLReaderAdapter - XMLReaderFactory - XPath - XPathConstants - XPathException - XPathExpression - XPathExpressionException - XPathFactory - XPathFactoryConfigurationException - XPathFunction - XPathFunctionException - XPathFunctionResolver - XPathVariableResolver - Xid - XmlReader - XmlWriter - ZipEntry - ZipException - ZipFile - ZipInputStream - ZipOutputStream - ZoneView - _BindingIteratorImplBase - _BindingIteratorStub - _DynAnyFactoryStub - _DynAnyStub - _DynArrayStub - _DynEnumStub - _DynFixedStub - _DynSequenceStub - _DynStructStub - _DynUnionStub - _DynValueStub - _IDLTypeStub - _NamingContextExtStub - _NamingContextImplBase - _NamingContextStub - _PolicyStub - _Remote_Stub - _ServantActivatorStub - _ServantLocatorStub - - - - AbstractAnnotationValueVisitor6 - AbstractElementVisitor6 - AbstractMarshallerImpl - AbstractOwnableSynchronizer - AbstractProcessor - AbstractQueuedLongSynchronizer - AbstractScriptEngine - AbstractTypeVisitor6 - AbstractUnmarshallerImpl - ActivationDataFlavor - AlgorithmMethod - AnnotationMirror - AnnotationValue - AnnotationValueVisitor - ArrayDeque - AsyncHandler - AttachmentMarshaller - AttachmentPart - AttachmentUnmarshaller - Binder - BindingProvider - Bindings - BlockingDeque - BreakIteratorProvider - C14NMethodParameterSpec - CanonicalizationMethod - Characters - ClientInfoStatus - CollapsedStringAdapter - CollatorProvider - CommandInfo - CommandMap - CommandObject - CommonDataSource - Compilable - CompiledScript - Completion - Completions - CompositeDataInvocationHandler - CompositeDataView - ConcurrentNavigableMap - ConcurrentSkipListMap - ConcurrentSkipListSet - ConfigurationSpi - Console - ConstructorProperties - CookieManager - CookiePolicy - CookieStore - CurrencyNameProvider - Data - DataContentHandler - DataContentHandlerFactory - DataHandler - DatatypeConverter - DatatypeConverterInterface - DateFormatProvider - DateFormatSymbolsProvider - DecimalFormatSymbolsProvider - DeclaredType - DefaultRowSorter - DefaultValidationEventHandler - DeflaterInputStream - Deque - DescriptorKey - DescriptorRead - Desktop - Detail - DetailEntry - Diagnostic - DiagnosticCollector - DiagnosticListener - DigestMethod - DigestMethodParameterSpec - Dispatch - DOMCryptoContext - DomHandler - DOMSignContext - DOMStructure - DOMURIReference - DOMValidateContext - DropMode - ElementFilter - ElementKind - ElementKindVisitor6 - Elements - ElementScanner6 - ElementVisitor - EndDocument - EndElement - Endpoint - EntityDeclaration - ErrorType - EventException - EventFilter - EventReaderDelegate - EventTarget - ExcC14NParameterSpec - ExecutableElement - ExecutableType - FileDataSource - FileNameExtensionFilter - FileObject - Filer - FilerException - FileTypeMap - ForwardingFileObject - ForwardingJavaFileManager - ForwardingJavaFileObject - Generated - GridBagLayoutInfo - GroupLayout - HandlerChain - HandlerResolver - HexBinaryAdapter - HMACParameterSpec - Holder - HTTPBinding - HttpCookie - HTTPException - IDN - ImmutableDescriptor - InflaterOutputStream - InitParam - InterfaceAddress - Invocable - IOError - JavaCompiler - JavaFileManager - JavaFileObject - JAXBContext - JAXBElement - JAXBException - JAXBIntrospector - JAXBResult - JAXBSource - JMX - JMXAddressable - KeyInfo - KeyInfoFactory - KeyName - KeySelector - KeySelectorException - KeySelectorResult - KeyValue - LayoutPath - LayoutStyle - LinearGradientPaint - LinkedBlockingDeque - LocaleNameProvider - LocaleServiceProvider - Location - LockInfo - LogicalHandler - LogicalMessage - LogicalMessageContext - MailcapCommandMap - Marshaller - MessageContext - MessageFactory - Messager - MimeHeader - MimeHeaders - MimeType - MimeTypeParameterList - MimetypesFileTypeMap - MirroredTypeException - MirroredTypesException - MLetContent - MonitorInfo - MultipleGradientPaint - MutationEvent - MXBean - Namespace - NavigableMap - NavigableSet - NClob - NestingKind - NodeSetData - NormalizedStringAdapter - Normalizer - NoSuchMechanismException - NotationDeclaration - NotIdentifiableEvent - NotIdentifiableEventImpl - NoType - NullType - NumberFormatProvider - OctetStreamData - Oneway - OptionChecker - PackageElement - ParseConversionEvent - ParseConversionEventImpl - Path2D - PGPData - PolicySpi - PortInfo - PostConstruct - PreDestroy - PrimitiveType - PrintConversionEvent - PrintConversionEventImpl - ProcessingEnvironment - Processor - PropertyException - RadialGradientPaint - ReferenceType - RequestWrapper - Resource - Resources - Response - ResponseWrapper - RetrievalMethod - RoundEnvironment - RowFilter - RowId - RowIdLifetime - RowSorter - RowSorterEvent - RowSorterListener - RunnableFuture - RunnableScheduledFuture - SAAJMetaFactory - SAAJResult - SchemaOutputResolver - ScriptContext - ScriptEngine - ScriptEngineFactory - ScriptEngineManager - ScriptException - Service - ServiceConfigurationError - ServiceDelegate - ServiceLoader - ServiceMode - SignatureMethod - SignatureMethodParameterSpec - SignatureProperties - SignatureProperty - SignedInfo - SimpleAnnotationValueVisitor6 - SimpleBindings - SimpleElementVisitor6 - SimpleJavaFileObject - SimpleScriptContext - SimpleTypeVisitor6 - SOAPBinding - SOAPBinding - SOAPBody - SOAPBodyElement - SOAPConnection - SOAPConnectionFactory - SOAPConstants - SOAPElement - SOAPElementFactory - SOAPEnvelope - SOAPException - SOAPFactory - SOAPFault - SOAPFaultElement - SOAPFaultException - SOAPHandler - SOAPHeader - SOAPHeaderElement - SOAPMessage - SOAPMessageContext - SOAPMessageHandler - SOAPMessageHandlers - SOAPPart - SortOrder - SourceVersion - SplashScreen - SQLClientInfoException - SQLDataException - SQLFeatureNotSupportedException - SQLIntegrityConstraintViolationException - SQLInvalidAuthorizationSpecException - SQLNonTransientConnectionException - SQLNonTransientException - SQLRecoverableException - SQLSyntaxErrorException - SQLTimeoutException - SQLTransactionRollbackException - SQLTransientConnectionException - SQLTransientException - SQLXML - SSLParameters - StandardEmitterMBean - StandardJavaFileManager - StandardLocation - StartDocument - StartElement - StatementEvent - StatementEventListener - StAXResult - StAXSource - StreamFilter - StreamReaderDelegate - SupportedAnnotationTypes - SupportedOptions - SupportedSourceVersion - SwingWorker - SystemTray - TableRowSorter - TableStringConverter - TimeZoneNameProvider - Tool - ToolProvider - Transform - TransformException - TransformParameterSpec - TransformService - TrayIcon - TypeConstraintException - TypeElement - TypeKind - TypeKindVisitor6 - TypeMirror - TypeParameterElement - TypeVisitor - UIEvent - UnknownAnnotationValueException - UnknownElementException - UnknownTypeException - Unmarshaller - UnmarshallerHandler - UnsupportedDataTypeException - URIDereferencer - URIParameter - URIReference - URIReferenceException - URLDataSource - ValidationEvent - ValidationEventCollector - ValidationEventHandler - ValidationEventImpl - ValidationEventLocator - ValidationEventLocatorImpl - ValidationException - VariableElement - W3CDomHandler - WebEndpoint - WebFault - WebMethod - WebParam - WebResult - WebService - WebServiceClient - WebServiceContext - WebServiceException - WebServicePermission - WebServiceProvider - WebServiceRef - WebServiceRefs - Wrapper - X509Data - X509IssuerSerial - XmlAccessOrder - XmlAccessorOrder - XmlAccessorType - XmlAccessType - XmlAdapter - XmlAnyAttribute - XmlAnyElement - XmlAttachmentRef - XmlAttribute - XMLCryptoContext - XmlElement - XmlElementDecl - XmlElementRef - XmlElementRefs - XmlElements - XmlElementWrapper - XmlEnum - XmlEnumValue - XMLEvent - XMLEventAllocator - XMLEventConsumer - XMLEventFactory - XMLEventReader - XMLEventWriter - XmlID - XmlIDREF - XmlInlineBinaryData - XMLInputFactory - XmlJavaTypeAdapter - XmlJavaTypeAdapters - XmlList - XmlMimeType - XmlMixed - XmlNs - XmlNsForm - XMLObject - XMLOutputFactory - XmlRegistry - XMLReporter - XMLResolver - XmlRootElement - XmlSchema - XmlSchemaType - XmlSchemaTypes - XMLSignature - XMLSignatureException - XMLSignatureFactory - XMLSignContext - XMLStreamConstants - XMLStreamException - XMLStreamReader - XMLStreamWriter - XMLStructure - XmlTransient - XmlType - XMLValidateContext - XmlValue - XPathFilter2ParameterSpec - XPathFilterParameterSpec - XPathType - XSLTTransformParameterSpec - ZipError - - - - - abstract - break - case - catch - class - continue - default - do - else - enum - extends - false - finally - for - goto - if - implements - instanceof - @interface - interface - native - new - null - private - protected - public - return - super - strictfp - switch - synchronized - this - throws - throw - transient - true - try - volatile - while - - - boolean - byte - char - const - double - final - float - int - long - short - static - void - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/jira.xml ktexteditor-5.31.0/src/syntax/data/jira.xml --- ktexteditor-5.28.0/src/syntax/data/jira.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/jira.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,720 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/json.xml ktexteditor-5.31.0/src/syntax/data/json.xml --- ktexteditor-5.28.0/src/syntax/data/json.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/json.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,104 +0,0 @@ - - - - - - - null - true - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/jsp.xml ktexteditor-5.31.0/src/syntax/data/jsp.xml --- ktexteditor-5.28.0/src/syntax/data/jsp.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/jsp.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3070 +0,0 @@ - - - - - - - ARG_IN - ARG_INOUT - ARG_OUT - AWTError - AWTEvent - AWTEventListener - AWTEventListenerProxy - AWTEventMulticaster - AWTException - AWTKeyStroke - AWTPermission - AbstractAction - AbstractBorder - AbstractButton - AbstractCellEditor - AbstractCollection - AbstractColorChooserPanel - AbstractDocument - AbstractFormatter - AbstractFormatterFactory - AbstractInterruptibleChannel - AbstractLayoutCache - AbstractList - AbstractListModel - AbstractMap - AbstractMethodError - AbstractPreferences - AbstractSelectableChannel - AbstractSelectionKey - AbstractSelector - AbstractSequentialList - AbstractSet - AbstractSpinnerModel - AbstractTableModel - AbstractUndoableEdit - AbstractWriter - AccessControlContext - AccessControlException - AccessController - AccessException - Accessible - AccessibleAction - AccessibleBundle - AccessibleComponent - AccessibleContext - AccessibleEditableText - AccessibleExtendedComponent - AccessibleExtendedTable - AccessibleHyperlink - AccessibleHypertext - AccessibleIcon - AccessibleKeyBinding - AccessibleObject - AccessibleRelation - AccessibleRelationSet - AccessibleResourceBundle - AccessibleRole - AccessibleSelection - AccessibleState - AccessibleStateSet - AccessibleTable - AccessibleTableModelChange - AccessibleText - AccessibleValue - AccountExpiredException - Acl - AclEntry - AclNotFoundException - Action - ActionEvent - ActionListener - ActionMap - ActionMapUIResource - Activatable - ActivateFailedException - ActivationDesc - ActivationException - ActivationGroup - ActivationGroupDesc - ActivationGroupID - ActivationGroup_Stub - ActivationID - ActivationInstantiator - ActivationMonitor - ActivationSystem - Activator - ActiveEvent - ActiveValue - AdapterActivator - AdapterActivatorOperations - AdapterAlreadyExists - AdapterAlreadyExistsHelper - AdapterInactive - AdapterInactiveHelper - AdapterNonExistent - AdapterNonExistentHelper - AddressHelper - Adjustable - AdjustmentEvent - AdjustmentListener - Adler32 - AffineTransform - AffineTransformOp - AlgorithmParameterGenerator - AlgorithmParameterGeneratorSpi - AlgorithmParameterSpec - AlgorithmParameters - AlgorithmParametersSpi - AlignmentAction - AllPermission - AlphaComposite - AlreadyBound - AlreadyBoundException - AlreadyBoundHelper - AlreadyBoundHolder - AlreadyConnectedException - AncestorEvent - AncestorListener - Annotation - Any - AnyHolder - AnySeqHelper - AnySeqHelper - AnySeqHolder - AppConfigurationEntry - Applet - AppletContext - AppletInitializer - AppletStub - ApplicationException - Arc2D - Area - AreaAveragingScaleFilter - ArithmeticException - Array - Array - ArrayIndexOutOfBoundsException - ArrayList - ArrayStoreException - Arrays - AssertionError - AsyncBoxView - AsynchronousCloseException - Attr - Attribute - Attribute - Attribute - Attribute - Attribute - AttributeContext - AttributeException - AttributeInUseException - AttributeList - AttributeList - AttributeListImpl - AttributeModificationException - AttributeSet - AttributeSet - AttributeSetUtilities - AttributeUndoableEdit - AttributedCharacterIterator - AttributedString - Attributes - Attributes - Attributes - AttributesImpl - AudioClip - AudioFileFormat - AudioFileReader - AudioFileWriter - AudioFormat - AudioInputStream - AudioPermission - AudioSystem - AuthPermission - AuthenticationException - AuthenticationNotSupportedException - Authenticator - Autoscroll - BAD_CONTEXT - BAD_INV_ORDER - BAD_OPERATION - BAD_PARAM - BAD_POLICY - BAD_POLICY_TYPE - BAD_POLICY_VALUE - BAD_TYPECODE - BCSIterator - BCSSServiceProvider - BYTE_ARRAY - BackingStoreException - BadKind - BadLocationException - BadPaddingException - BandCombineOp - BandedSampleModel - BasicArrowButton - BasicAttribute - BasicAttributes - BasicBorders - BasicButtonListener - BasicButtonUI - BasicCaret - BasicCheckBoxMenuItemUI - BasicCheckBoxUI - BasicColorChooserUI - BasicComboBoxEditor - BasicComboBoxRenderer - BasicComboBoxUI - BasicComboPopup - BasicDesktopIconUI - BasicDesktopPaneUI - BasicDirectoryModel - BasicEditorPaneUI - BasicFileChooserUI - BasicFormattedTextFieldUI - BasicGraphicsUtils - BasicHTML - BasicHighlighter - BasicIconFactory - BasicInternalFrameTitlePane - BasicInternalFrameUI - BasicLabelUI - BasicListUI - BasicLookAndFeel - BasicMenuBarUI - BasicMenuItemUI - BasicMenuUI - BasicOptionPaneUI - BasicPanelUI - BasicPasswordFieldUI - BasicPermission - BasicPopupMenuSeparatorUI - BasicPopupMenuUI - BasicProgressBarUI - BasicRadioButtonMenuItemUI - BasicRadioButtonUI - BasicRootPaneUI - BasicScrollBarUI - BasicScrollPaneUI - BasicSeparatorUI - BasicSliderUI - BasicSpinnerUI - BasicSplitPaneDivider - BasicSplitPaneUI - BasicStroke - BasicTabbedPaneUI - BasicTableHeaderUI - BasicTableUI - BasicTextAreaUI - BasicTextFieldUI - BasicTextPaneUI - BasicTextUI - BasicToggleButtonUI - BasicToolBarSeparatorUI - BasicToolBarUI - BasicToolTipUI - BasicTreeUI - BasicViewportUI - BatchUpdateException - BeanContext - BeanContextChild - BeanContextChildComponentProxy - BeanContextChildSupport - BeanContextContainerProxy - BeanContextEvent - BeanContextMembershipEvent - BeanContextMembershipListener - BeanContextProxy - BeanContextServiceAvailableEvent - BeanContextServiceProvider - BeanContextServiceProviderBeanInfo - BeanContextServiceRevokedEvent - BeanContextServiceRevokedListener - BeanContextServices - BeanContextServicesListener - BeanContextServicesSupport - BeanContextSupport - BeanDescriptor - BeanInfo - Beans - BeepAction - BevelBorder - BevelBorderUIResource - Bias - Bidi - BigDecimal - BigInteger - BinaryRefAddr - BindException - Binding - Binding - BindingHelper - BindingHolder - BindingIterator - BindingIteratorHelper - BindingIteratorHolder - BindingIteratorOperations - BindingIteratorPOA - BindingListHelper - BindingListHolder - BindingType - BindingTypeHelper - BindingTypeHolder - BitSet - Blob - BlockView - BoldAction - Book - Boolean - BooleanControl - BooleanHolder - BooleanSeqHelper - BooleanSeqHolder - Border - BorderFactory - BorderLayout - BorderUIResource - BoundedRangeModel - Bounds - Bounds - Box - BoxLayout - BoxPainter - BoxView - BoxedValueHelper - BreakIterator - Buffer - BufferCapabilities - BufferOverflowException - BufferStrategy - BufferUnderflowException - BufferedImage - BufferedImageFilter - BufferedImageOp - BufferedInputStream - BufferedOutputStream - BufferedReader - BufferedWriter - Button - ButtonAreaLayout - ButtonBorder - ButtonBorder - ButtonGroup - ButtonModel - ButtonUI - Byte - ByteArrayInputStream - ByteArrayOutputStream - ByteBuffer - ByteChannel - ByteHolder - ByteLookupTable - ByteOrder - CDATASection - CHAR_ARRAY - CMMException - COMM_FAILURE - CRC32 - CRL - CRLException - CRLSelector - CSS - CTX_RESTRICT_SCOPE - Calendar - CallableStatement - Callback - CallbackHandler - CancelablePrintJob - CancelledKeyException - CannotProceed - CannotProceedException - CannotProceedHelper - CannotProceedHolder - CannotRedoException - CannotUndoException - Canvas - CardLayout - Caret - CaretEvent - CaretListener - CaretPolicy - CellEditor - CellEditorListener - CellRendererPane - CertPath - CertPathBuilder - CertPathBuilderException - CertPathBuilderResult - CertPathBuilderSpi - CertPathParameters - CertPathRep - CertPathValidator - CertPathValidatorException - CertPathValidatorResult - CertPathValidatorSpi - CertSelector - CertStore - CertStoreException - CertStoreParameters - CertStoreSpi - Certificate - Certificate - Certificate - CertificateEncodingException - CertificateEncodingException - CertificateException - CertificateException - CertificateExpiredException - CertificateExpiredException - CertificateFactory - CertificateFactorySpi - CertificateNotYetValidException - CertificateNotYetValidException - CertificateParsingException - CertificateParsingException - CertificateRep - ChangeEvent - ChangeListener - ChangedCharSetException - Channel - ChannelBinding - Channels - CharArrayReader - CharArrayWriter - CharBuffer - CharConversionException - CharHolder - CharSeqHelper - CharSeqHolder - CharSequence - Character - CharacterAttribute - CharacterCodingException - CharacterConstants - CharacterData - CharacterIterator - Charset - CharsetDecoder - CharsetEncoder - CharsetProvider - Checkbox - CheckboxGroup - CheckboxMenuItem - CheckedInputStream - CheckedOutputStream - Checksum - Choice - ChoiceCallback - ChoiceFormat - Chromaticity - Cipher - CipherInputStream - CipherOutputStream - CipherSpi - Class - ClassCastException - ClassCircularityError - ClassDesc - ClassFormatError - ClassLoader - ClassNotFoundException - ClientRequestInfo - ClientRequestInfoOperations - ClientRequestInterceptor - ClientRequestInterceptorOperations - Clip - Clipboard - ClipboardOwner - Clob - CloneNotSupportedException - Cloneable - ClosedByInterruptException - ClosedChannelException - ClosedSelectorException - CodeSets - CodeSource - Codec - CodecFactory - CodecFactoryHelper - CodecFactoryOperations - CodecOperations - CoderMalfunctionError - CoderResult - CodingErrorAction - CollationElementIterator - CollationKey - Collator - Collection - CollectionCertStoreParameters - Collections - Color - ColorAttribute - ColorChooserComponentFactory - ColorChooserUI - ColorConstants - ColorConvertOp - ColorModel - ColorSelectionModel - ColorSpace - ColorSupported - ColorType - ColorUIResource - ComboBoxEditor - ComboBoxModel - ComboBoxUI - ComboPopup - CommandEnvironment - Comment - CommunicationException - Comparable - Comparator - Compiler - CompletionStatus - CompletionStatusHelper - Component - ComponentAdapter - ComponentColorModel - ComponentEvent - ComponentIdHelper - ComponentInputMap - ComponentInputMapUIResource - ComponentListener - ComponentOrientation - ComponentSampleModel - ComponentUI - ComponentView - Composite - CompositeContext - CompositeName - CompositeView - CompoundBorder - CompoundBorderUIResource - CompoundControl - CompoundEdit - CompoundName - Compression - ConcurrentModificationException - Configuration - ConfigurationException - ConfirmationCallback - ConnectException - ConnectException - ConnectIOException - Connection - ConnectionEvent - ConnectionEventListener - ConnectionPendingException - ConnectionPoolDataSource - ConsoleHandler - Constraints - Constructor - Container - ContainerAdapter - ContainerEvent - ContainerListener - ContainerOrderFocusTraversalPolicy - Content - ContentHandler - ContentHandler - ContentHandlerFactory - ContentModel - Context - Context - ContextList - ContextNotEmptyException - ContextualRenderedImageFactory - Control - Control - ControlFactory - ControllerEventListener - ConvolveOp - CookieHolder - Copies - CopiesSupported - CopyAction - CredentialExpiredException - CropImageFilter - CubicCurve2D - Currency - Current - Current - Current - CurrentHelper - CurrentHelper - CurrentHelper - CurrentHolder - CurrentOperations - CurrentOperations - CurrentOperations - Cursor - CustomMarshal - CustomValue - Customizer - CutAction - DATA_CONVERSION - DESKeySpec - DESedeKeySpec - DGC - DHGenParameterSpec - DHKey - DHParameterSpec - DHPrivateKey - DHPrivateKeySpec - DHPublicKey - DHPublicKeySpec - DOMException - DOMImplementation - DOMLocator - DOMResult - DOMSource - DSAKey - DSAKeyPairGenerator - DSAParameterSpec - DSAParams - DSAPrivateKey - DSAPrivateKeySpec - DSAPublicKey - DSAPublicKeySpec - DTD - DTDConstants - DTDHandler - DataBuffer - DataBufferByte - DataBufferDouble - DataBufferFloat - DataBufferInt - DataBufferShort - DataBufferUShort - DataFlavor - DataFormatException - DataInput - DataInputStream - DataInputStream - DataLine - DataOutput - DataOutputStream - DataOutputStream - DataSource - DataTruncation - DatabaseMetaData - DatagramChannel - DatagramPacket - DatagramSocket - DatagramSocketImpl - DatagramSocketImplFactory - Date - Date - DateEditor - DateFormat - DateFormatSymbols - DateFormatter - DateTimeAtCompleted - DateTimeAtCreation - DateTimeAtProcessing - DateTimeSyntax - DebugGraphics - DecimalFormat - DecimalFormatSymbols - DeclHandler - DefaultBoundedRangeModel - DefaultButtonModel - DefaultCaret - DefaultCellEditor - DefaultColorSelectionModel - DefaultComboBoxModel - DefaultDesktopManager - DefaultEditor - DefaultEditorKit - DefaultFocusManager - DefaultFocusTraversalPolicy - DefaultFormatter - DefaultFormatterFactory - DefaultHandler - DefaultHighlightPainter - DefaultHighlighter - DefaultKeyTypedAction - DefaultKeyboardFocusManager - DefaultListCellRenderer - DefaultListModel - DefaultListSelectionModel - DefaultMenuLayout - DefaultMetalTheme - DefaultMutableTreeNode - DefaultPersistenceDelegate - DefaultSelectionType - DefaultSingleSelectionModel - DefaultStyledDocument - DefaultTableCellRenderer - DefaultTableColumnModel - DefaultTableModel - DefaultTextUI - DefaultTreeCellEditor - DefaultTreeCellRenderer - DefaultTreeModel - DefaultTreeSelectionModel - DefinitionKind - DefinitionKindHelper - Deflater - DeflaterOutputStream - Delegate - Delegate - Delegate - DelegationPermission - DesignMode - DesktopIconUI - DesktopManager - DesktopPaneUI - Destination - DestinationType - DestroyFailedException - Destroyable - Dialog - DialogType - Dictionary - DigestException - DigestInputStream - DigestOutputStream - Dimension - Dimension2D - DimensionUIResource - DirContext - DirObjectFactory - DirStateFactory - DirectColorModel - DirectoryManager - DisplayMode - DnDConstants - Doc - DocAttribute - DocAttributeSet - DocFlavor - DocPrintJob - Document - Document - DocumentBuilder - DocumentBuilderFactory - DocumentEvent - DocumentFilter - DocumentFragment - DocumentHandler - DocumentListener - DocumentName - DocumentParser - DocumentType - DomainCombiner - DomainManager - DomainManagerOperations - Double - Double - Double - Double - Double - Double - Double - Double - Double - DoubleBuffer - DoubleHolder - DoubleSeqHelper - DoubleSeqHolder - DragGestureEvent - DragGestureListener - DragGestureRecognizer - DragSource - DragSourceAdapter - DragSourceContext - DragSourceDragEvent - DragSourceDropEvent - DragSourceEvent - DragSourceListener - DragSourceMotionListener - Driver - DriverManager - DriverPropertyInfo - DropTarget - DropTargetAdapter - DropTargetAutoScroller - DropTargetContext - DropTargetDragEvent - DropTargetDropEvent - DropTargetEvent - DropTargetListener - DuplicateName - DuplicateNameHelper - DynAny - DynAny - DynAnyFactory - DynAnyFactoryHelper - DynAnyFactoryOperations - DynAnyHelper - DynAnyOperations - DynAnySeqHelper - DynArray - DynArray - DynArrayHelper - DynArrayOperations - DynEnum - DynEnum - DynEnumHelper - DynEnumOperations - DynFixed - DynFixed - DynFixedHelper - DynFixedOperations - DynSequence - DynSequence - DynSequenceHelper - DynSequenceOperations - DynStruct - DynStruct - DynStructHelper - DynStructOperations - DynUnion - DynUnion - DynUnionHelper - DynUnionOperations - DynValue - DynValue - DynValueBox - DynValueBoxOperations - DynValueCommon - DynValueCommonOperations - DynValueHelper - DynValueOperations - DynamicImplementation - DynamicImplementation - DynamicUtilTreeNode - ENCODING_CDR_ENCAPS - EOFException - EditorKit - Element - Element - Element - ElementChange - ElementEdit - ElementIterator - ElementSpec - Ellipse2D - EmptyBorder - EmptyBorderUIResource - EmptySelectionModel - EmptyStackException - EncodedKeySpec - Encoder - Encoding - Encoding - EncryptedPrivateKeyInfo - Engineering - Entity - Entity - EntityReference - EntityResolver - Entry - EnumControl - EnumSyntax - Enumeration - Environment - Error - ErrorHandler - ErrorListener - ErrorManager - EtchedBorder - EtchedBorderUIResource - Event - EventContext - EventDirContext - EventHandler - EventListener - EventListenerList - EventListenerProxy - EventObject - EventQueue - EventSetDescriptor - EventType - EventType - Exception - ExceptionInInitializerError - ExceptionList - ExceptionListener - ExemptionMechanism - ExemptionMechanismException - ExemptionMechanismSpi - ExpandVetoException - ExportException - Expression - ExtendedRequest - ExtendedResponse - Externalizable - FREE_MEM - FactoryConfigurationError - FailedLoginException - FeatureDescriptor - Fidelity - Field - Field - Field - Field - Field - FieldBorder - FieldNameHelper - FieldNameHelper - FieldPosition - FieldView - File - FileCacheImageInputStream - FileCacheImageOutputStream - FileChannel - FileChooserUI - FileDescriptor - FileDialog - FileFilter - FileFilter - FileHandler - FileIcon16 - FileImageInputStream - FileImageOutputStream - FileInputStream - FileLock - FileLockInterruptionException - FileNameMap - FileNotFoundException - FileOutputStream - FilePermission - FileReader - FileSystemView - FileView - FileWriter - FilenameFilter - Filler - Filter - Filter - FilterBypass - FilterBypass - FilterInputStream - FilterOutputStream - FilterReader - FilterWriter - FilteredImageSource - Finishings - FixedHeightLayoutCache - FixedHolder - FlatteningPathIterator - FlavorException - FlavorMap - FlavorTable - FlipContents - Float - Float - Float - Float - Float - Float - Float - Float - Float - FloatBuffer - FloatControl - FloatHolder - FloatSeqHelper - FloatSeqHolder - FlowLayout - FlowStrategy - FlowView - Flush3DBorder - FocusAdapter - FocusEvent - FocusListener - FocusManager - FocusTraversalPolicy - FolderIcon16 - Font - FontAttribute - FontConstants - FontFamilyAction - FontFormatException - FontMetrics - FontRenderContext - FontSizeAction - FontUIResource - ForegroundAction - FormView - Format - FormatConversionProvider - FormatMismatch - FormatMismatchHelper - Formatter - ForwardRequest - ForwardRequest - ForwardRequestHelper - ForwardRequestHelper - Frame - GSSContext - GSSCredential - GSSException - GSSManager - GSSName - GZIPInputStream - GZIPOutputStream - GapContent - GatheringByteChannel - GeneralPath - GeneralSecurityException - GetField - GlyphJustificationInfo - GlyphMetrics - GlyphPainter - GlyphVector - GlyphView - GradientPaint - GraphicAttribute - Graphics - Graphics2D - GraphicsConfigTemplate - GraphicsConfiguration - GraphicsDevice - GraphicsEnvironment - GrayFilter - GregorianCalendar - GridBagConstraints - GridBagLayout - GridLayout - Group - Guard - GuardedObject - HTML - HTMLDocument - HTMLEditorKit - HTMLEditorKit - HTMLEditorKit - HTMLFrameHyperlinkEvent - HTMLWriter - Handler - HandlerBase - HandshakeCompletedEvent - HandshakeCompletedListener - HasControls - HashAttributeSet - HashDocAttributeSet - HashMap - HashPrintJobAttributeSet - HashPrintRequestAttributeSet - HashPrintServiceAttributeSet - HashSet - Hashtable - HeadlessException - HierarchyBoundsAdapter - HierarchyBoundsListener - HierarchyEvent - HierarchyListener - Highlight - HighlightPainter - Highlighter - HostnameVerifier - HttpURLConnection - HttpsURLConnection - HyperlinkEvent - HyperlinkListener - ICC_ColorSpace - ICC_Profile - ICC_ProfileGray - ICC_ProfileRGB - IDLEntity - IDLType - IDLTypeHelper - IDLTypeOperations - ID_ASSIGNMENT_POLICY_ID - ID_UNIQUENESS_POLICY_ID - IIOByteBuffer - IIOException - IIOImage - IIOInvalidTreeException - IIOMetadata - IIOMetadataController - IIOMetadataFormat - IIOMetadataFormatImpl - IIOMetadataNode - IIOParam - IIOParamController - IIOReadProgressListener - IIOReadUpdateListener - IIOReadWarningListener - IIORegistry - IIOServiceProvider - IIOWriteProgressListener - IIOWriteWarningListener - IMPLICIT_ACTIVATION_POLICY_ID - IMP_LIMIT - INITIALIZE - INPUT_STREAM - INTERNAL - INTF_REPOS - INVALID_TRANSACTION - INV_FLAG - INV_IDENT - INV_OBJREF - INV_POLICY - IOException - IOR - IORHelper - IORHolder - IORInfo - IORInfoOperations - IORInterceptor - IORInterceptorOperations - IRObject - IRObjectOperations - ISO - Icon - IconUIResource - IconView - IdAssignmentPolicy - IdAssignmentPolicyOperations - IdAssignmentPolicyValue - IdUniquenessPolicy - IdUniquenessPolicyOperations - IdUniquenessPolicyValue - IdentifierHelper - Identity - IdentityHashMap - IdentityScope - IllegalAccessError - IllegalAccessException - IllegalArgumentException - IllegalBlockSizeException - IllegalBlockingModeException - IllegalCharsetNameException - IllegalComponentStateException - IllegalMonitorStateException - IllegalPathStateException - IllegalSelectorException - IllegalStateException - IllegalThreadStateException - Image - ImageCapabilities - ImageConsumer - ImageFilter - ImageGraphicAttribute - ImageIO - ImageIcon - ImageInputStream - ImageInputStreamImpl - ImageInputStreamSpi - ImageObserver - ImageOutputStream - ImageOutputStreamImpl - ImageOutputStreamSpi - ImageProducer - ImageReadParam - ImageReader - ImageReaderSpi - ImageReaderWriterSpi - ImageTranscoder - ImageTranscoderSpi - ImageTypeSpecifier - ImageView - ImageWriteParam - ImageWriter - ImageWriterSpi - ImagingOpException - ImplicitActivationPolicy - ImplicitActivationPolicyOperations - ImplicitActivationPolicyValue - IncompatibleClassChangeError - InconsistentTypeCode - InconsistentTypeCode - InconsistentTypeCodeHelper - IndexColorModel - IndexOutOfBoundsException - IndexedPropertyDescriptor - IndirectionException - Inet4Address - Inet6Address - InetAddress - InetSocketAddress - Inflater - InflaterInputStream - Info - Info - Info - Info - Info - InheritableThreadLocal - InitialContext - InitialContextFactory - InitialContextFactoryBuilder - InitialDirContext - InitialLdapContext - InlineView - InputContext - InputEvent - InputMap - InputMapUIResource - InputMethod - InputMethodContext - InputMethodDescriptor - InputMethodEvent - InputMethodHighlight - InputMethodListener - InputMethodRequests - InputSource - InputStream - InputStream - InputStream - InputStreamReader - InputSubset - InputVerifier - InsertBreakAction - InsertContentAction - InsertHTMLTextAction - InsertTabAction - Insets - InsetsUIResource - InstantiationError - InstantiationException - Instrument - InsufficientResourcesException - IntBuffer - IntHolder - Integer - IntegerSyntax - Interceptor - InterceptorOperations - InternalError - InternalFrameAdapter - InternalFrameBorder - InternalFrameEvent - InternalFrameFocusTraversalPolicy - InternalFrameListener - InternalFrameUI - InternationalFormatter - InterruptedException - InterruptedIOException - InterruptedNamingException - InterruptibleChannel - IntrospectionException - Introspector - Invalid - InvalidAddress - InvalidAddressHelper - InvalidAddressHolder - InvalidAlgorithmParameterException - InvalidAttributeIdentifierException - InvalidAttributeValueException - InvalidAttributesException - InvalidClassException - InvalidDnDOperationException - InvalidKeyException - InvalidKeySpecException - InvalidMarkException - InvalidMidiDataException - InvalidName - InvalidName - InvalidName - InvalidNameException - InvalidNameHelper - InvalidNameHelper - InvalidNameHolder - InvalidObjectException - InvalidParameterException - InvalidParameterSpecException - InvalidPolicy - InvalidPolicyHelper - InvalidPreferencesFormatException - InvalidSearchControlsException - InvalidSearchFilterException - InvalidSeq - InvalidSlot - InvalidSlotHelper - InvalidTransactionException - InvalidTypeForEncoding - InvalidTypeForEncodingHelper - InvalidValue - InvalidValue - InvalidValueHelper - InvocationEvent - InvocationHandler - InvocationTargetException - InvokeHandler - IstringHelper - ItalicAction - ItemEvent - ItemListener - ItemSelectable - Iterator - Iterator - IvParameterSpec - JApplet - JButton - JCheckBox - JCheckBoxMenuItem - JColorChooser - JComboBox - JComponent - JDesktopIcon - JDesktopPane - JDialog - JEditorPane - JFileChooser - JFormattedTextField - JFrame - JIS - JInternalFrame - JLabel - JLayeredPane - JList - JMenu - JMenuBar - JMenuItem - JOptionPane - JPEGHuffmanTable - JPEGImageReadParam - JPEGImageWriteParam - JPEGQTable - JPanel - JPasswordField - JPopupMenu - JProgressBar - JRadioButton - JRadioButtonMenuItem - JRootPane - JScrollBar - JScrollPane - JSeparator - JSlider - JSpinner - JSplitPane - JTabbedPane - JTable - JTableHeader - JTextArea - JTextComponent - JTextField - JTextPane - JToggleButton - JToolBar - JToolTip - JTree - JViewport - JWindow - JarEntry - JarException - JarFile - JarInputStream - JarOutputStream - JarURLConnection - JobAttributes - JobHoldUntil - JobImpressions - JobImpressionsCompleted - JobImpressionsSupported - JobKOctets - JobKOctetsProcessed - JobKOctetsSupported - JobMediaSheets - JobMediaSheetsCompleted - JobMediaSheetsSupported - JobMessageFromOperator - JobName - JobOriginatingUserName - JobPriority - JobPrioritySupported - JobSheets - JobState - JobStateReason - JobStateReasons - KerberosKey - KerberosPrincipal - KerberosTicket - Kernel - Key - Key - KeyAdapter - KeyAgreement - KeyAgreementSpi - KeyBinding - KeyEvent - KeyEventDispatcher - KeyEventPostProcessor - KeyException - KeyFactory - KeyFactorySpi - KeyGenerator - KeyGeneratorSpi - KeyListener - KeyManagementException - KeyManager - KeyManagerFactory - KeyManagerFactorySpi - KeyPair - KeyPairGenerator - KeyPairGeneratorSpi - KeySelectionManager - KeySpec - KeyStore - KeyStoreException - KeyStoreSpi - KeyStroke - KeyboardFocusManager - Keymap - LDAPCertStoreParameters - LIFESPAN_POLICY_ID - LOCATION_FORWARD - Label - LabelUI - LabelView - LanguageCallback - LastOwnerException - LayerPainter - LayeredHighlighter - LayoutFocusTraversalPolicy - LayoutManager - LayoutManager2 - LayoutQueue - LazyInputMap - LazyValue - LdapContext - LdapReferralException - Lease - Level - LexicalHandler - LifespanPolicy - LifespanPolicyOperations - LifespanPolicyValue - LimitExceededException - Line - Line2D - LineBorder - LineBorderUIResource - LineBreakMeasurer - LineEvent - LineListener - LineMetrics - LineNumberInputStream - LineNumberReader - LineUnavailableException - LinkController - LinkException - LinkLoopException - LinkRef - LinkageError - LinkedHashMap - LinkedHashSet - LinkedList - List - List - ListCellRenderer - ListDataEvent - ListDataListener - ListEditor - ListIterator - ListModel - ListPainter - ListResourceBundle - ListSelectionEvent - ListSelectionListener - ListSelectionModel - ListUI - ListView - LoaderHandler - LocalObject - Locale - LocateRegistry - Locator - LocatorImpl - LogManager - LogRecord - LogStream - Logger - LoggingPermission - LoginContext - LoginException - LoginModule - LoginModuleControlFlag - Long - LongBuffer - LongHolder - LongLongSeqHelper - LongLongSeqHolder - LongSeqHelper - LongSeqHolder - LookAndFeel - LookAndFeelInfo - LookupOp - LookupTable - MARSHAL - Mac - MacSpi - MalformedInputException - MalformedLinkException - MalformedURLException - ManagerFactoryParameters - Manifest - Map - MapMode - MappedByteBuffer - MarginBorder - MarshalException - MarshalledObject - MaskFormatter - Matcher - Math - MatteBorder - MatteBorderUIResource - Media - MediaName - MediaPrintableArea - MediaSize - MediaSizeName - MediaTracker - MediaTray - MediaType - Member - MemoryCacheImageInputStream - MemoryCacheImageOutputStream - MemoryHandler - MemoryImageSource - Menu - MenuBar - MenuBarBorder - MenuBarBorder - MenuBarUI - MenuComponent - MenuContainer - MenuDragMouseEvent - MenuDragMouseListener - MenuElement - MenuEvent - MenuItem - MenuItemBorder - MenuItemUI - MenuKeyEvent - MenuKeyListener - MenuListener - MenuSelectionManager - MenuShortcut - MessageDigest - MessageDigestSpi - MessageFormat - MessageProp - MetaEventListener - MetaMessage - MetalBorders - MetalButtonUI - MetalCheckBoxIcon - MetalCheckBoxUI - MetalComboBoxButton - MetalComboBoxEditor - MetalComboBoxIcon - MetalComboBoxUI - MetalDesktopIconUI - MetalFileChooserUI - MetalIconFactory - MetalInternalFrameTitlePane - MetalInternalFrameUI - MetalLabelUI - MetalLookAndFeel - MetalPopupMenuSeparatorUI - MetalProgressBarUI - MetalRadioButtonUI - MetalRootPaneUI - MetalScrollBarUI - MetalScrollButton - MetalScrollPaneUI - MetalSeparatorUI - MetalSliderUI - MetalSplitPaneUI - MetalTabbedPaneUI - MetalTextFieldUI - MetalTheme - MetalToggleButtonUI - MetalToolBarUI - MetalToolTipUI - MetalTreeUI - Method - MethodDescriptor - MidiChannel - MidiDevice - MidiDeviceProvider - MidiEvent - MidiFileFormat - MidiFileReader - MidiFileWriter - MidiMessage - MidiSystem - MidiUnavailableException - MimeTypeParseException - MinimalHTMLWriter - MissingResourceException - Mixer - MixerProvider - ModificationItem - Modifier - MouseAdapter - MouseDragGestureRecognizer - MouseEvent - MouseInputAdapter - MouseInputListener - MouseListener - MouseMotionAdapter - MouseMotionListener - MouseWheelEvent - MouseWheelListener - MultiButtonUI - MultiColorChooserUI - MultiComboBoxUI - MultiDesktopIconUI - MultiDesktopPaneUI - MultiDoc - MultiDocPrintJob - MultiDocPrintService - MultiFileChooserUI - MultiInternalFrameUI - MultiLabelUI - MultiListUI - MultiLookAndFeel - MultiMenuBarUI - MultiMenuItemUI - MultiOptionPaneUI - MultiPanelUI - MultiPixelPackedSampleModel - MultiPopupMenuUI - MultiProgressBarUI - MultiRootPaneUI - MultiScrollBarUI - MultiScrollPaneUI - MultiSeparatorUI - MultiSliderUI - MultiSpinnerUI - MultiSplitPaneUI - MultiTabbedPaneUI - MultiTableHeaderUI - MultiTableUI - MultiTextUI - MultiToolBarUI - MultiToolTipUI - MultiTreeUI - MultiViewportUI - MulticastSocket - MultipleComponentProfileHelper - MultipleComponentProfileHolder - MultipleDocumentHandling - MultipleDocumentHandlingType - MultipleMaster - MutableAttributeSet - MutableComboBoxModel - MutableTreeNode - NA - NO_IMPLEMENT - NO_MEMORY - NO_PERMISSION - NO_RESOURCES - NO_RESPONSE - NVList - Name - Name - NameAlreadyBoundException - NameCallback - NameClassPair - NameComponent - NameComponentHelper - NameComponentHolder - NameDynAnyPair - NameDynAnyPairHelper - NameDynAnyPairSeqHelper - NameHelper - NameHolder - NameNotFoundException - NameParser - NameValuePair - NameValuePair - NameValuePairHelper - NameValuePairHelper - NameValuePairSeqHelper - NamedNodeMap - NamedValue - NamespaceChangeListener - NamespaceSupport - Naming - NamingContext - NamingContextExt - NamingContextExtHelper - NamingContextExtHolder - NamingContextExtOperations - NamingContextExtPOA - NamingContextHelper - NamingContextHolder - NamingContextOperations - NamingContextPOA - NamingEnumeration - NamingEvent - NamingException - NamingExceptionEvent - NamingListener - NamingManager - NamingSecurityException - NavigationFilter - NegativeArraySizeException - NetPermission - NetworkInterface - NoClassDefFoundError - NoConnectionPendingException - NoContext - NoContextHelper - NoInitialContextException - NoPermissionException - NoRouteToHostException - NoServant - NoServantHelper - NoSuchAlgorithmException - NoSuchAttributeException - NoSuchElementException - NoSuchFieldError - NoSuchFieldException - NoSuchMethodError - NoSuchMethodException - NoSuchObjectException - NoSuchPaddingException - NoSuchProviderException - Node - NodeChangeEvent - NodeChangeListener - NodeDimensions - NodeList - NonReadableChannelException - NonWritableChannelException - NoninvertibleTransformException - NotActiveException - NotBoundException - NotContextException - NotEmpty - NotEmptyHelper - NotEmptyHolder - NotFound - NotFoundHelper - NotFoundHolder - NotFoundReason - NotFoundReasonHelper - NotFoundReasonHolder - NotOwnerException - NotSerializableException - NotYetBoundException - NotYetConnectedException - Notation - NullCipher - NullPointerException - Number - NumberEditor - NumberFormat - NumberFormatException - NumberFormatter - NumberOfDocuments - NumberOfInterveningJobs - NumberUp - NumberUpSupported - NumericShaper - OBJECT_NOT_EXIST - OBJ_ADAPTER - OMGVMCID - ORB - ORB - ORBInitInfo - ORBInitInfoOperations - ORBInitializer - ORBInitializerOperations - ObjID - Object - Object - ObjectAlreadyActive - ObjectAlreadyActiveHelper - ObjectChangeListener - ObjectFactory - ObjectFactoryBuilder - ObjectHelper - ObjectHolder - ObjectIdHelper - ObjectImpl - ObjectImpl - ObjectInput - ObjectInputStream - ObjectInputValidation - ObjectNotActive - ObjectNotActiveHelper - ObjectOutput - ObjectOutputStream - ObjectStreamClass - ObjectStreamConstants - ObjectStreamException - ObjectStreamField - ObjectView - Observable - Observer - OctetSeqHelper - OctetSeqHolder - Oid - OpenType - Operation - OperationNotSupportedException - Option - OptionDialogBorder - OptionPaneUI - OptionalDataException - OrientationRequested - OrientationRequestedType - OriginType - Other - OutOfMemoryError - OutputDeviceAssigned - OutputKeys - OutputStream - OutputStream - OutputStream - OutputStreamWriter - OverlappingFileLockException - OverlayLayout - Owner - PBEKey - PBEKeySpec - PBEParameterSpec - PDLOverrideSupported - PERSIST_STORE - PKCS8EncodedKeySpec - PKIXBuilderParameters - PKIXCertPathBuilderResult - PKIXCertPathChecker - PKIXCertPathValidatorResult - PKIXParameters - POA - POAHelper - POAManager - POAManagerOperations - POAOperations - PRIVATE_MEMBER - PSSParameterSpec - PUBLIC_MEMBER - Package - PackedColorModel - PageAttributes - PageFormat - PageRanges - Pageable - PagesPerMinute - PagesPerMinuteColor - Paint - PaintContext - PaintEvent - PaletteBorder - PaletteCloseIcon - Panel - PanelUI - Paper - ParagraphAttribute - ParagraphConstants - ParagraphView - ParagraphView - Parameter - ParameterBlock - ParameterDescriptor - ParameterMetaData - ParameterMode - ParameterModeHelper - ParameterModeHolder - ParseException - ParsePosition - Parser - Parser - Parser - ParserAdapter - ParserCallback - ParserConfigurationException - ParserDelegator - ParserFactory - PartialResultException - PasswordAuthentication - PasswordCallback - PasswordView - PasteAction - Patch - PathIterator - Pattern - PatternSyntaxException - Permission - Permission - PermissionCollection - Permissions - PersistenceDelegate - PhantomReference - Pipe - PipedInputStream - PipedOutputStream - PipedReader - PipedWriter - PixelGrabber - PixelInterleavedSampleModel - PlainDocument - PlainView - Point - Point2D - Policy - Policy - Policy - PolicyError - PolicyErrorCodeHelper - PolicyErrorHelper - PolicyErrorHolder - PolicyFactory - PolicyFactoryOperations - PolicyHelper - PolicyHolder - PolicyListHelper - PolicyListHolder - PolicyNode - PolicyOperations - PolicyQualifierInfo - PolicyTypeHelper - Polygon - PooledConnection - Popup - PopupFactory - PopupMenu - PopupMenuBorder - PopupMenuEvent - PopupMenuListener - PopupMenuUI - Port - PortUnreachableException - PortableRemoteObject - PortableRemoteObjectDelegate - Position - PreferenceChangeEvent - PreferenceChangeListener - Preferences - PreferencesFactory - PreparedStatement - PresentationDirection - Principal - Principal - PrincipalHolder - PrintEvent - PrintException - PrintGraphics - PrintJob - PrintJobAdapter - PrintJobAttribute - PrintJobAttributeEvent - PrintJobAttributeListener - PrintJobAttributeSet - PrintJobEvent - PrintJobListener - PrintQuality - PrintQualityType - PrintRequestAttribute - PrintRequestAttributeSet - PrintService - PrintServiceAttribute - PrintServiceAttributeEvent - PrintServiceAttributeListener - PrintServiceAttributeSet - PrintServiceLookup - PrintStream - PrintWriter - Printable - PrinterAbortException - PrinterException - PrinterGraphics - PrinterIOException - PrinterInfo - PrinterIsAcceptingJobs - PrinterJob - PrinterLocation - PrinterMakeAndModel - PrinterMessageFromOperator - PrinterMoreInfo - PrinterMoreInfoManufacturer - PrinterName - PrinterResolution - PrinterState - PrinterStateReason - PrinterStateReasons - PrinterURI - PrivateCredentialPermission - PrivateKey - PrivilegedAction - PrivilegedActionException - PrivilegedExceptionAction - Process - ProcessingInstruction - ProfileDataException - ProfileIdHelper - ProgressBarUI - ProgressMonitor - ProgressMonitorInputStream - Properties - PropertyChangeEvent - PropertyChangeListener - PropertyChangeListenerProxy - PropertyChangeSupport - PropertyDescriptor - PropertyEditor - PropertyEditorManager - PropertyEditorSupport - PropertyPermission - PropertyResourceBundle - PropertyVetoException - ProtectionDomain - ProtocolException - Provider - ProviderException - Proxy - ProxyLazyValue - PublicKey - PushbackInputStream - PushbackReader - PutField - QuadCurve2D - QueuedJobCount - RC2ParameterSpec - RC5ParameterSpec - READER - REQUEST_PROCESSING_POLICY_ID - RGBImageFilter - RMIClassLoader - RMIClassLoaderSpi - RMIClientSocketFactory - RMIFailureHandler - RMISecurityException - RMISecurityManager - RMIServerSocketFactory - RMISocketFactory - RSAKey - RSAKeyGenParameterSpec - RSAMultiPrimePrivateCrtKey - RSAMultiPrimePrivateCrtKeySpec - RSAOtherPrimeInfo - RSAPrivateCrtKey - RSAPrivateCrtKeySpec - RSAPrivateKey - RSAPrivateKeySpec - RSAPublicKey - RSAPublicKeySpec - RTFEditorKit - RadioButtonBorder - Random - RandomAccess - RandomAccessFile - Raster - RasterFormatException - RasterOp - ReadOnlyBufferException - ReadableByteChannel - Reader - Receiver - Rectangle - Rectangle2D - RectangularShape - Ref - RefAddr - Reference - Reference - ReferenceQueue - ReferenceUriSchemesSupported - Referenceable - ReferralException - ReflectPermission - RefreshFailedException - Refreshable - RegisterableService - Registry - RegistryHandler - RemarshalException - Remote - RemoteCall - RemoteException - RemoteObject - RemoteRef - RemoteServer - RemoteStub - RenderContext - RenderableImage - RenderableImageOp - RenderableImageProducer - RenderedImage - RenderedImageFactory - Renderer - RenderingHints - RepaintManager - ReplicateScaleFilter - RepositoryIdHelper - Request - RequestInfo - RequestInfoOperations - RequestProcessingPolicy - RequestProcessingPolicyOperations - RequestProcessingPolicyValue - RequestingUserName - RescaleOp - ResolutionSyntax - ResolveResult - Resolver - ResourceBundle - ResponseHandler - Result - Result - ResultSet - ResultSetMetaData - ReverbType - Robot - RolloverButtonBorder - RolloverButtonBorder - RootPaneContainer - RootPaneUI - RoundRectangle2D - RowMapper - RowSet - RowSetEvent - RowSetInternal - RowSetListener - RowSetMetaData - RowSetReader - RowSetWriter - RuleBasedCollator - RunTime - RunTimeOperations - Runnable - Runtime - RuntimeException - RuntimePermission - SAXException - SAXNotRecognizedException - SAXNotSupportedException - SAXParseException - SAXParser - SAXParserFactory - SAXResult - SAXSource - SAXTransformerFactory - SERVANT_RETENTION_POLICY_ID - SERVICE_FORMATTED - SQLData - SQLException - SQLInput - SQLOutput - SQLPermission - SQLWarning - SSLContext - SSLContextSpi - SSLException - SSLHandshakeException - SSLKeyException - SSLPeerUnverifiedException - SSLPermission - SSLProtocolException - SSLServerSocket - SSLServerSocketFactory - SSLSession - SSLSessionBindingEvent - SSLSessionBindingListener - SSLSessionContext - SSLSocket - SSLSocketFactory - STRING - SUCCESSFUL - SYNC_WITH_TRANSPORT - SYSTEM_EXCEPTION - SampleModel - Savepoint - ScatteringByteChannel - SchemaViolationException - ScrollBarUI - ScrollPane - ScrollPaneAdjustable - ScrollPaneBorder - ScrollPaneConstants - ScrollPaneLayout - ScrollPaneUI - Scrollable - Scrollbar - SealedObject - SearchControls - SearchResult - SecretKey - SecretKeyFactory - SecretKeyFactorySpi - SecretKeySpec - SecureClassLoader - SecureRandom - SecureRandomSpi - Security - SecurityException - SecurityManager - SecurityPermission - Segment - SelectableChannel - SelectionKey - Selector - SelectorProvider - Separator - Separator - SeparatorUI - Sequence - SequenceInputStream - Sequencer - Serializable - SerializablePermission - Servant - ServantActivator - ServantActivatorHelper - ServantActivatorOperations - ServantActivatorPOA - ServantAlreadyActive - ServantAlreadyActiveHelper - ServantLocator - ServantLocatorHelper - ServantLocatorOperations - ServantLocatorPOA - ServantManager - ServantManagerOperations - ServantNotActive - ServantNotActiveHelper - ServantObject - ServantRetentionPolicy - ServantRetentionPolicyOperations - ServantRetentionPolicyValue - ServerCloneException - ServerError - ServerException - ServerNotActiveException - ServerRef - ServerRequest - ServerRequestInfo - ServerRequestInfoOperations - ServerRequestInterceptor - ServerRequestInterceptorOperations - ServerRuntimeException - ServerSocket - ServerSocketChannel - ServerSocketFactory - ServiceContext - ServiceContextHelper - ServiceContextHolder - ServiceContextListHelper - ServiceContextListHolder - ServiceDetail - ServiceDetailHelper - ServiceIdHelper - ServiceInformation - ServiceInformationHelper - ServiceInformationHolder - ServicePermission - ServiceRegistry - ServiceUI - ServiceUIFactory - ServiceUnavailableException - Set - SetOfIntegerSyntax - SetOverrideType - SetOverrideTypeHelper - Severity - Shape - ShapeGraphicAttribute - SheetCollate - Short - ShortBuffer - ShortBufferException - ShortHolder - ShortLookupTable - ShortMessage - ShortSeqHelper - ShortSeqHolder - Sides - SidesType - Signature - SignatureException - SignatureSpi - SignedObject - Signer - SimpleAttributeSet - SimpleBeanInfo - SimpleDateFormat - SimpleDoc - SimpleFormatter - SimpleTimeZone - SinglePixelPackedSampleModel - SingleSelectionModel - SinkChannel - Size2DSyntax - SizeLimitExceededException - SizeRequirements - SizeSequence - Skeleton - SkeletonMismatchException - SkeletonNotFoundException - SliderUI - Socket - SocketAddress - SocketChannel - SocketException - SocketFactory - SocketHandler - SocketImpl - SocketImplFactory - SocketOptions - SocketPermission - SocketSecurityException - SocketTimeoutException - SoftBevelBorder - SoftReference - SortedMap - SortedSet - SortingFocusTraversalPolicy - Soundbank - SoundbankReader - SoundbankResource - Source - SourceChannel - SourceDataLine - SourceLocator - SpinnerDateModel - SpinnerListModel - SpinnerModel - SpinnerNumberModel - SpinnerUI - SplitPaneBorder - SplitPaneUI - Spring - SpringLayout - Stack - StackOverflowError - StackTraceElement - StartTlsRequest - StartTlsResponse - State - StateEdit - StateEditable - StateFactory - Statement - Statement - StreamCorruptedException - StreamHandler - StreamPrintService - StreamPrintServiceFactory - StreamResult - StreamSource - StreamTokenizer - Streamable - StreamableValue - StrictMath - String - StringBuffer - StringBufferInputStream - StringCharacterIterator - StringContent - StringHolder - StringIndexOutOfBoundsException - StringNameHelper - StringReader - StringRefAddr - StringSelection - StringSeqHelper - StringSeqHolder - StringTokenizer - StringValueHelper - StringWriter - Stroke - Struct - StructMember - StructMemberHelper - Stub - StubDelegate - StubNotFoundException - Style - StyleConstants - StyleContext - StyleSheet - StyledDocument - StyledEditorKit - StyledTextAction - Subject - SubjectDomainCombiner - Subset - SupportedValuesAttribute - SwingConstants - SwingPropertyChangeSupport - SwingUtilities - SyncFailedException - SyncMode - SyncScopeHelper - Synthesizer - SysexMessage - System - SystemColor - SystemException - SystemFlavorMap - TAG_ALTERNATE_IIOP_ADDRESS - TAG_CODE_SETS - TAG_INTERNET_IOP - TAG_JAVA_CODEBASE - TAG_MULTIPLE_COMPONENTS - TAG_ORB_TYPE - TAG_POLICIES - TCKind - THREAD_POLICY_ID - TRANSACTION_REQUIRED - TRANSACTION_ROLLEDBACK - TRANSIENT - TRANSPORT_RETRY - TabExpander - TabSet - TabStop - TabableView - TabbedPaneUI - TableCellEditor - TableCellRenderer - TableColumn - TableColumnModel - TableColumnModelEvent - TableColumnModelListener - TableHeaderBorder - TableHeaderUI - TableModel - TableModelEvent - TableModelListener - TableUI - TableView - Tag - TagElement - TaggedComponent - TaggedComponentHelper - TaggedComponentHolder - TaggedProfile - TaggedProfileHelper - TaggedProfileHolder - TargetDataLine - Templates - TemplatesHandler - Text - TextAction - TextArea - TextAttribute - TextComponent - TextEvent - TextField - TextFieldBorder - TextHitInfo - TextInputCallback - TextLayout - TextListener - TextMeasurer - TextOutputCallback - TextSyntax - TextUI - TexturePaint - Thread - ThreadDeath - ThreadGroup - ThreadLocal - ThreadPolicy - ThreadPolicyOperations - ThreadPolicyValue - Throwable - Tie - TileObserver - Time - TimeLimitExceededException - TimeZone - Timer - Timer - TimerTask - Timestamp - TitledBorder - TitledBorderUIResource - ToggleButtonBorder - ToggleButtonBorder - ToggleButtonModel - TooManyListenersException - ToolBarBorder - ToolBarUI - ToolTipManager - ToolTipUI - Toolkit - Track - TransactionRequiredException - TransactionRolledbackException - TransactionService - TransferHandler - Transferable - TransformAttribute - Transformer - TransformerConfigurationException - TransformerException - TransformerFactory - TransformerFactoryConfigurationError - TransformerHandler - Transmitter - Transparency - TreeCellEditor - TreeCellRenderer - TreeControlIcon - TreeExpansionEvent - TreeExpansionListener - TreeFolderIcon - TreeLeafIcon - TreeMap - TreeModel - TreeModelEvent - TreeModelListener - TreeNode - TreePath - TreeSelectionEvent - TreeSelectionListener - TreeSelectionModel - TreeSet - TreeUI - TreeWillExpandListener - TrustAnchor - TrustManager - TrustManagerFactory - TrustManagerFactorySpi - Type - Type - Type - Type - Type - Type - Type - TypeCode - TypeCodeHolder - TypeMismatch - TypeMismatch - TypeMismatch - TypeMismatchHelper - TypeMismatchHelper - Types - UID - UIDefaults - UIManager - UIResource - UIResource - UIResource - UIResource - UIResource - UIResource - UIResource - ULongLongSeqHelper - ULongLongSeqHolder - ULongSeqHelper - ULongSeqHolder - UNKNOWN - UNSUPPORTED_POLICY - UNSUPPORTED_POLICY_VALUE - URI - URIException - URIResolver - URISyntax - URISyntaxException - URL - URL - URLClassLoader - URLConnection - URLDecoder - URLEncoder - URLStreamHandler - URLStreamHandlerFactory - URLStringHelper - USER_EXCEPTION - UShortSeqHelper - UShortSeqHolder - UTFDataFormatException - UndeclaredThrowableException - UnderlineAction - UndoManager - UndoableEdit - UndoableEditEvent - UndoableEditListener - UndoableEditSupport - UnexpectedException - UnicastRemoteObject - UnicodeBlock - UnionMember - UnionMemberHelper - UnknownEncoding - UnknownEncodingHelper - UnknownError - UnknownException - UnknownGroupException - UnknownHostException - UnknownHostException - UnknownObjectException - UnknownServiceException - UnknownTag - UnknownUserException - UnknownUserExceptionHelper - UnknownUserExceptionHolder - UnmappableCharacterException - UnmarshalException - UnmodifiableSetException - UnrecoverableKeyException - Unreferenced - UnresolvedAddressException - UnresolvedPermission - UnsatisfiedLinkError - UnsolicitedNotification - UnsolicitedNotificationEvent - UnsolicitedNotificationListener - UnsupportedAddressTypeException - UnsupportedAudioFileException - UnsupportedCallbackException - UnsupportedCharsetException - UnsupportedClassVersionError - UnsupportedEncodingException - UnsupportedFlavorException - UnsupportedLookAndFeelException - UnsupportedOperationException - UserException - Util - UtilDelegate - Utilities - VMID - VM_ABSTRACT - VM_CUSTOM - VM_NONE - VM_TRUNCATABLE - ValueBase - ValueBaseHelper - ValueBaseHolder - ValueFactory - ValueHandler - ValueMember - ValueMemberHelper - VariableHeightLayoutCache - Vector - VerifyError - VersionSpecHelper - VetoableChangeListener - VetoableChangeListenerProxy - VetoableChangeSupport - View - ViewFactory - ViewportLayout - ViewportUI - VirtualMachineError - Visibility - VisibilityHelper - VoiceStatus - Void - VolatileImage - WCharSeqHelper - WCharSeqHolder - WStringSeqHelper - WStringSeqHolder - WStringValueHelper - WeakHashMap - WeakReference - Window - WindowAdapter - WindowConstants - WindowEvent - WindowFocusListener - WindowListener - WindowStateListener - WrappedPlainView - WritableByteChannel - WritableRaster - WritableRenderedImage - WriteAbortedException - Writer - WrongAdapter - WrongAdapterHelper - WrongPolicy - WrongPolicyHelper - WrongTransaction - WrongTransactionHelper - WrongTransactionHolder - X500Principal - X500PrivateCredential - X509CRL - X509CRLEntry - X509CRLSelector - X509CertSelector - X509Certificate - X509Certificate - X509EncodedKeySpec - X509Extension - X509KeyManager - X509TrustManager - XAConnection - XADataSource - XAException - XAResource - XMLDecoder - XMLEncoder - XMLFilter - XMLFilterImpl - XMLFormatter - XMLReader - XMLReaderAdapter - XMLReaderFactory - Xid - ZipEntry - ZipException - ZipFile - ZipInputStream - ZipOutputStream - ZoneView - _BindingIteratorImplBase - _BindingIteratorStub - _DynAnyFactoryStub - _DynAnyStub - _DynArrayStub - _DynEnumStub - _DynFixedStub - _DynSequenceStub - _DynStructStub - _DynUnionStub - _DynValueStub - _IDLTypeStub - _NamingContextExtStub - _NamingContextImplBase - _NamingContextStub - _PolicyStub - _Remote_Stub - _ServantActivatorStub - _ServantLocatorStub - - - - abstract - assert - break - case - catch - class - continue - default - do - else - extends - false - finally - for - goto - if - implements - import - instanceof - interface - native - new - null - package - private - protected - public - return - super - strictfp - switch - synchronized - this - throws - throw - transient - true - try - volatile - while - - - - boolean - byte - char - const - double - final - float - int - long - short - static - void - - - - and - eq - gt - true - instanceof - or - ne - le - false - empty - not - lt - ge - null - div - mod - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/julia.xml ktexteditor-5.31.0/src/syntax/data/julia.xml --- ktexteditor-5.28.0/src/syntax/data/julia.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/julia.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,290 +0,0 @@ - - - - - - - - - - begin - do - for - function - if - let - quote - try - type - while - - - catch - else - elseif - - - end - - - abstract - bitstype - break - ccall - const - continue - export - global - import - in - local - macro - module - return - typealias - - - AbstractArray - AbstractMatrix - AbstractVector - Any - Array - ASCIIString - Associative - Bool - ByteString - Char - Complex - Complex64 - Complex128 - ComplexPair - DArray - Dict - Exception - Expr - Float - Float32 - Float64 - Function - ObjectIdDict - Int - Int8 - Int16 - Int32 - Int64 - Integer - IntSet - IO - IOStream - Matrix - Nothing - None - NTuple - Number - Ptr - Range - Range1 - Ranges - Rational - Real - Regex - RegexMatch - Set - Signed - StridedArray - StridedMatrix - StridedVecOrMat - StridedVector - String - SubArray - SubString - Symbol - Task - Tuple - Type - Uint - Uint8 - Uint16 - Uint32 - Uint64 - Union - Unsigned - UTF8String - VecOrMat - Vector - Void - WeakRef - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/j.xml ktexteditor-5.31.0/src/syntax/data/j.xml --- ktexteditor-5.28.0/src/syntax/data/j.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/j.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/katehighlightingindexer.cpp ktexteditor-5.31.0/src/syntax/data/katehighlightingindexer.cpp --- ktexteditor-5.28.0/src/syntax/data/katehighlightingindexer.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/katehighlightingindexer.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,164 +0,0 @@ -/* This file is part of the KDE libraries - Copyright (C) 2014 Christoph Cullmann - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -namespace { - -QStringList readListing(const QString &fileName) -{ - QFile file(fileName); - if (!file.open(QIODevice::ReadOnly)) { - return QStringList(); - } - - QXmlStreamReader xml(&file); - QStringList listing; - while (!xml.atEnd()) { - xml.readNext(); - - // add only .xml files, no .json or stuff - if (xml.isCharacters() && xml.text().toString().contains(QLatin1String(".xml"))) { - listing.append(xml.text().toString()); - } - } - return listing; -} - -} - -int main(int argc, char *argv[]) -{ - // get app instance - QCoreApplication app(argc, argv); - - // ensure enough arguments are passed - if (app.arguments().size() < 3) - return 1; - - // open schema - QXmlSchema schema; - if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) - return 2; - - const QString hlFilenamesListing = app.arguments().value(3); - if (hlFilenamesListing.isEmpty()) { - return 1; - } - - QStringList hlFilenames = readListing(hlFilenamesListing); - if (hlFilenames.isEmpty()) { - return 3; - } - - // text attributes - const QStringList textAttributes = QStringList() << QStringLiteral("name") << QStringLiteral("section") << QStringLiteral("mimetype") - << QStringLiteral("extensions") << QStringLiteral("version") << QStringLiteral("priority") << QStringLiteral("style") - << QStringLiteral("author") << QStringLiteral("license") << QStringLiteral("indenter"); - - // index all given highlightings - QVariantMap hls; - int anyError = 0; - foreach (const QString &hlFilename, hlFilenames) { - QFile hlFile(hlFilename); - if (!hlFile.open(QIODevice::ReadOnly)) { - qWarning ("Failed to open %s.", qPrintable(hlFilename)); - anyError = 3; - continue; - } - - // validate against schema - QXmlSchemaValidator validator(schema); - if (!validator.validate(&hlFile, QUrl::fromLocalFile(hlFile.fileName()))) { - anyError = 4; - continue; - } - - // read the needed attributes from toplevel language tag - hlFile.reset(); - QXmlStreamReader xml(&hlFile); - if (xml.readNextStartElement()) { - if (xml.name() != QLatin1String("language")) { - anyError = 5; - continue; - } - } else { - anyError = 6; - continue; - } - - // map to store hl info - QVariantMap hl; - - // transfer text attributes - Q_FOREACH (const QString &attribute, textAttributes) { - hl[attribute] = xml.attributes().value(attribute).toString(); - } - - // add boolean one - const QString hidden = xml.attributes().value(QLatin1String("hidden")).toString(); - hl[QStringLiteral("hidden")] = (hidden == QLatin1String("true") || hidden == QLatin1String("1")); - - // remember hl - hls[QFileInfo(hlFile).fileName()] = hl; - - // scan for broken regex - while (!xml.atEnd()) { - xml.readNext(); - if (!xml.isStartElement() || (xml.name() != QLatin1String("RegExpr") && xml.name() != QLatin1String("emptyLine"))) { - continue; - } - - // get right attribute - const QString string (xml.attributes().value((xml.name() == QLatin1String("RegExpr")) ? QLatin1String("String") : QLatin1String("regexpr")).toString()); - - // validate regexp - const QRegularExpression regexp (string); - if (!regexp.isValid()) { - qDebug() << hlFilename << "line" << xml.lineNumber() << "broken regex:" << string << "problem:" << regexp.errorString() << "at offset" << regexp.patternErrorOffset(); - anyError = 7; - } - } - } - - // bail out if any problem was seen - if (anyError) - return anyError; - - // create outfile, after all has worked! - QFile outFile(app.arguments().at(1)); - if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) - return 7; - - // write out json - outFile.write(QJsonDocument::fromVariant(QVariant(hls)).toBinaryData()); - - // be done - return 0; -} diff -Nru ktexteditor-5.28.0/src/syntax/data/kbasic.xml ktexteditor-5.31.0/src/syntax/data/kbasic.xml --- ktexteditor-5.28.0/src/syntax/data/kbasic.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/kbasic.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,97 +0,0 @@ - - - - - - For - Next - Do - Loop - While - Wend - Until - If - Else - End - Function - Goto - Sub - Implements - In - Sub - Private - Public - Global - As - Dim - Set - Let - Get - To - Property - True - False - Or - Not - Xor - And - Then - Exit - Put - Open - Close - Seek - Print - Input - Output - Repeat - Load - Unload - Declare - Option - Explicit - - - Integer - Long - Byte - Boolean - Variant - Single - Double - Currency - String - Object - Control - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/kconfig.xml ktexteditor-5.31.0/src/syntax/data/kconfig.xml --- ktexteditor-5.28.0/src/syntax/data/kconfig.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/kconfig.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1144 +0,0 @@ - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/kdesrc-buildrc.xml ktexteditor-5.31.0/src/syntax/data/kdesrc-buildrc.xml --- ktexteditor-5.28.0/src/syntax/data/kdesrc-buildrc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/kdesrc-buildrc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,248 +0,0 @@ - - - - - - - true - false - TRUE - FALSE - 0 - 1 - - - - set-env - - - - - use-modules - ignore-modules - - - - - async - colorful-output - disable-agent-check - disable-snapshot - pretend - purge-old-logs - stop-on-failure - use-idle-io-priority - - - - build-system-only - build-when-unchanged - ignore-kde-structure - install-after-build - install-session-driver - manual-build - manual-update - no-src - reconfigure - recreate-configure - refresh-build - run-tests - use-clean-install - - - - branch-group - git-desired-protocol - git-repository-base - http-proxy - kde-languages - niceness - debug-level - persistent-data-file - - - - binpath - branch - build-dir - checkout-only - cmake-options - configure-flags - custom-build-command - cxxflags - dest-dir - do-not-compile - git-user - kdedir - libpath - log-dir - make-install-prefix - make-options - module-base-path - override-build-system - override-url - prefix - qmake-options - qtdir - remove-after-install - repository - revision - source-dir - svn-server - tag - - - - include - - - module - options - - - module-set - - - global - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/kotlin.xml ktexteditor-5.31.0/src/syntax/data/kotlin.xml --- ktexteditor-5.28.0/src/syntax/data/kotlin.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/kotlin.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,298 +0,0 @@ - - - - - - - package - import - - sealed - data - class - enum - interface - companion - object - - private - public - protected - internal - open - final - - get - set - fun - var - val - constructor - - inline - reified - crossinline - tailrec - - in - out - is - as - by - where - - vararg - get - set - - return - throw - - typealias - typeof - override - infix - operator - - - if - else - when - - for - while - do - - try - catch - finally - - continue - break - yield - - - this - super - null - true - false - - - Unit - Nothing - - String - Char - - Int - Long - Byte - Short - Float - Double - - Boolean - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/k.xml ktexteditor-5.31.0/src/syntax/data/k.xml --- ktexteditor-5.28.0/src/syntax/data/k.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/k.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,430 +0,0 @@ - - - - - - while - if - do - - - abs - acos - asin - atan - avg - bin - by - cos - delete - div - exec - exit - exp - from - getenv - i - in - insert - last - like - log - max - min - prd - select - setenv - sin - sqrt - ss - sum - tan - update - wavg - within - wsum - xexp - - - .Q.addmonths - .Q.addr - .Q.host - .Q.chk - .Q.cn - .Q.dd - .Q.dpft - .Q.dsftg - .Q.def - .Q.en - .Q.fc - .Q.fk - .Q.fmt - .Q.foo - .Q.fs - .Q.ft - .Q.fu - .Q.gc - .Q.hdpf - .Q.ind - .Q.j10 - .Q.x10 - .Q.j12 - .Q.x12 - .Q.k - .Q.l - .Q.opt - .Q.par - .Q.qp - .Q.qt - .Q.s - .Q.s1 - .Q.ty - .Q.v - .Q.V - .Q.view - .Q.w - .Q.M - .Q.pf - .Q.pt - .Q.PD - .Q.PV - .Q.pd - .Q.pv - .Q.pn - .Q.bv - .Q.vp - .Q.P - .Q.D - .Q.u - - - .h.br - .h.c0 - .h.c1 - .h.cd - .h.code - .h.data - .h.eb - .h.ec - .h.ed - .h.edsn - .h.es - .h.ex - .h.fram - .h.ha - .h.hb - .h.hc - .h.he - .h.hn - .h.hp - .h.hr - .h.ht - .h.hta - .h.htac - .h.htc - .h.html - .h.http - .h.hu - .h.hug - .h.hy - .h.iso8601 - .h.jx - .h.logo - .h.nbr - .h.pre - .h.text - .h.tx - .h.ty - .h.uh - .h.xd - .h.xmp - .h.xs - .h.xt - - - .o.B0 - .o.C0 - .o.Cols - .o.Columns - .o.FG - .o.Fkey - .o.Gkey - .o.Key - .o.PS - .o.Special - .o.Stats - .o.T - .o.T0 - .o.TI - .o.Tables - .o.Ts - .o.TypeInfo - .o.ex - .o.o - .o.t - - - .z.a - .z.ac - .z.b - .z.bm - .z.c - .z.exit - .z.f - .z.h - .z.i - .z.k - .z.K - .z.l - .z.n - .z.N - .z.o - .z.p - .z.P - .z.pc - .z.pg - .z.ph - .z.pi - .z.po - .z.pp - .z.ps - .z.pw - .z.q - .z.s - .z.ts - .z.u - .z.vs - .z.w - .z.W - .z.ws - .z.x - .z.z - .z.Z - .z.t - .z.T - .z.d - .z.D - .z.zd - - - .q.aj - .q.aj0 - .q.all - .q.and - .q.any - .q.asc - .q.asof - .q.attr - .q.avgs - .q.ceiling - .q.cols - .q.cor - .q.count - .q.cov - .q.cross - .q.csv - .q.cut - .q.deltas - .q.desc - .q.dev - .q.differ - .q.distinct - .q.each - .q.ej - .q.enlist - .q.eval - .q.except - .q.fby - .q.fills - .q.first - .q.fkeys - .q.flip - .q.floor - .q.get - .q.group - .q.gtime - .q.hclose - .q.hcount - .q.hdel - .q.hopen - .q.hsym - .q.iasc - .q.idesc - .q.ij - .q.inter - .q.inv - .q.key - .q.keys - .q.lj - .q.load - .q.lower - .q.lsq - .q.ltime - .q.ltrim - .q.mavg - .q.maxs - .q.mcount - .q.md5 - .q.mdev - .q.med - .q.meta - .q.mins - .q.mmax - .q.mmin - .q.mmu - .q.mod - .q.msum - .q.neg - .q.next - .q.not - .q.null - .q.or - .q.over - .q.parse - .q.peach - .q.pj - .q.plist - .q.prds - .q.prev - .q.prior - .q.rand - .q.rank - .q.ratios - .q.raze - .q.read0 - .q.read1 - .q.reciprocal - .q.reverse - .q.rload - .q.rotate - .q.rsave - .q.rtrim - .q.save - .q.scan - .q.set - .q.show - .q.signum - .q.ssr - .q.string - .q.sublist - .q.sums - .q.sv - .q.system - .q.tables - .q.til - .q.trim - .q.txf - .q.type - .q.uj - .q.ungroup - .q.union - .q.upper - .q.upsert - .q.value - .q.var - .q.view - .q.views - .q.vs - .q.where - .q.wj - .q.wj1 - .q.xasc - .q.xbar - .q.xcol - .q.xcols - .q.xdesc - .q.xgroup - .q.xkey - .q.xlog - .q.xprev - .q.xrank - - - TODO - FIXME - FIX - HACK - XXX - NOTE - GOTCHA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/language.xsd ktexteditor-5.31.0/src/syntax/data/language.xsd --- ktexteditor-5.28.0/src/syntax/data/language.xsd 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/language.xsd 1970-01-01 00:00:00.000000000 +0000 @@ -1,719 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/latex.xml ktexteditor-5.31.0/src/syntax/data/latex.xml --- ktexteditor-5.28.0/src/syntax/data/latex.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/latex.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,700 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ldif.xml ktexteditor-5.31.0/src/syntax/data/ldif.xml --- ktexteditor-5.28.0/src/syntax/data/ldif.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ldif.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,305 +0,0 @@ - - - - - - IPPhone - URL - aRecord - aliasedEntryName - aliasedObjectName - associatedDomain - associatedName - audio - authorityRevocationList - bootFile - bootParameter - buildingName - businessCategory - c - cACertificate - cNAMERecord - certificateRevocationList - cn - comment - commonName - conferenceInformation - corbaContainer - corbaRepositoryId - countryName - crossCertificatePair - custom1 - custom2 - custom3 - custom4 - dITRedirect - dSAQuality - dc - deltaRevocationList - description - destinationIndicator - distinguishedName - dmdName - dnQualifier - documentAuthor - documentIdentifier - documentLocation - documentPublisher - documentTitle - documentVersion - domainComponent - enhancedSearchGuide - facsimileTelephoneNumber - fax - gecos - generationQualifier - gidNumber - givenName - gn - homeDirectory - homePostalAddress - homeUrl - host - houseIdentifier - info - initials - internationaliSDNNumber - ipHostNumber - ipNetmaskNumber - ipNetworkNumber - ipProtocolNumber - ipServicePort - ipServiceProtocol - janetMailbox - javaClassNames - javaCodebase - javaContainer - javaDoc - javaFactory - javaReferenceAddress - javaSerializedData - knowledgeInformation - l - labeledURI - lastModifiedBy - lastModifiedTime - lmpassword - localityName - loginShell - mDRecord - mXRecord - macAddress - mail - manager - member - memberNisNetgroup - memberUid - mozillaHomeCountryName - mozillaHomeFriendlyCountryName - mozillaHomeLocalityName - mozillaHomePostalAddress2 - mozillaHomePostalCode - mozillaHomeState - mozillaPostalAddress2 - mozillaSecondemail - nSRecord - name - nisMapEntry - nisMapName - nisNetgroupTriple - ntpasswd - o - objectClass - oncRpcNumber - organizationName - organizationalStatus - organizationalUnitName - otherFacsimiletelephoneNumber - otherMailbox - ou - owner - personalSignature - personalTitle - photo - physicalDeliveryOfficeName - postOfficeBox - postalAddress - postalCode - preferredDeliveryMethod - presentationAddress - protocolInformation - rdn - registeredAddress - reports - rfc822Mailbox - roleOccupant - roomNumber - sOARecord - searchGuide - secretary - seeAlso - serialNumber - shadowExpire - shadowFlag - shadowInactive - shadowLastChange - shadowMax - shadowMin - shadowWarning - singleLevelQuality - sn - st - stateOrProvinceName - street - streetAddress - subtreeMaximumQuality - subtreeMinimumQuality - supportedAlgorithms - supportedApplicationContext - surname - telephoneNumber - teletexTerminalIdentifier - telexNumber - textEncodedORAddress - title - uid - uidNumber - uniqueIdentifier - uniqueMember - userCertificate - userClass - userPassword - userid - workUrl - x121Address - x500UniqueIdentifier - xmozillaNickname - xmozillaUseHtmlMail - xmozillanickname - xmozillausehtmlmail - - - RFC822localPart - SUP - account - alias - applicationEntity - applicationProcess - bootableDevice - cRLDistributionPoint - certificationAuthority - certificationAuthority-V2 - corbaObject - corbaObjectReference - country - dNSDomain - dSA - dcObject - deltaCRL - device - dmd - document - documentSeries - domain - domainRelatedObject - friendlyCountry - groupOfNames - groupOfUniqueNames - ieee802Device - inetOrgPerson - ipHost - ipNetwork - ipProtocol - ipService - javaClassName - javaMarshalledObject - javaNamingReference - javaObject - javaSerializedObject - labeledURIObject - locality - mozillaAbPersonObsolete - nisMap - nisNetgroup - nisObject - officePerson - oncRpc - organization - organizationalPerson - organizationalRole - organizationalUnit - pager - pagerTelephoneNumber - person - pilotDSA - pilotObject - pilotOrganization - pkiCA - pkiUser - posixAccount - posixGroup - qualityLabelledData - residentialPerson - rid - room - sambaAccount - shadowAccount - simpleSecurityObject - strongAuthenticationUser - telephoneNumber - top - uid - uidNumber - uidObject - userSecurityInformation - userid - xmozillaanyphone - zillaPerson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ld.xml ktexteditor-5.31.0/src/syntax/data/ld.xml --- ktexteditor-5.28.0/src/syntax/data/ld.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ld.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ - - - - - - - AT - ENTRY - INPUT - GROUP - OUTPUT - OUTPUT_ARCH - OUTPUT_FORMAT - SEARCH_DIR - STARTUP - TARGET - - - ABSOLUTE - ADDR - ALIGN - DATA_SEGMENT_ALIGN - DATA_SEGMENT_END - DATA_SEGMENT_RELRO_END - DEFINED - LOADADDR - MAX - MIN - NEXT - SIZEOF - SIZEOF_HEADERS - - - SECTIONS - MEMORY - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/less.xml ktexteditor-5.31.0/src/syntax/data/less.xml --- ktexteditor-5.28.0/src/syntax/data/less.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/less.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1101 +0,0 @@ - - - - - - - - azimuth - align-content - align-items - align-self - alignment-baseline - all - animation-name - animation-duration - animation-iteration-count - animation-direction - animation-delay - animation-play-state - animation-fill-mode - animation-timing-function - backface-visibility - background - background-attachment - background-blend-mode - background-break - background-clip - background-color - background-image - background-origin - background-position - background-repeat - background-size - baseline-shift - bookmark-label - bookmark-level - bookmark-level - border - border-bottom - border-bottom-color - border-bottom-image - border-bottom-style - border-bottom-width - border-bottom-left-image - border-bottom-left-radius - border-bottom-right-image - border-bottom-right-radius - border-boundary - border-collapse - border-color - border-corner-image - border-image - border-image-outset - border-image-repeat - border-image-slice - border-image-source - border-image-width - border-left - border-left-color - border-left-image - border-left-style - border-left-width - border-radius - border-right - border-right-color - border-right-image - border-right-style - border-right-width - border-spacing - border-style - border-top - border-top-color - border-top-image - border-top-style - border-top-width - border-top-left-image - border-top-left-radius - border-top-right-image - border-top-right-radius - border-width - bottom - box-align - box-decoration-break - box-direction - box-flex - box-shadow - box-sizing - box-snap - box-suppress - break-after - break-before - break-inside - caret-color - caption-side - chains - clear - clip - clip-path - clip-rule - color - color-interpolation-filters - column-count - column-fill - column-gap - column-rule - column-rule-color - column-rule-style - column-rule-width - column-span - column-width - columns - content - counter-increment - counter-reset - counter-set - cue - cue-after - cue-before - cursor - direction - display - dominant-baseline - elevation - empty-cells - filter - flex - flex-basis - flex-direction - flex-flow - flex-grow - flex-shrink - flex-wrap - float - flood-color - flood-opacity - flow - flow-from - flow-into - font - font-family - font-size - font-size-adjust - font-stretch - font-style - font-variant - font-weight - font-stretch - font-feature-settings - font-kerning - font-language-override - font-synthesis - font-variant-alternates - font-variant-caps - font-variant-east-asian - font-variant-ligatures - font-variant-numeric - font-variant-position - footnote-display - footnote-policy - glyph-orientation-vertical - grid - grid-area - grid-auto-columns - grid-auto-flow - grid-auto-rows - grid-column - grid-column-end - grid-column-gap - grid-column-start - grid-gap - grid-row - grid-row-end - grid-row-gap - grid-row-start - grid-template - grid-template-areas - grid-template-columns - grid-template-rows - hanging-punctuation - height - hyphens - image-orientation - image-rendering - image-resolution - initial-letter - initial-letter-align - initial-letter-wrap - isolation - justify-content - justify-items - justify-self - left - letter-spacing - lighting-color - linear-gradient - line-grid - line-height - line-snap - list-style - list-style-image - list-style-keyword - list-style-position - list-style-type - margin - margin-bottom - margin-left - margin-right - margin-top - marker-offset - marker-side - marquee-direction - marquee-loop - marquee-speed - marquee-style - mask - mask-border - mask-border-mode - mask-border-outset - mask-border-repeat - mask-border-slice - mask-border-source - mask-border-width - mask-clip - mask-composite - mask-image - mask-mode - mask-origin - mask-position - mask-repeat - mask-size - mask-type - max-height - max-lines - max-width - min-height - min-width - mix-blend-mode - nav-down - nav-left - nav-right - nav-up - object-fit - object-position - offset-after - offset-before - offset-end - offset-start - opacity - order - orphans - outline - outline-color - outline-offset - outline-style - outline-width - overflow - overflow-style - overflow-wrap - overflow-x - overflow-y - padding - padding-bottom - padding-left - padding-right - padding-top - page - page-break-after - page-break-before - page-break-inside - pause - pause-after - pause-before - perspective - perspective-origin - pitch - pitch-range - play-during - pointer-events - polar-anchor - polar-angle - polar-distance - polar-origin - position - presentation-level - quotes - resize - rest - rest-after - rest-before - richness - right - rotation - rotation-point - ruby-align - ruby-merge - ruby-position - running - scroll-behavior - scroll-snap-align - scroll-snap-margin - scroll-snap-margin-block - scroll-snap-margin-block-end - scroll-snap-margin-block-start - scroll-snap-margin-bottom - scroll-snap-margin-inline - scroll-snap-margin-inline-end - scroll-snap-margin-inline-start - scroll-snap-margin-left - scroll-snap-margin-right - scroll-snap-margin-top - scroll-snap-padding - scroll-snap-padding-block - scroll-snap-padding-block-end - scroll-snap-padding-block-start - scroll-snap-padding-bottom - scroll-snap-padding-inline - scroll-snap-padding-inline-end - scroll-snap-padding-inline-start - scroll-snap-padding-left - scroll-snap-padding-right - scroll-snap-padding-top - scroll-snap-stop - scroll-snap-type - shape-image-threshold - shape-inside - shape-margin - shape-outside - size - speak - speak-as - speak-header - speak-numeral - speak-punctuation - speech-rate - stress - string-set - tab-size - table-layout - text-align - text-align-last - text-combine-upright - text-decoration - text-decoration-color - text-decoration-line - text-decoration-skip - text-decoration-style - text-emphasis - text-emphasis-color - text-emphasis-position - text-emphasis-style - text-indent - text-justify - text-orientation - text-overflow - text-shadow - text-transform - text-underline-position - text-wrap - top - transform - transform-origin - transform-style - transition - transition-delay - transition-property - transition-duration - transition-timing-function - unicode-bidi - vertical-align - visibility - voice-balance - voice-duration - voice-family - voice-pitch - voice-range - voice-rate - voice-stress - voice-volume - volume - white-space - widows - width - will-change - word-break - word-spacing - word-wrap - wrap-flow - wrap-through - writing-mode - z-index - - - -moz-animation-name - -moz-animation-duration - -moz-animation-iteration - -moz-animation-direction - -moz-animation-delay - -moz-animation-play-state - -moz-animation-fill-mode - -moz-background-size - -moz-border-image - -moz-border-bottom-colors - -moz-border-left-colors - -moz-border-radius - -moz-border-radius-topleft - -moz-border-radius-topright - -moz-border-radius-bottomleft - -moz-border-radius-bottomright - -moz-border-right-colors - -moz-border-top-colors - -moz-box - -moz-box-flex - -moz-box-shadow - -moz-box-sizing - -moz-column-count - -moz-column-gap - -moz-hyphens - -moz-linear-gradient - -moz-opacity - -moz-outline-style - -moz-perspective - -moz-radial-gradient - -moz-resize - -moz-transform - -moz-transform-origin - -moz-transform-style - -moz-transition - -moz-transition-property - -moz-transition-duration - - - -o-background-size - -o-linear-gradient - -o-text-overflow - -o-transition - -o-transform-origin - - - konq_bgpos_x - konq_bgpos_y - -khtml-background-size - -khtml-border-top-left-radius - -khtml-border-top-right-radius - -khtml-border-bottom-left-radius - -khtml-border-bottom-right-radius - -khtml-border-radius - -khtml-box-shadow - -khtml-opacity - - - -webkit-appearance - -webkit-animation-name - -webkit-animation-duration - -webkit-animation-iteration - -webkit-animation-direction - -webkit-animation-delay - -webkit-animation-play-state - -webkit-animation-fill-mode - -webkit-background-size - -webkit-border-image - -webkit-border-bottom-colors - -webkit-border-left-colors - -webkit-border-radius - -webkit-border-right-colors - -webkit-border-top-colors - -webkit-border-top-left-radius - -webkit-border-top-right-radius - -webkit-border-bottom-left-radius - -webkit-border-bottom-right-radius - -webkit-border-radius-bottomleft - -webkit-border-radius-bottomright - -webkit-box-flex - -webkit-box-reflect - -webkit-box-shadow - -webkit-box-sizing - -webkit-column-count - -webkit-column-gap - -webkit-hyphens - -webkit-linear-gradient - -webkit-gradient - -webkit-perspective - -webkit-text-fill-color - -webkit-text-stroke-color - -webkit-text-stroke-width - -webkit-text-size-adjust - -webkit-transform - -webkit-transform-origin - -webkit-transform-style - -webkit-transition - -webkit-transition-property - -webkit-transition-duration - - - zoom - -ms-animation-name - -ms-animation-duration - -ms-animation-iteration - -ms-animation-direction - -ms-animation-delay - -ms-animation-play-state - -ms-animation-fill-mode - -ms-box-sizing - -ms-filter - -ms-interpolation-mode - -ms-linear-gradient - -ms-text-size-adjust - -ms-transform - -ms-transition - - - font-family - font-size - font-stretch - font-style - font-variant - font-weight - unicode-range - units-per-em - src - panose-1 - stemv - stemh - slope - cap-height - x-height - ascent - descent - widths - bbox - definition-src - baseline - centerline - mathline - topline - - - - inherit - none - hidden - dotted - dashed - solid - double - groove - ridge - inset - outset - xx-small - x-small - small - medium - large - x-large - xx-large - smaller - larger - italic - oblique - small-caps - normal - bold - bolder - lighter - light - 100 - 200 - 300 - 400 - 500 - 600 - 700 - 800 - 900 - transparent - repeat - repeat-x - repeat-y - no-repeat - baseline - sub - super - top - text-top - middle - bottom - text-bottom - left - right - center - justify - konq-center - disc - circle - square - box - decimal - decimal-leading-zero - lower-roman - upper-roman - lower-greek - lower-alpha - lower-latin - upper-alpha - upper-latin - hebrew - armenian - georgian - cjk-ideographic - hiragana - katakana - hiragana-iroha - katakana-iroha - inline - inline-block - block - list-item - run-in - compact - marker - table - inline-table - table-row-group - table-header-group - table-footer-group - table-row - table-column-group - table-column - table-cell - table-caption - auto - crosshair - default - pointer - move - e-resize - ne-resize - nw-resize - n-resize - se-resize - sw-resize - s-resize - w-resize - text - wait - help - above - absolute - always - avoid - below - bidi-override - blink - both - capitalize - caption - clip - close-quote - collapse - condensed - crop - cross - ellipsis - ellipsis-word - embed - expanded - extra-condensed - extra-expanded - fixed - hand - hide - higher - icon - inside - invert - landscape - level - line-through - loud - lower - lowercase - ltr - menu - message-box - mix - narrower - no-close-quote - no-open-quote - nowrap - open-quote - outside - overline - portrait - pre - pre-line - pre-wrap - relative - rtl - scroll - semi-condensed - semi-expanded - separate - show - small-caption - static - static-position - status-bar - thick - thin - ultra-condensed - ultra-expanded - underline - uppercase - visible - wider - break - serif - sans-serif - cursive - fantasy - monospace - border-box - content-box - -epub-hyphens - - - - aqua - black - blue - cyan - fuchsia - gray - green - lime - maroon - navy - olive - purple - red - silver - teal - white - yellow - ActiveBorder - ActiveCaption - AppWorkspace - Background - ButtonFace - ButtonHighlight - ButtonShadow - ButtonText - CaptionText - GrayText - Highlight - HighlightText - InactiveBorder - InactiveCaption - InactiveCaptionText - InfoBackground - InfoText - Menu - MenuText - Scrollbar - ThreeDDarkShadow - ThreeDFace - ThreeDHighlight - ThreeDLightShadow - ThreeDShadow - Window - WindowFrame - WindowText - - - - url - attr - rect - rgb - rgba - hsl - hsla - counter - counters - - - local - format - - - expression - - - - - all - aural - braille - embossed - handheld - print - projection - screen - speech - tty - tv - - - - not - only - - - - width - min-width - max-width - height - min-height - max-height - device-width - min-device-width - max-device-width - device-height - min-device-height - max-device-height - orientation - aspect-ratio - min-aspect-ratio - max-aspect-ratio - device-aspect-ratio - min-device-aspect-ratio - max-device-aspect-ratio - color - min-color - max-color - color-index - min-color-index - max-color-index - monochrome - min-monochrome - max-monochrome - resolution - min-resolution - max-resolution - scan - grid - - - - hover - link - visited - active - focus - first-child - last-child - only-child - first-of-type - last-of-type - only-of-type - first-letter - first-line - before - after - selection - root - empty - target - enabled - disabled - checked - indeterminate - nth-child - nth-last-child - nth-of-type - nth-last-of-type - not - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/lex.xml ktexteditor-5.31.0/src/syntax/data/lex.xml --- ktexteditor-5.28.0/src/syntax/data/lex.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/lex.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/lilypond.xml ktexteditor-5.31.0/src/syntax/data/lilypond.xml --- ktexteditor-5.28.0/src/syntax/data/lilypond.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/lilypond.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1199 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -]> - - - - - - - ChoirStaff - ChordNames - CueVoice - Devnull - DrumStaff - DrumVoice - Dynamics - FiguredBass - FretBoards - Global - GrandStaff - GregorianTranscriptionStaff - GregorianTranscriptionVoice - Lyrics - MensuralStaff - MensuralVoice - NoteNames - PianoStaff - RhythmicStaff - Score - Staff - StaffGroup - TabStaff - TabVoice - Timing - VaticanaStaff - VaticanaVoice - Voice - - - InnerChoirStaff - InnerStaffGroup - - - Accidental - AccidentalCautionary - AccidentalPlacement - AccidentalSuggestion - Ambitus - AmbitusAccidental - AmbitusLine - AmbitusNoteHead - Arpeggio - BalloonTextItem - BarLine - BarNumber - BassFigure - BassFigureAlignment - BassFigureAlignmentPositioning - BassFigureBracket - BassFigureContinuation - BassFigureLine - Beam - BendAfter - BreakAlignGroup - BreakAlignment - BreathingSign - ChordName - Clef - ClusterSpanner - ClusterSpannerBeacon - CombineTextScript - Custos - DotColumn - Dots - DoublePercentRepeat - DoublePercentRepeatCounter - DynamicLineSpanner - DynamicText - DynamicTextSpanner - Episema - Fingering - FretBoard - Glissando - GraceSpacing - GridLine - GridPoint - Hairpin - HarmonicParenthesesItem - HorizontalBracket - InstrumentName - InstrumentSwitch - KeyCancellation - KeySignature - LaissezVibrerTie - LaissezVibrerTieColumn - LedgerLineSpanner - LeftEdge - LigatureBracket - LyricExtender - LyricHyphen - LyricSpace - LyricText - MeasureGrouping - MelodyItem - MensuralLigature - MetronomeMark - MultiMeasureRest - MultiMeasureRestNumber - MultiMeasureRestText - NonMusicalPaperColumn - NoteCollision - NoteColumn - NoteHead - NoteName - NoteSpacing - OctavateEight - OttavaBracket - PaperColumn - ParenthesesItem - PercentRepeat - PercentRepeatCounter - PhrasingSlur - PianoPedalBracket - RehearsalMark - RepeatSlash - RepeatTie - RepeatTieColumn - Rest - RestCollision - Script - ScriptColumn - ScriptRow - SeparationItem - Slur - SostenutoPedal - SostenutoPedalLineSpanner - SpacingSpanner - SpanBar - StaffGrouper - StaffSpacing - StaffSymbol - StanzaNumber - Stem - StemTremolo - StringNumber - StrokeFinger - SustainPedal - SustainPedalLineSpanner - System - SystemStartBar - SystemStartBrace - SystemStartBracket - SystemStartSquare - TabNoteHead - TextScript - TextSpanner - Tie - TieColumn - TimeSignature - TrillPitchAccidental - TrillPitchGroup - TrillPitchHead - TrillSpanner - TupletBracket - TupletNumber - UnaCordaPedal - UnaCordaPedalLineSpanner - VaticanaLigature - VerticalAlignment - VerticalAxisGroup - VoiceFollower - VoltaBracket - VoltaBracketSpanner - - - aDueText - alignAboveContext - alignBassFigureAccidentals - alignBelowContext - allowBeamBreak - associatedVoice - autoAccidentals - autoBeamCheck - autoBeamSettings - autoBeaming - autoCautionaries - automaticBars - barAlways - barCheckSynchronize - barNumberVisibility - baseMoment - bassFigureFormatFunction - bassStaffProperties - beamExceptions - beatGrouping - beatLength - beatStructure - chordChanges - chordNameExceptions - chordNameExceptionsFull - chordNameExceptionsPartial - chordNameFunction - chordNameSeparator - chordNoteNamer - chordPrefixSpacer - chordRootNamer - clefGlyph - clefOctavation - clefPosition - connectArpeggios - countPercentRepeats - createKeyOnClefChange - createSpacing - crescendoSpanner - crescendoText - currentBarNumber - decrescendoSpanner - decrescendoText - defaultBarType - doubleSlurs - doubleRepeatType - drumPitchTable - drumStyleTable - dynamicAbsoluteVolumeFunction - explicitClefVisibility - explicitKeySignatureVisibility - extendersOverRests - extraNatural - figuredBassAlterationDirection - figuredBassCenterContinuations - figuredBassFormatter - figuredBassPlusDirection - fingeringOrientations - firstClef - followVoice - fontSize - forbidBreak - forceClef - gridInterval - hairpinToBarline - harmonicAccidentals - highStringOne - ignoreBarChecks - ignoreFiguredBassRest - ignoreMelismata - implicitBassFigures - implicitTimeSignatureVisibility - instrumentCueName - instrumentEqualizer - instrumentName - instrumentTransposition - internalBarNumber - keepAliveInterfaces - keyAlterationOrder - keySignature - lyricMelismaAlignment - majorSevenSymbol - markFormatter - maximumFretStretch - measureLength - measurePosition - melismaBusyProperties - metronomeMarkFormatter - middleCClefPosition - middleCOffset - middleCPosition - midiInstrument - midiMaximumVolume - midiMinimumVolume - minimumFret - minimumPageTurnLength - minimumRepeatLengthForPageTurn - noteToFretFunction - ottavation - output - pedalSostenutoStrings - pedalSostenutoStyle - pedalSustainStrings - pedalSustainStyle - pedalUnaCordaStrings - pedalUnaCordaStyle - printKeyCancellation - printOctaveNames - printPartCombineTexts - proportionalNotationDuration - recordEventSequence - rehearsalMark - repeatCommands - restNumberThreshold - scriptDefinitions - shapeNoteStyles - shortInstrumentName - shortVocalName - skipBars - skipTypesetting - soloIIText - soloText - squashedPosition - staffLineLayoutFunction - stanza - stemLeftBeamCount - stemRightBeamCount - stringNumberOrientations - stringOneTopmost - stringTunings - strokeFingerOrientations - subdivideBeams - suggestAccidentals - systemStartDelimiter - systemStartDelimiterHierarchy - tablatureFormat - tempoUnitCount - tempoUnitDuration - tempoWholesPerMinute - tieWaitForNote - timeSignatureFraction - timing - tonic - topLevelAlignment - trebleStaffProperties - tremoloFlags - tupletFullLength - tupletFullLengthNote - tupletSpannerDuration - useBassFigureExtenders - verticallySpacedContexts - vocalName - voltaOnThisStaff - voltaSpannerDuration - whichBar - - - barNumberAlignSymbol - centralCPosition - extraVerticalExtent - fingerHorizontalDirection - instr - instrument - keyAccidentalOrder - minimumVerticalExtent - rehearsalMarkAlignSymbol - soloADue - tupletNumberFormatFunction - vocNam - - - AbsoluteDynamicEvent - AnnotateOutputEvent - ApplyContext - ApplyOutputEvent - ArpeggioEvent - ArticulationEvent - AutoChangeMusic - BarCheck - BassFigureEvent - BeamEvent - BeamForbidEvent - BendAfterEvent - BreathingEvent - ClusterNoteEvent - ContextChange - ContextSpeccedMusic - CrescendoEvent - DecrescendoEvent - Event - EventChord - ExtenderEvent - FingeringEvent - GlissandoEvent - GraceMusic - HarmonicEvent - HyphenEvent - KeyChangeEvent - LabelEvent - LaissezVibrerEvent - LigatureEvent - LineBreakEvent - LyricCombineMusic - LyricEvent - MarkEvent - MultiMeasureRestEvent - MultiMeasureRestMusic - MultiMeasureTextEvent - Music - NoteEvent - NoteGroupingEvent - OverrideProperty - PageBreakEvent - PageTurnEvent - PartCombineMusic - PercentEvent - PercentRepeatedMusic - PesOrFlexaEvent - PhrasingSlurEvent - PropertySet - PropertyUnset - QuoteMusic - RelativeOctaveCheck - RelativeOctaveMusic - RepeatTieEvent - RepeatedMusic - RestEvent - RevertProperty - ScriptEvent - SequentialMusic - SimultaneousMusic - SkipEvent - SkipMusic - SlurEvent - SoloOneEvent - SoloTwoEvent - SostenutoEvent - SpacingSectionEvent - SpanEvent - StaffSpanEvent - StringNumberEvent - StrokeFingerEvent - SustainEvent - TextScriptEvent - TextSpanEvent - TieEvent - TimeScaledMusic - TransposedMusic - TremoloEvent - TremoloRepeatedMusic - TremoloSpanEvent - TrillSpanEvent - TupletSpanEvent - UnaCordaEvent - UnfoldedRepeatedMusic - UnisonoEvent - UnrelativableMusic - VoiceSeparator - VoltaRepeatedMusic - - - acousticbassdrum - acousticsnare - agh - agl - bassdrum - bd - bda - boh - bohm - boho - bol - bolm - bolo - cab - cabasa - cb - cgh - cghm - cgho - cgl - cglm - cglo - chinesecymbal - cl - claves - closedhihat - cowbell - crashcymbal - crashcymbala - crashcymbalb - cuim - cuio - cymc - cymca - cymcb - cymch - cymr - cymra - cymrb - cyms - da - db - dc - dd - de - electricsnare - fivedown - fiveup - fourdown - fourup - gui - guil - guiro - guis - halfopenhihat - handclap - hc - hh - hhc - hhho - hho - hhp - hiagogo - hibongo - hiconga - highfloortom - hightom - hihat - himidtom - hisidestick - hitimbale - hiwoodblock - loagogo - lobongo - loconga - longguiro - longwhistle - losidestick - lotimbale - lowfloortom - lowmidtom - lowoodblock - lowtom - mar - maracas - mutecuica - mutehibongo - mutehiconga - mutelobongo - muteloconga - mutetriangle - onedown - oneup - opencuica - openhibongo - openhiconga - openhihat - openlobongo - openloconga - opentriangle - pedalhihat - rb - ridebell - ridecymbal - ridecymbala - ridecymbalb - shortguiro - shortwhistle - sidestick - sn - sna - snare - sne - splashcymbal - ss - ssh - ssl - tamb - tambourine - tamtam - threedown - threeup - timh - timl - tomfh - tomfl - tomh - toml - tommh - tomml - tri - triangle - trim - trio - tt - twodown - twoup - ua - ub - uc - ud - ue - vibraslap - vibs - wbh - wbl - whl - whs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/literate-curry.xml ktexteditor-5.31.0/src/syntax/data/literate-curry.xml --- ktexteditor-5.28.0/src/syntax/data/literate-curry.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/literate-curry.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/literate-haskell.xml ktexteditor-5.31.0/src/syntax/data/literate-haskell.xml --- ktexteditor-5.28.0/src/syntax/data/literate-haskell.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/literate-haskell.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/logtalk.xml ktexteditor-5.31.0/src/syntax/data/logtalk.xml --- ktexteditor-5.28.0/src/syntax/data/logtalk.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/logtalk.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/lpc.xml ktexteditor-5.31.0/src/syntax/data/lpc.xml --- ktexteditor-5.28.0/src/syntax/data/lpc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/lpc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,166 +0,0 @@ - - - - - - - - - - - - - private - protected - static - public - nomask - varargs - nosave - virtual - - - void - int - status - string - object - array - mapping - closure - symbol - float - mixed - - - break - continue - return - if - else - for - foreach - do - while - switch - case - inherit - default - variables - functions - publish - nolog - - - FIXME - HACK - NOTE - NOTICE - TODO - WARNING - ### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/lsl.xml ktexteditor-5.31.0/src/syntax/data/lsl.xml --- ktexteditor-5.28.0/src/syntax/data/lsl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/lsl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1050 +0,0 @@ - - - - - - - - - -]> - - - - - - integer - float - string - key - vector - quaternion - rotation - list - - - default - state - event - jump - return - if - else - for - do - while - - - state_entry - state_exit - touch_start - touch - touch_end - collision_start - collision - collision_end - land_collision_start - land_collision - land_collision_end - timer - listen - sensor - no_sensor - control - print - at_target - not_at_target - at_rot_target - not_at_rot_target - money - email - run_time_permissions - changed - attach - dataserver - moving_start - moving_end - link_message - on_rez - object_rez - remote_data - http_response - - - TRUE - FALSE - STATUS_PHYSICS - STATUS_ROTATE_X - STATUS_ROTATE_Y - STATUS_ROTATE_Z - STATUS_PHANTOM - STATUS_SANDBOX - STATUS_BLOCK_GRAB - STATUS_DIE_AT_EDGE - STATUS_RETURN_AT_EDGE - STATUS_CAST_SHADOWS - - AGENT_FLYING - AGENT_ATTACHMENTS - AGENT_SCRIPTED - AGENT_MOUSELOOK - AGENT_SITTING - AGENT_ON_OBJECT - AGENT_AWAY - AGENT_WALKING - AGENT_IN_AIR - AGENT_TYPING - AGENT_CROUCHING - AGENT_BUSY - AGENT_ALWAYS_RUN - - CAMERA_PITCH - CAMERA_FOCUS_OFFSET - CAMERA_POSITION_LAG - CAMERA_FOCUS_LAG - CAMERA_DISTANCE - CAMERA_BEHINDNESS_ANGLE - CAMERA_BEHINDNESS_LAG - CAMERA_POSITION_THRESHOLD - CAMERA_FOCUS_THRESHOLD - CAMERA_ACTIVE - CAMERA_POSITION - CAMERA_FOCUS - CAMERA_POSITION_LOCKED - CAMERA_FOCUS_LOCKED - - ANIM_ON - LOOP - REVERSE - PING_PONG - SMOOTH - ROTATE - SCALE - - ALL_SIDES - LINK_ROOT - LINK_SET - LINK_ALL_OTHERS - LINK_ALL_CHILDREN - LINK_THIS - - AGENT - ACTIVE - PASSIVE - SCRIPTED - - CONTROL_FWD - CONTROL_BACK - CONTROL_LEFT - CONTROL_RIGHT - CONTROL_ROT_LEFT - CONTROL_ROT_RIGHT - CONTROL_UP - CONTROL_DOWN - CONTROL_LBUTTON - CONTROL_ML_LBUTTON - - PERMISSION_DEBIT - PERMISSION_TAKE_CONTROLS - PERMISSION_REMAP_CONTROLS - PERMISSION_TRIGGER_ANIMATION - PERMISSION_ATTACH - PERMISSION_RELEASE_OWNERSHIP - PERMISSION_CHANGE_LINKS - PERMISSION_CHANGE_JOINTS - PERMISSION_CHANGE_PERMISSIONS - PERMISSION_TRACK_CAMERA - PERMISSION_CONTROL_CAMERA - - INVENTORY_TEXTURE - INVENTORY_SOUND - INVENTORY_OBJECT - INVENTORY_SCRIPT - INVENTORY_LANDMARK - INVENTORY_CLOTHING - INVENTORY_NOTECARD - INVENTORY_BODYPART - INVENTORY_ANIMATION - INVENTORY_GESTURE - INVENTORY_ALL - INVENTORY_NONE - - CHANGED_INVENTORY - CHANGED_COLOR - CHANGED_SHAPE - CHANGED_SCALE - CHANGED_TEXTURE - CHANGED_LINK - CHANGED_ALLOWED_DROP - CHANGED_OWNER - CHANGED_REGION - CHANGED_TELEPORT - - OBJECT_UNKNOWN_DETAIL - OBJECT_NAME - OBJECT_DESC - OBJECT_POS - OBJECT_ROT - OBJECT_VELOCITY - OBJECT_OWNER - OBJECT_GROUP - OBJECT_CREATOR - - TYPE_INTEGER - TYPE_FLOAT - TYPE_STRING - TYPE_KEY - TYPE_VECTOR - TYPE_ROTATION - TYPE_INVALID - - NULL_KEY - EOF - - PI - TWO_PI - PI_BY_TWO - DEG_TO_RAD - RAD_TO_DEG - SQRT2 - - DEBUG_CHANNEL - PUBLIC_CHANNEL - - ZERO_VECTOR - ZERO_ROTATION - - ATTACH_CHEST - ATTACH_HEAD - ATTACH_LSHOULDER - ATTACH_RSHOULDER - ATTACH_LHAND - ATTACH_RHAND - ATTACH_LFOOT - ATTACH_RFOOT - ATTACH_BACK - ATTACH_PELVIS - ATTACH_MOUTH - ATTACH_CHIN - ATTACH_LEAR - ATTACH_REAR - ATTACH_LEYE - ATTACH_REYE - ATTACH_NOSE - ATTACH_RUARM - ATTACH_RLARM - ATTACH_LUARM - ATTACH_LLARM - ATTACH_RHIP - ATTACH_RULEG - ATTACH_RLLEG - ATTACH_LHIP - ATTACH_LULEG - ATTACH_LLLEG - ATTACH_BELLY - ATTACH_LPEC - ATTACH_RPEC - ATTACH_HUD_CENTER_2 - ATTACH_HUD_TOP_RIGHT - ATTACH_HUD_TOP_CENTER - ATTACH_HUD_TOP_LEFT - ATTACH_HUD_CENTER_1 - ATTACH_HUD_BOTTOM_LEFT - ATTACH_HUD_BOTTOM - ATTACH_HUD_BOTTOM_RIGHT - - LAND_LEVEL - LAND_RAISE - LAND_LOWER - LAND_SMOOTH - LAND_NOISE - LAND_REVERT - - LAND_SMALL_BRUSH - LAND_MEDIUM_BRUSH - LAND_LARGE_BRUSH - - DATA_ONLINE - DATA_NAME - DATA_BORN - DATA_RATING - DATA_SIM_POS - DATA_SIM_STATUS - DATA_SIM_RATING - DATA_PAYINFO - - PAYMENT_INFO_ON_FILE - PAYMENT_INFO_USED - - REMOTE_DATA_CHANNEL - REMOTE_DATA_REQUEST - REMOTE_DATA_REPLY - - - PSYS_PART_FLAGS - PSYS_PART_START_COLOR - PSYS_PART_START_ALPHA - PSYS_PART_START_SCALE - PSYS_PART_END_COLOR - PSYS_PART_END_ALPHA - PSYS_PART_END_SCALE - PSYS_PART_MAX_AGE - - - PSYS_PART_WIND_MASK - PSYS_PART_INTERP_COLOR_MASK - PSYS_PART_INTERP_SCALE_MASK - PSYS_PART_BOUNCE_MASK - PSYS_PART_FOLLOW_SRC_MASK - PSYS_PART_FOLLOW_VELOCITY_MASK - PSYS_PART_TARGET_POS_MASK - PSYS_PART_EMISSIVE_MASK - PSYS_PART_TARGET_LINEAR_MASK - - - PSYS_SRC_MAX_AGE - PSYS_SRC_PATTERN - PSYS_SRC_INNERANGLE - PSYS_SRC_OUTERANGLE - PSYS_SRC_ANGLE_BEGIN - PSYS_SRC_ANGLE_END - PSYS_SRC_BURST_RATE - PSYS_SRC_BURST_PART_COUNT - PSYS_SRC_BURST_RADIUS - PSYS_SRC_BURST_SPEED_MIN - PSYS_SRC_BURST_SPEED_MAX - PSYS_SRC_ACCEL - PSYS_SRC_TEXTURE - PSYS_SRC_TARGET_KEY - PSYS_SRC_OMEGA - - PSYS_SRC_OBJ_REL_MASK - - PSYS_SRC_PATTERN_DROP - PSYS_SRC_PATTERN_EXPLODE - PSYS_SRC_PATTERN_ANGLE - PSYS_SRC_PATTERN_ANGLE_CONE - PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY - - - VEHICLE_TYPE_NONE - VEHICLE_TYPE_SLED - VEHICLE_TYPE_CAR - VEHICLE_TYPE_BOAT - VEHICLE_TYPE_AIRPLANE - VEHICLE_TYPE_BALLOON - - VEHICLE_REFERENCE_FRAME - VEHICLE_LINEAR_FRICTION_TIMESCALE - VEHICLE_ANGULAR_FRICTION_TIMESCALE - VEHICLE_LINEAR_MOTOR_DIRECTION - VEHICLE_ANGULAR_MOTOR_DIRECTION - VEHICLE_LINEAR_MOTOR_OFFSET - - - - VEHICLE_HOVER_HEIGHT - VEHICLE_HOVER_EFFICIENCY - VEHICLE_HOVER_TIMESCALE - VEHICLE_BUOYANCY - - VEHICLE_LINEAR_DEFLECTION_EFFICIENCY - VEHICLE_LINEAR_DEFLECTION_TIMESCALE - VEHICLE_LINEAR_MOTOR_TIMESCALE - VEHICLE_LINEAR_MOTOR_DECAY_TIMESCALE - - VEHICLE_ANGULAR_DEFLECTION_EFFICIENCY - VEHICLE_ANGULAR_DEFLECTION_TIMESCALE - VEHICLE_ANGULAR_MOTOR_TIMESCALE - VEHICLE_ANGULAR_MOTOR_DECAY_TIMESCALE - - VEHICLE_VERTICAL_ATTRACTION_EFFICIENCY - VEHICLE_VERTICAL_ATTRACTION_TIMESCALE - - VEHICLE_BANKING_EFFICIENCY - VEHICLE_BANKING_MIX - VEHICLE_BANKING_TIMESCALE - - VEHICLE_FLAG_NO_FLY_UP - VEHICLE_FLAG_NO_DEFLECTION_UP - VEHICLE_FLAG_LIMIT_ROLL_ONLY - VEHICLE_FLAG_HOVER_WATER_ONLY - VEHICLE_FLAG_HOVER_TERRAIN_ONLY - VEHICLE_FLAG_HOVER_GLOBAL_HEIGHT - VEHICLE_FLAG_HOVER_UP_ONLY - VEHICLE_FLAG_LIMIT_MOTOR_UP - VEHICLE_FLAG_MOUSELOOK_STEER - VEHICLE_FLAG_MOUSELOOK_BANK - VEHICLE_FLAG_CAMERA_DECOUPLED - - - - PRIM_TYPE - PRIM_MATERIAL - PRIM_PHYSICS - PRIM_FLEXIBLE - PRIM_POINT_LIGHT - PRIM_TEMP_ON_REZ - PRIM_PHANTOM - PRIM_CAST_SHADOWS - PRIM_POSITION - PRIM_SIZE - PRIM_ROTATION - PRIM_TEXTURE - PRIM_COLOR - PRIM_BUMP_SHINY - PRIM_FULLBRIGHT - PRIM_TEXGEN - PRIM_GLOW - - PRIM_TYPE_BOX - PRIM_TYPE_CYLINDER - PRIM_TYPE_PRISM - PRIM_TYPE_SPHERE - PRIM_TYPE_TORUS - PRIM_TYPE_TUBE - PRIM_TYPE_RING - PRIM_TYPE_SCULPT - - PRIM_HOLE_DEFAULT - PRIM_HOLE_CIRCLE - PRIM_HOLE_SQUARE - PRIM_HOLE_TRIANGLE - - PRIM_MATERIAL_STONE - PRIM_MATERIAL_METAL - PRIM_MATERIAL_GLASS - PRIM_MATERIAL_WOOD - PRIM_MATERIAL_FLESH - PRIM_MATERIAL_PLASTIC - PRIM_MATERIAL_RUBBER - PRIM_MATERIAL_LIGHT - - PRIM_SHINY_NONE - PRIM_SHINY_LOW - PRIM_SHINY_MEDIUM - PRIM_SHINY_HIGH - - PRIM_BUMP_NONE - PRIM_BUMP_BRIGHT - PRIM_BUMP_DARK - PRIM_BUMP_WOOD - PRIM_BUMP_BARK - PRIM_BUMP_BRICKS - PRIM_BUMP_CHECKER - PRIM_BUMP_CONCRETE - PRIM_BUMP_TILE - PRIM_BUMP_STONE - PRIM_BUMP_DISKS - PRIM_BUMP_GRAVEL - PRIM_BUMP_BLOBS - PRIM_BUMP_SIDING - PRIM_BUMP_LARGETILE - PRIM_BUMP_STUCCO - PRIM_BUMP_SUCTION - PRIM_BUMP_WEAVE - - PRIM_TEXGEN_DEFAULT - PRIM_TEXGEN_PLANAR - - PRIM_SCULPT_TYPE_SPHERE - PRIM_SCULPT_TYPE_TORUS - PRIM_SCULPT_TYPE_PLANE - PRIM_SCULPT_TYPE_CYLINDER - PRIM_SCULPT_TYPE_MASK - PRIM_SCULPT_FLAG_MIRROR - PRIM_SCULPT_FLAG_INVERT - - MASK_BASE - MASK_OWNER - MASK_GROUP - MASK_EVERYONE - MASK_NEXT - - PERM_TRANSFER - PERM_MODIFY - PERM_COPY - PERM_MOVE - PERM_ALL - - PARCEL_MEDIA_COMMAND_STOP - PARCEL_MEDIA_COMMAND_PAUSE - PARCEL_MEDIA_COMMAND_PLAY - PARCEL_MEDIA_COMMAND_LOOP - PARCEL_MEDIA_COMMAND_TEXTURE - PARCEL_MEDIA_COMMAND_URL - PARCEL_MEDIA_COMMAND_TIME - PARCEL_MEDIA_COMMAND_AGENT - PARCEL_MEDIA_COMMAND_UNLOAD - PARCEL_MEDIA_COMMAND_AUTO_ALIGN - PARCEL_MEDIA_COMMAND_TYPE - PARCEL_MEDIA_COMMAND_SIZE - PARCEL_MEDIA_COMMAND_DESC - PARCEL_MEDIA_COMMAND_LOOP_SET - - LIST_STAT_MAX - LIST_STAT_MIN - LIST_STAT_MEAN - LIST_STAT_MEDIAN - LIST_STAT_STD_DEV - LIST_STAT_SUM - LIST_STAT_SUM_SQUARES - LIST_STAT_NUM_COUNT - LIST_STAT_GEOMETRIC_MEAN - LIST_STAT_RANGE - - PAY_HIDE - PAY_DEFAULT - - PARCEL_FLAG_ALLOW_FLY - PARCEL_FLAG_ALLOW_GROUP_SCRIPTS - PARCEL_FLAG_ALLOW_SCRIPTS - PARCEL_FLAG_ALLOW_LANDMARK - PARCEL_FLAG_ALLOW_TERRAFORM - PARCEL_FLAG_ALLOW_DAMAGE - PARCEL_FLAG_ALLOW_CREATE_OBJECTS - PARCEL_FLAG_ALLOW_CREATE_GROUP_OBJECTS - PARCEL_FLAG_USE_ACCESS_GROUP - PARCEL_FLAG_USE_ACCESS_LIST - PARCEL_FLAG_USE_BAN_LIST - PARCEL_FLAG_USE_LAND_PASS_LIST - PARCEL_FLAG_LOCAL_SOUND_ONLY - PARCEL_FLAG_RESTRICT_PUSHOBJECT - PARCEL_FLAG_ALLOW_GROUP_OBJECT_ENTRY - PARCEL_FLAG_ALLOW_ALL_OBJECT_ENTRY - - REGION_FLAG_ALLOW_DAMAGE - REGION_FLAG_FIXED_SUN - REGION_FLAG_BLOCK_TERRAFORM - REGION_FLAG_SANDBOX - REGION_FLAG_DISABLE_COLLISIONS - REGION_FLAG_DISABLE_PHYSICS - REGION_FLAG_BLOCK_FLY - REGION_FLAG_ALLOW_DIRECT_TELEPORT - REGION_FLAG_RESTRICT_PUSHOBJECT - - HTTP_METHOD - HTTP_MIMETYPE - HTTP_BODY_MAXLENGTH - HTTP_BODY_TRUNCATED - HTTP_VERIFY_CERT - - PARCEL_COUNT_TOTAL - PARCEL_COUNT_OWNER - PARCEL_COUNT_GROUP - PARCEL_COUNT_OTHER - PARCEL_COUNT_SELECTED - PARCEL_COUNT_TEMP - - PARCEL_DETAILS_NAME - PARCEL_DETAILS_DESC - PARCEL_DETAILS_OWNER - PARCEL_DETAILS_GROUP - PARCEL_DETAILS_AREA - - STRING_TRIM_HEAD - STRING_TRIM_TAIL - STRING_TRIM - - CLICK_ACTION_NONE - CLICK_ACTION_TOUCH - CLICK_ACTION_SIT - CLICK_ACTION_BUY - CLICK_ACTION_PAY - CLICK_ACTION_OPEN - CLICK_ACTION_PLAY - CLICK_ACTION_OPEN_MEDIA - - TEXTURE_BLANK - TEXTURE_DEFAULT - TEXTURE_MEDIA - TEXTURE_PLYWOOD - TEXTURE_TRANSPARENT - - TOUCH_INVALID_FACE - TOUCH_INVALID_VECTOR - TOUCH_INVALID_TEXCOORD - - - ++ - -- - += - -= - *= - /= - %= - ; - , - = - ( - ) - - - + - * - / - % - @ - : - > - < - == - != - >= - <= - & - | - ^ - ~ - ! - && - || - << - >> - - - - - llSin - llCos - llTan - llAtan2 - llSqrt - llPow - llAbs - llFabs - llFrand - llFloor - llCeil - llRound - llVecMag - llVecNorm - llVecDist - llRot2Euler - llEuler2Rot - llAxes2Rot - llRot2Fwd - llRot2Left - llRot2Up - llRotBetween - llWhisper - llSay - llShout - llListen - llListenControl - llListenRemove - llSensor - llSensorRepeat - llSensorRemove - llDetectedName - llDetectedKey - llDetectedOwner - llDetectedType - llDetectedPos - llDetectedVel - llDetectedGrab - llDetectedRot - llDetectedGroup - llDetectedLinkNumber - llDie - llGround - llCloud - llWind - llSetStatus - llGetStatus - llSetScale - llGetScale - llSetColor - llGetAlpha - llSetAlpha - llGetColor - llSetTexture - llScaleTexture - llOffsetTexture - llRotateTexture - llGetTexture - llSetPos - llGetPos - llGetLocalPos - llSetRot - llGetRot - llGetLocalRot - llSetForce - llGetForce - llTarget - llTargetRemove - llRotTarget - llRotTargetRemove - llMoveToTarget - llStopMoveToTarget - llApplyImpulse - llApplyRotationalImpulse - llSetTorque - llGetTorque - llSetForceAndTorque - llGetVel - llGetAccel - llGetOmega - llGetTimeOfDay - llGetWallclock - llGetTime - llResetTime - llGetAndResetTime - llSound - llPlaySound - llLoopSound - llLoopSoundMaster - llLoopSoundSlave - llPlaySoundSlave - llTriggerSound - llStopSound - llPreloadSound - llGetSubString - llDeleteSubString - llInsertString - llToUpper - llToLower - llGiveMoney - llMakeExplosion - llMakeFountain - llMakeSmoke - llMakeFire - llRezObject - llLookAt - llStopLookAt - llSetTimerEvent - llSleep - llGetMass - llCollisionFilter - llTakeControls - llReleaseControls - llAttachToAvatar - llDetachFromAvatar - llTakeCamera - llReleaseCamera - llGetOwner - llInstantMessage - llEmail - llGetNextEmail - llGetKey - llSetBuoyancy - llSetHoverHeight - llStopHover - llMinEventDelay - llSoundPreload - llRotLookAt - llStringLength - llStartAnimation - llStopAnimation - llPointAt - llStopPointAt - llTargetOmega - llGetStartParameter - llGodLikeRezObject - llRequestPermissions - llGetPermissionsKey - llGetPermissions - llGetLinkNumber - llSetLinkColor - llCreateLink - llBreakLink - llBreakAllLinks - llGetLinkKey - llGetLinkName - llGetInventoryNumber - llGetInventoryName - llSetScriptState - llGetEnergy - llGiveInventory - llRemoveInventory - llSetText - llWater - llPassTouches - llRequestAgentData - llRequestInventoryData - llSetDamage - llTeleportAgentHome - llModifyLand - llCollisionSound - llCollisionSprite - llGetAnimation - llResetScript - llMessageLinked - llPushObject - llPassCollisions - llGetScriptName - llGetNumberOfSides - llAxisAngle2Rot - llRot2Axis - llRot2Angle - llAcos - llAsin - llAngleBetween - llGetInventoryKey - llAllowInventoryDrop - llGetSunDirection - llGetTextureOffset - llGetTextureScale - llGetTextureRot - llSubStringIndex - llGetOwnerKey - llGetCenterOfMass - llListSort - llGetListLength - llList2Integer - llList2Float - llList2String - llList2Key - llList2Vector - llList2Rot - llList2List - llDeleteSubList - llGetListEntryType - llList2CSV - llCSV2List - llListRandomize - llList2ListStrided - llGetRegionCorner - llListInsertList - llListFindList - llGetObjectName - llSetObjectName - llGetDate - llEdgeOfWorld - llGetAgentInfo - llAdjustSoundVolume - llSetSoundQueueing - llSetSoundRadius - llKey2Name - llSetTextureAnim - llTriggerSoundLimited - llEjectFromLand - llParseString2List - llOverMyLand - llGetLandOwnerAt - llGetNotecardLine - llGetAgentSize - llSameGroup - llUnSit - llGroundSlope - llGroundNormal - llGroundContour - llGetAttached - llGetFreeMemory - llGetRegionName - llGetRegionTimeDilation - llGetRegionFPS - - llParticleSystem - llGroundRepel - llGiveInventoryList - - llSetVehicleType - llSetVehicleFloatParam - llSetVehicleVectorParam - llSetVehicleRotationParam - llSetVehicleFlags - llRemoveVehicleFlags - llSitTarget - llAvatarOnSitTarget - llAddToLandPassList - llSetTouchText - llSetSitText - llSetCameraEyeOffset - llSetCameraAtOffset - - llDumpList2String - llScriptDanger - llDialog - llVolumeDetect - llResetOtherScript - llGetScriptState - llRemoteLoadScript - - llSetRemoteScriptAccessPin - llRemoteLoadScriptPin - - llOpenRemoteDataChannel - llSendRemoteData - llRemoteDataReply - llCloseRemoteDataChannel - - llMD5String - llSetPrimitiveParams - llStringToBase64 - llBase64ToString - llXorBase64Strings - llRemoteDataSetRegion - llLog10 - llLog - llGetAnimationList - llSetParcelMusicURL - - llGetRootPosition - llGetRootRotation - - llGetObjectDesc - llSetObjectDesc - llGetCreator - llGetTimestamp - llSetLinkAlpha - llGetNumberOfPrims - llGetNumberOfNotecardLines - - llGetBoundingBox - llGetGeometricCenter - llGetPrimitiveParams - llIntegerToBase64 - llBase64ToInteger - llGetGMTclock - llGetSimulatorHostname - - llSetLocalRot - - llParseStringKeepNulls - llRezAtRoot - - llGetObjectPermMask - llSetObjectPermMask - - llGetInventoryPermMask - llSetInventoryPermMask - llGetInventoryCreator - llOwnerSay - llRequestSimulatorData - llForceMouselook - llGetObjectMass - llListReplaceList - llLoadURL - - llParcelMediaCommandList - llParcelMediaQuery - - llModPow - - llGetInventoryType - llSetPayPrice - llGetCameraPos - llGetCameraRot - - llSetPrimURL - llRefreshPrimURL - llEscapeURL - llUnescapeURL - - llMapDestination - llAddToLandBanList - llRemoveFromLandPassList - llRemoveFromLandBanList - - llSetCameraParams - llClearCameraParams - - llListStatistics - llGetUnixTime - llGetParcelFlags - llGetRegionFlags - llXorBase64StringsCorrect - - llHTTPRequest - - llResetLandBanList - llResetLandPassList - - llGetObjectPrimCount - llGetParcelPrimOwners - llGetParcelPrimCount - llGetParcelMaxPrims - llGetParcelDetails - - llSetLinkPrimitiveParams - llSetLinkTexture - - - llStringTrim - llRegionSay - llGetObjectDetails - llSetClickAction - - llGetRegionAgentCount - llTextBox - llGetAgentLanguage - llDetectedTouchUV - llDetectedTouchFace - llDetectedTouchPos - llDetectedTouchNormal - llDetectedTouchBinormal - llDetectedTouchST - - llSHA1String - - - - - FIXME - TODO - BUG - HACK - XXX - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/lua.xml ktexteditor-5.31.0/src/syntax/data/lua.xml --- ktexteditor-5.28.0/src/syntax/data/lua.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/lua.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,300 +0,0 @@ - - - - - - - and - function - in - local - not - or - - - break - do - else - elseif - end - for - if - repeat - return - then - until - while - - - nil - false - true - - - string.byte string.char - string.find string.len - string.lower string.rep - string.sub string.upper - string.format string.gfind - string.gsub table.concat - table.getn table.sort - table.insert table.remove - table.setn math.abs - math.sin math.cos - math.tan math.asin - math.acos math.atan - math.atan2 math.ceil - math.floor math.mod - math.frexp math.ldexp - math.squrt math.min - math.max math.log - math.log10 math.exp - math.deg math.rad - math.random math.randomseed - io.close io.flush - io.input io.lines - io.open io.output - io.read io.stderr - io.stdin io.stdout - io.tmpfile io.write - os.clock os.date - os.difftime os.execute - os.exit os.getenv - os.remove os.rename - os.setlocale os.time - os.tmpname debug.getinfo - debug.getlocal debug.setlocal - debug.sethook debug.gethook - assert collectgarbage - dofile error - next print - rawget rawset - tonumber tostring - type _ALERT - _ERRORMESSAGE call - getmetatable gcinfo - ipairs loadfile - loadstring pairs - pcall require - LUA_PATH setmetatable - _LOADED _VERSION - gettagmethod globals - newtag setglobal - settag settagmethod - setlinehook getglobals - copytagmethods dostring - getglobal tag - setglobals unpack - exit readfrom - writeto appendto - read write - getinfo getlocal - setlocal setcallhook - tinsert tremove - flush seek - setlocale execute - remove rename - tmpname getenv - getn sort - table.foreach table.foreachi - foreach foreachi - abs sin - cos tan - asin acos - atan atan2 - ceil floor - mod frexp - ldexp squrt - min max - log log10 - exp deg - rad random - randomseed strlen - strsub strlower - strupper strchar - strrep ascii - strbyte format - strfind gsub - openfile closefile - date clock - - - cgilua cgilua.lp.translate - cgilua.contentheader cgilua.script_file - cgilua.header cgilua.script_path - cgilua.htmlheader cgilua.script_pdir - cgilua.redirect cgilua.script_vdir - cgilua.mkabsoluteurl cgilua.script_vpath - cgilua.mkurlpath cgilua.servervariable - cgilua.put cgilua.urlpath - cgilua.handlelp cgilua.errorlog - cgilua.lp.compile cgilua.seterrorhandler - cgilua.lp.include cgilua.seterroroutput - cgilua.lp.setcompatmode cgilua.addclosefunction - cgilua.lp.setoutfunc cgilua.addopenfunction - cgilua.addscripthandler cgilua.addscripthandler - cgilua.buildprocesshandler cgilua.setmaxfilesize - cgilua.setmaxinput cgilua.urlcode.encodetable - cgilua.urlcode.escape cgilua.urlcode.parsequery - cgilua.urlcode.unescape cgilua.urlcode.insertfield - cgilua.setoutfunc cgilua.addopenfunction - cgilua.doif cgilua.doscript - cgilua.pack cgilua.splitpath - cgilua.cookies.get cgilua.cookies.set - cgilua.cookies.sethtml cgilua.cookies.delete - cgilua.serialize cgilua.session.close - cgilua.session.data cgilua.session.load - cgilua.session.new cgilua.session.open - cgilua.session.save cgilua.session.setsessiondir - cgilua.session.delete cgilua.session - cgilua.cookies - - numrows connect - close fetch - getcolnames getcoltypes - commit rollback - setautocommit - - lfs lfs.attributes - lfs.chdir lfs.currentdir - lfs.dir lfs.lock - lfs.mkdir lfs.rmdir - lfs.touch lfs.unlock - - zip zip.open - zip.openfile files - seek close - lines - - - - - TODO - FIXME - NOTE - - - table.foreach table.foreachi - foreach foreachi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/m3u.xml ktexteditor-5.31.0/src/syntax/data/m3u.xml --- ktexteditor-5.28.0/src/syntax/data/m3u.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/m3u.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/m4.xml ktexteditor-5.31.0/src/syntax/data/m4.xml --- ktexteditor-5.28.0/src/syntax/data/m4.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/m4.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,193 +0,0 @@ - - - - - - - __gnu__ - __os2__ - os2 - __unix__ - unix - __windows__ - windows - - - m4___gnu__ - m4___os2__ - m4_os2 - m4___unix__ - m4_unix - m4___windows__ - m4_windows - - - __file__ - __line__ - __program__ - builtin - changecom - changequote - changeword - debugfile - debugmode - decr - define - defn - divert - divnum - dnl - dumpdef - errprint - esyscmd - eval - format - ifdef - ifelse - include - incr - index - indir - len - m4exit - m4wrap - maketemp - mkstemp - patsubst - popdef - pushdef - regexp - shift - sinclude - substr - syscmd - sysval - traceon - traceoff - translit - undefine - undivert - - - m4___file__ - m4___line__ - m4___program__ - m4_builtin - m4_changecom - m4_changequote - m4_changeword - m4_debugfile - m4_debugmode - m4_decr - m4_define - m4_defn - m4_divert - m4_divnum - m4_dnl - m4_dumpdef - m4_errprint - m4_esyscmd - m4_eval - m4_format - m4_ifdef - m4_ifelse - m4_include - m4_incr - m4_index - m4_indir - m4_len - m4_m4exit - m4_m4wrap - m4_maketemp - m4_mkstemp - m4_patsubst - m4_popdef - m4_pushdef - m4_regexp - m4_shift - m4_sinclude - m4_substr - m4_syscmd - m4_sysval - m4_traceon - m4_traceoff - m4_translit - m4_undefine - m4_undivert - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mab.xml ktexteditor-5.31.0/src/syntax/data/mab.xml --- ktexteditor-5.28.0/src/syntax/data/mab.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mab.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/magma.xml ktexteditor-5.31.0/src/syntax/data/magma.xml --- ktexteditor-5.28.0/src/syntax/data/magma.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/magma.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,154 +0,0 @@ - - - - - - and - assert - assigned - attributes - break - by - case - cat - cmpeq - cmpne - continue - declare - delete - diff - div - do - else - elif - end - eq - error - exists - false - for - forall - forward - freeze - function - ge - gt - if - import - in - intrinsic - join - le - lt - max - meet - min - mod - ne - not - or - procedure - quit - repeat - require - requirege - requirerange - return - sdiff - select - then - time - to - true - until - verbose - vprint - vtime - when - while - xor - - - Booleans - EllipticCurve - ExtensionField - FiniteField - GF - HyperellipticCurve - Integers - Jacobian - PolynomialRing - Rationals - RealField - - - AddAttribute - AssignNames - Attach - AttachSpec - CoveringStructure - Cputime - Detach - DetachSpec - ElementType - ExistsCoveringStructure - ExtendedType - GetAttributes - GetSeed - ISA - IsCoercible - IsIntrinsic - ListAttributes - MakeType - Random - Realtime - SetSeed - Type - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/makefile.xml ktexteditor-5.31.0/src/syntax/data/makefile.xml --- ktexteditor-5.28.0/src/syntax/data/makefile.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/makefile.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,218 +0,0 @@ - - - - - - - - - - - - include - define - else - endef - endif - ifdef - ifeq - ifndef - ifneq - override - - - call - subst - patsubst - strip - findstring - filter - filter-out - sort - word - wordlist - words - firstword - lastword - dir - notdir - suffix - basename - addsuffix - addprefix - join - wildcard - realpath - abspath - if - or - and - foreach - value - eval - origin - flavor - shell - error - warning - info - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mako.xml ktexteditor-5.31.0/src/syntax/data/mako.xml --- ktexteditor-5.28.0/src/syntax/data/mako.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mako.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,255 +0,0 @@ - - - -]> - - - - - endfor - endif - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mandoc.xml ktexteditor-5.31.0/src/syntax/data/mandoc.xml --- ktexteditor-5.28.0/src/syntax/data/mandoc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mandoc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,89 +0,0 @@ - - - - - - - - SH - SS - TH - - - - HP - IP - LP - P - PD - PP - RE - RS - TP - - - - B - BI - BR - I - IB - IR - RB - RI - SM - SB - - - - DT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/markdown.xml ktexteditor-5.31.0/src/syntax/data/markdown.xml --- ktexteditor-5.28.0/src/syntax/data/markdown.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/markdown.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,134 +0,0 @@ - - - - - - - - - - - - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mason.xml ktexteditor-5.31.0/src/syntax/data/mason.xml --- ktexteditor-5.28.0/src/syntax/data/mason.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mason.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,236 +0,0 @@ - - - - - - sub - bless - caller - cmp - print - echo - die - import - lt - le - local - defined - last - ! - || - eq - ne - use - elsif - my - foreach - wantarray - push - pop - dbmclose - dbmopen - dump - each - ge - gt - split - open - close - eval - chomp - chop - unless - undef - next - unlink - new - and - not - no - ref - redo - require - tied - tie - untie - or - xor - continue - do - else - for - goto - if - return - switch - while - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mathematica.xml ktexteditor-5.31.0/src/syntax/data/mathematica.xml --- ktexteditor-5.28.0/src/syntax/data/mathematica.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mathematica.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3229 +0,0 @@ - - - - - - A - AbelianGroup - All - ArcSinh - Abort - AllowGroupClose - ArcTan - AbortKernels - AllowReverseGroupClose - ArcTanh - AbortProtect - AlphaChannel - Arg - Abs - AlternatingGroup - ArgMax - AbsoluteCurrentValue - AlternativeHypothesis - ArgMin - AbsoluteDashing - Alternatives - ArithmeticGeometricMean - AbsoluteFileName - AnchoredSearch - Array - AbsoluteOptions - And - ArrayComponents - AbsolutePointSize - AndersonDarlingTest - ArrayDepth - AbsoluteThickness - AngerJ - ArrayFlatten - AbsoluteTime - AngleBracket - ArrayPad - AbsoluteTiming - Animate - ArrayPlot - AccountingForm - AnimationDirection - ArrayQ - Accumulate - AnimationDisplayTime - ArrayRules - Accuracy - AnimationRate - Arrow - AccuracyGoal - AnimationRepetitions - Arrowheads - ActionMenu - AnimationRunning - AspectRatio - ActiveStyle - Animator - Assert - AcyclicGraphQ - Annotation - Assuming - AddTo - Annuity - Assumptions - AdjacencyGraph - AnnuityDue - AstronomicalData - AdjacencyMatrix - Antialiasing - Asynchronous - AdjustmentBox - Apart - AtomQ - AffineTransform - ApartSquareFree - Attributes - AiryAi - Appearance - AugmentedSymmetricPolynomial - AiryAiPrime - AppearanceElements - AutoAction - AiryAiZero - AppellF1 - AutoIndent - AiryBi - Append - AutoItalicWords - AiryBiPrime - AppendTo - Automatic - AiryBiZero - Apply - AutoMultiplicationSymbol - AlgebraicIntegerQ - ArcCos - AutorunSequencing - AlgebraicNumber - ArcCosh - AutoScroll - AlgebraicNumberDenominator - ArcCot - AutoSpacing - AlgebraicNumberNorm - ArcCoth - Axes - AlgebraicNumberPolynomial - ArcCsc - AxesEdge - AlgebraicNumberTrace - ArcCsch - AxesLabel - Algebraics - ArcSec - AxesOrigin - AlgebraicUnitQ - ArcSech - AxesStyle - Alignment - ArcSin - Axis - AlignmentPoint - ArcSinDistribution - B - BabyMonsterGroupB - BetaRegularized - BooleanGraph - Back - BetweennessCentrality - BooleanMaxterms - Background - BezierCurve - BooleanMinimize - Backslash - BezierFunction - BooleanMinterms - Backward - BilateralFilter - Booleans - Band - Binarize - BooleanTable - BarabasiAlbertGraphDistribution - BinaryFormat - BooleanVariables - BarChart - BinaryImageQ - BorderDimensions - BarChart3D - BinaryRead - BorelTannerDistribution - BarnesG - BinaryReadList - Bottom - BarOrigin - BinaryWrite - BottomHatTransform - BarSpacing - BinCounts - BoundaryStyle - BaseForm - BinLists - BoxData - Baseline - Binomial - Boxed - BaselinePosition - BinomialDistribution - BoxMatrix - BaseStyle - BinormalDistribution - BoxRatios - BatesDistribution - BiorthogonalSplineWavelet - BoxStyle - BattleLemarieWavelet - BipartiteGraphQ - BoxWhiskerChart - Because - BirnbaumSaundersDistribution - BracketingBar - BeckmannDistribution - BitAnd - BrayCurtisDistance - Beep - BitClear - BreadthFirstScan - Begin - BitGet - Break - BeginDialogPacket - BitLength - Brown - BeginPackage - BitNot - BrownForsytheTest - BellB - BitOr - BSplineBasis - BellY - BitSet - BSplineCurve - BenfordDistribution - BitShiftLeft - BSplineFunction - BeniniDistribution - BitShiftRight - BSplineSurface - BenktanderGibratDistribution - BitXor - BubbleChart - BenktanderWeibullDistribution - Black - BubbleChart3D - BernoulliB - Blank - BubbleScale - BernoulliDistribution - BlankNullSequence - BubbleSizes - BernoulliGraphDistribution - BlankSequence - ButterflyGraph - BernsteinBasis - Blend - Button - BesselI - Block - ButtonBar - BesselJ - BlockRandom - ButtonBox - BesselJZero - Blue - ButtonData - BesselK - Blur - ButtonFrame - BesselY - BodePlot - ButtonFunction - BesselYZero - Bold - ButtonMinHeight - Beta - Bookmarks - ButtonNotebook - BetaBinomialDistribution - Boole - ButtonSource - BetaDistribution - BooleanConvert - Byte - BetaNegativeBinomialDistribution - BooleanCountingFunction - ByteCount - BetaPrimeDistribution - BooleanFunction - ByteOrdering - C - C - CityData - ContinuousAction - CallPacket - Clear - ContinuousTimeModelQ - CanberraDistance - ClearAll - ContinuousWaveletData - Cancel - ClearAttributes - ContinuousWaveletTransform - CancelButton - ClearSystemCache - ContourDetect - CandlestickChart - ClebschGordan - ContourLabels - Cap - ClickPane - ContourPlot - CapForm - Clip - ContourPlot3D - CapitalDifferentialD - ClippingStyle - Contours - CarmichaelLambda - Clock - ContourShading - Cases - Close - ContourStyle - Cashflow - CloseKernels - ContraharmonicMean - Casoratian - ClosenessCentrality - Control - Catalan - Closing - ControlActive - CatalanNumber - ClusteringComponents - ControllabilityGramian - Catch - CMYKColor - ControllabilityMatrix - CauchyDistribution - Coefficient - ControllableDecomposition - CayleyGraph - CoefficientArrays - ControllableModelQ - CDF - CoefficientList - ControllerInformation - CDFWavelet - CoefficientRules - ControllerLinking - Ceiling - CoifletWavelet - ControllerManipulate - Cell - Collect - ControllerMethod - CellAutoOverwrite - Colon - ControllerPath - CellBaseline - ColorCombine - ControllerState - CellChangeTimes - ColorConvert - ControlPlacement - CellContext - ColorData - ControlsRendering - CellDingbat - ColorDataFunction - ControlType - CellDynamicExpression - ColorFunction - Convergents - CellEditDuplicate - ColorFunctionScaling - ConversionRules - CellEpilog - Colorize - Convolve - CellEvaluationDuplicate - ColorNegate - ConwayGroupCo1 - CellEvaluationFunction - ColorQuantize - ConwayGroupCo2 - CellEventActions - ColorRules - ConwayGroupCo3 - CellFrame - ColorSeparate - CoordinatesToolOptions - CellFrameMargins - ColorSetter - CoprimeQ - CellGroup - ColorSlider - Coproduct - CellGroupData - ColorSpace - CopulaDistribution - CellGrouping - Column - Copyable - CellLabel - ColumnAlignments - CopyDirectory - CellLabelAutoDelete - ColumnLines - CopyFile - CellMargins - ColumnsEqual - CopyToClipboard - CellOpen - ColumnSpacings - CornerFilter - CellPrint - ColumnWidths - CornerNeighbors - CellProlog - Commonest - Correlation - CellTags - CommonestFilter - CorrelationDistance - CellularAutomaton - CompilationOptions - Cos - CensoredDistribution - CompilationTarget - Cosh - Censoring - Compile - CoshIntegral - Center - Compiled - CosineDistance - CenterDot - CompiledFunction - CosIntegral - CentralMoment - Complement - Cot - CentralMomentGeneratingFunction - CompleteGraph - Coth - CForm - CompleteGraphQ - Count - ChampernowneNumber - CompleteKaryTree - CountRoots - ChanVeseBinarize - Complex - CountryData - Character - Complexes - Covariance - CharacterEncoding - ComplexExpand - CovarianceEstimatorFunction - CharacteristicFunction - ComplexInfinity - CramerVonMisesTest - CharacteristicPolynomial - ComplexityFunction - CreateArchive - CharacterRange - ComponentMeasurements - CreateDialog - Characters - ComposeList - CreateDirectory - ChartBaseStyle - ComposeSeries - CreateDocument - ChartElementFunction - Composition - CreateIntermediateDirectories - ChartElements - CompoundExpression - CreatePalette - ChartLabels - Compress - CreateScheduledTask - ChartLayout - Condition - CreateWindow - ChartLegends - ConditionalExpression - CriticalSection - ChartStyle - Conditioned - Cross - ChebyshevT - Cone - CrossingDetect - ChebyshevU - ConfidenceLevel - CrossMatrix - Check - Congruent - Csc - CheckAbort - Conjugate - Csch - Checkbox - ConjugateTranspose - Cubics - CheckboxBar - Conjunction - Cuboid - ChemicalData - ConnectedComponents - Cumulant - ChessboardDistance - ConnectedGraphQ - CumulantGeneratingFunction - ChiDistribution - ConoverTest - Cup - ChineseRemainder - Constant - CupCap - ChiSquareDistribution - ConstantArray - CurrentImage - ChoiceButtons - Constants - CurrentValue - ChoiceDialog - ContentPadding - CurvatureFlowFilter - CholeskyDecomposition - ContentSelectable - CurveClosed - Chop - ContentSize - Cyan - Circle - Context - CycleGraph - CircleDot - Contexts - Cycles - CircleMinus - ContextToFileName - CyclicGroup - CirclePlus - Continue - Cyclotomic - CircleTimes - ContinuedFraction - Cylinder - CirculantGraph - ContinuedFractionK - CylindricalDecomposition - D - D - DepthFirstScan - DiskMatrix - DagumDistribution - Derivative - Dispatch - DamerauLevenshteinDistance - DerivativeFilter - DispersionEstimatorFunction - Darker - DesignMatrix - DisplayAllSteps - Dashed - Det - DisplayEndPacket - Dashing - DGaussianWavelet - DisplayForm - DataDistribution - Diagonal - DisplayFunction - DataRange - DiagonalMatrix - DisplayPacket - DataReversed - Dialog - DistanceFunction - DateDifference - DialogInput - DistanceTransform - DateFunction - DialogNotebook - Distribute - DateList - DialogProlog - Distributed - DateListLogPlot - DialogReturn - DistributedContexts - DateListPlot - DialogSymbols - DistributeDefinitions - DatePattern - Diamond - DistributionChart - DatePlus - DiamondMatrix - DistributionFitTest - DateString - DiceDissimilarity - DistributionParameterAssumptions - DateTicksFormat - DictionaryLookup - DistributionParameterQ - DaubechiesWavelet - DifferenceDelta - Divide - DavisDistribution - DifferenceRoot - DivideBy - DawsonF - DifferenceRootReduce - Dividers - DeBruijnGraph - Differences - Divisible - DeclarePackage - DifferentialD - Divisors - Decompose - DifferentialRoot - DivisorSigma - Decrement - DifferentialRootReduce - DivisorSum - DedekindEta - DigitBlock - DMSList - Default - DigitCharacter - DMSString - DefaultAxesStyle - DigitCount - Do - DefaultBaseStyle - DigitQ - DockedCells - DefaultBoxStyle - DihedralGroup - DocumentNotebook - DefaultButton - Dilation - Dot - DefaultDuplicateCellStyle - Dimensions - DotDashed - DefaultDuration - DiracComb - DotEqual - DefaultElement - DiracDelta - Dotted - DefaultFaceGridsStyle - DirectedEdge - DoubleBracketingBar - DefaultFieldHintStyle - DirectedEdges - DoubleDownArrow - DefaultFrameStyle - DirectedGraph - DoubleLeftArrow - DefaultFrameTicksStyle - DirectedGraphQ - DoubleLeftRightArrow - DefaultGridLinesStyle - DirectedInfinity - DoubleLongLeftArrow - DefaultLabelStyle - Direction - DoubleLongLeftRightArrow - DefaultMenuStyle - Directive - DoubleLongRightArrow - DefaultNewCellStyle - Directory - DoubleRightArrow - DefaultOptions - DirectoryName - DoubleUpArrow - DefaultTicksStyle - DirectoryQ - DoubleUpDownArrow - Defer - DirectoryStack - DoubleVerticalBar - Definition - DirichletCharacter - DownArrow - Degree - DirichletConvolve - DownArrowBar - DegreeCentrality - DirichletDistribution - DownArrowUpArrow - DegreeGraphDistribution - DirichletL - DownLeftRightVector - Deinitialization - DirichletTransform - DownLeftTeeVector - Del - DiscreteConvolve - DownLeftVector - Deletable - DiscreteDelta - DownLeftVectorBar - Delete - DiscreteIndicator - DownRightTeeVector - DeleteBorderComponents - DiscreteLQEstimatorGains - DownRightVector - DeleteCases - DiscreteLQRegulatorGains - DownRightVectorBar - DeleteContents - DiscreteLyapunovSolve - DownTeeArrow - DeleteDirectory - DiscretePlot - DownValues - DeleteDuplicates - DiscretePlot3D - DragAndDrop - DeleteFile - DiscreteRatio - Drop - DeleteSmallComponents - DiscreteRiccatiSolve - DSolve - Delimiter - DiscreteShift - Dt - DelimiterFlashTime - DiscreteTimeModelQ - DualSystemsModel - Denominator - DiscreteUniformDistribution - DumpSave - DensityHistogram - DiscreteWaveletData - Dynamic - DensityPlot - DiscreteWaveletPacketTransform - DynamicEvaluationTimeout - DependentVariables - DiscreteWaveletTransform - DynamicModule - Deploy - Discriminant - DynamicModuleValues - Deployed - Disjunction - DynamicSetting - Depth - Disk - DynamicWrapper - E - E - End - ExactNumberQ - EdgeAdd - EndDialogPacket - ExampleData - EdgeCount - EndOfFile - Except - EdgeCoverQ - EndOfLine - ExcludedForms - EdgeDelete - EndOfString - ExcludePods - EdgeDetect - EndPackage - Exclusions - EdgeForm - EngineeringForm - ExclusionsStyle - EdgeIndex - EnterExpressionPacket - Exists - EdgeLabeling - EnterTextPacket - Exit - EdgeLabels - Entropy - Exp - EdgeList - EntropyFilter - Expand - EdgeQ - Environment - ExpandAll - EdgeRenderingFunction - Epilog - ExpandDenominator - EdgeRules - Equal - ExpandFileName - EdgeShapeFunction - EqualTilde - ExpandNumerator - EdgeStyle - Equilibrium - Expectation - EdgeWeight - Equivalent - ExpGammaDistribution - Editable - Erf - ExpIntegralE - EditDistance - Erfc - ExpIntegralEi - EffectiveInterest - Erfi - Exponent - Eigensystem - ErlangDistribution - ExponentFunction - Eigenvalues - Erosion - ExponentialDistribution - EigenvectorCentrality - ErrorBox - ExponentialFamily - Eigenvectors - EstimatedDistribution - ExponentialGeneratingFunction - Element - EstimatorGains - ExponentialMovingAverage - ElementData - EstimatorRegulator - ExponentialPowerDistribution - Eliminate - EuclideanDistance - ExponentStep - EllipticE - EulerE - Export - EllipticExp - EulerGamma - ExportString - EllipticExpPrime - EulerianGraphQ - Expression - EllipticF - EulerPhi - ExpressionCell - EllipticK - Evaluatable - ExpToTrig - EllipticLog - Evaluate - ExtendedGCD - EllipticNomeQ - EvaluatePacket - Extension - EllipticPi - EvaluationElements - ExtentElementFunction - EllipticTheta - EvaluationMonitor - ExtentMarkers - EllipticThetaPrime - EvaluationNotebook - ExtentSize - EmitSound - EvaluationObject - Extract - EmpiricalDistribution - Evaluator - ExtractArchive - EmptyGraphQ - EvenQ - ExtremeValueDistribution - Enabled - EventHandler - Encode - EventLabels - F - FaceForm - FindFit - FormBox - FaceGrids - FindGeneratingFunction - FortranForm - FaceGridsStyle - FindGeoLocation - Forward - Factor - FindGeometricTransform - ForwardBackward - Factorial - FindGraphIsomorphism - Fourier - Factorial2 - FindHamiltonianCycle - FourierCoefficient - FactorialMoment - FindIndependentEdgeSet - FourierCosCoefficient - FactorialMomentGeneratingFunction - FindIndependentVertexSet - FourierCosSeries - FactorialPower - FindInstance - FourierCosTransform - FactorInteger - FindIntegerNullVector - FourierDCT - FactorList - FindLibrary - FourierDST - FactorSquareFree - FindLinearRecurrence - FourierParameters - FactorSquareFreeList - FindList - FourierSequenceTransform - FactorTerms - FindMaximum - FourierSeries - FactorTermsList - FindMaxValue - FourierSinCoefficient - False - FindMinimum - FourierSinSeries - FeedbackType - FindMinValue - FourierSinTransform - Fibonacci - FindPermutation - FourierTransform - FieldHint - FindRoot - FourierTrigSeries - FieldHintStyle - FindSequenceFunction - FractionalPart - FieldMasked - FindShortestPath - FractionBox - FieldSize - FindShortestTour - Frame - FileBaseName - FindThreshold - FrameBox - FileByteCount - FindVertexCover - Framed - FileDate - FinishDynamic - FrameLabel - FileExistsQ - FiniteAbelianGroupCount - FrameMargins - FileExtension - FiniteGroupCount - FrameStyle - FileFormat - FiniteGroupData - FrameTicks - FileHash - First - FrameTicksStyle - FileNameDepth - FischerGroupFi22 - FRatioDistribution - FileNameDrop - FischerGroupFi23 - FrechetDistribution - FileNameJoin - FischerGroupFi24Prime - FreeQ - FileNames - FisherHypergeometricDistribution - FresnelC - FileNameSetter - FisherRatioTest - FresnelS - FileNameSplit - FisherZDistribution - FrobeniusNumber - FileNameTake - Fit - FrobeniusSolve - FilePrint - FittedModel - FromCharacterCode - FileType - FixedPoint - FromCoefficientRules - FilledCurve - FixedPointList - FromContinuedFraction - Filling - Flat - FromDigits - FillingStyle - Flatten - FromDMS - FillingTransform - FlattenAt - Front - FilterRules - FlipView - FrontEndDynamicExpression - FinancialBond - Floor - FrontEndEventActions - FinancialData - Fold - FrontEndExecute - FinancialDerivative - FoldList - FrontEndToken - FinancialIndicator - FontColor - FrontEndTokenExecute - Find - FontFamily - Full - FindArgMax - FontSize - FullDefinition - FindArgMin - FontSlant - FullForm - FindClique - FontSubstitutions - FullGraphics - FindClusters - FontTracking - FullSimplify - FindCurvePath - FontVariations - Function - FindDistributionParameters - FontWeight - FunctionExpand - FindDivisions - For - FunctionInterpolation - FindEdgeCover - ForAll - FunctionSpace - FindEulerianCycle - Format - FindFile - FormatType - G - GaborWavelet - GeoPositionXYZ - GraphStyle - GainMargins - GeoProjectionData - GraphUnion - GainPhaseMargins - Get - Gray - Gamma - Glaisher - GrayLevel - GammaDistribution - Glow - Greater - GammaRegularized - GoldenRatio - GreaterEqual - GapPenalty - GompertzMakehamDistribution - GreaterEqualLess - Gather - Goto - GreaterFullEqual - GatherBy - Gradient - GreaterGreater - GaussianFilter - GradientFilter - GreaterLess - GaussianIntegers - Graph - GreaterSlantEqual - GaussianMatrix - GraphCenter - GreaterTilde - GCD - GraphComplement - Green - GegenbauerC - GraphData - Grid - General - GraphDiameter - GridBox - GeneralizedLinearModelFit - GraphDifference - GridDefaultElement - GenerateConditions - GraphDisjointUnion - GridGraph - GeneratedCell - GraphDistance - GridLines - GeneratedParameters - GraphDistanceMatrix - GridLinesStyle - GeneratingFunction - GraphHighlight - GroebnerBasis - GenericCylindricalDecomposition - GraphHighlightStyle - GroupActionBase - GenomeData - Graphics - GroupCentralizer - GenomeLookup - Graphics3D - GroupElementPosition - GeodesicDilation - GraphicsColumn - GroupElementQ - GeodesicErosion - GraphicsComplex - GroupElements - GeoDestination - GraphicsGrid - GroupGenerators - GeodesyData - GraphicsGroup - GroupMultiplicationTable - GeoDirection - GraphicsRow - GroupOrbits - GeoDistance - GraphIntersection - GroupOrder - GeoGridPosition - GraphLayout - GroupPageBreakWithin - GeometricDistribution - GraphPeriphery - GroupSetwiseStabilizer - GeometricMean - GraphPlot - GroupStabilizer - GeometricMeanFilter - GraphPlot3D - GroupStabilizerChain - GeometricTransformation - GraphPower - Gudermannian - GeoPosition - GraphQ - GumbelDistribution - GeoPositionENU - GraphRadius - H - HaarWavelet - HermitianMatrixQ - Hue - HalfNormalDistribution - HessenbergDecomposition - HumpDownHump - HamiltonianGraphQ - HexadecimalCharacter - HumpEqual - HammingDistance - HighlightGraph - HurwitzLerchPhi - HankelH1 - HigmanSimsGroupHS - HurwitzZeta - HankelH2 - HilbertMatrix - HyperbolicDistribution - HankelMatrix - Histogram - HypercubeGraph - HaradaNortonGroupHN - Histogram3D - Hyperfactorial - HararyGraph - HistogramDistribution - Hypergeometric0F1 - HarmonicMean - HistogramList - Hypergeometric0F1Regularized - HarmonicMeanFilter - HitMissTransform - Hypergeometric1F1 - HarmonicNumber - HITSCentrality - Hypergeometric1F1Regularized - Hash - Hold - Hypergeometric2F1 - Haversine - HoldAll - Hypergeometric2F1Regularized - HazardFunction - HoldAllComplete - HypergeometricDistribution - Head - HoldComplete - HypergeometricPFQ - Heads - HoldFirst - HypergeometricPFQRegularized - HeavisideLambda - HoldForm - HypergeometricU - HeavisidePi - HoldPattern - Hyperlink - HeavisideTheta - HoldRest - Hyphenation - HeldGroupHe - HornerForm - HypothesisTestData - HermiteDecomposition - HotellingTSquareDistribution - HermiteH - HoytDistribution - I - I - ImportString - Interrupt - Identity - In - Intersection - IdentityMatrix - IncidenceGraph - Interval - If - IncidenceMatrix - IntervalIntersection - IgnoreCase - IncludeConstantBasis - IntervalMemberQ - Im - IncludePods - IntervalUnion - Image - Increment - Inverse - ImageAdd - IndependentEdgeSetQ - InverseBetaRegularized - ImageAdjust - IndependentVertexSetQ - InverseCDF - ImageAlign - Indeterminate - InverseChiSquareDistribution - ImageApply - IndexGraph - InverseContinuousWaveletTransform - ImageAspectRatio - InexactNumberQ - InverseDistanceTransform - ImageAssemble - Infinity - InverseEllipticNomeQ - ImageCapture - Infix - InverseErf - ImageChannels - Information - InverseErfc - ImageClip - Inherited - InverseFourier - ImageColorSpace - Initialization - InverseFourierCosTransform - ImageCompose - InitializationCell - InverseFourierSequenceTransform - ImageConvolve - Inner - InverseFourierSinTransform - ImageCooccurrence - Inpaint - InverseFourierTransform - ImageCorrelate - Input - InverseFunction - ImageCorrespondingPoints - InputAliases - InverseFunctions - ImageCrop - InputAssumptions - InverseGammaDistribution - ImageData - InputAutoReplacements - InverseGammaRegularized - ImageDeconvolve - InputField - InverseGaussianDistribution - ImageDifference - InputForm - InverseGudermannian - ImageDimensions - InputNamePacket - InverseHaversine - ImageEffect - InputNotebook - InverseJacobiCD - ImageFilter - InputPacket - InverseJacobiCN - ImageForestingComponents - InputStream - InverseJacobiCS - ImageForwardTransformation - InputString - InverseJacobiDC - ImageHistogram - InputStringPacket - InverseJacobiDN - ImageKeypoints - Insert - InverseJacobiDS - ImageLevels - InsertResults - InverseJacobiNC - ImageLines - Inset - InverseJacobiND - ImageMargins - Install - InverseJacobiNS - ImageMultiply - InstallService - InverseJacobiSC - ImagePad - InString - InverseJacobiSD - ImagePadding - Integer - InverseJacobiSN - ImagePartition - IntegerDigits - InverseLaplaceTransform - ImagePerspectiveTransformation - IntegerExponent - InversePermutation - ImageQ - IntegerLength - InverseRadon - ImageReflect - IntegerPart - InverseSeries - ImageResize - IntegerPartitions - InverseSurvivalFunction - ImageResolution - IntegerQ - InverseWaveletTransform - ImageRotate - Integers - InverseWeierstrassP - ImageScaled - IntegerString - InverseZTransform - ImageSize - Integrate - Invisible - ImageSizeAction - InteractiveTradingChart - IrreduciblePolynomialQ - ImageSizeMultipliers - Interleaving - IsolatingInterval - ImageSubtract - InternallyBalancedDecomposition - IsomorphicGraphQ - ImageTake - InterpolatingFunction - IsotopeData - ImageTransformation - InterpolatingPolynomial - Italic - ImageTrim - Interpolation - Item - ImageType - InterpolationOrder - ItemAspectRatio - ImageValue - Interpretation - ItemSize - Implies - InterpretationBox - ItemStyle - Import - InterquartileRange - J - JaccardDissimilarity - JacobiNS - JankoGroupJ4 - JacobiAmplitude - JacobiP - JarqueBeraALMTest - JacobiCD - JacobiSC - JohnsonDistribution - JacobiCN - JacobiSD - Join - JacobiCS - JacobiSN - Joined - JacobiDC - JacobiSymbol - JoinedCurve - JacobiDN - JacobiZeta - JoinForm - JacobiDS - JankoGroupJ1 - JordanDecomposition - JacobiNC - JankoGroupJ2 - JordanModelDecomposition - JacobiND - JankoGroupJ3 - K - KagiChart - KelvinKer - KolmogorovSmirnovTest - KalmanEstimator - KernelMixtureDistribution - KroneckerDelta - KarhunenLoeveDecomposition - KernelObject - KroneckerProduct - KaryTree - Kernels - KroneckerSymbol - KatzCentrality - Khinchin - KuiperTest - KCoreComponents - KirchhoffGraph - KumaraswamyDistribution - KDistribution - KirchhoffMatrix - Kurtosis - KelvinBei - KleinInvariantJ - KuwaharaFilter - KelvinBer - KnightTourGraph - KelvinKei - KnotData - L - Label - LibraryFunction - ListDensityPlot - Labeled - LibraryFunctionError - ListInterpolation - LabelingFunction - LibraryFunctionInformation - ListLineIntegralConvolutionPlot - LabelStyle - LibraryFunctionLoad - ListLinePlot - LaguerreL - LibraryFunctionUnload - ListLogLinearPlot - LandauDistribution - LibraryLoad - ListLogLogPlot - LanguageCategory - LibraryUnload - ListLogPlot - LaplaceDistribution - LiftingFilterData - ListPlay - LaplaceTransform - LiftingWaveletTransform - ListPlot - LaplacianFilter - LightBlue - ListPlot3D - LaplacianGaussianFilter - LightBrown - ListPointPlot3D - Large - LightCyan - ListPolarPlot - Larger - Lighter - ListStreamDensityPlot - Last - LightGray - ListStreamPlot - Latitude - LightGreen - ListSurfacePlot3D - LatitudeLongitude - Lighting - ListVectorDensityPlot - LatticeData - LightingAngle - ListVectorPlot - LatticeReduce - LightMagenta - ListVectorPlot3D - LaunchKernels - LightOrange - LocalizeVariables - LayeredGraphPlot - LightPink - LocationEquivalenceTest - LayerSizeFunction - LightPurple - LocationTest - LCM - LightRed - Locator - LeafCount - LightYellow - LocatorAutoCreate - LeastSquares - Likelihood - LocatorPane - Left - Limit - LocatorRegion - LeftArrow - LimitsPositioning - Locked - LeftArrowBar - LindleyDistribution - Log - LeftArrowRightArrow - Line - Log10 - LeftDownTeeVector - LinearFractionalTransform - Log2 - LeftDownVector - LinearModelFit - LogBarnesG - LeftDownVectorBar - LinearOffsetFunction - LogGamma - LeftRightArrow - LinearProgramming - LogGammaDistribution - LeftRightVector - LinearRecurrence - LogicalExpand - LeftTeeArrow - LinearSolve - LogIntegral - LeftTeeVector - LinearSolveFunction - LogisticDistribution - LeftTriangle - LineBreakChart - LogitModelFit - LeftTriangleBar - LineGraph - LogLikelihood - LeftTriangleEqual - LineIndent - LogLinearPlot - LeftUpDownVector - LineIndentMaxFraction - LogLogisticDistribution - LeftUpTeeVector - LineIntegralConvolutionPlot - LogLogPlot - LeftUpVector - LineIntegralConvolutionScale - LogNormalDistribution - LeftUpVectorBar - LineSpacing - LogPlot - LeftVector - LinkClose - LogSeriesDistribution - LeftVectorBar - LinkConnect - Longest - LegendAppearance - LinkCreate - LongestCommonSequence - Legended - LinkFunction - LongestCommonSubsequence - LegendreP - LinkInterrupt - Longitude - LegendreQ - LinkLaunch - LongLeftArrow - Length - LinkObject - LongLeftRightArrow - LengthWhile - LinkPatterns - LongRightArrow - LerchPhi - LinkProtocol - LoopFreeGraphQ - Less - LinkRead - LowerCaseQ - LessEqual - LinkReadyQ - LowerLeftArrow - LessEqualGreater - Links - LowerRightArrow - LessFullEqual - LinkWrite - LowerTriangularize - LessGreater - LiouvilleLambda - LQEstimatorGains - LessLess - List - LQGRegulator - LessSlantEqual - Listable - LQOutputRegulatorGains - LessTilde - ListAnimate - LQRegulatorGains - LetterCharacter - ListContourPlot - LucasL - LetterQ - ListContourPlot3D - LUDecomposition - Level - ListConvolve - LyapunovSolve - LeveneTest - ListCorrelate - LyonsGroupLy - LeviCivitaTensor - ListCurvePathPlot - LevyDistribution - ListDeconvolve - M - MachineNumberQ - MaxDetect - MinDetect - MachinePrecision - MaxExtraBandwidths - MinFilter - Magenta - MaxExtraConditions - MinimalPolynomial - Magnification - MaxFilter - MinimalStateSpaceModel - Magnify - Maximize - Minimize - Majority - MaxIterations - Minors - MakeBoxes - MaxMemoryUsed - MinStableDistribution - MakeExpression - MaxMixtureKernels - Minus - MangoldtLambda - MaxPlotPoints - MinusPlus - ManhattanDistance - MaxRecursion - MinValue - Manipulate - MaxStableDistribution - Missing - Manipulator - MaxStepFraction - MixtureDistribution - MannWhitneyTest - MaxSteps - Mod - MantissaExponent - MaxStepSize - Modal - Manual - MaxValue - ModularLambda - Map - MaxwellDistribution - Module - MapAll - McLaughlinGroupMcL - Modulus - MapAt - Mean - MoebiusMu - MapIndexed - MeanDeviation - Moment - MapThread - MeanFilter - MomentConvert - MarcumQ - MeanShift - MomentEvaluate - MardiaCombinedTest - MeanShiftFilter - MomentGeneratingFunction - MardiaKurtosisTest - Median - Monitor - MardiaSkewnessTest - MedianDeviation - MonomialList - MarginalDistribution - MedianFilter - MonsterGroupM - Masking - Medium - MorletWavelet - MatchingDissimilarity - MeijerG - MorphologicalBinarize - MatchLocalNames - MemberQ - MorphologicalBranchPoints - MatchQ - MemoryConstrained - MorphologicalComponents - MathieuC - MemoryInUse - MorphologicalEulerNumber - MathieuCharacteristicA - MenuCommandKey - MorphologicalGraph - MathieuCharacteristicB - MenuPacket - MorphologicalPerimeter - MathieuCharacteristicExponent - MenuSortingValue - MorphologicalTransform - MathieuCPrime - MenuStyle - Most - MathieuGroupM11 - MenuView - MouseAnnotation - MathieuGroupM12 - Mesh - MouseAppearance - MathieuGroupM22 - MeshFunctions - Mouseover - MathieuGroupM23 - MeshShading - MousePosition - MathieuGroupM24 - MeshStyle - MovingAverage - MathieuS - Message - MovingMedian - MathieuSPrime - MessageDialog - MoyalDistribution - MathMLForm - MessageList - MultiedgeStyle - MatrixExp - MessageName - Multinomial - MatrixForm - MessagePacket - MultinomialDistribution - MatrixPlot - Messages - MultinormalDistribution - MatrixPower - Method - MultiplicativeOrder - MatrixQ - MexicanHatWavelet - MultivariateHypergeometricDistribution - MatrixRank - MeyerWavelet - MultivariatePoissonDistribution - Max - Min - MultivariateTDistribution - N - N - NormalizedSquaredEuclideanDistance - NotPrecedesSlantEqual - NakagamiDistribution - NormalsFunction - NotPrecedesTilde - NameQ - NormFunction - NotReverseElement - Names - Not - NotRightTriangle - Nand - NotCongruent - NotRightTriangleBar - NArgMax - NotCupCap - NotRightTriangleEqual - NArgMin - NotDoubleVerticalBar - NotSquareSubset - NCache - Notebook - NotSquareSubsetEqual - NDSolve - NotebookApply - NotSquareSuperset - Nearest - NotebookAutoSave - NotSquareSupersetEqual - NearestFunction - NotebookClose - NotSubset - NeedlemanWunschSimilarity - NotebookDelete - NotSubsetEqual - Needs - NotebookDirectory - NotSucceeds - Negative - NotebookDynamicExpression - NotSucceedsEqual - NegativeBinomialDistribution - NotebookEvaluate - NotSucceedsSlantEqual - NegativeMultinomialDistribution - NotebookEventActions - NotSucceedsTilde - NeighborhoodGraph - NotebookFileName - NotSuperset - Nest - NotebookFind - NotSupersetEqual - NestedGreaterGreater - NotebookGet - NotTilde - NestedLessLess - NotebookInformation - NotTildeEqual - NestList - NotebookLocate - NotTildeFullEqual - NestWhile - NotebookObject - NotTildeTilde - NestWhileList - NotebookOpen - NotVerticalBar - NevilleThetaC - NotebookPrint - NProbability - NevilleThetaD - NotebookPut - NProduct - NevilleThetaN - NotebookRead - NRoots - NevilleThetaS - Notebooks - NSolve - NExpectation - NotebookSave - NSum - NextPrime - NotebookSelection - Null - NHoldAll - NotebookWrite - NullRecords - NHoldFirst - NotElement - NullSpace - NHoldRest - NotEqualTilde - NullWords - NicholsGridLines - NotExists - Number - NicholsPlot - NotGreater - NumberFieldClassNumber - NIntegrate - NotGreaterEqual - NumberFieldDiscriminant - NMaximize - NotGreaterFullEqual - NumberFieldFundamentalUnits - NMaxValue - NotGreaterGreater - NumberFieldIntegralBasis - NMinimize - NotGreaterLess - NumberFieldNormRepresentatives - NMinValue - NotGreaterSlantEqual - NumberFieldRegulator - NominalVariables - NotGreaterTilde - NumberFieldRootsOfUnity - NoncentralBetaDistribution - NotHumpDownHump - NumberFieldSignature - NoncentralChiSquareDistribution - NotHumpEqual - NumberForm - NoncentralFRatioDistribution - NotLeftTriangle - NumberFormat - NoncentralStudentTDistribution - NotLeftTriangleBar - NumberMarks - NonCommutativeMultiply - NotLeftTriangleEqual - NumberMultiplier - NonConstants - NotLess - NumberPadding - None - NotLessEqual - NumberPoint - NonlinearModelFit - NotLessFullEqual - NumberQ - NonNegative - NotLessGreater - NumberSeparator - NonPositive - NotLessLess - NumberSigns - Nor - NotLessSlantEqual - NumberString - NorlundB - NotLessTilde - Numerator - Norm - NotNestedGreaterGreater - NumericFunction - Normal - NotNestedLessLess - NumericQ - NormalDistribution - NotPrecedes - NyquistGridLines - Normalize - NotPrecedesEqual - NyquistPlot - O - O - Operate - OutputForm - ObservabilityGramian - OperatingSystem - OutputNamePacket - ObservabilityMatrix - Optional - OutputResponse - ObservableDecomposition - Options - OutputSizeLimit - ObservableModelQ - OptionsPattern - OutputStream - OddQ - OptionValue - OverBar - Off - Or - OverDot - Offset - Orange - Overflow - On - Order - OverHat - ONanGroupON - OrderDistribution - Overlaps - OneIdentity - OrderedQ - Overlay - Opacity - Ordering - Overscript - OpenAppend - Orderless - OverscriptBox - Opener - Orthogonalize - OverTilde - OpenerView - Out - OverVector - Opening - Outer - OwenT - OpenRead - OutputControllabilityMatrix - OwnValues - OpenWrite - OutputControllableModelQ - P - PackingMethod - PermutationList - PopupMenu - PaddedForm - PermutationListQ - PopupView - Padding - PermutationMax - PopupWindow - PadeApproximant - PermutationMin - Position - PadLeft - PermutationOrder - Positive - PadRight - PermutationPower - PositiveDefiniteMatrixQ - PageBreakAbove - PermutationProduct - PossibleZeroQ - PageBreakBelow - PermutationReplace - Postfix - PageBreakWithin - Permutations - Power - PageFooters - PermutationSupport - PowerDistribution - PageHeaders - Permute - PowerExpand - PageRankCentrality - PeronaMalikFilter - PowerMod - PageWidth - PERTDistribution - PowerModList - PairedBarChart - PetersenGraph - PowersRepresentations - PairedHistogram - PhaseMargins - PowerSymmetricPolynomial - PairedTTest - Pi - PrecedenceForm - PairedZTest - Pick - Precedes - PaletteNotebook - Piecewise - PrecedesEqual - Pane - PiecewiseExpand - PrecedesSlantEqual - Panel - PieChart - PrecedesTilde - Paneled - PieChart3D - Precision - PaneSelector - Pink - PrecisionGoal - ParabolicCylinderD - PixelConstrained - PreDecrement - ParagraphIndent - PixelValue - PreemptProtect - ParagraphSpacing - Placed - Prefix - ParallelArray - Placeholder - PreIncrement - ParallelCombine - PlaceholderReplace - Prepend - ParallelDo - Plain - PrependTo - ParallelEvaluate - Play - PreserveImageOptions - Parallelization - PlayRange - PriceGraphDistribution - Parallelize - Plot - Prime - ParallelMap - Plot3D - PrimeNu - ParallelNeeds - PlotLabel - PrimeOmega - ParallelProduct - PlotLayout - PrimePi - ParallelSubmit - PlotMarkers - PrimePowerQ - ParallelSum - PlotPoints - PrimeQ - ParallelTable - PlotRange - Primes - ParallelTry - PlotRangeClipping - PrimeZetaP - ParameterEstimator - PlotRangePadding - PrimitiveRoot - ParameterMixtureDistribution - PlotRegion - PrincipalComponents - ParametricPlot - PlotStyle - PrincipalValue - ParametricPlot3D - Plus - Print - ParentDirectory - PlusMinus - PrintingStyleEnvironment - ParetoDistribution - Pochhammer - PrintTemporary - Part - PodStates - Probability - ParticleData - PodWidth - ProbabilityDistribution - Partition - Point - ProbabilityPlot - PartitionsP - PointFigureChart - ProbabilityScalePlot - PartitionsQ - PointSize - ProbitModelFit - PascalDistribution - PoissonConsulDistribution - Product - PassEventsDown - PoissonDistribution - ProductDistribution - PassEventsUp - PolarAxes - ProductLog - Paste - PolarAxesOrigin - ProgressIndicator - PasteButton - PolarGridLines - Projection - Path - PolarPlot - Prolog - PathGraph - PolarTicks - Properties - PathGraphQ - PoleZeroMarkers - Property - Pattern - PolyaAeppliDistribution - PropertyList - PatternSequence - PolyGamma - PropertyValue - PatternTest - Polygon - Proportion - PauliMatrix - PolyhedronData - Proportional - PaulWavelet - PolyLog - Protect - Pause - PolynomialExtendedGCD - Protected - PDF - PolynomialGCD - ProteinData - PearsonChiSquareTest - PolynomialLCM - Pruning - PearsonDistribution - PolynomialMod - PseudoInverse - PerformanceGoal - PolynomialQ - Purple - PermutationCycles - PolynomialQuotient - Put - PermutationCyclesQ - PolynomialQuotientRemainder - PutAppend - PermutationGroup - PolynomialReduce - PermutationLength - PolynomialRemainder - Q - QBinomial - QRDecomposition - Quartiles - QFactorial - QuadraticIrrationalQ - QuartileSkewness - QGamma - Quantile - Quiet - QHypergeometricPFQ - QuantilePlot - Quit - QPochhammer - Quartics - Quotient - QPolyGamma - QuartileDeviation - QuotientRemainder - R - RadicalBox - RefreshRate - RightArrowBar - RadioButton - RegionBinarize - RightArrowLeftArrow - RadioButtonBar - RegionFunction - RightCosetRepresentative - Radon - RegionPlot - RightDownTeeVector - RamanujanTau - RegionPlot3D - RightDownVector - RamanujanTauL - RegularExpression - RightDownVectorBar - RamanujanTauTheta - Regularization - RightTeeArrow - RamanujanTauZ - ReleaseHold - RightTeeVector - RandomChoice - ReliefImage - RightTriangle - RandomComplex - ReliefPlot - RightTriangleBar - RandomGraph - Remove - RightTriangleEqual - RandomImage - RemoveAlphaChannel - RightUpDownVector - RandomInteger - RemoveProperty - RightUpTeeVector - RandomPermutation - RemoveScheduledTask - RightUpVector - RandomPrime - RenameDirectory - RightUpVectorBar - RandomReal - RenameFile - RightVector - RandomSample - RenkoChart - RightVectorBar - RandomVariate - Repeated - RogersTanimotoDissimilarity - Range - RepeatedNull - Root - RangeFilter - Replace - RootApproximant - RankedMax - ReplaceAll - RootIntervals - RankedMin - ReplaceList - RootLocusPlot - Raster - ReplacePart - RootMeanSquare - Rasterize - ReplaceRepeated - RootOfUnityQ - RasterSize - Resampling - RootReduce - Rational - Rescale - Roots - Rationalize - RescalingTransform - RootSum - Rationals - ResetDirectory - Rotate - Ratios - ResetScheduledTask - RotateLabel - RawBoxes - Residue - RotateLeft - RawData - Resolve - RotateRight - RayleighDistribution - Rest - RotationAction - Re - Resultant - RotationMatrix - Read - ResumePacket - RotationTransform - ReadList - Return - Round - ReadProtected - ReturnExpressionPacket - RoundingRadius - Real - ReturnPacket - Row - RealBlockDiagonalForm - ReturnTextPacket - RowAlignments - RealDigits - Reverse - RowBox - RealExponent - ReverseBiorthogonalSplineWavelet - RowLines - Reals - ReverseElement - RowMinHeight - Reap - ReverseEquilibrium - RowReduce - Record - ReverseGraph - RowsEqual - RecordLists - ReverseUpEquilibrium - RowSpacings - RecordSeparators - RevolutionAxis - RSolve - Rectangle - RevolutionPlot3D - RudvalisGroupRu - RectangleChart - RGBColor - Rule - RectangleChart3D - RiccatiSolve - RuleDelayed - RecurrenceTable - RiceDistribution - Run - Red - RidgeFilter - RunScheduledTask - Reduce - RiemannR - RunThrough - ReferenceLineStyle - RiemannSiegelTheta - RuntimeAttributes - Refine - RiemannSiegelZ - RuntimeOptions - ReflectionMatrix - Riffle - RussellRaoDissimilarity - ReflectionTransform - Right - Refresh - RightArrow - S - SameQ - Sin - StationaryWaveletPacketTransform - SameTest - Sinc - StationaryWaveletTransform - SampleDepth - SinghMaddalaDistribution - StatusArea - SampledSoundFunction - SingleLetterItalics - StepMonitor - SampledSoundList - SingularValueDecomposition - StieltjesGamma - SampleRate - SingularValueList - StirlingS1 - SamplingPeriod - SingularValuePlot - StirlingS2 - SatisfiabilityCount - Sinh - StopScheduledTask - SatisfiabilityInstances - SinhIntegral - StreamColorFunction - SatisfiableQ - SinIntegral - StreamColorFunctionScaling - Save - SixJSymbol - StreamDensityPlot - SaveDefinitions - Skeleton - StreamPlot - SawtoothWave - SkeletonTransform - StreamPoints - Scale - SkellamDistribution - StreamPosition - Scaled - Skewness - Streams - ScalingFunctions - SkewNormalDistribution - StreamScale - ScalingMatrix - Skip - StreamStyle - ScalingTransform - Slider - String - Scan - Slider2D - StringCases - ScheduledTaskObject - SlideView - StringCount - ScheduledTasks - Slot - StringDrop - SchurDecomposition - SlotSequence - StringExpression - ScientificForm - Small - StringForm - ScreenStyleEnvironment - SmallCircle - StringFormat - ScriptBaselineShifts - Smaller - StringFreeQ - ScriptMinSize - SmithWatermanSimilarity - StringInsert - ScriptSizeMultipliers - SmoothDensityHistogram - StringJoin - Scrollbars - SmoothHistogram - StringLength - ScrollPosition - SmoothHistogram3D - StringMatchQ - Sec - SmoothKernelDistribution - StringPosition - Sech - SokalSneathDissimilarity - StringQ - SechDistribution - Solve - StringReplace - SectorChart - SolveAlways - StringReplaceList - SectorChart3D - Sort - StringReplacePart - SectorOrigin - SortBy - StringReverse - SectorSpacing - Sound - StringSkeleton - SeedRandom - SoundNote - StringSplit - Select - SoundVolume - StringTake - Selectable - Sow - StringToStream - SelectComponents - Spacer - StringTrim - SelectedNotebook - Spacings - StructuredSelection - SelectionAnimate - Span - StruveH - SelectionCreateCell - SpanFromAbove - StruveL - SelectionEvaluate - SpanFromBoth - Stub - SelectionEvaluateCreateCell - SpanFromLeft - StudentTDistribution - SelectionMove - SparseArray - Style - SelfLoopStyle - Speak - StyleBox - SemialgebraicComponentInstances - Specularity - StyleData - SendMail - SpellingCorrection - StyleDefinitions - Sequence - Sphere - Subfactorial - SequenceAlignment - SphericalBesselJ - Subgraph - SequenceHold - SphericalBesselY - SubMinus - Series - SphericalHankelH1 - SubPlus - SeriesCoefficient - SphericalHankelH2 - Subresultants - SeriesData - SphericalHarmonicY - Subscript - SessionTime - SphericalPlot3D - SubscriptBox - Set - SphericalRegion - Subset - SetAccuracy - SpheroidalEigenvalue - SubsetEqual - SetAlphaChannel - SpheroidalJoiningFactor - Subsets - SetAttributes - SpheroidalPS - SubStar - SetDelayed - SpheroidalPSPrime - Subsuperscript - SetDirectory - SpheroidalQS - SubsuperscriptBox - SetFileDate - SpheroidalQSPrime - Subtract - SetOptions - SpheroidalRadialFactor - SubtractFrom - SetPrecision - SpheroidalS1 - Succeeds - SetProperty - SpheroidalS1Prime - SucceedsEqual - SetSelectedNotebook - SpheroidalS2 - SucceedsSlantEqual - SetSharedFunction - SpheroidalS2Prime - SucceedsTilde - SetSharedVariable - Splice - SuchThat - SetStreamPosition - SplineClosed - Sum - SetSystemOptions - SplineDegree - SumConvergence - Setter - SplineKnots - SuperDagger - SetterBar - SplineWeights - SuperMinus - Setting - Split - SuperPlus - Shallow - SplitBy - Superscript - ShannonWavelet - SpokenString - SuperscriptBox - ShapiroWilkTest - Sqrt - Superset - Share - SqrtBox - SupersetEqual - Sharpen - Square - SuperStar - ShearingMatrix - SquaredEuclideanDistance - SurvivalDistribution - ShearingTransform - SquareFreeQ - SurvivalFunction - Short - SquareIntersection - SuspendPacket - ShortDownArrow - SquaresR - SuzukiDistribution - Shortest - SquareSubset - SuzukiGroupSuz - ShortestPathFunction - SquareSubsetEqual - Switch - ShortLeftArrow - SquareSuperset - Symbol - ShortRightArrow - SquareSupersetEqual - SymbolName - ShortUpArrow - SquareUnion - SymletWavelet - Show - SquareWave - SymmetricGroup - ShowAutoStyles - StabilityMargins - SymmetricMatrixQ - ShowCellBracket - StabilityMarginsStyle - SymmetricPolynomial - ShowCellLabel - StableDistribution - SymmetricReduction - ShowCellTags - Stack - SynchronousInitialization - ShowCursorTracker - StackBegin - SynchronousUpdating - ShowGroupOpener - StackComplete - SyntaxInformation - ShowPageBreaks - StackInhibit - SyntaxLength - ShowSelection - StandardDeviation - SyntaxPacket - ShowSpecialCharacters - StandardDeviationFilter - SyntaxQ - ShowStringCharacters - StandardForm - SystemDialogInput - ShrinkingDelay - Standardize - SystemInformation - SiegelTheta - Star - SystemOpen - SiegelTukeyTest - StarGraph - SystemOptions - Sign - StartingStepSize - SystemsModelDelete - Signature - StartOfLine - SystemsModelDimensions - SignedRankTest - StartOfString - SystemsModelExtract - SignificanceLevel - StartScheduledTask - SystemsModelFeedbackConnect - SignPadding - StateFeedbackGains - SystemsModelLabels - SignTest - StateOutputEstimator - SystemsModelOrder - SimilarityRules - StateResponse - SystemsModelParallelConnect - SimpleGraph - StateSpaceModel - SystemsModelSeriesConnect - SimpleGraphQ - StateSpaceRealization - SystemsModelStateFeedbackConnect - Simplify - StateSpaceTransform - T - Table - Tilde - TraceOn - TableAlignments - TildeEqual - TraceOriginal - TableDepth - TildeFullEqual - TracePrint - TableDirections - TildeTilde - TraceScan - TableForm - TimeConstrained - TrackedSymbols - TableHeadings - TimeConstraint - TradingChart - TableSpacing - Times - TraditionalForm - TabView - TimesBy - TransferFunctionCancel - TagBox - TimeUsed - TransferFunctionExpand - TaggingRules - TimeValue - TransferFunctionFactor - TagSet - TimeZone - TransferFunctionModel - TagSetDelayed - Timing - TransferFunctionPoles - TagUnset - Tiny - TransferFunctionZeros - Take - TitsGroupT - TransformationFunction - TakeWhile - ToBoxes - TransformationFunctions - Tally - ToCharacterCode - TransformationMatrix - Tan - ToContinuousTimeModel - TransformedDistribution - Tanh - ToDiscreteTimeModel - Translate - TargetFunctions - ToeplitzMatrix - TranslationTransform - TautologyQ - ToExpression - Transparent - Temporary - Together - Transpose - TeXForm - Toggler - TreeForm - Text - TogglerBar - TreeGraph - TextAlignment - TokenWords - TreeGraphQ - TextCell - Tolerance - TreePlot - TextClipboardType - ToLowerCase - TrendStyle - TextData - ToNumberField - TriangleWave - TextJustification - Tooltip - TriangularDistribution - TextPacket - TooltipDelay - Trig - TextRecognize - Top - TrigExpand - Texture - TopHatTransform - TrigFactor - TextureCoordinateFunction - TopologicalSort - TrigFactorList - TextureCoordinateScaling - ToRadicals - Trigger - Therefore - ToRules - TrigReduce - Thick - ToString - TrigToExp - Thickness - Total - TrimmedMean - Thin - TotalVariationFilter - True - Thinning - TotalWidth - TrueQ - ThompsonGroupTh - ToUpperCase - TruncatedDistribution - Thread - Tr - TTest - ThreeJSymbol - Trace - Tube - Threshold - TraceAbove - TukeyLambdaDistribution - Through - TraceBackward - Tuples - Throw - TraceDepth - TuranGraph - Thumbnail - TraceDialog - TuringMachine - Ticks - TraceForward - TicksStyle - TraceOff - U - Uncompress - UniformSumDistribution - UpArrowBar - Undefined - Uninstall - UpArrowDownArrow - UnderBar - Union - Update - Underflow - UnionPlus - UpdateInterval - Underlined - Unique - UpDownArrow - Underoverscript - UnitBox - UpEquilibrium - UnderoverscriptBox - Unitize - UpperCaseQ - Underscript - UnitStep - UpperLeftArrow - UnderscriptBox - UnitTriangle - UpperRightArrow - UndirectedEdge - UnitVector - UpperTriangularize - UndirectedGraph - Unprotect - UpSet - UndirectedGraphQ - UnsameQ - UpSetDelayed - Unequal - UnsavedVariables - UpTeeArrow - Unevaluated - Unset - UpValues - UniformDistribution - UnsetShared - UsingFrontEnd - UniformGraphDistribution - UpArrow - V - ValidationLength - VertexAdd - VertexReplace - ValueQ - VertexColors - VertexShape - Variables - VertexComponent - VertexShapeFunction - Variance - VertexCoordinateRules - VertexSize - VarianceEquivalenceTest - VertexCoordinates - VertexStyle - VarianceEstimatorFunction - VertexCount - VertexTextureCoordinates - VarianceTest - VertexCoverQ - VertexWeight - VectorAngle - VertexDegree - VerticalBar - VectorColorFunction - VertexDelete - VerticalSeparator - VectorColorFunctionScaling - VertexEccentricity - VerticalSlider - VectorDensityPlot - VertexInComponent - VerticalTilde - VectorPlot - VertexInDegree - ViewAngle - VectorPlot3D - VertexIndex - ViewCenter - VectorPoints - VertexLabeling - ViewMatrix - VectorQ - VertexLabels - ViewPoint - VectorScale - VertexList - ViewRange - VectorStyle - VertexNormals - ViewVector - Vee - VertexOutComponent - ViewVertical - Verbatim - VertexOutDegree - Visible - VerifyConvergence - VertexQ - VonMisesDistribution - VerifyTestAssumptions - VertexRenderingFunction - W - WaitAll - WeierstrassHalfPeriods - WindowFloating - WaitNext - WeierstrassInvariants - WindowFrame - WakebyDistribution - WeierstrassP - WindowMargins - WalleniusHypergeometricDistribution - WeierstrassPPrime - WindowMovable - WaringYuleDistribution - WeierstrassSigma - WindowOpacity - WatershedComponents - WeierstrassZeta - WindowSize - WatsonUSquareTest - WeightedAdjacencyGraph - WindowStatusArea - WattsStrogatzGraphDistribution - WeightedAdjacencyMatrix - WindowTitle - WaveletBestBasis - WeightedGraphQ - WindowToolbars - WaveletFilterCoefficients - Weights - With - WaveletImagePlot - WheelGraph - WolframAlpha - WaveletListPlot - Which - Word - WaveletMapIndexed - While - WordBoundary - WaveletMatrixPlot - White - WordCharacter - WaveletPhi - Whitespace - WordData - WaveletPsi - WhitespaceCharacter - WordSearch - WaveletScale - WhittakerM - WordSeparators - WaveletScalogram - WhittakerW - WorkingPrecision - WaveletThreshold - WienerFilter - Write - WeatherData - WignerD - WriteString - WeberE - WignerSemicircleDistribution - Wronskian - Wedge - WindowClickSelect - WeibullDistribution - WindowElements - X - XMLElement - Xnor - XMLObject - Xor - Y - Yellow - YuleDissimilarity - Z - ZernikeR - ZetaZero - ZTransform - ZeroTest - ZipfDistribution - Zeta - ZTest - $ - $Aborted - $Inspector - $OutputSizeLimit - $AssertFunction - $InstallationDirectory - $Packages - $Assumptions - $IterationLimit - $ParentLink - $BaseDirectory - $KernelCount - $ParentProcessID - $BatchInput - $KernelID - $Path - $BatchOutput - $Language - $PathnameSeparator - $ByteOrdering - $LibraryPath - $PerformanceGoal - $Canceled - $LicenseExpirationDate - $Post - $CharacterEncoding - $LicenseID - $Pre - $CharacterEncodings - $LicenseServer - $PrePrint - $CommandLine - $Line - $PreRead - $CompilationTarget - $Linked - $ProcessID - $ConfiguredKernels - $MachineAddresses - $ProcessorCount - $Context - $MachineDomains - $ProcessorType - $ContextPath - $MachineEpsilon - $RecursionLimit - $ControlActiveSetting - $MachineID - $ReleaseNumber - $CreationDate - $MachineName - $RootDirectory - $CurrentLink - $MachinePrecision - $ScheduledTask - $DateStringFormat - $MachineType - $ScriptCommandLine - $DefaultImagingDevice - $MaxExtraPrecision - $SessionID - $Display - $MaxMachineNumber - $SharedFunctions - $DisplayFunction - $MaxNumber - $SharedVariables - $DistributedContexts - $MaxPiecewiseCases - $SoundDisplayFunction - $DynamicEvaluation - $MaxPrecision - $SyntaxHandler - $Echo - $MaxRootDegree - $System - $Epilog - $MessageGroups - $SystemCharacterEncoding - $ExportFormats - $MessageList - $SystemID - $Failed - $MessagePrePrint - $SystemWordLength - $FrontEnd - $Messages - $TemporaryDirectory - $FrontEndSession - $MinMachineNumber - $TimedOut - $GeoLocation - $MinNumber - $TimeUnit - $HistoryLength - $MinPrecision - $TimeZone - $HomeDirectory - $ModuleNumber - $Urgent - $IgnoreEOF - $NewMessage - $UserBaseDirectory - $ImagingDevices - $NewSymbol - $UserDocumentsDirectory - $ImportFormats - $Notebooks - $UserName - $InitialDirectory - $NumberMarks - $Version - $Input - $OperatingSystem - $VersionNumber - $InputFileName - $Output - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/matlab.xml ktexteditor-5.31.0/src/syntax/data/matlab.xml --- ktexteditor-5.28.0/src/syntax/data/matlab.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/matlab.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,230 +0,0 @@ - - - - - - - - - - - break - case - catch - classdef - continue - else - elseif - end - for - function - global - if - otherwise - parfor - persistent - return - spmd - switch - try - while - methods - properties - events - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/maxima.xml ktexteditor-5.31.0/src/syntax/data/maxima.xml --- ktexteditor-5.28.0/src/syntax/data/maxima.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/maxima.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1890 +0,0 @@ - - - - - - - - - - and - do - else - elseif - false - for - if - in - not - or - step - then - thru - true - while - - - - FIXME - TODO - - - - abasep - abs - absint - absolute_real_time - acos - acosh - acot - acoth - acsc - acsch - activate - addcol - add_edge - add_edges - addmatrices - addrow - add_vertex - add_vertices - adjacency_matrix - adjoin - adjoint - af - agd - airy_ai - airy_bi - airy_dai - airy_dbi - algsys - alg_type - alias - allroots - alphacharp - alphanumericp - antid - antidiff - AntiDifference - append - appendfile - apply - apply1 - apply2 - applyb1 - apropos - args - arithmetic - arithsum - array - arrayapply - arrayinfo - arraymake - ascii - asec - asech - asin - asinh - askinteger - asksign - assoc - assoc_legendre_p - assoc_legendre_q - assume - asympa - at - atan - atan2 - atanh - atensimp - atom - atvalue - augcoefmatrix - augmented_lagrangian_method - av - average_degree - backtrace - barsplot - bashindices - batch - batchload - bc2 - bdvac - belln - bern - bernpoly - bessel - bessel_i - bessel_j - bessel_k - bessel_y - beta - bezout - bffac - bfhzeta - bfloat - bfloatp - bfpsi - bfpsi0 - bfzeta - biconected_components - bimetric - binomial - bipartition - block - blockmatrixp - bode_gain - bode_phase - bothcoef - box - boxplot - break - bug_report - build_info - buildq - burn - cabs - canform - canten - cardinality - carg - cartan - cartesian_product - catch - cbffac - cdf_bernoulli - cdf_beta - cdf_binomial - cdf_cauchy - cdf_chi2 - cdf_continuous_uniform - cdf_discrete_uniform - cdf_exp - cdf_f - cdf_gamma - cdf_geometric - cdf_gumbel - cdf_hypergeometric - cdf_laplace - cdf_logistic - cdf_lognormal - cdf_negative_binomial - cdf_normal - cdf_pareto - cdf_poisson - cdf_rank_sum - cdf_rayleigh - cdf_signed_rank - cdf_student_t - cdf_weibull - cdisplay - ceiling - central_moment - cequal - cequalignore - cf - cfdisrep - cfexpand - cgeodesic - cgreaterp - cgreaterpignore - changename - changevar - chaosgame - charat - charfun - charfun2 - charlist - charp - charpoly - chebyshev_t - chebyshev_u - checkdiv - check_overlaps - cholesky - christof - chromatic_index - chromatic_number - cint - circulant_graph - clear_edge_weight - clear_rules - clear_vertex_label - clebsch_graph - clessp - clesspignore - close - closefile - cmetric - coeff - coefmatrix - cograd - col - collapse - collectterms - columnop - columnspace - columnswap - columnvector - combination - combine - comp2pui - compare - compfile - compile - compile_file - complement_graph - complete_bipartite_graph - complete_graph - components - concan - concat - conjugate - conmetderiv - connected_components - connect_vertices - cons - constantp - constituent - cont2part - content - continuous_freq - contortion - contour_plot - contract - contract_edge - contragrad - contrib_ode - convert - coord - copy - copy_graph - copylist - copymatrix - cor - cos - cosh - cot - coth - cov - cov1 - covdiff - covect - covers - create_graph - create_list - csc - csch - csetup - cspline - ctaylor - ct_coordsys - ctransform - ctranspose - cube_graph - cunlisp - cv - cycle_digraph - cycle_graph - dblint - deactivate - declare - declare_translated - declare_weight - decsym - defcon - define - define_variable - defint - defmatch - defrule - deftaylor - degree_sequence - del - delete - deleten - delta - demo - demoivre - denom - depends - derivdegree - derivlist - describe - desolve - determinant - dgauss_a - dgauss_b - dgeev - dgesvd - diag - diagmatrix - diag_matrix - diagmatrixp - diameter - diff - digitcharp - dimacs_export - dimacs_import - dimension - direct - discrete_freq - disjoin - disjointp - disolate - disp - dispcon - dispform - dispfun - dispJordan - display - disprule - dispterms - distrib - divide - divisors - divsum - dkummer_m - dkummer_u - dlange - dodecahedron_graph - dotproduct - dotsimp - dpart - draw - draw2d - draw3d - draw_graph - dscalar - echelon - edge_coloring - edges - eigens_by_jacobi - eigenvalues - eigenvectors - eighth - einstein - eivals - eivects - elapsed_real_time - elapsed_run_time - ele2comp - ele2polynome - ele2pui - elem - elementp - eliminate - elliptic_e - elliptic_ec - elliptic_eu - elliptic_f - elliptic_kc - elliptic_pi - ematrix - empty_graph - emptyp - endcons - entermatrix - entertensor - entier - equal - equalp - equiv_classes - erf - errcatch - error - errormsg - euler - ev - eval_string - evenp - every - evolution - evolution2d - evundiff - example - exp - expand - expandwrt - expandwrt_factored - explose - exponentialize - express - expt - exsec - extdiff - extract_linear_equations - extremal_subset - ezgcd - f90 - facsum - factcomb - factor - factorfacsum - factorial - factorout - factorsum - facts - fast_central_elements - fast_linsolve - fasttimes - featurep - fft - fib - fibtophi - fifth - filename_merge - file_search - file_type - fillarray - findde - find_root - first - fix - flatten - flength - float - floatnump - floor - flower_snark - flush - flush1deriv - flushd - flushnd - forget - fortran - fourcos - fourexpand - fourier - fourint - fourintcos - fourintsin - foursimp - foursin - fourth - fposition - frame_bracket - freeof - freshline - from_adjacency_matrix - frucht_graph - full_listify - fullmap - fullmapl - fullratsimp - fullratsubst - fullsetify - funcsolve - fundef - funmake - funp - gamma - gauss_a - gauss_b - gaussprob - gcd - gcdex - gcdivide - gcfac - gcfactor - gd - genfact - gen_laguerre - genmatrix - geometric - geometric_mean - geosum - get - get_edge_weight - get_lu_factors - get_pixel - get_vertex_label - gfactor - gfactorsum - ggf - girth - global_variances - gnuplot_close - gnuplot_replot - gnuplot_reset - gnuplot_restart - gnuplot_start - go - Gosper - GosperSum - gradef - gramschmidt - graph6_decode - graph6_encode - graph6_export - graph6_import - graph_center - graph_charpoly - graph_eigenvalues - graph_order - graph_periphery - graph_product - graph_size - graph_union - grid_graph - grind - grobner_basis - grotzch_graph - hamilton_cycle - hamilton_path - hankel - harmonic - harmonic_mean - hav - heawood_graph - hermite - hessian - hilbert_matrix - hipow - histogram - hodge - horner - ic1 - ic2 - ic_convert - ichr1 - ichr2 - icosahedron_graph - icurvature - ident - identfor - identity - idiff - idim - idummy - ieqn - ifactors - iframes - ifs - ift - igeodesic_coords - ilt - imagpart - imetric - implicit_derivative - implicit_plot - indexed_tensor - indices - induced_subgraph - inferencep - inference_result - infix - init_atensor - init_ctensor - in_neighbors - innerproduct - inpart - inprod - inrt - integerp - integer_partitions - integrate - intersect - intersection - intervalp - intopois - intosum - invariant1 - invariant2 - inverse_jacobi_cd - inverse_jacobi_cn - inverse_jacobi_cs - inverse_jacobi_dc - inverse_jacobi_dn - inverse_jacobi_ds - inverse_jacobi_nc - inverse_jacobi_nd - inverse_jacobi_ns - inverse_jacobi_sc - inverse_jacobi_sd - inverse_jacobi_sn - invert - invert_by_lu - inv_mod - is - is_biconnected - is_bipartite - is_connected - is_digraph - is_edge_in_graph - is_graph - is_graph_or_digraph - ishow - is_isomorphic - isolate - isomorphism - is_planar - isqrt - is_sconnected - is_tree - is_vertex_in_graph - items_inference - jacobi - jacobian - jacobi_cd - jacobi_cn - jacobi_cs - jacobi_dc - jacobi_dn - jacobi_ds - jacobi_nc - jacobi_nd - jacobi_ns - jacobi_p - jacobi_sc - jacobi_sd - jacobi_sn - JF - join - jordan - julia - kdels - kdelta - kill - killcontext - kostka - kron_delta - kronecker_product - kummer_m - kummer_u - kurtosis - kurtosis_bernoulli - kurtosis_beta - kurtosis_binomial - kurtosis_chi2 - kurtosis_continuous_uniform - kurtosis_discrete_uniform - kurtosis_exp - kurtosis_f - kurtosis_gamma - kurtosis_geometric - kurtosis_gumbel - kurtosis_hypergeometric - kurtosis_laplace - kurtosis_logistic - kurtosis_lognormal - kurtosis_negative_binomial - kurtosis_normal - kurtosis_pareto - kurtosis_poisson - kurtosis_rayleigh - kurtosis_student_t - kurtosis_weibull - labels - lagrange - laguerre - lambda - laplace - laplacian_matrix - last - lbfgs - lc2kdt - lcharp - lc_l - lcm - lc_u - ldefint - ldisp - ldisplay - legendre_p - legendre_q - leinstein - length - let - letrules - letsimp - levi_civita - lfreeof - lgtreillis - lhs - li - liediff - limit - Lindstedt - linear - linearinterpol - linear_program - line_graph - linsolve - listarray - list_correlations - listify - list_nc_monomials - listoftens - listofvars - listp - lmax - lmin - load - loadfile - local - locate_matrix_entry - log - logand - logarc - logcontract - logor - logxor - lopow - lorentz_gauge - lowercasep - lpart - lratsubst - lreduce - lriemann - lsquares_estimates - lsquares_estimates_approximate - lsquares_estimates_exact - lsquares_mse - lsquares_residual_mse - lsquares_residuals - lsum - ltreillis - lu_backsub - lu_factor - macroexpand - macroexpand1 - make_array - makebox - makefact - makegamma - make_level_picture - makelist - makeOrders - make_poly_continent - make_poly_country - make_polygon - make_random_state - make_rgb_picture - makeset - make_transform - mandelbrot - map - mapatom - maplist - matchdeclare - matchfix - mat_cond - mat_fullunblocker - mat_function - mat_norm - matrix - matrixmap - matrixp - matrix_size - mattrace - mat_trace - mat_unblocker - max - max_clique - max_degree - max_flow - maxi - maximize_lp - max_independent_set - max_matching - maybe - mean - mean_bernoulli - mean_beta - mean_binomial - mean_chi2 - mean_continuous_uniform - mean_deviation - mean_discrete_uniform - mean_exp - mean_f - mean_gamma - mean_geometric - mean_gumbel - mean_hypergeometric - mean_laplace - mean_logistic - mean_lognormal - mean_negative_binomial - mean_normal - mean_pareto - mean_poisson - mean_rayleigh - mean_student_t - mean_weibull - median - median_deviation - member - metricexpandall - min - min_degree - minfactorial - mini - minimalPoly - minimize_lp - minimum_spanning_tree - minor - mnewton - mod - mode_declare - mode_identity - ModeMatrix - moebius - mon2schur - mono - monomial_dimensions - multi_elem - multinomial - multinomial_coeff - multi_orbit - multi_pui - multsym - multthru - mycielski_graph - nary - nc_degree - ncexpt - ncharpoly - negative_picture - neighbors - newcontext - newdet - new_graph - newline - newton - next_prime - niceindices - ninth - noncentral_moment - nonmetricity - nonnegintegerp - nonscalarp - nonzeroandfreeof - notequal - nounify - nptetrad - nroots - nterms - ntermst - nthroot - nullity - nullspace - num - numbered_boundaries - numberp - num_distinct_partitions - numerval - numfactor - num_partitions - nusum - odd_girth - oddp - ode2 - ode_check - odelin - op - opena - openr - openw - operatorp - opsubst - optimize - orbit - orbits - ordergreat - ordergreatp - orderless - orderlessp - orthogonal_complement - orthopoly_recur - orthopoly_weight - outermap - out_neighbors - outofpois - pade - parGosper - parse_string - part - part2cont - partfrac - partition - partition_set - partpol - path_digraph - path_graph - pdf_bernoulli - pdf_beta - pdf_binomial - pdf_cauchy - pdf_chi2 - pdf_continuous_uniform - pdf_discrete_uniform - pdf_exp - pdf_f - pdf_gamma - pdf_geometric - pdf_gumbel - pdf_hypergeometric - pdf_laplace - pdf_logistic - pdf_lognormal - pdf_negative_binomial - pdf_normal - pdf_pareto - pdf_poisson - pdf_rank_sum - pdf_rayleigh - pdf_signed_rank - pdf_student_t - pdf_weibull - pearson_skewness - permanent - permut - permutation - permutations - petersen_graph - petrov - pickapart - picture_equalp - picturep - piechart - planar_embedding - playback - plog - plot2d - plot3d - plotdf - plsquares - pochhammer - poisdiff - poisexpt - poisint - poismap - poisplus - poissimp - poissubst - poistimes - poistrim - polarform - polartorect - poly_add - poly_buchberger - poly_buchberger_criterion - poly_colon_ideal - poly_content - polydecomp - poly_depends_p - poly_elimination_ideal - poly_exact_divide - poly_expand - poly_expt - poly_gcd - poly_grobner - poly_grobner_equal - poly_grobner_member - poly_grobner_subsetp - poly_ideal_intersection - poly_ideal_polysaturation - poly_ideal_polysaturation1 - poly_ideal_saturation - poly_ideal_saturation1 - poly_lcm - poly_minimization - polymod - poly_multiply - polynome2ele - polynomialp - poly_normal_form - poly_normalize - poly_normalize_list - poly_polysaturation_extension - poly_primitive_part - poly_pseudo_divide - poly_reduced_grobner - poly_reduction - poly_saturation_extension - poly_s_polynomial - poly_subtract - polytocompanion - potential - power_mod - powers - powerseries - powerset - prev_prime - primep - print - printf - print_graph - printpois - printprops - prodrac - product - properties - propvars - psi - ptriangularize - pui - pui2comp - pui2ele - pui2polynome - pui_direct - puireduc - put - qput - qrange - quad_qag - quad_qagi - quad_qags - quad_qawc - quad_qawf - quad_qawo - quad_qaws - quantile - quantile_bernoulli - quantile_beta - quantile_binomial - quantile_cauchy - quantile_chi2 - quantile_continuous_uniform - quantile_discrete_uniform - quantile_exp - quantile_f - quantile_gamma - quantile_geometric - quantile_gumbel - quantile_hypergeometric - quantile_laplace - quantile_logistic - quantile_lognormal - quantile_negative_binomial - quantile_normal - quantile_pareto - quantile_poisson - quantile_rayleigh - quantile_student_t - quantile_weibull - quartile_skewness - quit - qunit - quotient - radcan - radius - random - random_bernoulli - random_beta - random_binomial - random_cauchy - random_chi2 - random_continuous_uniform - random_digraph - random_discrete_uniform - random_exp - random_f - random_gamma - random_geometric - random_graph - random_graph1 - random_gumbel - random_hypergeometric - random_laplace - random_logistic - random_lognormal - random_negative_binomial - random_network - random_normal - random_pareto - random_permutation - random_poisson - random_rayleigh - random_regular_graph - random_student_t - random_tournament - random_tree - random_weibull - range - rank - rat - ratcoef - ratdenom - ratdiff - ratdisrep - ratexpand - rational - rationalize - ratnumer - ratnump - ratp - ratsimp - ratsubst - ratvars - ratweight - read - read_hashed_array - readline - read_lisp_array - read_list - read_matrix - read_maxima_array - read_nested_list - readonly - read_xpm - realpart - realroots - rearray - rectform - recttopolar - rediff - reduce_consts - reduce_order - region_boundaries - rem - remainder - remarray - rembox - remcomps - remcon - remcoord - remfun - remfunction - remlet - remove - remove_edge - remove_vertex - rempart - remrule - remsym - remvalue - rename - reset - residue - resolvante - resolvante_alternee1 - resolvante_bipartite - resolvante_diedrale - resolvante_klein - resolvante_klein3 - resolvante_produit_sym - resolvante_unitaire - resolvante_vierer - rest - resultant - return - reveal - reverse - revert - revert2 - rgb2level - rhs - ricci - riemann - rinvariant - risch - rk - rncombine - romberg - room - rootscontract - row - rowop - rowswap - rreduce - run_testsuite - save - scalarp - scaled_bessel_i - scaled_bessel_i0 - scaled_bessel_i1 - scalefactors - scanmap - scatterplot - schur2comp - sconcat - scopy - scsimp - scurvature - sdowncase - sec - sech - second - sequal - sequalignore - setdifference - set_edge_weight - setelmx - setequalp - setify - setp - set_partitions - set_plot_option - set_random_state - setunits - setup_autoload - set_up_dot_simplifications - set_vertex_label - seventh - sexplode - sf - shortest_path - show - showcomps - showratvars - sign - signum - similaritytransform - simple_linear_regression - simplify_sum - simplode - simpmetderiv - simtran - sin - sinh - sinsert - sinvertcase - sixth - skewness - skewness_bernoulli - skewness_beta - skewness_binomial - skewness_chi2 - skewness_continuous_uniform - skewness_discrete_uniform - skewness_exp - skewness_f - skewness_gamma - skewness_geometric - skewness_gumbel - skewness_hypergeometric - skewness_laplace - skewness_logistic - skewness_lognormal - skewness_negative_binomial - skewness_normal - skewness_pareto - skewness_poisson - skewness_rayleigh - skewness_student_t - skewness_weibull - slength - smake - smismatch - solve - solve_rec - solve_rec_rat - some - somrac - sort - sparse6_decode - sparse6_encode - sparse6_export - sparse6_import - specint - spherical_bessel_j - spherical_bessel_y - spherical_hankel1 - spherical_hankel2 - spherical_harmonic - splice - split - sposition - sprint - sqfr - sqrt - sqrtdenest - sremove - sremovefirst - sreverse - ssearch - ssort - sstatus - ssubst - ssubstfirst - staircase - status - std - std1 - std_bernoulli - std_beta - std_binomial - std_chi2 - std_continuous_uniform - std_discrete_uniform - std_exp - std_f - std_gamma - std_geometric - std_gumbel - std_hypergeometric - std_laplace - std_logistic - std_lognormal - std_negative_binomial - std_normal - std_pareto - std_poisson - std_rayleigh - std_student_t - std_weibull - stirling - stirling1 - stirling2 - strim - striml - strimr - string - stringout - stringp - strong_components - sublis - sublist - sublist_indices - submatrix - subsample - subset - subsetp - subst - substinpart - substpart - substring - subvar - subvarp - sum - sumcontract - summand_to_rec - supcase - supcontext - symbolp - symmdifference - symmetricp - system - take_channel - take_inference - tan - tanh - taylor - taylorinfo - taylorp - taylor_simplifier - taytorat - tcl_output - tcontract - tellrat - tellsimp - tellsimpafter - tentex - tenth - test_mean - test_means_difference - test_normality - test_rank_sum - test_sign - test_signed_rank - test_variance - test_variance_ratio - tex - texput - %th - third - throw - time - timedate - timer - timer_info - tldefint - tlimit - todd_coxeter - toeplitz - tokens - to_lisp - topological_sort - totaldisrep - totalfourier - totient - tpartpol - trace - tracematrix - trace_options - translate - translate_file - transpose - tree_reduce - treillis - treinat - triangularize - trigexpand - trigrat - trigreduce - trigsimp - trunc - tr_warnings_get - ueivects - uforget - ultraspherical - underlying_graph - undiff - union - unique - uniteigenvectors - unit_step - unitvector - unknown - unorder - unsum - untellrat - untimer - untrace - uppercasep - uricci - uriemann - uvect - vandermonde_matrix - var - var1 - var_bernoulli - var_beta - var_binomial - var_chi2 - var_continuous_uniform - var_discrete_uniform - var_exp - var_f - var_gamma - var_geometric - var_gumbel - var_hypergeometric - var_laplace - var_logistic - var_lognormal - var_negative_binomial - var_normal - var_pareto - var_poisson - var_rayleigh - var_student_t - var_weibull - vectorpotential - vectorsimp - verbify - vers - vertex_coloring - vertex_degree - vertex_distance - vertex_eccentricity - vertex_in_degree - vertex_out_degree - vertices - vertices_to_cycle - vertices_to_path - weyl - wheel_graph - with_stdout - write_data - writefile - wronskian - xgraph_curves - xreduce - xthru - Zeilberger - zeroequiv - zerofor - zeromatrix - zeromatrixp - zeta - zlange - - - - _ - __ - % - %% - absboxchar - activecontexts - additive - algebraic - algepsilon - algexact - aliases - all_dotsimp_denoms - allbut - allsym - arrays - askexp - assume_pos - assume_pos_pred - assumescalar - atomgrad - backsubst - berlefact - besselexpand - bftorat - bftrunc - boxchar - breakup - cauchysum - cflength - cframe_flag - cnonmet_flag - context - contexts - cosnpiflag - ctaypov - ctaypt - ctayswitch - ctayvar - ct_coords - ctorsion_flag - ctrgsimp - current_let_rule_package - debugmode - default_let_rule_package - demoivre - dependencies - derivabbrev - derivsubst - detout - diagmetric - dim - dispflag - display2d - display_format_internal - doallmxops - domain - domxexpt - domxmxops - domxnctimes - dontfactor - doscmxops - doscmxplus - dot0nscsimp - dot0simp - dot1simp - dotassoc - dotconstrules - dotdistrib - dotexptsimp - dotident - dotscrules - draw_graph_program - %edispflag - %emode - %enumer - epsilon_lp - erfflag - error - error_size - error_syms - %e_to_numlog - evflag - evfun - expandwrt_denom - expon - exponentialize - expop - exptdispflag - exptisolate - exptsubst - facexpand - factlim - factorflag - file_output_append - file_search_demo - file_search_lisp - file_search_maxima - find_root_abs - find_root_error - find_root_rel - flipflag - float2bf - fortindent - fortspaces - fpprec - fpprintprec - functions - gammalim - gdet - genindex - gensumnum - GGFCFMAX - GGFINFINITY - globalsolve - gradefs - grind - halfangles - %iargs - ibase - icounter - idummyx - ieqnprint - iframe_bracket_form - igeowedge_flag - imetric - inchar - infeval - inflag - infolists - in_netmath - integrate_use_rootsof - integration_constant - integration_constant_counter - intfaclim - isolate_wrt_times - keepfloat - labels - letrat - let_rule_packages - lhospitallim - limsubst - linechar - linel - linenum - linsolve_params - linsolvewarn - lispdisp - listarith - listconstvars - listdummyvars - lmxchar - loadprint - logabs - logarc - logconcoeffp - logexpand - lognegint - lognumer - logsimp - m1pbranch - macroexpansion - maperror - mapprint - matrix_element_add - matrix_element_mult - matrix_element_transpose - maxapplydepth - maxapplyheight - maxima_tempdir - maxima_userdir - maxnegex - maxposex - maxpsifracdenom - maxpsifracnum - maxpsinegint - maxpsiposint - maxtayorder - method - mode_check_errorp - mode_checkp - mode_check_warnp - modulus - multiplicities - myoptions - negdistrib - negsumdispflag - newtonepsilon - newtonmaxiter - niceindicespref - nolabels - nonegative_lp - noundisp - obase - opproperties - opsubst - optimprefix - optionset - outchar - packagefile - partswitch - pfeformat - %piargs - piece - plot_options - poislim - poly_coefficient_ring - poly_elimination_order - poly_grobner_algorithm - poly_grobner_debug - poly_monomial_order - poly_primary_elimination_order - poly_return_term_list - poly_secondary_elimination_order - poly_top_reduction_only - powerdisp - prederror - primep_number_of_tests - product_use_gamma - programmode - prompt - psexpand - radexpand - radsubstflag - random_beta_algorithm - random_binomial_algorithm - random_chi2_algorithm - random_exp_algorithm - random_f_algorithm - random_gamma_algorithm - random_geometric_algorithm - random_hypergeometric_algorithm - random_negative_binomial_algorithm - random_normal_algorithm - random_poisson_algorithm - random_student_t_algorithm - ratalgdenom - ratchristof - ratdenomdivide - rateinstein - ratepsilon - ratexpand - ratfac - ratmx - ratprint - ratriemann - ratsimpexpons - ratvars - ratweights - ratweyl - ratwtlvl - realonly - refcheck - rmxchar - %rnum_list - rombergabs - rombergit - rombergmin - rombergtol - rootsconmode - rootsepsilon - savedef - savefactors - scalarmatrixp - setcheck - setcheckbreak - setval - showtime - simplify_products - simpsum - sinnpiflag - solvedecomposes - solveexplicit - solvefactors - solve_inconsistent_error - solvenullwarn - solveradcan - solvetrigwarn - sparse - sqrtdispflag - stardisp - stats_numer - stringdisp - sublis_apply_lambda - sumexpand - sumsplitfact - taylordepth - taylor_logexpand - taylor_order_coefficients - taylor_truncate_polynomials - tensorkill - testsuite_files - timer_devalue - tlimswitch - transcompile - transrun - tr_array_as_ref - tr_bound_function_applyp - tr_file_tty_messagesp - tr_float_can_branch_complex - tr_function_call_default - trigexpandplus - trigexpandtimes - triginverses - trigsign - tr_numer - tr_optimize_max_loop - tr_semicompile - tr_state_vars - tr_warn_bad_function_calls - tr_warn_fexpr - tr_warn_meval - tr_warn_mode - tr_warn_undeclared - tr_warn_undefined_variable - tr_windy - ttyoff - use_fast_arrays - values - vect_cross - verbose - zerobern - zeta%pi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mediawiki.xml ktexteditor-5.31.0/src/syntax/data/mediawiki.xml --- ktexteditor-5.28.0/src/syntax/data/mediawiki.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mediawiki.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,623 +0,0 @@ - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mel.xml ktexteditor-5.31.0/src/syntax/data/mel.xml --- ktexteditor-5.28.0/src/syntax/data/mel.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mel.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1381 +0,0 @@ - - - - - - - - break - case - continue - default - do - else - false - for - global - if - in - proc - return - switch - true - while - - - - - about - abs - addAttr - addAttributeEditorNodeHelp - addDynamic - addNewShelfTab - addPanelCategory - addPP - addPrefixToName - advanceToNextDrivenKey - affectedNet - affects - aimConstraint - air - aliasAttr - alias - alignCtx - alignCurve - align - alignSurface - allViewFit - ambientLight - angleBetween - angle - animCurveEditor - animDisplay - animView - annotate - appendStringArray - applicationName - applyAttrPreset - applyTake - arcLenDimContext - arcLengthDimension - arclen - arrayMapper - art3dPaintCtx - artAttrCtx - artAttrPaintVertexCtx - artAttrSkinPaintCtx - artAttrTool - artBuildPaintMenu - artFluidAttrCtx - artPuttyCtx - artSelectCtx - artSetPaintCtx - artUserPaintCtx - assignCommand - assignInputDevice - assignViewportFactories - attachCurve - attachDeviceAttr - attachSurface - attrColorSliderGrp - attrCompatibility - attrControlGrp - attrEnumOptionMenuGrp - attrEnumOptionMenu - attrFieldGrp - attrFieldSliderGrp - attributeExists - attributeInfo - attributeMenu - attributeQuery - attrNavigationControlGrp - attrPresetEditWin - autoKeyframe - autoPlace - bakeClip - bakeFluidShading - bakePartialHistory - bakeResults - bakeSimulation - basenameEx - basename - batchRender - bessel - bevel - bevelPlus - bindSkin - binMembership - blank - blend2 - blendShapeEditor - blendShape - blendShapePanel - blendTwoAttr - blindDataType - boneLattice - boundary - boxDollyCtx - boxZoomCtx - bufferCurve - buildBookmarkMenu - buildKeyframeMenu - button - buttonManip - cacheFileCombine - cacheFile - cacheFileMerge - cacheFileTrack - camera - cameraView - canCreateManip - canvas - capitalizeString - cat_Animation - catch - catchQuiet - cat_Effects - cat_General - cat_Language - cat_Modeling - cat_Rendering - cat_System - cat_Windows - CBG - ceil - changeSubdivComponentDisplayLevel - changeSubdivRegion - channelBox - character - characterize - characterMap - characterOutlineEditor - chdir - checkBoxGrp - checkBox - checkDefaultRenderGlobals - choice - circle - circularFillet - clamp - clearCache - clear - clipEditorCurrentTimeCtx - clipEditor - clip - clipSchedule - clipSchedulerOutliner - clipTrimBefore - closeCurve - closeSurface - cluster - cmdFileOutput - cmdScrollFieldExecuter - cmdScrollFieldReporter - cmdShell - coarsenSubdivSelectionList - collision - colorAtPoint - colorEditor - color - colorIndex - colorIndexSliderGrp - colorSliderButtonGrp - colorSliderGrp - columnLayout - commandEcho - commandLine - commandPort - compactHairSystem - componentEditor - compositingInterop - computePolysetVolume - condition - cone - confirmDialog - connectAttr - connectControl - connectDynamic - connectionInfo - connectJoint - constrain - constrainValue - constructionHistory - container - containsMultibyte - contextInfo - control - convertFromOldLayers - convertIffToPsd - convertLightmap - convertSolidTx - convertTessellation - convertUnit - copyArray - copyFlexor - copyKey - copySkinWeights - cos - cpButton - cpCache - cpClothSet - cpCollision - cpConstraint - cpConvClothToMesh - cpForces - cpGetSolverAttr - cpPanel - cpProperty - cpRigidCollisionFilter - cpSeam - cpSetEdit - cpSetSolverAttr - cpSolver - cpSolverTypes - cpTool - cpUpdateClothUVs - createDisplayLayer - createDrawCtx - createEditor - createLayeredPsdFile - createMotionField - createNewShelf - createNode - createRenderLayer - createSubdivRegion - cross - crossProduct - ctxAbort - ctxCompletion - ctxEditMode - ctxTraverse - currentCtx - currentTimeCtx - currentTime - currentUnit - curveAddPtCtx - curveCVCtx - curveEditorCtx - curveEPCtx - curve - curveIntersect - curveMoveEPCtx - curveOnSurface - curveSketchCtx - cutKey - cycleCheck - cylinder - dagPose - date - defaultLightListCheckBox - defaultNavigation - defineDataServer - defineVirtualDevice - deformer - deg_to_rad - deleteAttr - delete - deleteShadingGroupsAndMaterials - deleteShelfTab - deleteUI - deleteUnusedBrushes - delrandstr - detachCurve - detachDeviceAttr - detachSurface - deviceEditor - devicePanel - dgdirty - dgeval - dgInfo - dgtimer - dimWhen - directionalLight - directKeyCtx - dirmap - dirname - disable - disconnectAttr - disconnectJoint - diskCache - displacementToPoly - displayAffected - displayColor - displayCull - displayLevelOfDetail - displayPref - displayRGBColor - displaySmoothness - displayStats - displayString - displaySurface - distanceDimContext - distanceDimension - doBlur - dollyCtx - dolly - dopeSheetEditor - dot - dotProduct - doubleProfileBirailSurface - dragAttrContext - draggerContext - drag - dropoffLocator - duplicateCurve - duplicate - duplicateSurface - dynamicLoad - dynCache - dynControl - dynExport - dynExpression - dynGlobals - dynPaintEditor - dynParticleCtx - dynPref - dynRelEditor - dynRelEdPanel - editAttrLimits - editDisplayLayerGlobals - editDisplayLayerMembers - editor - editorTemplate - editRenderLayerAdjustment - editRenderLayerGlobals - editRenderLayerMembers - effector - emit - emitter - enableDevice - encodeString - endString - endsWith - env - equivalent - equivalentTol - erf - error - evalDeferred - evalEcho - eval - event - exactWorldBoundingBox - exclusiveLightCheckBox - exec - executeForEachObject - exists - exp - expressionEditorListen - expression - extendCurve - extendSurface - extrude - fcheck - fclose - feof - fflush - fgetline - fgetword - fileBrowserDialog - fileDialog - fileExtension - file - fileInfo - filetest - filletCurve - filterCurve - filterExpand - filter - filterStudioImport - findAllIntersections - findAnimCurves - finder - findKeyframe - findMenuItem - findRelatedSkinCluster - firstParentOf - fitBspline - flexor - floatEq - floatFieldGrp - floatField - floatScrollBar - floatSlider2 - floatSliderButtonGrp - floatSliderGrp - floatSlider - floor - flow - fluidCacheInfo - fluidEmitter - fluidVoxelInfo - flushUndo - fmod - fontDialog - fopen - format - formLayout - fprint - frameLayout - frame_search - fread - freeFormFillet - frewind - fromNativePath - fwrite - gamma - gauss - geometryConstraint - getApplicationVersionAsFloat - getAttr - getClassification - getDefaultBrush - getenv - getFileList - getFluidAttr - getInputDeviceRange - getMayaPanelTypes - getModifiers - getPanel - getParticleAttr - getpid - getPluginResource - globalStitch - glRenderEditor - glRender - gmatch - goal - gotoBindPose - grabColor - gradientControl - gradientControlNoAttr - graphDollyCtx - graphSelectContext - graphTrackCtx - gravity - grid - gridLayout - group - groupObjectsByName - hardenPointCurve - hardware - hardwareRenderPanel - headsUpDisplay - headsUpMessage - help - helpLine - hermite - HfAddAttractorToAS - HfAssignAS - HfBuildEqualMap - HfBuildFurFiles - HfBuildFurImages - HfCancelAFR - HfConnectASToHF - HfCreateAttractor - HfDeleteAS - HfEditAS - HfPerformCreateAS - HfRemoveAttractorFromAS - HfSelectAttached - HfSelectAttractors - HfUnassignAS - hide - hilite - hitTest - hotBox - hotkeyCheck - hotkey - hsv_to_rgb - hudButton - hudSliderButton - hudSlider - hwReflectionMap - hwRender - hwRenderLoad - hyperGraph - hyperPanel - hyperShade - hypot - iconTextButton - iconTextCheckBox - iconTextRadioButton - iconTextRadioCollection - iconTextScrollList - iconTextStaticLabel - ikfkDisplayMethod - ikHandleCtx - ikHandleDisplayScale - ikHandle - ikSolver - ikSplineHandleCtx - ikSystem - ikSystemInfo - illustratorCurves - image - imfPlugins - index_all - index - index_overview - index_substring - inheritTransform - insertJointCtx - insertJoint - insertKeyCtx - insertKnotCurve - insertKnotSurface - instanceable - instance - instancer - internalVar - intersect - interToUI - intFieldGrp - intField - intScrollBar - intSliderGrp - intSlider - iprEngine - isAnimCurve - isConnected - isDirty - isolateSelect - isParentOf - isSameObject - isTrue - isValidObjectName - isValidString - isValidUiName - itemFilterAttr - itemFilter - itemFilterRender - itemFilterType - jointCluster - jointCtx - jointDisplayScale - joint - jointLattice - keyframe - keyframeOutliner - keyframeRegionCurrentTimeCtx - keyframeRegionDirectKeyCtx - keyframeRegionDollyCtx - keyframeRegionInsertKeyCtx - keyframeRegionMoveKeyCtx - keyframeRegionScaleKeyCtx - keyframeRegionSelectKeyCtx - keyframeRegionSetKeyCtx - keyframeRegionTrackCtx - keyframeStats - keyTangent - lassoContext - latticeDeformKeyCtx - lattice - launch - launchImageEditor - layerButton - layeredShaderPort - layeredTexturePort - layoutDialog - layout - lightlink - lightListEditor - lightList - lightListPanel - linearPrecision - lineIntersection - linstep - listAnimatable - listAttr - listCameras - listConnections - listDeviceAttachments - listerEditor - listHistory - listInputDeviceAxes - listInputDeviceButtons - listInputDevices - listMenuAnnotation - listNodeTypes - listPanelCategories - listRelatives - listSets - listTransforms - listUnselected - loadFluid - loadNewShelf - loadPlugin - loadPluginLanguageResources - loadPrefObjects - localizedPanelLabel - lockNode - loft - log - longNameOf - lookThru - ls - lsThroughFilter - lsType - lsUI - mag - makebot - makeIdentity - makeLive - makePaintable - makeRoll - makeSingleSurface - makeTubeOn - manipMoveContext - manipMoveLimitsCtx - manipOptions - manipRotateContext - manipRotateLimitsCtx - manipScaleContext - manipScaleLimitsCtx - marker - match - max - Mayatomr - memory - menuBarLayout - menuEditor - menu - menuItem - menuItemToShelf - menuSet - menuSetPref - messageLine - min - minimizeApp - mirrorJoint - modelCurrentTimeCtx - modelEditor - modelPanel - mouse - move - moveIKtoFK - moveKeyCtx - moveVertexAlongDirection - movIn - movOut - multiProfileBirailSurface - mute - nameCommand - nameField - namespace - namespaceInfo - nav_Animation - nav_Effects - nav_General - nav_Language - nav_Modeling - nav_Rendering - nav_System - nav_Windows - newPanelItems - newton - nodeCast - nodeIconButton - nodeOutliner - nodePreset - nodeType - noise - nonLinear - normalConstraint - normalize - nParticle - nurbsBoolean - nurbsCopyUVSet - nurbsCube - nurbsEditUV - nurbsPlane - nurbsSelect - nurbsSquare - nurbsToPolygonsPref - nurbsToPoly - nurbsToSubdiv - nurbsToSubdivPref - nurbsUVSet - nurbsViewDirectionVector - objectCenter - objectLayer - objectType - objectTypeUI - objExists - obsoleteProc - oceanNurbsPreviewPlane - offsetCurve - offsetCurveOnSurface - offsetSurface - openGLExtension - openMayaPref - optionMenuGrp - optionMenu - optionVar - orbitCtx - orbit - orientConstraint - outlinerEditor - outlinerPanel - overrideModifier - paintEffectsDisplay - pairBlend - palettePort - paneLayout - panelConfiguration - panelHistory - panel - paramDimContext - paramDimension - paramLocator - parentConstraint - parent - particleExists - particle - particleInstancer - particleRenderInfo - partition - pasteKey - pathAnimation - pause - pclose - percent - performanceOptions - pfxstrokes - pickWalk - picture - pixelMove - planarSrf - plane - playbackOptions - playblast - play - plugAttr - pluginInfo - pluginResourceUtil - plugNode - pointConstraint - pointCurveConstraint - pointLight - pointMatrixMult - pointOnCurve - pointOnSurface - pointPosition - poleVectorConstraint - polyAppendFacetCtx - polyAppend - polyAppendVertex - polyAutoProjection - polyAverageNormal - polyAverageVertex - polyBevel - polyBlendColor - polyBlindData - polyBoolOp - polyBridgeEdge - polyCacheMonitor - polyCheck - polyChipOff - polyClipboard - polyCloseBorder - polyCollapseEdge - polyCollapseFacet - polyColorBlindData - polyColorDel - polyColorPerVertex - polyColorSet - polyCompare - polyCone - polyCopyUV - polyCreaseCtx - polyCrease - polyCreateFacetCtx - polyCreateFacet - polyCube - polyCutCtx - polyCut - polyCylinder - polyCylindricalProjection - polyDelEdge - polyDelFacet - polyDelVertex - polyDuplicateAndConnect - polyDuplicateEdge - polyEditUV - polyEditUVShell - polyEvaluate - polyExtrudeEdge - polyExtrudeFacet - polyExtrudeVertex - polyFlipEdge - polyFlipUV - polyForceUV - polyGeoSampler - polyHelix - polyInfo - polyInstallAction - polyLayoutUV - polyListComponentConversion - polyMapCut - polyMapDel - polyMapSew - polyMapSewMove - polyMergeEdgeCtx - polyMergeEdge - polyMergeFacetCtx - polyMergeFacet - polyMergeUV - polyMergeVertex - polyMirrorFace - polyMoveEdge - polyMoveFacet - polyMoveFacetUV - polyMoveUV - polyMoveVertex - polyNormal - polyNormalizeUV - polyNormalPerVertex - polyOptions - polyOptUvs - polyOutput - polyPipe - polyPlanarProjection - polyPlane - polyPlatonicSolid - polyPoke - polyPrimitive - polyPrism - polyProjection - polyPyramid - polyQuad - polyQueryBlindData - polyReduce - polySelectConstraint - polySelectConstraintMonitor - polySelectCtx - polySelectEditCtx - polySelect - polySeparate - polySetToFaceNormal - polySewEdge - polyShortestPathCtx - polySlideEdge - polySmooth - polySoftEdge - polySphere - polySphericalProjection - polySplitCtx - polySplitEdge - polySplit - polySplitRing - polySplitVertex - polyStraightenUVBorder - polySubdivideEdge - polySubdivideFacet - polyTorus - polyToSubdiv - polyTransfer - polyTriangulate - polyUnite - polyUVSet - polyWedgeFace - popen - popupMenu - pose - pow - preloadRefEd - print - progressBar - progressWindow - projectCurve - projectionContext - projectionManip - projectTangent - projFileViewer - promptDialog - propModCtx - propMove - psdChannelOutliner - psdEditTextureFile - psdExport - psdTextureFile - putenv - pwd - python - querySubdiv - quit - radial - radioButtonGrp - radioButton - radioCollection - radioMenuItemCollection - rad_to_deg - rampColorPort - rand - randomizeFollicles - randstate - rangeControl - readTake - rebuildCurve - rebuildSurface - recordAttr - recordDevice - redo - referenceEdit - reference - referenceQuery - refineSubdivSelectionList - refreshAE - refresh - registerPluginResource - rehash - reloadImage - removeJoint - removeMultiInstance - removePanelCategory - renameAttr - rename - renameSelectionList - renameUI - renderer - renderGlobalsNode - render - renderInfo - renderLayerButton - renderLayerParent - renderLayerPostProcess - renderLayerUnparent - renderManip - renderPartition - renderQualityNode - renderSettings - renderThumbnailUpdate - renderWindowEditor - renderWindowSelectContext - reorderDeformers - reorder - requires - reroot - resampleFluid - resetAE - resetPfxToPolyCamera - resetTool - resolutionNode - retarget - reverseCurve - reverseSurface - revolve - rgb_to_hsv - rigidBody - rigidSolver - rollCtx - roll - rootOf - rotate - rotationInterpolation - rot - roundConstantRadius - rowColumnLayout - rowLayout - runTimeCommand - runup - sampleImage - saveAllShelves - saveAttrPreset - saveFluid - saveImage - saveInitialState - saveMenu - savePrefObjects - savePrefs - saveShelf - saveToolSettings - scaleBrushBrightness - scaleComponents - scaleConstraint - scale - scaleKeyCtx - scaleKey - sceneEditor - sceneUIReplacement - scmh - scriptCtx - scriptEditorInfo - scriptedPanel - scriptedPanelType - scriptJob - scriptNode - scriptTable - scriptToShelf - scrollField - scrollLayout - sculpt - searchPathArray - seed - selectContext - selectCurveCV - selectedNodes - select - selectionConnection - selectKeyCtx - selectKeyframeRegionCtx - selectKey - selectMode - selectPref - selectPriority - selectType - selLoadSettings - separator - setAttrEnumResource - setAttr - setAttrMapping - setAttrNiceNameResource - setConstraintRestPosition - setCustomAttrEnumResource - setCustomAttrNiceNameResource - setDefaultShadingGroup - setDrivenKeyframe - setDynamic - setEditCtx - setEditor - setFluidAttr - setFocus - setInfinity - setInputDeviceMapping - setKeyCtx - setKeyframeBlendshapeTargetWts - setKeyframe - setKeyPath - setMenuMode - setNodeNiceNameResource - setNodeTypeFlag - setParent - setParticleAttr - setPfxToPolyCamera - setPluginResource - setProject - sets - setStampDensity - setStartupMessage - setState - setToolTo - setUITemplate - setXformManip - shadingConnection - shadingGeometryRelCtx - shadingLightRelCtx - shadingNetworkCompare - shadingNode - shapeCompare - shelfButton - shelfLayout - shelfTabLayout - shellField - shortNameOf - showHelp - showHidden - show - showManipCtx - showSelectionInTitle - showShadingGroupAttrEditor - showWindow - sign - simplify - singleProfileBirailSurface - sin - sizeBytes - size - skinCluster - skinPercent - smoothCurve - smoothstep - smoothTangentSurface - snap2to2 - snapKey - snapMode - snapshot - snapTogetherCtx - soft - softModCtx - softMod - sort - soundControl - sound - source - spaceLocator - sphere - sphrand - spotLight - spotLightPreviewPort - spreadSheetEditor - spring - sqrt - squareSurface - srtContext - stackTrace - startString - startsWith - stitchAndExplodeShell - stitchSurface - stitchSurfacePoints - strcmp - stringArrayCatenate - stringArrayContains - stringArrayCount - stringArrayInsertAtIndex - stringArrayIntersector - stringArrayRemoveAtIndex - stringArrayRemoveDuplicates - stringArrayRemoveExact - stringArrayRemove - stringArrayToString - stringToStringArray - strip - stripPrefixFromName - stroke - subdAutoProjection - subdCleanTopology - subdCollapse - subdDuplicateAndConnect - subdEditUV - subdivCrease - subdivDisplaySmoothness - subdiv - subdListComponentConversion - subdMapCut - subdMapSewMove - subdMatchTopology - subdMirror - subdToBlind - subdToPoly - subdTransferUVsToCache - substituteAllString - substituteGeometry - substitute - substring - surface - surfaceSampler - surfaceShaderList - swatchDisplayPort - switchTable - SymbolsButton - SymbolsCheckBox - symmetricModelling - sysFile - system - tabLayout - tangentConstraint - tan - texLatticeDeformContext - texManipContext - texMoveContext - texMoveUVShellContext - texRotateContext - texScaleContext - texSelectContext - texSelectShortestPathCtx - texSmudgeUVContext - textCurves - textFieldButtonGrp - textFieldGrp - textField - text - textManip - textScrollList - textToShelf - textureDisplacePlane - textureHairColor - texturePlacementContext - textureWindow - texWinToolCtx - threadCount - threePointArcCtx - timeControl - timePort - timerX - toggleAxis - toggle - toggleWindowVisibility - tokenize - tokenizeList - tolerance - tolower - toNativePath - toolButton - toolCollection - toolDropped - toolHasOptions - toolPropertyWindow - torus - toupper - trace - trackCtx - track - transferAttributes - transformCompare - transformLimits - translator - trim - truncateFluidCache - truncateHairCache - trunc - tumbleCtx - tumble - turbulence - twoPointArcCtx - uiRes - uiTemplate - unassignInputDevice - undo - undoInfo - ungroup - uniform - unit - unloadPlugin - untangleUV - untitledFileName - untrim - upAxis - updateAE - userCtx - uvLink - uvSnapshot - validateShelfName - vectorize - view2dToolCtx - viewCamera - viewClipPlane - viewFit - viewHeadOn - viewLookAt - viewManip - viewPlace - viewSet - visor - volumeAxis - vortex - waitCursor - warning - webBrowser - webBrowserPrefs - whatIs - window - windowPref - wireContext - wire - workspace - wrinkleContext - wrinkle - writeTake - xbmLangPathList - xform - xpmPicker - - - int - string - float - vector - matrix - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mergetagtext.xml ktexteditor-5.31.0/src/syntax/data/mergetagtext.xml --- ktexteditor-5.28.0/src/syntax/data/mergetagtext.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mergetagtext.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,145 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/meson.xml ktexteditor-5.31.0/src/syntax/data/meson.xml --- ktexteditor-5.28.0/src/syntax/data/meson.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/meson.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,117 +0,0 @@ - - - - - - - if - else - endif - foreach - endforeach - - - add_global_arguments - build_target - configuration_data - configure_file - custom_target - declare_dependency - dependency - error - executable - find_program - find_library - files - generator - get_option - gettext - import - include_directories - install_data - install_headers - install_man - install_subdir - is_subproject - jar - message - pkgconfig_gen - project - run_command - run_target - set_variable - shared_library - static_library - subdir - subproject - test - vcs_tag - - - and - or - not - - - true - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/metafont.xml ktexteditor-5.31.0/src/syntax/data/metafont.xml --- ktexteditor-5.28.0/src/syntax/data/metafont.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/metafont.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1009 +0,0 @@ - - - - - - - - - - - true - - false - known - unknown - odd - charexists - not - - and - or - - - - - normaldeviate - length - - ASCII - oct - hex - angle - turningnumber - totalweight - - directiontime - xpart - ypart - xxpart - xypart - yxpart - - yypart - sqrt - sind - cosd - mlog - mexp - - floor - uniformdeviate - abs - div - dotprod - max - - min - mod - ceiling - - - - - tracingtitles - - tracingequations - tracingcapsules - tracingchoices - tracingspecs - tracingpens - tracingcommands - - tracingrestores - tracingmacros - tracingedges - tracingoutput - tracingonline - tracingstats - - pausing - showstopping - fontmaking - proofing - turningcheck - warningcheck - - smoothing - autorounding - granularity - fillin - year - month - - day - time - charcode - charext - charwd - charht - - chardp - charic - chardx - chardy - designsize - hppp - - vppp - xoffset - yoffset - boundarychar - - - - - - point - of - precontrol - postcontrol - penoffset - - rotated - scaled - shifted - slanted - transformed - xscaled - - yscaled - zscaled - - - - - makepath - reverse - - subpath - curl - tension - atleast - controls - cycle - - - - - - nullpen - pencircle - makepen - - - - - nullpicture - - - - - jobname - - readstring - str - char - decimal - substring - - - - - end - dump - save - interim - - newinternal - randomseed - let - delimiters - outer - everyjob - - show - showvariable - showtoken - showdependencies - showstats - message - - errmessage - errhelp - batchmode - nonstopmode - scrollmode - errorstopmode - - addto - also - contour - doublepath - withpen - withweight - - cull - keeping - dropping - display - inwindow - openwindow - - at - from - to - shipout - special - numspecial - - - - - - boolean - numeric - pair - path - - pen - picture - string - transform - - - - - - - - - - - - - - expr - suffix - - text - primary - secondary - tertiary - - primarydef - secondarydef - - tertiarydef - - - - - - - else - elseif - - - - - - step - until - upto - exitif - - - - - charlist - endinput - expandafter - extensible - - fontdimen - headerbyte - inner - input - intersectiontimes - kern - - ligtable - quote - scantokens - skipto - - - - - - - addto_currentpicture - aspect_ratio - base_name - base_version - - blacker - - blankpicture - bot - bye - byte - capsule_def - - change_width - - clear_pen_memory - clearit - clearpen - clearxy - counterclockwise - culldraw - - cullit - currentpen - currentpen_path - currentpicture - currenttransform - currentwindow - - cutdraw - cutoff - d - decr - define_blacker_pixels - define_corrected_pixels - - define_good_x_pixels - define_good_y_pixels - define_horizontal_corrected_pixels - define_pixels - define_whole_blacker_pixels - define_whole_pixels - - define_whole_vertical_blacker_pixels - define_whole_vertical_pixels - dir - direction - directionpoint - displaying - - ditto - - - down - downto - draw - drawdot - - - eps - epsilon - - - extra_setup - erase - exitunless - - fill - filldraw - fix_units - flex - font_coding_scheme - font_extra_space - - font_identifier - font_normal_shrink - font_normal_space - font_normal_stretch - font_quad - font_setup - - font_size - font_slant - font_x_height - fullcircle - generate - gfcorners - - gobble - gobbled - grayfont - h - halfcircle - hide - - hround - identity - image_rules - incr - infinity - interact - - interpath - intersectionpoint - inverse - italcorr - join_radius - killtext - - labelfont - labels - left - lft - localfont - loggingall - - lowres - lowres_fix - mag - magstep - makebox - makegrid - - makelabel - maketicks - - - - mode - mode_def - mode_name - - mode_setup - nodisplays - notransforms - number_of_modes - numtok - o_correction - - openit - origin - pen_bot - pen_lft - pen_rt - pen_top - - penlabels - penpos - penrazor - penspeck - pensquare - penstroke - - pickup - pixels_per_inch - proof - proofoffset - proofrule - proofrulethickness - - quartercircle - range - reflectedabout - relax - right - rotatedabout - - rotatedaround - round - rt - rulepen - savepen - screenchars - - screen_rows - screen_cols - screenrule - screenstrokes - shipit - showit - - slantfont - smode - smoke - softjoin - solve - stop - - superellipse - takepower - tensepath - titlefont - tolerance - top - - tracingall - tracingnone - undraw - undrawdot - unfill - unfilldraw - - unitpixel - unitsquare - unitvector - up - upto - vround - - w - whatever - - - - - - - bluepart - - clip - color - dashed - fontsize - greenpart - infont - - linecap - linejoin - llcorner - lrcorner - miterlimit - mpxbreak - - prologues - redpart - setbounds - tracinglostchars - truecorners - ulcorner - - urcorner - withcolor - - - - - autorounding - chardx - - chardy - fillin - granularity - hppp - proofing - smoothing - - tracingedges - tracingpens - turningcheck - vppp - xoffset - yoffset - - - - - - ahangle - ahlength - background - bbox - - bboxmargin - - beveled - black - blue - buildcycle - butt - - center - cutafter - cutbefore - cuttings - dashpattern - defaultfont - - defaultpen - defaultscale - dotlabel - dotlabels - drawarrow - drawdblarrow - - drawoptions - - evenly - - - green - label - labeloffset - - mitered - red - rounded - squared - thelabel - white - - base_name - base_version - upto - downto - exitunless - relax - - gobble - gobbled - interact - loggingall - tracingall - tracingnone - - eps - epsilon - infinity - right - left - up - - down - origin - quartercircle - halfcircle - fullcircle - unitsquare - - identity - blankpicture - withdots - ditto - EOF - pensquare - - penrazor - penspeck - whatever - - round - - byte - - dir - unitvector - inverse - counterclockwise - tensepath - - - - - takepower - direction - directionpoint - intersectionpoint - softjoin - incr - - decr - reflectedabout - rotatedaround - rotatedabout - - - flex - - superellipse - interpath - magstep - currentpen - currentpen_path - currentpicture - - fill - draw - filldraw - drawdot - unfill - undraw - - unfilldraw - undrawdot - erase - cutdraw - image - pickup - - numeric_pickup - pen_lft - pen_rt - pen_top - pen_bot - savepen - - clearpen - clear_pen_memory - lft - rt - top - bot - - ulft - urt - llft - lrt - penpos - penstroke - - arrowhead - makelabel - labels - penlabel - range - numtok - - thru - clearxy - clearit - clearpen - pickup - shipit - - bye - hide - stop - solve - - blacker - capsule_def - - change_width - define_blacker_pixels - define_corrected_pixels - define_good_x_pixels - define_good_y_pixels - define_horizontal_corrected_pixels - - define_pixels - define_whole_blacker_pixels - define_whole_vertical_blacker_pixels - define_whole_vertical_pixels - - - - extra_setup - - font_coding_scheme - font_extra_space - font_identifier - font_normal_shrink - font_normal_space - font_normal_stretch - - font_quad - font_size - font_slant - font_x_height - italcorr - labelfont - - makebox - makegrid - maketicks - mode_def - mode_setup - o_correction - - proofrule - proofrulethickness - rulepen - smode - cullit - currenttransform - - gfcorners - grayfont - hround - imagerules - lowres_fix - nodisplays - - notransforms - openit - proofoffset - screenchars - screenrule - screenstrokes - - showit - slantfont - titlefont - unitpixel - vround - circmargin - - defaultdx - defaultdy - boxit - boxjoin - bpath - circleit - - drawboxed - drawboxes - drawunboxed - fixpos - fixsize - pic - - - - - - beginchar - endchar - extra_beginchar - extra_endchar - - beginlogochar - beginfig - endfig - extra_beginfig - extra_endfig - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mips.xml ktexteditor-5.31.0/src/syntax/data/mips.xml --- ktexteditor-5.28.0/src/syntax/data/mips.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mips.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,359 +0,0 @@ - - - - - - .align - .ascii - .asciiz - .byte - .double - .extern - .float - .globl - .half - .sdata - .set - .space - .word - - - .data - .kdata - .ktext - .text - - - abs.d - abs.s - add - add.d - add.s - addi - addiu - addu - and - andi - bc0f - bc0t - bc1f - bc1t - bc2f - bc2t - bc3f - bc3t - beq - bgez - bgezal - bgtz - blez - bltz - bltzal - bne - break - c.eq.d - c.eq.s - c.seq.s - c.seq.d - c.ueq.s - c.ueq.d - c.olt.d - c.olt.s - c.ole.d - c.ole.s - c.ult.d - c.ult.s - c.ule.d - c.ule.s - c.le.d - c.le.s - c.lt.d - c.lt.s - c.un.s - c.un.d - cvt.d.s - cvt.d.w - cvt.s.d - cvt.s.w - cvt.w.d - cvt.w.s - div.d - div.s - j - jal - jalr - jr - lb - lbu - lh - lhu - lui - lw - lwc0 - lwc1 - lwc2 - lwc3 - lwl - lwr - mfc0 - mfc1 - mfc2 - mfc3 - mfhi - mflo - mtc0 - mtc1 - mtc2 - mtc3 - mthi - mtlo - mul.d - mul.s - mult - multu - nor - or - ori - rfe - sb - sh - sw - swcl - swl - swr - sll - sllv - slt - slti - sltiu - sra - srav - srl - srlv - sub - sub.d - sub.s - subu - sw - swc0 - swc1 - swc2 - swc3 - swl - swr - syscall - xor - xori - - - abs - b - beqz - bge - bgeu - bgt - bgtu - ble - bleu - blt - bltu - bnez - div - divu - l.d - l.s - la - ld - li - li.d - li.s - mfc0.d - mfc1.d - mfc2.d - mfc3.d - mov.d - mov.s - move - mul - mulo - mulou - neg - neg.d - neg.s - negu - nop - not - rem - remu - rol - ror - s.d - s.s - sd - seq - sge - sgeu - sgt - sgtu - sle - sleu - sne - ulh - ulhu - ulw - ush - usw - - - $0 - $1 - $2 - $3 - $4 - $5 - $6 - $7 - $8 - $9 - $10 - $11 - $12 - $13 - $14 - $15 - $16 - $17 - $18 - $19 - $20 - $21 - $22 - $23 - $24 - $25 - $26 - $27 - $28 - $29 - $30 - $31 - $zero - $t0 - $t1 - $t2 - $t3 - $t4 - $t5 - $t6 - $t7 - $t8 - $t9 - - - $v0 - $v1 - $a0 - $a1 - $a2 - $a3 - $k0 - $k1 - $at - $gp - $sp - $fp - $s0 - $s1 - $s2 - $s3 - $s4 - $s5 - $s6 - $s7 - $ra - - - $f0 - $f1 - $f2 - $f3 - $f4 - $f5 - $f6 - $f7 - $f8 - $f9 - $f10 - $f11 - $f12 - $f13 - $f14 - $f15 - $f16 - $f17 - $f18 - $f19 - $f20 - $f21 - $f22 - $f23 - $f24 - $f25 - $f26 - $f27 - $f28 - $f29 - $f30 - $f31 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/modelica.xml ktexteditor-5.31.0/src/syntax/data/modelica.xml --- ktexteditor-5.28.0/src/syntax/data/modelica.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/modelica.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,260 +0,0 @@ - - - - - - - - - - - block - class - connector - function - model - package - record - - - - - type - - - - - Boolean - enumeration - ExternalObject - Integer - Real - StateSelect - String - - - - - display - fixed - max - min - nominal - quantity - start - stateSelect - unit - value - - - - - algorithm - and - annotation - assert - break - connect - constant - constrainedby - discrete - else - elseif - elsewhen - encapsulated - end - equation - expandable - extends - external - false - final - flow - for - if - import - in - inner - input - loop - not - or - outer - output - parameter - partial - protected - public - redeclare - replaceable - return - then - true - when - while - within - - - - - - time - - abs - ceil - div - floor - integer - mod - rem - sign - sqrt - - sin - cos - tan - asin - acos - atan - atan2 - sinh - cosh - tanh - exp - log - log10 - - analysisType - cardinality - change - delay - der - direction - edge - initial - isPresent - noEvent - pre - reinit - sample - semiLinear - smooth - terminal - terminate - - ndims - size - scalar - vector - matrix - array - zeros - ones - fill - identity - diagonal - linspace - min - max - sum - product - transpose - outerProduct - symmetric - cross - skew - cat - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/modelines.xml ktexteditor-5.31.0/src/syntax/data/modelines.xml --- ktexteditor-5.28.0/src/syntax/data/modelines.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/modelines.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,194 +0,0 @@ - - - -]> - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/modula-2.xml ktexteditor-5.31.0/src/syntax/data/modula-2.xml --- ktexteditor-5.28.0/src/syntax/data/modula-2.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/modula-2.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,188 +0,0 @@ - - - - - - ASSEMBLER - ALLOCATE - DEALLOCATE - SIZE - Write - WriteString - WriteCard - WriteLn - WriteBf - WriteInt - WriteReal - WriteLongReal - Read - ReadString - ReadCard - ReadInt - ReadReal - ReadLongReal - Open - Close - OpenInput - OpenOutput - Accessible - Erase - EOF - Done - EmptyString - Assign - Append - Length - StrEq - Copy - Concat - pos - Delete - Insert - compare - CAPS - PutBf - GetArgs - GetEnv - ResetClock - UserTime - SystemTime - GetChar - GetInt - GetCard - GetString - GetReal - GetLongReal - PutChar - PutInt - PutCard - PutString - PutReal - PutLongReal - PutLn - - - AND - ARRAY - ASM - BEGIN - CASE - CONST - DIV - DO - ELSE - ELSIF - END - FOR - IF - IMPLEMENTATION - IN - SET - INCL - EXCL - ABS - BITSET - CAP - CHR - DEC - HALT - HIGH - INC - MAX - MIN - ODD - ORD - PROC - TRUNC - VAL - MOD - NIL - NOT - OF - OR - PROCEDURE - MODULE - DEFINITION - RECORD - REPEAT - THEN - TO - TYPE - UNTIL - LOOP - VAR - WHILE - WITH - EXIT - FALSE - TRUE - BY - FROM - IMPORT - EXPORT - QUALIFIED - RETURN - NEWPROCESS - TRANSFER - IOTRANSFER - FOREIGN - - - INTEGER - CARDINAL - SHORTINT - SHORTCARD - LONGINT - LONGREAL - CHAR - BOOLEAN - POINTER - ADDRESS - ADR - REAL - File - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/monobasic.xml ktexteditor-5.31.0/src/syntax/data/monobasic.xml --- ktexteditor-5.28.0/src/syntax/data/monobasic.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/monobasic.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,215 +0,0 @@ - - - - - - - - - Option - Explicit - Strict - Imports - Inherits - As - New - Dim - Redim - Private - Friend - Public - Const - ReadOnly - WriteOnly - Default - Shared - Shadows - Protected - Overloads - Overrides - NotOverridable - NotInheritable - MustInherit - MustOverride - MyBase - MyClass - Me - Delegate - Catch - Finaly - When - Throw - To - Step - Then - Else - True - False - Nothing - Call - ByVal - ByRef - Optional - ParamArray - Return - Declare - WithEvents - Event - RaiseEvent - AddHandler - And - Or - Not - Xor - AndAlso - OrElse - Goto - On - Error - Resume - - - - Boolean - Char - String - Integer - Long - Double - Object - Exception - Date - DateTime - Int16 - Int32 - Int64 - ParamArray - TimeSpan - Byte - Decimal - IntPtr - Single - Guid - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/mup.xml ktexteditor-5.31.0/src/syntax/data/mup.xml --- ktexteditor-5.28.0/src/syntax/data/mup.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/mup.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,865 +0,0 @@ - - - - - - - - score - music - header - header2 - footer - footer2 - top - top2 - bottom - bottom2 - staff - voice - grids - music - headshapes - block - - - - - aboveorder - addtranspose - barstyle - beamslope - beamstyle - beloworder - betweenorder - bottommargin - brace - bracket - cancelkey - chorddist - clef - crescdist - defoct - dist - division - dyndist - endingstyle - firstpage - font - fontfamily - gridfret - gridsatend - gridscale - gridswhereused - key - label - label2 - leftmargin - lyricsalign - lyricsfont - lyricsfontfamily - lyricssize - measnum - measnumfont - measnumfontfamily - measnumsize - noteheads - numbermrpt - ontheline - packexp - packfact - pad - pageheight - pagewidth - panelsperpage - pedstyle - printmultnum - rehstyle - release - restcombine - restsymmult - rightmargin - scale - scorepad - scoresep - size - stafflines - staffpad - staffs - staffscale - staffsep - stemlen - swingunit - sylposition - tabwhitebox - time - timeunit - topmargin - transpose - units - visible - vscheme - warn - - - - - y - n - 2f - 2o - 3f - 3o - mussym - octave - dyn - othertext - chord - lyrics - ending - reh - up - down - major - minor - perfect - augmented - diminished - maj - min - per - aug - dim - pedal - 8treble - treble8 - treble - frenchviolin - soprano - mezzosoprano - alto - tenor - baritone - bass - cut - common - line - alt - pedstar - top - barred - grouped - times - boxed - circled - plain - 1n - 5n - 1drum - 5drum - drum - tab - inches - cm - whereused - - - - - define - ifdef - ifndef - - - - - @ - endif - - - - - else - include - undef - - - - - exclamdown - questiondown - sterling - yen - cent - quotedblbase - quotedblleft - `` - quotedblright - '' - guillemotleft - << - guillemotright - >> - guildsinglleft - guilsinglright - dagger - daggerdbl - grave - acute - macron - breve - dotaccent - dieresis - ring - cedilla - hungarumlaut - ogonek - caron - emdash - AE - ae - ordfeminine - ordmasculine - Lslash - L/ - lslash - l/ - Oslash - O/ - oslash - o/ - OE - oe - dotlessi - germandbls - ss - Aacute - A' - aacute - a' - Acircumflex - A^ - acircumflex - a^ - Adieresis - A: - adieresis - a: - Agrave - A` - agrave - a` - Aring - Ao - aring - ao - Atilde - A~ - atilde - a~ - Ccedilla - C, - ccedilla - c, - Eacute - E' - eacute - e' - Ecircumflex - E^ - ecircumflex - e^ - Edieresis - E: - edieresis - e: - Egrave - E` - egrave - e` - Iacute - I' - iacute - i' - Icircumflex - I^ - icircumflex - i^ - Idieresis - i: - idieresis - i: - Igrave - I` - igrave - i` - Ntilde - N~ - ntilde - n~ - Oacute - O' - oacute - o' - Ocircumflex - O^ - ocircumflex - o^ - Odieresis - O: - odieresis - o: - Ograve - O` - ograve - o` - Otilde - O~ - otilde - o~ - Scaron - Sv - scaron - sv - Uacute - U' - uacute - u' - Ucircumflex - U^ - ucircumflex - u^ - Udieresis - U: - udieresis - u: - Ugrave - U` - ugrave - u` - Ydieresis - Y: - ydieresis - y: - Zcaron - Zv - zcaron - zv - bullet - space - - - - - gclef - fclef - cclef - com - cut - flat - dblflat - sharp - dblsharp - nat - 4n - 2n - 1n - dblwhole - xnote - diamond - filldiamond - dwhdiamond - dn2n - dn4n - dn8n - dn16n - dn32n - dn64n - dn128n - dn256n - up2n - up4n - up8n - up16n - up32n - up64n - up128n - up256n - upflag - dnflag - qwhrest - dwhrest - 1rest - 2rest - 4rest - 8rest - 16rest - 32rest - 64rest - 128rest - 256rest - begped - endped - pedal - tr - mor - invmor - turn - invturn - ferm - uferm - acc_gt - acc_hat - acc_uhat - leg - dot - wedge - uwedge - sign - coda - upbow - dnbow - rr - measrpt - copyright - dim - halfdim - triangle - - smgclef - smfclef - smcclef - smcom - smcut - smflat - smdblflat - smsharp - smdblsharp - smnat - sm4n - sm2n - sm1n - smdblwhole - smxnote - smdiamond - smfilldiamond - smdwhdiamond - smdn2n - smdn4n - smdn8n - smdn16n - smdn32n - smdn64n - smdn128n - smdn256n - smup2n - smup4n - smup8n - smup16n - smup32n - smup64n - smup128n - smup256n - smupflag - smdnflag - smqwhrest - smdwhrest - sm1rest - sm2rest - sm4rest - sm8rest - sm16rest - sm32rest - sm64rest - sm128rest - sm256rest - smbegped - smendped - smpedal - smtr - smmor - sminvmor - smturn - sminvturn - smferm - smuferm - smacc_gt - smacc_hat - smacc_uhat - smleg - smdot - smwedge - smuwedge - smsign - smcoda - smupbow - smdnbow - smrr - smmeasrpt - smcopyright - smdim - smhalfdim - smtriangle - - - - - print - left - right - center - title - paragraph - postscript - - - - - avantgarde - bookman - courier - helvetica - newcentury - palatino - times - - - - - rom - bold - ital - boldital - - - - - chord - analysis - figbass - dyn - - - - - dotted - dashed - wavy - wide - medium - - line - curve - to - bulge - - octave - mussym - phrase - pedal - roll - to - - down - up - with - - midi - - - - - above - below - between - all - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/nagios.xml ktexteditor-5.31.0/src/syntax/data/nagios.xml --- ktexteditor-5.28.0/src/syntax/data/nagios.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/nagios.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,84 +0,0 @@ - - - - - - host - hostgroup - service - servicegroup - contact - contactgroup - timeperiod - command - servicedependency - serviceescalation - hostdependency - hostescalation - hostextinfo - serviceextinfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/nasm.xml ktexteditor-5.31.0/src/syntax/data/nasm.xml --- ktexteditor-5.28.0/src/syntax/data/nasm.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/nasm.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,893 +0,0 @@ - - - - - - - - eax - ax - ah - al - ebx - bx - bh - bl - ecx - cx - ch - cl - edx - dx - dh - dl - ebp - bp - esi - si - edi - di - - esp - sp - - cs - ds - es - fs - gs - ss - - cr0 - - cr2 - cr3 - cr4 - - dr0 - dr1 - dr2 - dr3 - dr6 - dr7 - - st - - mm0 - mm1 - mm2 - mm3 - mm4 - mm5 - mm6 - mm7 - - xmm0 - xmm1 - xmm2 - xmm3 - xmm4 - xmm5 - xmm6 - xmm7 - - - aaa - aad - aam - aas - adc - add - addpd - addps - addsd - addss - addsubpd - addsubps - and - andnpd - andnps - andpd - andps - arpl - bound - bsf - bsr - bswap - bt - btc - btr - bts - call - cbw - cwde - cwd - cdq - cdqe - cqo - clc - cld - clgi - cli - clts - clflush - cmc - cmova - cmovae - cmovb - cmovbe - cmovc - cmove - cmovg - cmovge - cmovl - cmovle - cmovna - cmovnae - cmovnb - cmovnbe - cmovnc - cmovne - cmovng - cmovnge - cmovnl - cmovnle - cmovno - cmovnp - cmovns - cmovnz - cmovo - cmovp - cmovpe - cmovpo - cmovs - cmovz - cmp - cmpeqpd - cmpeqps - cmpeqsd - cmpeqss - cmplepd - cmpleps - cmplesd - cmpless - cmpltpd - cmpltps - cmpltsd - cmpltss - cmpneqpd - cmpneqps - cmpneqsd - cmpneqss - cmpnlepd - cmpnleps - cmpnlesd - cmpnless - cmpnltpd - cmpnltps - cmpnltsd - cmpnltss - cmpordpd - cmpordps - cmpordsd - cmpordss - cmppd - cmpps - cmps - cmpsb - cmpsd - cmpss - cmpsw - cmpunordpd - cmpunordps - cmpunordsd - cmpunordss - cmpxchg - cmpxchg486 - cmpxchg8b - cmpxchg16b - comisd - comiss - cpuid - cvtdq2pd - cvtdq2ps - cvtpd2dq - cvtpd2pi - cvtpd2ps - cvtpi2pd - cvtpi2ps - cvtps2dq - cvtps2pd - cvtps2pi - cvtsd2si - cvtsd2ss - cvtsi2sd - cvtsi2ss - cvtss2sd - cvtss2si - cvttpd2dq - cvttpd2pi - cvttps2dq - cvttps2pi - cvttsd2si - cvttss2si - daa - das - dec - div - divpd - divps - divsd - divss - emms - enter - f2xm1 - fabs - fadd - faddp - fbld - fbstp - fchs - fclex - fnclex - fcmovb - fcmovbe - fcmove - fcmovnb - fcmovnbe - fcmovne - fcmovnu - fcmovu - fcom - fcomp - fcompp - fcomi - fcomip - fcos - fdecstp - fdisi - feni - fdiv - fdivr - fdivp - fdivrp - femms - ffree - ffreep - fiadd - ficom - ficomp - fidiv - fidivr - fild - fimul - fincstp - finit - fist - fistp - fisttp - fisub - fisubr - fld - fld1 - fldl2e - fldl2t - fldlg2 - fldln2 - fldcw - fldenv - fldpi - fldz - fmul - fmulp - fndisi - fneni - fninit - fnop - fnsave - fnstcw - fnstenv - fnstsw - fnwait - fpatan - fptan - fprem - fprem1 - frndint - frstor - fsave - fscale - fsetpm - fsin - fsincos - fsqrt - fst - fstp - fstcw - fstenv - fstsw - fsub - fsubr - fsubp - fsubrp - ftst - fucom - fucomp - fucompp - fucomi - fucomip - fwait - fxam - fxch - fxrstor - fxsave - fxtract - fyl2x - fyl2xp1 - haddpd - haddps - hlt - hsubpd - hsubps - ibts - idiv - imul - in - inc - ins - insb - insd - insw - int - int1 - int3 - into - invd - invlpg - invlpga - iret - iretd - iretq - iretw - ja - jae - jb - jbe - jc - je - jg - jge - jl - jle - jna - jnae - jnb - jnbe - jnc - jne - jng - jnge - jnl - jnle - jno - jnp - jns - jnz - jo - jp - jpe - jpo - js - jz - jcxz - jecxz - jrcxz - jmp - lahf - lar - lddqu - ldmxcsr - lds - les - lea - leave - lfence - lfs - lgdt - lgs - lidt - lldt - lmsw - loadall - loadall286 - lods - lodsb - lodsd - lodsq - lodsw - loop - loope - loopne - loopnz - loopz - lsl - lss - ltr - maskmovdqu - maskmovq - maxpd - maxps - maxsd - maxss - mfence - minpd - minps - minsd - minss - monitor - mov - movapd - movaps - movd - movddup - movdq2q - movdqa - movdqu - movhlps - movhpd - movhps - movlhps - movlpd - movlps - movmskpd - movmskps - movntdq - movnti - movntpd - movntps - movntq - movq - movq2dq - movs - movsb - movsd - movshdup - movsldup - movsq - movss - movsx - movsxd - movsw - movupd - movups - movzx - mul - mulpd - mulps - mulsd - mulss - mwait - neg - nop - not - or - orpd - orps - out - outs - outsb - outsw - outsd - packssdw - packsswb - packuswb - paddb - paddd - paddq - paddsb - paddsw - paddusb - paddusw - paddw - pand - pandn - pause - pavgb - pavgusb - pavgw - pcmpeqb - pcmpeqw - pcmpeqd - pcmpgtb - pcmpgtw - pcmpgtd - pdistib - pextrw - pf2id - pf2iw - pfacc - pfadd - pfcmpeq - pfcmpge - pfcmpgt - pfmax - pfmin - pfmul - pfnacc - pfpnacc - pfrcp - pfrcpit1 - pfrcpit2 - pfrsqit1 - pfrsqrt - pfsub - pfsubr - pi2fd - pi2fw - pinsrw - pmachriw - pmaddwd - pmagw - pmaxsw - pmaxub - pminsw - pminub - pmovmskb - pmulhrw - pmulhuw - pmulhw - pmullw - pmuludq - pmvgezb - pmvlzb - pmvnzb - pmvzb - pop - popa - popaw - popad - popf - popfw - popfd - popfq - por - prefetch - prefetchnta - prefetcht0 - prefetcht1 - prefetcht2 - prefetchw - psadbw - pshufd - pshufhw - pshuflw - pshufw - pslld - pslldq - psllq - psllw - psrad - psraw - psrld - psrldq - psrlq - psrlw - psubb - psubd - psubq - psubsb - psubsiw - psubsw - psubusb - psubusw - psubw - pswapd - punpckhbw - punpckhdq - punpckhqdq - punpckhwd - punpcklbw - punpckldq - punpcklqdq - punpcklwd - push - pusha - pushad - pushaw - pushf - pushfd - pushfq - pushfw - pxor - rcl - rcr - rcpps - rcpss - rdmsr - rdpmc - rdshr - rdtsc - rdtscp - ret - retf - retn - rol - ror - rsdc - rsldt - rsm - rsqrtps - rsqrtss - rsts - sahf - sal - sar - salc - sbb - scas - scasb - scasd - scasq - scasw - seta - setae - setb - setbe - setc - sete - setg - setge - setl - setle - setna - setnae - setnb - setnbe - setnc - setne - setng - setnge - setnl - setnle - setno - setnp - setns - setnz - seto - setp - setpe - setpo - sets - setz - sfence - sgdt - shl - shld - shr - shrd - shufpd - shufps - sidt - skinit - sldt - smi - smint - smintold - smsw - sqrtpd - sqrtps - sqrtsd - sqrtss - stc - std - stgi - sti - stmxcsr - stos - stosb - stosd - stosq - stosw - str - sub - subpd - subps - subsd - subss - svdc - svldt - svts - swapgs - syscall - sysenter - sysexit - sysret - test - ucomisd - ucomiss - ud0 - ud1 - ud2 - umov - unpckhpd - unpckhps - unpcklpd - unpcklps - verr - verw - vmload - vmmcall - vmrun - vmsave - wait - wbinvd - wrmsr - wrshr - xadd - xbts - xchg - xlat - xlatb - xor - xorpd - xorps - - - - times - - equ - - db - dw - dd - dq - dt - - resb - resw - resd - resq - rest - - incbin - - byte - word - dword - qword - short - ptr - - - - absolute - bits - common - extern - global - org - section - seg - segment - strict - use16 - use32 - wrt - - struc - endstruc - istruc - at - iend - align - alignb - - __SECT__ - __NASM_MAJOR__ - __NASM_MINOR__ - __NASM_SUBMINOR__ - ___NASM_PATCHLEVEL__ - __NASM_VERSION_ID__ - __NASM_VER__ - __FILE__ - __LINE__ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/nemerle.xml ktexteditor-5.31.0/src/syntax/data/nemerle.xml --- ktexteditor-5.28.0/src/syntax/data/nemerle.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/nemerle.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,208 +0,0 @@ - - - - - - - abstract - def - delegate - event - extern - internal - mutable - override - public - private - protected - sealed - static - volatile - virtual - new - - - - macro - namespace - using - \[Record\] - - - - array - bool - byte - char - decimal - double - enum - float - int - list - long - object - sbyte - short - string - uint - ulong - ushort - variant - void - - - - _ - as - assert - base - catch - checked - do - else - false - finally - for - foreach - fun - get - if - ignore - implements - in - is - lock - match - null - out - params - ref - repeat - set - syntax - this - throw - true - try - typeof - unchecked - unless - when - where - while - with - - - - #define - #elif - #else - #endif - #endregion - #error - #if - #line - #region - #undef - #warning - #pragma - - - - class - interface - module - struct - type - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/nesc.xml ktexteditor-5.31.0/src/syntax/data/nesc.xml --- ktexteditor-5.28.0/src/syntax/data/nesc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/nesc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,192 +0,0 @@ - - - - - - break - case - continue - default - do - else - enum - extern - for - goto - if - inline - return - sizeof - struct - switch - typedef - union - while interface - module - configuration - implementation - components - as - uses - provides - includes - command - event - async - task - norace - default - __attribute__ - atomic - call - signal - post - - - - auto - char - const - double - float - int - long - register - restrict - short - signed - static - unsigned - void - volatile - _Imaginary - _Complex - _Bool - bool - uint8_t - uint16_t - uint32_t - uint64_t - result_t - SUCCESS - FAIL - TRUE - FALSE - TOSH_INTERRUPT - TOSH_SIGNAL - TOS_MsgPtr - TOS_Msg - - - FIXME - TODO - ### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/noweb.xml ktexteditor-5.31.0/src/syntax/data/noweb.xml --- ktexteditor-5.28.0/src/syntax/data/noweb.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/noweb.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/nsis-gen.py ktexteditor-5.31.0/src/syntax/data/nsis-gen.py --- ktexteditor-5.28.0/src/syntax/data/nsis-gen.py 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/nsis-gen.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -#!/usr/bin/env python - -from __future__ import print_function - -tokens = [] -with open("makensiscmdhelp.output") as f: # output from `makensis /cmdhelp` - for line in f: - if line.startswith(" "): - continue # line continuation - - tokens.append(line.split()[0]) - -keywords = [x[1:] for x in tokens if x.startswith("!")] -basefuncs = [x for x in tokens if not x.startswith("!")] - -print("KEYWORDS") -for keyword in keywords: - print(" %s " % keyword) -print() - -print("BASEFUNCS") -for basefunc in basefuncs: - print(" %s " % basefunc) diff -Nru ktexteditor-5.28.0/src/syntax/data/nsis.xml ktexteditor-5.31.0/src/syntax/data/nsis.xml --- ktexteditor-5.28.0/src/syntax/data/nsis.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/nsis.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,494 +0,0 @@ - - - - - - packhdr - finalize - system - execute - makensis - AddIncludeDir - include - cd - if - ifdef - ifndef - endif - define - undef - else - echo - warning - error - verbose - macro - macroend - macroundef - insertmacro - ifmacrodef - ifmacrondef - tempfile - delfile - appendfile - getdllversion - searchparse - searchreplace - AddPluginDir - - - nonfatal - MB_ICONQUESTION - MB_YESNO - MB_DEFBUTTON2 - MB_ICONINFORMATION - MB_OK - - - - MUI_SYSVERSION - MUI_ICON - MUI_UNICON - MUI_HEADERIMAGE - MUI_HEADERIMAGE_BITMAP - MUI_HEADERIMAGE_BITMAP_NOSTRETCH - MUI_HEADERIMAGE_BITMAP_RTL - MUI_HEADERIMAGE_BITMAP_RTL_NOSTRETCH - MUI_HEADERIMAGE_UNBITMAP - MUI_HEADERIMAGE_UNBITMAP_NOSTRETCH - MUI_HEADERIMAGE_UNBITMAP_RTL - MUI_HEADERIMAGE_UNBITMAP_RTL_NOSTRETCH - MUI_HEADERIMAGE_RIGHT - MUI_BGCOLOR - MUI_UI - MUI_UI_HEADERIMAGE - MUI_UI_HEADERIMAGE_RIGHT - MUI_UI_COMPONENTSPAGE_SMALLDESC - MUI_UI_COMPONENTSPAGE_NODESC - MUI_WELCOMEFINISHPAGE_BITMAP - MUI_WELCOMEFINISHPAGE_BITMAP_NOSTRETCH - MUI_WELCOMEFINISHPAGE_INI - MUI_UNWELCOMEFINISHPAGE_BITMAP - MUI_UNWELCOMEFINISHPAGE_BITMAP_NOSTRETCH - MUI_UNWELCOMEFINISHPAGE_INI - MUI_LICENSEPAGE_BGCOLOR - MUI_COMPONENTSPAGE_CHECKBITMAP - MUI_COMPONENTSPAGE_SMALLDESC - MUI_COMPONENTSPAGE_NODESC - MUI_INSTFILESPAGE_COLORS - MUI_INSTFILESPAGE_PROGRESSBAR - MUI_FINISHPAGE_NOAUTOCLOSE - MUI_UNFINISHPAGE_NOAUTOCLOSE - MUI_ABORTWARNING - MUI_ABORTWARNING_TEXT - MUI_UNABORTWARNING - MUI_UNABORTWARNING_TEXT - MUI_PAGE_WELCOME - MUI_PAGE_LICENSE - MUI_PAGE_COMPONENTS - MUI_PAGE_DIRECTORY - MUI_PAGE_STARTMENU - MUI_PAGE_INSTFILES - MUI_PAGE_FINISH - MUI_UNPAGE_WELCOME - MUI_UNPAGE_CONFIRM - MUI_UNPAGE_LICENSE - MUI_UNPAGE_COMPONENTS - MUI_UNPAGE_DIRECTORY - MUI_UNPAGE_INSTFILES - MUI_UNPAGE_FINISH - MUI_PAGE_HEADER_TEXT - MUI_PAGE_HEADER_SUBTEXT - MUI_WELCOMEPAGE_TITLE - MUI_WELCOMEPAGE_TITLE_3LINES - MUI_WELCOMEPAGE_TEXT - MUI_LICENSEPAGE_TEXT_TOP - MUI_LICENSEPAGE_TEXT_BOTTOM - MUI_LICENSEPAGE_BUTTON - MUI_LICENSEPAGE_CHECKBOX - MUI_LICENSEPAGE_CHECKBOX_TEXT - MUI_LICENSEPAGE_RADIOBUTTONS - MUI_LICENSEPAGE_RADIOBUTTONS_TEXT_ACCEPT - MUI_LICENSEPAGE_RADIOBUTTONS_TEXT_DECLINE - MUI_COMPONENTSPAGE_TEXT_TOP - MUI_COMPONENTSPAGE_TEXT_COMPLIST - MUI_COMPONENTSPAGE_TEXT_INSTTYPE - MUI_COMPONENTSPAGE_TEXT_DESCRIPTION_TITLE - MUI_COMPONENTSPAGE_TEXT_DESCRIPTION_INFO - MUI_DIRECTORYPAGE_TEXT_TOP - MUI_DIRECTORYPAGE_TEXT_DESTINATION - MUI_DIRECTORYPAGE_VARIABLE - MUI_DIRECTORYPAGE_VERIFYONLEAVE - MUI_STARTMENU_WRITE_BEGIN - MUI_STARTMENU_WRITE_END - MUI_STARTMENUPAGE_TEXT_TOP - MUI_STARTMENUPAGE_TEXT_CHECKBOX - MUI_STARTMENUPAGE_DEFAULTFOLDER - MUI_STARTMENUPAGE_NODISABLE - MUI_STARTMENUPAGE_REGISTRY_ROOT - MUI_STARTMENUPAGE_REGISTRY_KEY - MUI_STARTMENUPAGE_REGISTRY_VALUENAME - MUI_INSTFILESPAGE_FINISHHEADER_TEXT - MUI_INSTFILESPAGE_FINISHHEADER_SUBTEXT - MUI_INSTFILESPAGE_ABORTHEADER_TEXT - MUI_INSTFILESPAGE_ABORTHEADER_SUBTEXT - MUI_FINISHPAGE_TITLE - MUI_FINISHPAGE_TITLE_3LINES - MUI_FINISHPAGE_TEXT - MUI_FINISHPAGE_TEXT_LARGE - MUI_FINISHPAGE_BUTTON - MUI_FINISHPAGE_TEXT_REBOOT - MUI_FINISHPAGE_TEXT_REBOOTNOW - MUI_FINISHPAGE_TEXT_REBOOTLATER - MUI_FINISHPAGE_RUN - MUI_FINISHPAGE_RUN_TEXT - MUI_FINISHPAGE_RUN_PARAMETERS - MUI_FINISHPAGE_RUN_NOTCHECKED - MUI_FINISHPAGE_RUN_FUNCTION - MUI_FINISHPAGE_SHOWREADME - MUI_FINISHPAGE_SHOWREADME_TEXT - MUI_FINISHPAGE_SHOWREADME_NOTCHECKED - MUI_FINISHPAGE_SHOWREADME_FUNCTION - MUI_FINISHPAGE_LINK - MUI_FINISHPAGE_LINK_LOCATION - MUI_FINISHPAGE_LINK_COLOR - MUI_FINISHPAGE_NOREBOOTSUPPORT - MUI_UNCONFIRMPAGE_TEXT_TOP - MUI_UNCONFIRMPAGE_TEXT_LOCATION - MUI_LANGUAGE - MUI_LANGDLL_DISPLAY - MUI_LANGDLL_REGISTRY_ROOT - MUI_LANGDLL_REGISTRY_KEY - MUI_LANGDLL_REGISTRY_VALUENAME - MUI_LANGDLL_WINDOWTITLE - MUI_LANGDLL_INFO - MUI_LANGDLL_ALWAYSSHOW - MUI_RESERVEFILE_INSTALLOPTIONS - MUI_RESERVEFILE_LANGDLL - MUI_FUNCTION_DESCRIPTION_BEGIN - MUI_DESCRIPTION_TEXT - MUI_FUNCTION_DESCRIPTION_END - MUI_INSTALLOPTIONS_EXTRACT - MUI_INSTALLOPTIONS_EXTRACT_AS - MUI_HEADER_TEXT - MUI_INSTALLOPTIONS_DISPLAY - MUI_INSTALLOPTIONS_INITDIALOG - MUI_INSTALLOPTIONS_SHOW - MUI_INSTALLOPTIONS_DISPLAY_RETURN - MUI_INSTALLOPTIONS_SHOW_RETURN - MUI_INSTALLOPTIONS_READ - MUI_INSTALLOPTIONS_WRITE - MUI_CUSTOMFUNCTION_GUIINIT - MUI_CUSTOMFUNCTION_UNGUIINIT - MUI_CUSTOMFUNCTION_ABORT - MUI_CUSTOMFUNCTION_UNABORT - MUI_PAGE_CUSTOMFUNCTION_PRE - MUI_PAGE_CUSTOMFUNCTION_SHOW - MUI_PAGE_CUSTOMFUNCTION_LEAVE - MUI_WELCOMEFINISHPAGE_CUSTOMFUNCTION_INIT - - - IfCmd - If - Unless - IfNot - AndIf - AndUnless - AndIfNot - OrIf - OrUnless - OrIfNot - Else - ElseIf - ElseUnless - ElseIfNot - EndIf - EndUnless - IfThen - IfNotThen - ForEach - For - ExitFor - Next - While - ExitWhile - EndWhile - Do - DoWhile - DoUntil - ExitDo - Loop - LoopWhile - LoopUntil - Continue - Break - Select - CaseElse - Case_Else - Default - Case - Case2 - Case3 - Case4 - Case5 - EndSelect - Switch - EndSwitch - - - - Abort - AddBrandingImage - AddSize - AutoCloseWindow - BGFont - BGGradient - BrandingText - BringToFront - Call - CallInstDLL - Caption - ChangeUI - ClearErrors - ComponentText - GetDLLVersion - GetDLLVersionLocal - GetFileTime - GetFileTimeLocal - CopyFiles - CRCCheck - CreateDirectory - CreateFont - CreateShortcut - SetDatablockOptimize - DeleteINISec - DeleteINIStr - DeleteRegKey - DeleteRegValue - Delete - DetailPrint - DirText - DirShow - DirVar - DirVerify - GetInstDirError - AllowRootDirInstall - CheckBitmap - EnableWindow - EnumRegKey - EnumRegValue - Exch - Exec - ExecWait - ExecShell - ExpandEnvStrings - FindWindow - FindClose - FindFirst - FindNext - File - FileBufSize - FlushINI - ReserveFile - FileClose - FileErrorText - FileOpen - FileRead - FileWrite - FileReadByte - FileWriteByte - FileReadUTF16LE - FileWriteUTF16LE - FileReadWord - FileWriteWord - FileSeek - Function - FunctionEnd - GetDlgItem - GetFullPathName - GetTempFileName - HideWindow - Icon - IfAbort - IfErrors - IfFileExists - IfRebootFlag - IfSilent - InstallDirRegKey - InstallColors - InstallDir - InstProgressFlags - InstType - IntOp - IntCmp - IntCmpU - IntFmt - IsWindow - Goto - LangString - LangStringUP - LicenseData - LicenseForceSelection - LicenseLangString - LicenseText - LicenseBkColor - LoadLanguageFile - LogSet - LogText - MessageBox - Nop - Name - OutFile - Page - PageCallbacks - PageEx - PageExEnd - Pop - Push - Quit - ReadINIStr - ReadRegDWORD - ReadRegStr - ReadEnvStr - Reboot - RegDLL - Rename - Return - RMDir - Section - SectionEnd - SectionIn - SubSection - SectionGroup - SubSectionEnd - SectionGroupEnd - SearchPath - SectionSetFlags - SectionGetFlags - SectionSetInstTypes - SectionGetInstTypes - SectionGetText - SectionSetText - SectionGetSize - SectionSetSize - GetCurInstType - SetCurInstType - InstTypeSetText - InstTypeGetText - SendMessage - SetAutoClose - SetCtlColors - SetBrandingImage - SetCompress - SetCompressor - SetCompressorDictSize - SetCompressionLevel - SetDateSave - SetDetailsView - SetDetailsPrint - SetErrors - SetErrorLevel - GetErrorLevel - SetFileAttributes - SetFont - SetOutPath - SetOverwrite - SetPluginUnload - SetRebootFlag - SetRegView - SetShellVarContext - SetSilent - ShowInstDetails - ShowUninstDetails - ShowWindow - SilentInstall - SilentUnInstall - Sleep - StrCmp - StrCmpS - StrCpy - UnsafeStrCpy - StrLen - SubCaption - Unicode - UninstallExeName - UninstallCaption - UninstallIcon - UninstPage - UninstallText - UninstallSubCaption - UnRegDLL - WindowIcon - WriteINIStr - WriteRegBin - WriteRegDWORD - WriteRegStr - WriteRegExpandStr - WriteUninstaller - PEDllCharacteristics - PESubsysVer - XPStyle - RequestExecutionLevel - ManifestDPIAware - ManifestSupportedOS - MiscButtonText - DetailsButtonText - UninstallButtonText - InstallButtonText - SpaceTexts - CompletedText - GetFunctionAddress - GetLabelAddress - GetCurrentAddress - InitPluginsDir - AllowSkipFiles - Var - VIAddVersionKey - VIProductVersion - VIFileVersion - LockWindow - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/objectivecpp.xml ktexteditor-5.31.0/src/syntax/data/objectivecpp.xml --- ktexteditor-5.28.0/src/syntax/data/objectivecpp.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/objectivecpp.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,318 +0,0 @@ - - - - - - break - case - continue - default - do - else - enum - extern - for - goto - if - return - sizeof - struct - switch - typedef - union - while - @class - @defs - @encode - @end - @implementation - @interface - @private - @protected - @protocol - @public - @selector - self - super - - asm - catch - class - const_cast - delete - dynamic_cast - explicit - export - false - friend - inline - namespace - new - operator - private - protected - public - qobject_cast - reinterpret_cast - static_cast - template - this - throw - true - try - typeid - type_info - typename - using - virtual - - and - and_eq - bad_cast - bad_typeid - bitand - bitor - compl - not - not_eq - or - or_eq - xor - xor_eq - - - K_DCOP - SLOT - SIGNAL - Q_CLASSINFO - Q_ENUMS - Q_EXPORT - Q_OBJECT - Q_OVERRIDE - Q_PROPERTY - Q_SETS - Q_SIGNALS - Q_SLOTS - Q_FOREACH - Q_DECLARE_FLAGS - Q_INIT_RESOURCE - Q_CLEANUP_RESOURCE - Q_GLOBAL_STATIC - Q_GLOBAL_STATIC_WITH_ARGS - Q_DECLARE_INTERFACE - Q_DECLARE_TYPEINFO - Q_DECLARE_SHARED - Q_DECLARE_FLAGS - Q_DECLARE_OPERATORS_FOR_FLAGS - Q_FOREVER - Q_DECLARE_PRIVATE - Q_DECLARE_PUBLIC - Q_D - Q_Q - Q_DISABLE_COPY - Q_INTERFACES - Q_FLAGS - Q_SCRIPTABLE - Q_INVOKABLE - Q_GADGET - Q_ARG - Q_RETURN_ARG - Q_ASSERT - Q_ASSERT_X - TRUE - FALSE - connect - disconnect - emit - signals - slots - foreach - forever - - - auto - char - const - double - float - int - long - register - short - signed - static - unsigned - void - volatile - - bool - mutable - uchar - uint - int8_t - int16_t - int32_t - int64_t - uint8_t - uint16_t - uint32_t - uint64_t - wchar_t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/objectivec.xml ktexteditor-5.31.0/src/syntax/data/objectivec.xml --- ktexteditor-5.28.0/src/syntax/data/objectivec.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/objectivec.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ - - - - - - break - case - continue - default - do - else - enum - extern - for - goto - if - return - sizeof - struct - switch - typedef - union - while - @class - @defs - @encode - @end - @implementation - @interface - @private - @protected - @protocol - @public - @selector - self - super - - - auto - char - const - double - float - int - long - register - short - signed - static - unsigned - void - volatile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ocamllex.xml ktexteditor-5.31.0/src/syntax/data/ocamllex.xml --- ktexteditor-5.28.0/src/syntax/data/ocamllex.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ocamllex.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ - - - - - - -]> - - - - - - and - as - eof - let - parse - rule - shortest - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ocaml.xml ktexteditor-5.31.0/src/syntax/data/ocaml.xml --- ktexteditor-5.28.0/src/syntax/data/ocaml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ocaml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,615 +0,0 @@ - - - - - - - - - - - - -]> - - - - - in - as - forall - - - and - as - assert - asr - begin - class - closed - constraint - do - done - downto - else - end - exception - external - false - for - fun - function - functor - if - in - include - inherit - land - lazy - let - lor - lsl - lsr - lxor - match - method - mod - module - mutable - new - object - of - open - or - parser - private - rec - sig - struct - then - to - true - try - type - val - virtual - when - while - with - - - - - - - declare - value - where - - - - abs - abs_float - acos - asin - at_exit - atan - atan2 - bool_of_string - ceil - char_of_int - classify_float - close_in - close_in_noerr - close_out - close_out_noerr - compare - cos - cosh - decr - do_at_exit - epsilon_float - exp - float - float_of_int - float_of_string - floor - flush - flush_all - format_of_string - frexp - fst - ignore - in_channel_length - incr - infinity - input - input_binary_int - input_byte - input_char - input_line - input_value - int_of_char - int_of_float - int_of_string - ldexp - lnot - log - log10 - max - max_float - max_int - min - min_float - min_int - mod_float - modf - nan - neg_infinity - not - open_in - open_in_bin - open_in_gen - open_out - open_out_bin - open_out_gen - out_channel_length - output - output_binary_int - output_byte - output_char - output_string - output_value - pos_in - pos_out - pred - prerr_char - prerr_endline - prerr_float - prerr_int - prerr_newline - prerr_string - print_char - print_endline - print_float - print_int - print_newline - print_string - read_float - read_int - read_line - really_input - ref - seek_in - seek_out - set_binary_mode_in - set_binary_mode_out - sin - sinh - snd - sqrt - stderr - stdin - stdout - string_of_bool - string_of_float - string_of_format - string_of_int - succ - tan - tanh - truncate - unsafe_really_input - valid_float_lexem - - - - - - exit - failwith - invalid_arg - raise - - - - array - bool - char - exn - format4 - fpclass - in_channel - int - int32 - int64 - lazy_t - list - nativeint - open_flag - option - out_channel - real - ref - string - unit - - - - FP_infinite - FP_nan - FP_normal - FP_subnormal - FP_zero - None - Open_append - Open_append - Open_binary - Open_binary - Open_creat - Open_creat - Open_excl - Open_excl - Open_nonblock - Open_nonblock - Open_rdonly - Open_rdonly - Open_text - Open_text - Open_trunc - Open_trunc - Open_wronly - Open_wronly - Some - - - - Assert_failure - Division_by_zero - End_of_file - Exit - Failure - Invalid_argument - Match_failure - Not_found - Out_of_memory - Stack_overflow - Sys_blocked_io - Sys_error - Undefined_recursive_module - - - - Arg - Array - ArrayLabels - Buffer - Callback - Char - Complex - Digest - Filename - Format - Gc - Genlex - Hashtbl - Int32 - Int64 - Lazy - Lexing - List - ListLabels - Map - Marshal - MoreLabels - Nativeint - Oo - Parsing - Printexc - Printf - Queue - Random - Scanf - Set - Sort - Stack - StdLabels - Stream - String - StringLabels - Sys - Weak - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ocamlyacc.xml ktexteditor-5.31.0/src/syntax/data/ocamlyacc.xml --- ktexteditor-5.28.0/src/syntax/data/ocamlyacc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ocamlyacc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,160 +0,0 @@ - - - - - - - - - -]> - - - - - %token - %type - - - - %left - %right - %nonassoc - %start - - - - %prec - error - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/octave.xml ktexteditor-5.31.0/src/syntax/data/octave.xml --- ktexteditor-5.28.0/src/syntax/data/octave.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/octave.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,2219 +0,0 @@ - - - - - - - - - - - - all_va_args - break - case - continue - else - elseif - end_unwind_protect - global - gplot - gsplot - otherwise - persistent - replot - return - static - until - unwind_protect - unwind_protect_cleanup - varargin - varargout - - - - argv - e - eps - false - F_DUPFD - F_GETFD - F_GETFL - filesep - F_SETFD - F_SETFL - i - I - inf - Inf - j - J - NA - nan - NaN - O_APPEND - O_ASYNC - O_CREAT - OCTAVE_HOME - OCTAVE_VERSION - O_EXCL - O_NONBLOCK - O_RDONLY - O_RDWR - O_SYNC - O_TRUNC - O_WRONLY - pi - program_invocation_name - program_name - P_tmpdir - realmax - realmin - SEEK_CUR - SEEK_END - SEEK_SET - SIG - stderr - stdin - stdout - true - ans - automatic_replot - beep_on_error - completion_append_char - crash_dumps_octave_core - current_script_file_name - debug_on_error - debug_on_interrupt - debug_on_warning - debug_symtab_lookups - DEFAULT_EXEC_PATH - DEFAULT_LOADPATH - default_save_format - echo_executing_commands - EDITOR - EXEC_PATH - FFTW_WISDOM_PROGRAM - fixed_point_format - gnuplot_binary - gnuplot_command_axes - gnuplot_command_end - gnuplot_command_plot - gnuplot_command_replot - gnuplot_command_splot - gnuplot_command_title - gnuplot_command_using - gnuplot_command_with - gnuplot_has_frames - history_file - history_size - ignore_function_time_stamp - IMAGEPATH - INFO_FILE - INFO_PROGRAM - __kluge_procbuf_delay__ - LOADPATH - MAKEINFO_PROGRAM - max_recursion_depth - octave_core_file_format - octave_core_file_limit - octave_core_file_name - output_max_field_width - output_precision - page_output_immediately - PAGER - page_screen_output - print_answer_id_name - print_empty_dimensions - print_rhs_assign_val - PS1 - PS2 - PS4 - save_header_format_string - save_precision - saving_history - sighup_dumps_octave_core - sigterm_dumps_octave_core - silent_functions - split_long_rows - string_fill_char - struct_levels_to_print - suppress_verbose_help_message - variables_can_hide_functions - warn_assign_as_truth_value - warn_divide_by_zero - warn_empty_list_elements - warn_fortran_indexing - warn_function_name_clash - warn_future_time_stamp - warn_imag_to_real - warn_matlab_incompatible - warn_missing_semicolon - warn_neg_dim_as_zero - warn_num_to_str - warn_precedence_change - warn_reload_forces_clear - warn_resize_on_range_error - warn_separator_insert - warn_single_quote_string - warn_str_to_num - warn_undefined_return_values - warn_variable_switch_label - whos_line_format - - - - casesen - cd - chdir - clear - dbclear - dbstatus - dbstop - dbtype - dbwhere - diary - echo - edit_history - __end__ - format - gset - gshow - help - history - hold - iskeyword - isvarname - load - ls - mark_as_command - mislocked - mlock - more - munlock - run_history - save - set - show - type - unmark_command - which - who - whos - - - - abs - acos - acosh - all - angle - any - append - arg - argnames - asin - asinh - assignin - atan - atan2 - atanh - atexit - bitand - bitmax - bitor - bitshift - bitxor - casesen - cat - cd - ceil - cell - cell2struct - cellstr - char - chdir - class - clc - clear - clearplot - clg - closeplot - completion_matches - conj - conv - convmtx - cos - cosh - cumprod - cumsum - dbclear - dbstatus - dbstop - dbtype - dbwhere - deconv - det - dftmtx - diag - diary - disp - document - do_string_escapes - double - dup2 - echo - edit_history - __end__ - erf - erfc - ERRNO - error - __error_text__ - error_text - eval - evalin - exec - exist - exit - exp - eye - fclose - fcntl - fdisp - feof - ferror - feval - fflush - fft - fgetl - fgets - fieldnames - file_in_loadpath - file_in_path - filter - find - find_first_of_in_loadpath - finite - fix - floor - fmod - fnmatch - fopen - fork - format - formula - fprintf - fputs - fread - freport - frewind - fscanf - fseek - ftell - func2str - functions - fwrite - gamma - gammaln - getegid - getenv - geteuid - getgid - getpgrp - getpid - getppid - getuid - glob - graw - gset - gshow - help - history - hold - home - horzcat - ifft - imag - inline - input - input_event_hook - int16 - int32 - int64 - int8 - intmax - intmin - inv - inverse - ipermute - isalnum - isalpha - isascii - isbool - iscell - iscellstr - ischar - iscntrl - iscomplex - isdigit - isempty - isfield - isfinite - isglobal - isgraph - ishold - isieee - isinf - iskeyword - islist - islogical - islower - ismatrix - isna - isnan - is_nan_or_na - isnumeric - isprint - ispunct - isreal - isspace - isstream - isstreamoff - isstruct - isupper - isvarname - isxdigit - kbhit - keyboard - kill - lasterr - lastwarn - length - lgamma - link - linspace - list - load - log - log10 - ls - lstat - lu - mark_as_command - mislocked - mkdir - mkfifo - mkstemp - mlock - more - munlock - nargin - nargout - native_float_format - ndims - nth - numel - octave_config_info - octave_tmp_file_name - ones - pause - pclose - permute - pipe - popen - printf - __print_symbol_info__ - __print_symtab_info__ - prod - purge_tmp_files - putenv - puts - pwd - quit - rank - readdir - readlink - read_readline_init_file - real - rehash - rename - reshape - reverse - rmdir - rmfield - roots - round - run_history - save - scanf - set - shell_cmd - show - sign - sin - sinh - size - sizeof - sleep - sort - source - splice - sprintf - sqrt - squeeze - sscanf - stat - str2func - streamoff - struct - struct2cell - sum - sumsq - symlink - system - tan - tanh - tilde_expand - tmpfile - tmpnam - toascii - __token_count__ - tolower - toupper - type - typeinfo - uint16 - uint32 - uint64 - uint8 - umask - undo_string_escapes - unlink - unmark_command - usage - usleep - va_arg - va_start - vectorize - vertcat - vr_val - waitpid - warning - warranty - which - who - whos - zeros - airy - balance - besselh - besseli - besselj - besselk - bessely - betainc - chol - colloc - daspk - daspk_options - dasrt - dasrt_options - dassl - dassl_options - det - eig - endgrent - endpwent - expm - fft - fft2 - fftn - fftw_wisdom - filter - find - fsolve - fsolve_options - gammainc - gcd - getgrent - getgrgid - getgrnam - getpwent - getpwnam - getpwuid - getrusage - givens - gmtime - hess - ifft - ifft2 - ifftn - inv - inverse - kron - localtime - lpsolve - lpsolve_options - lsode - lsode_options - lu - max - min - minmax - mktime - odessa - odessa_options - pinv - qr - quad - quad_options - qz - rand - randn - schur - setgrent - setpwent - sort - sqrtm - strftime - strptime - svd - syl - time - abcddim - __abcddims__ - acot - acoth - acsc - acsch - analdemo - anova - arch_fit - arch_rnd - arch_test - are - arma_rnd - asctime - asec - asech - autocor - autocov - autoreg_matrix - axis - axis2dlim - __axis_label__ - bar - bartlett - bartlett_test - base2dec - bddemo - beep - bessel - beta - beta_cdf - betai - beta_inv - beta_pdf - beta_rnd - bin2dec - bincoeff - binomial_cdf - binomial_inv - binomial_pdf - binomial_rnd - bitcmp - bitget - bitset - blackman - blanks - bode - bode_bounds - __bodquist__ - bottom_title - bug_report - buildssic - c2d - cart2pol - cart2sph - cauchy_cdf - cauchy_inv - cauchy_pdf - cauchy_rnd - cellidx - center - chisquare_cdf - chisquare_inv - chisquare_pdf - chisquare_rnd - chisquare_test_homogeneity - chisquare_test_independence - circshift - clock - cloglog - close - colormap - columns - com2str - comma - common_size - commutation_matrix - compan - complement - computer - cond - contour - controldemo - conv - cor - corrcoef - cor_test - cot - coth - cov - cputime - create_set - cross - csc - csch - ctime - ctrb - cut - d2c - damp - dare - date - dcgain - deal - deblank - dec2base - dec2bin - dec2hex - deconv - delete - DEMOcontrol - demoquat - detrend - dezero - dgkfdemo - dgram - dhinfdemo - diff - diffpara - dir - discrete_cdf - discrete_inv - discrete_pdf - discrete_rnd - dkalman - dlqe - dlqg - dlqr - dlyap - dmr2d - dmult - dot - dre - dump_prefs - duplication_matrix - durbinlevinson - empirical_cdf - empirical_inv - empirical_pdf - empirical_rnd - erfinv - __errcomm__ - errorbar - __errplot__ - etime - exponential_cdf - exponential_inv - exponential_pdf - exponential_rnd - f_cdf - fftconv - fftfilt - fftshift - figure - fileparts - findstr - f_inv - fir2sys - flipdim - fliplr - flipud - flops - f_pdf - fractdiff - frdemo - freqchkw - __freqresp__ - freqz - freqz_plot - f_rnd - f_test_regression - fullfile - fv - fvl - gamma_cdf - gammai - gamma_inv - gamma_pdf - gamma_rnd - geometric_cdf - geometric_inv - geometric_pdf - geometric_rnd - gls - gram - gray - gray2ind - grid - h2norm - h2syn - hamming - hankel - hanning - hex2dec - hilb - hinf_ctr - hinfdemo - hinfnorm - hinfsyn - hinfsyn_chk - hinfsyn_ric - hist - hotelling_test - hotelling_test_2 - housh - hsv2rgb - hurst - hypergeometric_cdf - hypergeometric_inv - hypergeometric_pdf - hypergeometric_rnd - image - imagesc - impulse - imshow - ind2gray - ind2rgb - ind2sub - index - int2str - intersection - invhilb - iqr - irr - isa - is_abcd - is_bool - is_complex - is_controllable - isdefinite - is_detectable - is_dgkf - is_digital - is_duplicate_entry - is_global - is_leap_year - isletter - is_list - is_matrix - is_observable - ispc - is_sample - is_scalar - isscalar - is_signal_list - is_siso - is_square - issquare - is_stabilizable - is_stable - isstr - is_stream - is_struct - is_symmetric - issymmetric - isunix - is_vector - isvector - jet707 - kendall - kolmogorov_smirnov_cdf - kolmogorov_smirnov_test - kolmogorov_smirnov_test_2 - kruskal_wallis_test - krylov - krylovb - kurtosis - laplace_cdf - laplace_inv - laplace_pdf - laplace_rnd - lcm - lin2mu - listidx - list_primes - loadaudio - loadimage - log2 - logical - logistic_cdf - logistic_inv - logistic_pdf - logistic_regression - logistic_regression_derivatives - logistic_regression_likelihood - logistic_rnd - logit - loglog - loglogerr - logm - lognormal_cdf - lognormal_inv - lognormal_pdf - lognormal_rnd - logspace - lower - lqe - lqg - lqr - lsim - ltifr - lyap - mahalanobis - manova - mcnemar_test - mean - meansq - median - menu - mesh - meshdom - meshgrid - minfo - mod - moddemo - moment - mplot - mu2lin - multiplot - nargchk - nextpow2 - nichols - norm - normal_cdf - normal_inv - normal_pdf - normal_rnd - not - nper - npv - ntsc2rgb - null - num2str - nyquist - obsv - ocean - ols - oneplot - ord2 - orth - __outlist__ - pack - packedform - packsys - parallel - paren - pascal_cdf - pascal_inv - pascal_pdf - pascal_rnd - path - periodogram - perror - place - playaudio - plot - plot_border - __plr__ - __plr1__ - __plr2__ - __plt__ - __plt1__ - __plt2__ - __plt2mm__ - __plt2mv__ - __plt2ss__ - __plt2vm__ - __plt2vv__ - __pltopt__ - __pltopt1__ - pmt - poisson_cdf - poisson_inv - poisson_pdf - poisson_rnd - pol2cart - polar - poly - polyder - polyderiv - polyfit - polyinteg - polyout - polyreduce - polyval - polyvalm - popen2 - postpad - pow2 - ppplot - prepad - probit - prompt - prop_test_2 - pv - pvl - pzmap - qconj - qcoordinate_plot - qderiv - qderivmat - qinv - qmult - qqplot - qtrans - qtransv - qtransvmat - quaternion - qzhess - qzval - randperm - range - rank - ranks - rate - record - rectangle_lw - rectangle_sw - rem - repmat - residue - rgb2hsv - rgb2ind - rgb2ntsc - rindex - rldemo - rlocus - roots - rot90 - rotdim - rotg - rows - run_cmd - run_count - run_test - saveaudio - saveimage - sec - sech - semicolon - semilogx - semilogxerr - semilogy - semilogyerr - series - setaudio - setstr - shg - shift - shiftdim - sign_test - sinc - sinetone - sinewave - skewness - sombrero - sortcom - spearman - spectral_adf - spectral_xdf - spencer - sph2cart - split - ss - ss2sys - ss2tf - ss2zp - stairs - starp - statistics - std - stdnormal_cdf - stdnormal_inv - stdnormal_pdf - stdnormal_rnd - step - __stepimp__ - stft - str2mat - str2num - strappend - strcat - strcmp - strerror - strjust - strrep - struct_contains - struct_elements - studentize - sub2ind - subplot - substr - subwindow - swap - swapcols - swaprows - sylvester_matrix - synthesis - sys2fir - sys2ss - sys2tf - sys2zp - sysadd - sysappend - syschnames - __syschnamesl__ - syschtsam - __sysconcat__ - sysconnect - syscont - __syscont_disc__ - __sysdefioname__ - __sysdefstname__ - sysdimensions - sysdisc - sysdup - sysgetsignals - sysgettsam - sysgettype - sysgroup - __sysgroupn__ - sysidx - sysmin - sysmult - sysout - sysprune - sysreorder - sysrepdemo - sysscale - syssetsignals - syssub - sysupdate - table - t_cdf - tempdir - tempname - texas_lotto - tf - tf2ss - tf2sys - __tf2sysl__ - tf2zp - __tfl__ - tfout - tic - t_inv - title - toc - toeplitz - top_title - t_pdf - trace - triangle_lw - triangle_sw - tril - triu - t_rnd - t_test - t_test_2 - t_test_regression - tzero - tzero2 - ugain - uniform_cdf - uniform_inv - uniform_pdf - uniform_rnd - union - unix - unpacksys - unwrap - upper - u_test - values - vander - var - var_test - vec - vech - version - vol - weibull_cdf - weibull_inv - weibull_pdf - weibull_rnd - welch_test - wgt1o - wiener_rnd - wilcoxon_test - xlabel - xor - ylabel - yulewalker - zgfmul - zgfslv - zginit - __zgpbal__ - zgreduce - zgrownorm - zgscal - zgsgiv - zgshsr - zlabel - zp - zp2ss - __zp2ssg2__ - zp2sys - zp2tf - zpout - z_test - z_test_2 - - - - airy_Ai - airy_Ai_deriv - airy_Ai_deriv_scaled - airy_Ai_scaled - airy_Bi - airy_Bi_deriv - airy_Bi_deriv_scaled - airy_Bi_scaled - airy_zero_Ai - airy_zero_Ai_deriv - airy_zero_Bi - airy_zero_Bi_deriv - atanint - bchdeco - bchenco - bessel_il_scaled - bessel_In - bessel_In_scaled - bessel_Inu - bessel_Inu_scaled - bessel_jl - bessel_Jn - bessel_Jnu - bessel_kl_scaled - bessel_Kn - bessel_Kn_scaled - bessel_Knu - bessel_Knu_scaled - bessel_lnKnu - bessel_yl - bessel_Yn - bessel_Ynu - bessel_zero_J0 - bessel_zero_J1 - beta_gsl - bfgsmin - bisectionstep - builtin - bwfill - bwlabel - cell2csv - celleval - Chi - chol - Ci - clausen - conicalP_0 - conicalP_1 - conicalP_half - conicalP_mhalf - conv2 - cordflt2 - coupling_3j - coupling_6j - coupling_9j - csv2cell - csvconcat - csvexplode - cyclgen - cyclpoly - dawson - debye_1 - debye_2 - debye_3 - debye_4 - deref - dispatch - dispatch_help - display_fixed_operations - dlmread - ellint_Ecomp - ellint_Kcomp - ellipj - erfc_gsl - erf_gsl - erf_Q - erf_Z - _errcore - eta - eta_int - expint_3 - expint_E1 - expint_E2 - expint_Ei - expm1 - exp_mult - exprel - exprel_2 - exprel_n - fabs - fangle - farg - fatan2 - fceil - fconj - fcos - fcosh - fcumprod - fcumsum - fdiag - fermi_dirac_3half - fermi_dirac_half - fermi_dirac_inc_0 - fermi_dirac_int - fermi_dirac_mhalf - fexp - ffloor - fimag - finitedifference - fixed - flog - flog10 - fprod - freal - freshape - fround - fsin - fsinh - fsqrt - fsum - fsumsq - ftan - ftanh - full - gamma_gsl - gamma_inc - gamma_inc_P - gamma_inc_Q - gammainv_gsl - gammastar - gdet - gdiag - gexp - gf - gfilter - _gfweight - ginv - ginverse - glog - glu - gpick - gprod - grab - grank - graycomatrix - __grcla__ - __grclf__ - __grcmd__ - greshape - __grexit__ - __grfigure__ - __grgetstat__ - __grhold__ - __grinit__ - __grishold__ - __grnewset__ - __grsetgraph__ - gsl_sf - gsqrt - gsum - gsumsq - gtext - gzoom - hazard - houghtf - hyperg_0F1 - hzeta - is_complex_sparse - isfixed - isgalois - isprimitive - is_real_sparse - is_sparse - jpgread - jpgwrite - lambert_W0 - lambert_Wm1 - legendre_Pl - legendre_Plm - legendre_Ql - legendre_sphPlm - legendre_sphPlm_array - leval - listen - lnbeta - lncosh - lngamma_gsl - lnpoch - lnsinh - log_1plusx - log_1plusx_mx - log_erfc - lp - make_sparse - mark_for_deletion - medfilt1 - newtonstep - nnz - numgradient - numhessian - pchip_deriv - pngread - pngwrite - poch - pochrel - pretty - primpoly - psi - psi_1_int - psi_1piy - psi_n - rand - rande - randn - randp - regexp - remez - reset_fixed_operations - rotate_scale - rsdec - rsenc - samin - SBBacksub - SBEig - SBFactor - SBProd - SBSolve - Shi - Si - sinc_gsl - spabs - sparse - spfind - spimag - spinv - splu - spreal - SymBand - synchrotron_1 - synchrotron_2 - syndtable - taylorcoeff - transport_2 - transport_3 - transport_4 - transport_5 - trisolve - waitbar - xmlread - zeta - zeta_int - aar - aarmam - ac2poly - ac2rc - acorf - acovf - addpath - ademodce - adim - adsmax - amodce - anderson_darling_cdf - anderson_darling_test - anovan - apkconst - append_save - applylut - ar2poly - ar2rc - arburg - arcext - arfit2 - ar_spa - aryule - assert - au - aucapture - auload - auplot - aurecord - ausave - autumn - average_moments - awgn - azimuth - BandToFull - BandToSparse - base64encode - battery - bchpoly - bestblk - best_dir - best_dir_cov - betaln - bfgs - bfgsmin_example - bi2de - biacovf - bilinear - bisdemo - bispec - biterr - blkdiag - blkproc - bmpwrite - bone - bound_convex - boxcar - boxplot - brighten - bs_gradient - butter - buttord - bwborder - bweuler - bwlabel - bwmorph - bwselect - calendar - cceps - cdiff - cellstr - char - cheb - cheb1ord - cheb2ord - chebwin - cheby1 - cheby2 - chirp - clf - clip - cmpermute - cmunique - cohere - col2im - colfilt - colorgradient - comms - compand - complex - concat - conndef - content - contents - Contents - contourf - convhull - convmtx - cool - copper - corr2 - cosets - count - covm - cplxpair - cquadnd - create_lookup_table - crule - crule2d - crule2dgen - csape - csapi - csd - csvread - csvwrite - ctranspose - cumtrapz - czt - d2_min - datenum - datestr - datevec - dct - dct2 - dctmtx - de2bi - deal - decimate - decode - deg2rad - del2 - delaunay - delaunay3 - delta_method - demo - demodmap - deriv - detrend - dfdp - dftmtx - dhbar - dilate - dispatch - distance - dlmread - dlmwrite - dos - double - drawnow - durlev - dxfwrite - edge - edit - ellip - ellipdemo - ellipj - ellipke - ellipord - __ellip_ws - __ellip_ws_min - encode - eomday - erode - example - ExampleEigenValues - ExampleGenEigenValues - expdemo - expfit - eyediagram - factor - factorial - fail - fcnchk - feedback - fem_test - ff2n - fftconv2 - fieldnames - fill - fill3 - filter2 - filtfilt - filtic - findsym - fir1 - fir2 - fixedpoint - flag - flag_implicit_samplerate - flattopwin - flix - float - fmin - fminbnd - fmins - fminunc - fnder - fnplt - fnval - fplot - freqs - freqs_plot - fsort - fullfact - FullToBand - funm - fzero - gammaln - gapTest - gaussian - gausswin - gconv - gconvmtx - gdeconv - gdftmtx - gen2par - geomean - getfield - getfields - gfft - gftable - gfweight - gget - gifft - ginput - gmm_estimate - gmm_example - gmm_obj - gmm_results - gmm_variance - gmm_variance_inefficient - gquad - gquad2d - gquad2d6 - gquad2dgen - gquad6 - gquadnd - grace_octave_path - gradient - grayslice - grep - grid - griddata - groots - grpdelay - grule - grule2d - grule2dgen - hadamard - hammgen - hankel - hann - harmmean - hilbert - histeq - histfit - histo - histo2 - histo3 - histo4 - hot - hsv - hup - idct - idct2 - idplot - idsim - ifftshift - im2bw - im2col - imadjust - imginfo - imhist - imnoise - impad - impz - imread - imrotate - imshear - imtranslate - imwrite - innerfun - inputname - interp - interp1 - interp2 - interpft - intersect - invest0 - invest1 - invfdemo - invfreq - invfreqs - invfreqz - inz - irsa_act - irsa_actcore - irsa_check - irsa_dft - irsa_dftfp - irsa_genreal - irsa_idft - irsa_isregular - irsa_jitsp - irsa_mdsp - irsa_normalize - irsa_plotdft - irsa_resample - irsa_rgenreal - isa - isbw - isdir - isequal - isfield - isgray - isind - ismember - isprime - isrgb - issparse - isunix - jet - kaiser - kaiserord - lambertw - lattice - lauchli - leasqr - leasqrdemo - legend - legendre - levinson - lin2mu - line_min - lloyds - lookup - lookup_table - lpc - lp_test - mad - magic - makelut - MakeShears - map - mat2gray - mat2str - mdsmax - mean2 - medfilt2 - meshc - minimize - minpol - mkpp - mktheta - mle_estimate - mle_example - mle_obj - mle_results - mle_variance - modmap - mu2lin - mvaar - mvar - mvfilter - mvfreqz - myfeval - nanmax - nanmean - nanmedian - nanmin - nanstd - nansum - ncauer - nchoosek - ncrule - ndims - nelder_mead_min - newmark - nlfilter - nlnewmark - __nlnewmark_fcn__ - nmsmax - nonzeros - normplot - now - nrm - nthroot - nze - OCTAVE_FORGE_VERSION - ode23 - ode45 - ode78 - optimset - ordfilt2 - orient - pacf - padarray - parameterize - parcor - pareto - pascal - patch - pburg - pcg - pchip - pcolor - pcr - peaks - penddot - pendulum - perms - pie - pink - plot3 - __plt3__ - poly2ac - poly2ar - poly_2_ex - poly2mask - poly2rc - poly2sym - poly2th - polyarea - polyconf - polyder - polyderiv - polygcd - polystab - __power - ppval - prctile - prettyprint - prettyprint_c - primes - princomp - print - prism - proplan - pulstran - pwelch - pyulear - qaskdeco - qaskenco - qtdecomp - qtgetblk - qtsetblk - quad2dc - quad2dcgen - quad2dg - quad2dggen - quadc - quadg - quadl - quadndg - quantiz - quiver - rad2deg - rainbow - randerr - randint - randsrc - rat - rats - rc2ac - rc2ar - rc2poly - rceps - read_options - read_pdb - rectpuls - resample - rgb2gray - rk2fixed - rk4fixed - rk8fixed - rmfield - rmle - rmpath - roicolor - rosser - rotparams - rotv - rref - rsdecof - rsencof - rsgenpoly - samin_example - save_vrml - sbispec - scale_data - scatter - scatterplot - select_3D_points - selmo - setdiff - setfield - setfields - setxor - sftrans - sgolay - sgolayfilt - sinvest1 - slurp_file - sortrows - sound - soundsc - spdiags - specgram - speed - speye - spfun - sphcat - spline - splot - spones - sprand - sprandn - spring - spstats - spsum - sp_test - sptest - spvcat - spy - std2 - stem - str2double - strcmpi - stretchlim - strfind - strmatch - strncmp - strncmpi - strsort - strtok - strtoz - struct - strvcat - summer - sumskipnan - surf - surfc - sym2poly - symerr - symfsolve - tabulate - tar - temp_name - test - test_d2_min_1 - test_d2_min_2 - test_d2_min_3 - test_ellipj - test_fminunc_1 - testimio - test_inline_1 - test_min_1 - test_min_2 - test_min_3 - test_min_4 - test_minimize_1 - test_nelder_mead_min_1 - test_nelder_mead_min_2 - test_sncndn - test_struct - test_vmesh - test_vrml_faces - test_wpolyfit - text - textread - tf2zp - tfe - thfm - tics - toeplitz - toggle_grace_use - transpose - trapz - triang - tril - trimmean - tripuls - trisolve - triu - tsademo - tsearchdemo - ucp - uintlut - unique - unix - unmkpp - unscale_parameters - vec2mat - view - vmesh - voronoi - voronoin - vrml_arrow - vrml_Background - vrml_browse - vrml_cyl - vrml_demo_tutorial_1 - vrml_demo_tutorial_2 - vrml_demo_tutorial_3 - vrml_demo_tutorial_4 - vrml_ellipsoid - vrml_faces - vrml_flatten - vrml_frame - vrml_group - vrml_kill - vrml_lines - vrml_material - vrml_parallelogram - vrml_PointLight - vrml_points - vrml_select_points - vrml_surf - vrml_text - vrml_thick_surf - vrml_transfo - wavread - wavwrite - weekday - wgn - white - wilkinson - winter - wpolyfit - wpolyfitdemo - write_pdb - wsolve - xcorr - xcorr2 - xcov - xlsread - xmlwrite - y2res - zero_count - zoom - zp2tf - zplane - zscore - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/oors.xml ktexteditor-5.31.0/src/syntax/data/oors.xml --- ktexteditor-5.28.0/src/syntax/data/oors.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/oors.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,94 +0,0 @@ - - - - - - allow - apply - backtrack - copy - condition - deny - extends - graph - if - else - linear - profile - rule - ruleset - search - unsafe - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/opal.xml ktexteditor-5.31.0/src/syntax/data/opal.xml --- ktexteditor-5.28.0/src/syntax/data/opal.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/opal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,331 +0,0 @@ - - - - - - - - ALL - AND - ANDIF - ANY - AS - ASSERT - AXM - COMPLETELY - DATA - DEF - DERIVE - DFD - DISCRIMINATORS - ELSE - EX - EXTERNAL - FI - FIX - FUN - IF - IMPLEMENTATION - IMPLIES - IMPORT - IN - INHERIT - INJECTIONS - INTERFACE - INTERNAL - LAW - LAZY - LEFTASSOC - LET - MODULE - NOT - ONLY - OR - ORIF - OTHERWISE - POST - PRE - PRED - PRIORITY - PROPERTIES - REALIZES - REQUIRE - RIGHTASSOC - SELECTORS - SIGNATURE - SORT - SPC - SPEC - SPECIFICATION - STRUCTURE - THE - THEN - THEORY - THM - TYPE - UNIQ - WHERE - - - aEntry - agent - align - anchor - ans - arg - arg1 - arg2 - array - arrowWhere - bag - bitmap - bool - bstree - byte - callback - canvasEditor - capStyle - channel - char - childstat - codom - codomFrom - codomTo - color - colorModel - com - composeOp - config - configCom - cursor - dArray - data - data1 - data11 - data2 - data21 - data3 - data31 - data4 - data41 - dataFrom - dataTo - defaultPrio - denotation - device - dist - distOut - dom - domFrom - domTo - drawing - dyn - emitter - env - event - eventInfo - file - filemode - filestat - filetype - first - first1 - first2 - first3 - fission - fmt - font - from - from1 - from2 - funct - group - groupid - heap - iconfig - image - in - inData - index - inode - input - int - inter - interdom - interpreter - iseq - items - joinStyle - justifyHow - long - manager - managerRequest - map - mapEntry - mark - mid - modifier - nat - natMap - OBJECT - option - orient - out - outData - output - packOp - pair - parser - permission - point - positionRequest - process - procstat - quad - range - real - regulator - rel - relief - res - res1 - res2 - result - role - sap - script - scroller - scrollView - scrollWindow - searchOpt - second - seekMode - selector - semaphor - seq - seqEntry - set - setEntry - short - sigaction - sighandler - sigmask - signal - size - sizeRequest - some - sreal - state - stateId - stateRequest - string - subrel - tag - textEditor - time - to - tree - triple - union - user - userid - version - view - void - wconfig - wconfigCom - wday - widget - window - wrapStyle - - - true - false - - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20 - 21 - 22 - 23 - 24 - 25 - 26 - 27 - 28 - 29 - 30 - 31 - 32 - 64 - 128 - 256 - 512 - 1024 - 10000 - 100000 - 1000000 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/opencl.xml ktexteditor-5.31.0/src/syntax/data/opencl.xml --- ktexteditor-5.28.0/src/syntax/data/opencl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/opencl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,257 +0,0 @@ - - - - - - __constant - __global - __local - __private - __kernel - __read_only - __write_only - constant - global - local - private - kernel - read_only - write_only - break - case - continue - default - do - else - enum - for - goto - if - inline - return - sizeof - struct - switch - typedef - union - while - - - bool - uchar - uchar2 - uchar3 - uchar4 - uchar8 - uchar16 - char - char2 - char3 - char4 - char8 - char16 - const - double - double2 - double3 - double4 - double8 - double16 - event_t - float - float2 - float3 - float4 - float8 - float16 - half - half2 - half3 - half4 - half8 - half16 - image1d_t - image2d_t - image3d_t - uint - uint2 - uint3 - uint4 - uint8 - uint16 - int - int2 - int3 - int4 - int8 - int16 - ulong - ulong2 - ulong3 - ulong4 - ulong8 - ulong16 - long - long2 - long3 - long4 - long8 - long16 - restrict - sampler_t - ushort - ushort2 - ushort3 - ushort4 - ushort8 - ushort16 - short - short2 - short3 - short4 - short8 - short16 - signed - static - unsigned - void - volatile - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/pango.xml ktexteditor-5.31.0/src/syntax/data/pango.xml --- ktexteditor-5.28.0/src/syntax/data/pango.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/pango.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,159 +0,0 @@ - - - - - - - - <span - <b - <big - <i - <s - <sub - <sup - <small - <tt - <u - - - - </span> - </b> - </big> - </i> - </s> - </sub> - </sup> - </small> - </tt> - </u> - - - - size= - font_size= - rise= - letter_spacing= - - - - font= - font_desc= - font_family= - face= - lang= - - - - strikethrough_color= - foreground= - fgcolor= - color= - background= - bgcolor= - underline_color= - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/pascal.xml ktexteditor-5.31.0/src/syntax/data/pascal.xml --- ktexteditor-5.28.0/src/syntax/data/pascal.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/pascal.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,219 +0,0 @@ - - - - - - and - array - asm - case - const - div - do - downto - else - file - for - function - goto - if - in - label - mod - nil - not - of - operator - or - packed - procedure - program - record - repeat - set - then - to - type - unit - until - uses - var - while - with - xor - - - at - automated - break - continue - dispinterface - dispose - exit - false - finalization - initialization - library - new - published - resourcestring - self - true - - - abstract - as - bindable - constructor - destructor - except - export - finally - import - implementation - inherited - inline - interface - is - module - on - only - otherwise - override - private - property - protected - public - read - qualified - raise - restricted - shl - shr - threadvar - try - virtual - write - - - Integer - Cardinal - ShortInt - SmallInt - LongInt - Int64 - Byte - Word - LongWord - DWord - QWord - Char - AnsiChar - WideChar - Boolean - ByteBool - WordBool - LongBool - Single - Double - Extended - Comp - Currency - Real - Real48 - String - ShortString - AnsiString - WideString - Pointer - Variant - File - Text - - - FIXME - TODO - NOTE - ### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/perl.xml ktexteditor-5.31.0/src/syntax/data/perl.xml --- ktexteditor-5.28.0/src/syntax/data/perl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/perl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,842 +0,0 @@ - - - - - - - if - unless - else - elsif - while - until - for - each - foreach - next - last - break - continue - return - my - our - local - state - BEGIN - END - package - sub - do - given - when - default - __END__ - __DATA__ - __FILE__ - __LINE__ - __PACKAGE__ - - - = - != - ~= - += - -= - *= - /= - **= - |= - ||= - //= - &= - &&= - ?= - + - - - * - - % - || - // - && - | - & - < - << - > - >> - ^ - -> - => - . - , - ; - :: - \ - and - or - not - eq - ne - lt - gt - le - ge - cmp - - - abs - accept - alarm - atan2 - bind - binmode - bless - caller - chdir - chmod - chomp - chop - chown - chr - chroot - close - closedir - connect - cos - crypt - dbmclose - dbmopen - defined - delete - die - dump - endgrent - endhostent - endnetent - endprotoent - endpwent - endservent - eof - eval - exec - exists - exit - exp - fcntl - fileno - flock - fork - format - formline - getc - getgrent - getgrgid - getgrnam - gethostbyaddr - gethostbyname - gethostent - getlogin - getnetbyaddr - getnetbyname - getnetent - getpeername - getpgrp - getppid - getpriority - getprotobyname - getprotobynumber - getprotoent - getpwent - getpwnam - getpwuid - getservbyname - getservbyport - getservent - getsockname - getsockopt - glob - gmtime - goto - grep - hex - import - index - int - ioctl - join - keys - kill - last - lc - lcfirst - length - link - listen - localtime - lock - log - lstat - map - mkdir - msgctl - msgget - msgrcv - msgsnd - no - oct - open - opendir - ord - pack - package - pipe - pop - pos - print - printf - prototype - push - quotemeta - rand - read - readdir - readline - readlink - recv - redo - ref - rename - require - reset - return - reverse - rewinddir - rindex - rmdir - scalar - seek - seekdir - select - semctl - semget - semop - send - setgrent - sethostent - setnetent - setpgrp - setpriority - setprotoent - setpwent - setservent - setsockopt - shift - shmctl - shmget - shmread - shmwrite - shutdown - sin - sleep - socket - socketpair - sort - splice - split - sprintf - sqrt - srand - stat - study - sub - substr - symlink - syscall - sysread - sysseek - system - syswrite - tell - telldir - tie - time - times - truncate - uc - ucfirst - umask - undef - unlink - unpack - unshift - untie - use - utime - values - vec - wait - waitpid - wantarray - warn - write - - - strict - english - warnings - vars - subs - utf8 - sigtrap - locale - open - less - integer - filetest - constant - bytes - diagnostics - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/pgn.xml ktexteditor-5.31.0/src/syntax/data/pgn.xml --- ktexteditor-5.28.0/src/syntax/data/pgn.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/pgn.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,108 +0,0 @@ - - - - - Event - Site - Date - Round - White - Black - Result - ECO - Annotator - PlyCount - EventDate - EventCountry - SourceDate - WhiteTitle - BlackTitle - FM - IM - GM - WhiteElo - BlackElo - WhiteNA - BlackNA - WhiteType - BlackType - program - human - TimeControl - FEN - Termination - abandoned - adjudication - death - emergency - normal - rules - infraction - time - forfeit - unterminated - Mode - OTB - PM - EM - ICS - TC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/php.xml ktexteditor-5.31.0/src/syntax/data/php.xml --- ktexteditor-5.28.0/src/syntax/data/php.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/php.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5645 +0,0 @@ - - - -]> - - diff -Nru ktexteditor-5.28.0/src/syntax/data/picsrc.xml ktexteditor-5.31.0/src/syntax/data/picsrc.xml --- ktexteditor-5.28.0/src/syntax/data/picsrc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/picsrc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,402 +0,0 @@ - - - - - - - - - - - __BADRAM - __CONFIG - __IDLOCS - __MAXRAM - - cblock - constant - da - data - db - de - dt - dw - endc - endm - equ - error - errorlevel - exitm - fill - list - local - macro - messg - noexpand - nolist - org - page - processor - radix - res - set - space - subtitle - title - variable - end - - CBLOCK - CONSTANT - DA - DATA - DB - DE - DT - DW - ENDC - ENDM - EQU - ERROR - ERRORLEVEL - EXITM - FILL - LIST - LOCAL - MACRO - MESSG - NOEXPAND - NOLIST - ORG - PAGE - PROCESSOR - RADIX - RES - SET - SPACE - SUBTITLE - TITLE - VARIABLE - END - - - - if - else - idef - ifndef - endif - while - include - endw - { - } - - - - addcf - b - clrc - clrz - setc - setz - movfw - skpc - skpz - skpnc - skpnz - subcf - tstf - - ADDCF - B - CLRC - CLRZ - SETC - SETZ - MOVFW - SKPC - SKPZ - SKPNC - SKPNZ - SUBCF - TSTF - - - - addlw - addwf - addwfc - andlw - andwf - bc - bcf - bn - bnc - bnov - bnz - bov - bra - bsf - btg - bz - btfsc - btfss - call - clrf - clrw - clrwdt - comf - cpfseq - cpfslt - cpfsgt - daw - decf - dcfsnz - decfsz - goto - incf - incfsz - infsnz - iorlw - iorwf - lfsr - movf - movff - movlb - movlw - movwf - mullw - mulwf - negf - nop - option - pop - push - rcall - reset - retfie - retlw - return - rlcf - rlf - rlncf - rrcf - rrf - rrncf - setf - sleep - subfwb - sublw - subwf - subwfb - swapf - tblrd - tblwt - tstfsz - xorlw - xorwf - - ADDLW - ADDWF - ADDWFC - ANDLW - ANDWF - BC - BCF - BN - BNC - BNOV - BNZ - BOV - BRA - BSF - BTG - BZ - BTFSC - BTFSS - CALL - CLRF - CLRW - CLRWDT - COMF - CPFSEQ - CPFSLT - CPFSGT - DAW - DCFSNZ - DECF - DECFSZ - GOTO - INCF - INCFSZ - INFSNZ - IORLW - IORWF - LFSR - MOVF - MOVFF - MOVLB - MOVLW - MOVWF - MULLW - MULWF - NEGF - NOP - OPTION - POP - PUSH - RCALL - RESET - RETFIE - RETLW - RETURN - RLCF - RLF - RLNCF - RRCF - RRF - RRNCF - SETF - SLEEP - SUBFWB - SUBLW - SUBWF - SUBWFB - SWAPF - TBLRD - TBLWT - TSTFSZ - XORLW - XORWF - - - - A - ACCESS - BANKED - W - F - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/pig.xml ktexteditor-5.31.0/src/syntax/data/pig.xml --- ktexteditor-5.28.0/src/syntax/data/pig.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/pig.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,202 +0,0 @@ - - - - - - - load - store - filter - foreach - order - arrange - distinct - cogroup - join - cross - union - onschema - split - into - if - all - any - as - by - using - inner - outer - parallel - group - continuously - window - tuples - generate - eval - define - returns - input - output - ship - cache - stream - through - seconds - minutes - hours - asc - desc - null - left - right - full - - - cat - cd - cp - copyFromLocal - copyToLocal - define - dump - illustrate - describe - explain - exec - help - kill - ls - mv - mkdir - pwd - quit - register - import - rm - set - - - chararray - bytearray - int - long - float - double - tuple - bag - map - - - and - is - not - or - eq - neq - gt - lt - gte - lte - matches - - - flatten - sum - count - min - max - avg - arity - tokenize - diff - size - concat - BinStorage - PigStorage - TextLoader - PigDump - IsEmpty - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/pike.xml ktexteditor-5.31.0/src/syntax/data/pike.xml --- ktexteditor-5.28.0/src/syntax/data/pike.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/pike.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,121 +0,0 @@ - - - - - - - break - case - class - continue - default - do - else - for - foreach - if - return - switch - while - - - array - float - function - int - mapping - mixed - multiset> - object - program - static - string - void - - - catch - gauge - sscanf - typeof - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/pli.xml ktexteditor-5.31.0/src/syntax/data/pli.xml --- ktexteditor-5.28.0/src/syntax/data/pli.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/pli.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,455 +0,0 @@ - - - - - - ALIGNED - AUTOMATIC - BACKWARDS - BIN - BINARY - BIT - BUFFERED - BUILTIN - COMPLEX - CONDITION - CONNECTED - CONTROLLED - DEC - DECIMAL - DIRECT - EVENT - EXCLUSIVE - EXTERNAL - FILE - FIXED - FLOAT - INPUT - INTERNAL - IRREDUCIBLE - KEYED - LIKE - OUTPUT - POINTER - PRINT - REAL - RECORD - REDUCIBLE - SEQUENTIAL - STATIC - STREAM - TASK - TRANSIENT - UNALIGNED - UNBUFFERED - UPDATE - VARIABLE - VAR - VARYING - - - A - ABS - ACOS - ACTIVATE - ADD - ADDR - ALIGNED - ALL - ALLOCATE - ALLOCATION - ANY - AREA - ASIN - ASMTDLI - ASSEMBLER - ATAN - ATAND - ATANH - ATTENTION - AUTOMATIC - B - BACKWARDS - BASED - BEGIN - BINARY - BINARYVALUE - BIT - BOOL - BUFFERED - BUILTIN - BY - C - CALL - CEIL - CHAR - CHARACTER - CHARGRAPHIC - CHECK - CLOSE - COBOL - COL - COLUMN - COMPILE - COMPILETIME - COMPLETION - COMPLEX - CONDITION - CONJG - CONNECTED - CONTROLLED - CONVERSION - COPY - COS - COSD - COSH - COUNT - COUNTER - CURRENTSTORAGE - DATA - DATAFIELD - DATE - DATETIME - DCL - DEACTIVATE - DECIMAL - DECLARE - DEF - DEFAULT - DEFINED - DELAY - DELETE - DESCRIPTORS - DIM - DIRECT - DISPLAY - DIVIDE - DO - E - EDIT - ELSE - EMPTY - END - ENDFILE - ENDPAGE - ENTRY - ENTRYADDR - ENVIRONMENT - ERF - ERFC - ERROR - EVENT - EXCLUSIVE - EXIT - EXP - EXTERNAL - F - FETCH - FILE - FINISH - FIXED - FIXEDOVERFLOW - FLOAT - FLOOR - FORMAT - FORTRAN - FREE - FROM - G - GENERIC - GET - GET-STRING - GO - GOTO - GO_TO - GRAPHIC - HBOUND - HIGH - IF - IGNORE - IMAG - IN - %INCLUDE - INCLUDE - INDEX - INIT - INITIAL - INPUT - INTER - INTERNAL - INTO - IRREDUCIBLE - ITEM - KEY - KEYED - KEYFROM - KEYTO - LABEL - LBOUND - LEAVE - LENGTH - LIKE - LINE - LINENO - LINESIZE - LIST - LOCATE - LOG - LOG10 - LOG2 - LOW - MAIN - MAX - MIN - MPSTR - MULTIPLY - NAME - NOCHARGRAPHIC - NOEXECOPS - NOLOCK - NOMAP - NOMAPIN - NOMAPOUT - NOPRINT - NORESCAN - NOTE - NULL - OFFSET - ON - ONCHAR - ONCODE - ONCOUNT - ONFILE - ONKEY - ONLOC - ONSOURCE - OPEN - OPTIONS - ORDER - OTHERWISE - OUTPUT - OVERFLOW - P - PAGE - PAGESIZE - PARMSET - PENDING - PICTURE - PLICANC - PLICKPT - PLIDUMP - PLIREST - PLISRTA - PLISRTB - PLISRTC - PLISRTD - PLITDLI - PLITEST - POINTER - POINTERADD - POINTERVALUE - POLY - POS - POSITION - PRECISION - PRINT - PRIORITY - PROC - PROCEDURE - PROCESS - PROD - PUT - PUT-STRING - R - RANGE - READ - REAL - RECORD - RECURSIVE - REDUCIBLE - REENTRANT - REFER - RELEASE - REORDER - REPEAT - REPLY - REREAD - RESCAN - RETCODE - RETURN - RETURNS - REVERT - REWRITE_FILE - SAMEKEY - SELECT - SEQUENTIAL - SET - SIGN - SIGNAL - SIN - SIND - SINH - SIZE - SKIP - SNAP - SQRT - STATEMENT - STATIC - STATUS - STOP - STORAGE - STREAM - STRING - STRINGRANGE - STRINGSIZE - SUBSCRIPTRANGE - SUBSTR - SUM - SYSNULL - SYSTEM - TAN - TAND - TANH - TASK - THEN - TIME - TITLE - TO - TRANSIENT - TRANSLATE - TRANSMIT - TRUNC - UNALIGNED - UNBUFFERED - UNDEFINEDFILE - UNDERFLOW - UNLOCK - UNSPEC - UNTIL - UPDATE - VALUE - VARIABLE - VARYING - VERIFY - WAIT - WHEN - WHILE - WRITE - ZERODIVIDE - - - MOD - ROUND - PLIRETC - PLIRETV - ADDR - CEIL - DATETIME - INDEX - LENGTH - MAX - MOD - NULL - PLIRETC - PLIRETV - PLISRTD - ROUND - STG - SUBSTR - ONCODE - ONCONDCOND - ONCOUNT - ONFILE - ONLOC - ONSUBCODE - - - BIN - BINARY - BIT - BUILTIN - CHAR - CHARACTER - DEC - DECIMAL - ENTRY - FIXED - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ply.xml ktexteditor-5.31.0/src/syntax/data/ply.xml --- ktexteditor-5.28.0/src/syntax/data/ply.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ply.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ - - - - - - format - element - property - end_header - - - char - uchar - short - ushort - int - uint - float - double - list - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/postscript.xml ktexteditor-5.31.0/src/syntax/data/postscript.xml --- ktexteditor-5.28.0/src/syntax/data/postscript.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/postscript.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,434 +0,0 @@ - - - - - - abs - add - aload - anchorsearch - and - arc - arcn - arct - arcto - array - ashow - astore - awidthshow - begin - bind - bitshift - ceiling - charpath - clear - cleartomark - clip - clippath - closepath - concat - concatmatrix - copy - count - counttomark - currentcmykcolor - currentdash - currentdict - currentfile - currentfont - currentgray - currentgstate - currenthsbcolor - currentlinecap - currentlinejoin - currentlinewidth - currentmatrix - currentpoint - currentrgbcolor - currentshared - curveto - cvi - cvlit - cvn - cvr - cvrs - cvs - cvx - def - defineusername - dict - div - dtransform - dup - end - eoclip - eofill - eoviewclip - eq - exch - exec - exit - file - fill - findfont - flattenpath - floor - flush - flushfile - for - forall - ge - get - getinterval - grestore - gsave - gstate - gt - identmatrix - idiv - idtransform - if - ifelse - image - imagemask - index - ineofill - infill - initviewclip - inueofill - inufill - invertmatrix - itransform - known - le - length - lineto - load - loop - lt - makefont - matrix - maxlength - mod - moveto - mul - ne - neg - newpath - not - null - or - pathbbox - pathforall - pop - print - printobject - put - putinterval - rcurveto - read - readhexstring - readline - readstring - rectclip - rectfill - rectstroke - rectviewclip - repeat - restore - rlineto - rmoveto - roll - rotate - round - save - scale - scalefont - search - selectfont - setbbox - setcachedevice - setcachedevice2 - setcharwidth - setcmykcolor - setdash - setfont - setgray - setgstate - sethsbcolor - setlinecap - setlinejoin - setlinewidth - setmatrix - setrgbcolor - setshared - shareddict - show - showpage - stop - stopped - store - string - stringwidth - stroke - strokepath - sub - systemdict - token - transform - translate - truncate - type - uappend - ucache - ueofill - ufill - undef - upath - userdict - ustroke - viewclip - viewclippath - where - widthshow - write - writehexstring - writeobject - writestring - wtranslation - xor - xshow - xyshow - yshow - FontDirectory - SharedFontDirectory - Courier - Courier-Bold - Courier-BoldOblique - Courier-Oblique - Helvetica - Helvetica-Bold - Helvetica-BoldOblique - Helvetica-Oblique - Symbol - Times-Bold - Times-BoldItalic - Times-Italic - Times-Roman - execuserobject - currentcolor - currentcolorspace - currentglobal - execform - filter - findresource - globaldict - makepattern - setcolor - setcolorspace - setglobal - setpagedevice - setpattern - ISOLatin1Encoding - StandardEncoding - atan - banddevice - bytesavailable - cachestatus - closefile - colorimage - condition - copypage - cos - countdictstack - countexecstack - cshow - currentblackgeneration - currentcacheparams - currentcolorscreen - currentcolortransfer - currentcontext - currentflat - currenthalftone - currenthalftonephase - currentmiterlimit - currentobjectformat - currentpacking - currentscreen - currentstrokeadjust - currenttransfer - currentundercolorremoval - defaultmatrix - definefont - deletefile - detach - deviceinfo - dictstack - echo - erasepage - errordict - execstack - executeonly - exp - false - filenameforall - fileposition - fork - framedevice - grestoreall - handleerror - initclip - initgraphics - initmatrix - instroke - inustroke - join - kshow - ln - lock - log - mark - monitor - noaccess - notify - nulldevice - packedarray - quit - rand - rcheck - readonly - realtime - renamefile - renderbands - resetfile - reversepath - rootfont - rrand - run - scheck - setblackgeneration - setcachelimit - setcacheparams - setcolorscreen - setcolortransfer - setfileposition - setflat - sethalftone - sethalftonephase - setmiterlimit - setobjectformat - setpacking - setscreen - setstrokeadjust - settransfer - setucacheparams - setundercolorremoval - sin - sqrt - srand - stack - status - statusdict - true - ucachestatus - undefinefont - usertime - ustrokepath - version - vmreclaim - vmstatus - wait - wcheck - xcheck - yield - defineuserobject - undefineuserobject - UserObjects - cleardictstack - setvmthreshold - currentcolorrendering - currentdevparams - currentoverprint - currentpagedevice - currentsystemparams - currentuserparams - defineresource - findencoding - gcheck - glyphshow - languagelevel - product - pstack - resourceforall - resourcestatus - revision - serialnumber - setcolorrendering - setdevparams - setoverprint - setsystemparams - setuserparams - startjob - undefineresource - GlobalFontDirectory - ASCII85Decode - ASCII85Encode - ASCIIHexDecode - ASCIIHexEncode - CCITTFaxDecode - CCITTFaxEncode - DCTDecode - DCTEncode - LZWDecode - LZWEncode - NullEncode - RunLengthDecode - RunLengthEncode - SubFileDecode - CIEBasedA - CIEBasedABC - DeviceCMYK - DeviceGray - DeviceRGB - Indexed - Pattern - Separation - CIEBasedDEF - CIEBasedDEFG - DeviceN - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/povray.xml ktexteditor-5.31.0/src/syntax/data/povray.xml --- ktexteditor-5.28.0/src/syntax/data/povray.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/povray.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,976 +0,0 @@ - - - - - - - - - - - aa_threshold - aa_level - absorption - abs - accuracy - acosh - acos - adaptive - adc_bailout - agate - agate_turb - all_intersections - all - alpha - always_sample - altitude - ambient_light - ambient - angle - aperture - append - arc_angle - area_light - array - ascii - asc - asinh - asin - assumed_gamma - atan2 - atanh - atan - average - background - bezier_spline - bicubic_patch - black_hole - blob - blue - blur_samples - bounded_by - boxed - box - bozo - brick_size - brick - brightness - brilliance - bumps - bump_map - bump_size - b_spline - camera - caustics - ceil - cells - charset - checker - chr - circular - clipped_by - clock_delta - clock_on - clock - color_map - colour_map - color - colour - component - composite - concat - cone - confidence - conic_sweep - contained_by - control0 - control1 - coords - cosh - cos - count - crackle - crand - cube - cubic_spline - cubic - cubic_wave - cylinder - cylindrical - defined - degrees - density_file - density_map - density - dents - df3 - difference - diffuse - dimensions - dimension_size - direction - disc - dispersion - dispersion_samples - distance_maximum - distance - dist_exp - div - double_illuminate - eccentricity - emission - error_bound - evaluate - exp - exponent - exterior - extinction - facets - face_indices - fade_colour - fade_color - fade_distance - fade_power - falloff_angle - falloff - false - file_exists - shadowless - filter - final_clock - final_frame - finish - fisheye - flatness - flip - floor - focal_point - fog_alt - fog_offset - fog - fog_type - form - frame_number - frequency - fresnel - function - gif - global_settings - gradient - granite - gray - gray_threshold - green - height_field - hexagon - hf_gray_16 - hierarchy - hollow - hypercomplex - image_width - image_height - initial_clock - initial_frame - interior_texture - iff - image_map - image_pattern - inside - inside_vector - interior - interpolate - intersection - intervals - int - inverse - ior - irid - irid_wavelength - isosurface - jitter - julia - julia_fractal - jpeg - lambda - lathe - leopard - light_group - light_source - linear_spline - linear_sweep - ln - load_file - location - log - looks_like - look_at - low_error_factor - magnet - major_radius - mandel - map_type - marble - material_map - material - matrix - max_extent - max_gradient - max_intersections - max_iteration - max_sample - max - max_trace_level - max_trace - media_attenuation - media_interaction - media - merge - mesh2 - mesh - metallic - method - metric - minimum_reuse - min_extent - min - mod - mortar - natural_spline - nearest_count - normal - normal_indices - normal_map - normal_vectors - no_image - no_reflection - no_shadow - no - number_of_waves - object - octaves - offset - off - omega - omnimax - once - onion - on - open - orientation - orient - orthographic - panoramic - parallel - parametric - pattern - perspective - pgm - phase - phong_size - phong - pigment_map - pigment - pi - planar - plane - png - point_at - polygon - poly - poly_wave - pot - pow - ppm - precision - precompute - pretrace_start - pretrace_end - prism - prod - projected_through - pwr - quadratic_spline - quadric - quartic - quaternion - quick_color - quick_colour - quilted - radial - radians - radiosity - radius - rainbow - ramp_wave - rand - range - ratio - reciprocal - recursion_limit - red - reflection_exponent - reflection - refraction - repeat - rgbft - rgbf - rgbt - rgb - right - ripples - rotate - roughness - samples - save_file - scale - scallop_wave - scattering - seed - select - sine_wave - sinh - sin - size - sky_sphere - sky - slice - slope_map - slope - smooth - smooth_triangle - solid - sor - specular - sphere_sweep - sphere - spherical - spiral1 - spiral2 - spline - spotlight - spotted - sqrt - sqr - statistics - strcmp - strength - strlen - strlwr - strupr - str - sturm - substr - sum - superellipsoid - sys - tanh - tan - texture_list - texture_map - texture - text - tga - thickness - threshold - tiff - tightness - tile2 - tiles - normal - tolerance - toroidal - torus - trace - transform - translate - transmit - triangle - triangle_wave - true - ttf - turbulence - turb_depth - type - t - ultra_wide_angle - union - up - use_alpha - use_color - use_colour - use_index - utf8 - uv_indices - uv_mapping - uv_vectors - u_steps - u - val - variance - vaxis_rotate - vcross - vdot - vertex_vectors - vlength - vnormalize - vrotate - vstr - vturbulence - v_steps - v - warning - warp - water_level - waves - while - width - wood - wrinkles - write - x - yes - y - z - photons - steps - pass_through - collect - autostop - gather - split_union - expand_thresholds - spacing - global - target - conserve_energy - cutaway_textures - pigment_pattern - no_bump_scale - global_lights - internal - noise_generator - - - akima_spline - aoi - basic_x_spline - camera_view - displace - exposure - exposure_gain - extended_x_spline - float - frame_step - date - start_chrono - current_chrono - general_x_spline - glow - h_align_left - h_align_right - h_align_center - v_align_top - v_align_bottom - v_align_center - inverted_normals - is - listed - mpeg - n_roots - noise_pigment - output_filename - post_process - projection - point - blur - set - sor_spline - string - structure - tcb_spline - tension - continuity - bias - user_defined - vector - unofficial_version - gravity - environment - friction - damping - simcloth - wind - neighbors - neighbours - internal_collision - viscosity - iterations - input - mesh_output - smooth_mesh - uv_mesh - output - stiffness - topology - mass - connection - face - velocity - position - mass_count - connection_count - face_count - index1 - index2 - index3 - time - time_step - step_count - start_time - end_time - fixed - collision - interaction - group - attach - field - mechsim - bounding - viscoelastic - viscoelastic_count - element - length - force - message - weight - randomize - hdr - no_radiosity - motion_blur - tone_mapping - show_samples - show_low_count - - - bicubic_patch - blob - box - cone - cubic - cylinder - difference - disc - height_field - intersection - isosurface - julia_fractal - lathe - light_source - merge - mesh - mesh2 - object - parametric - plane - poly - polygon - prism - quadric - quartic - smooth_triangle - sor - sphere - sphere_sweep - superellipsoid - text - torus - triangle - union - - - aa_threshold - aa_level - absorption - agate - agate_turb - ambient - average - black_hole - blue - boxed - brick_size - brick - brilliance - bumps - bump_map - bump_size - caustics - cells - checker - color_map - colour_map - color - colour - conserve_energy - control0 - control1 - crackle - crand - cubic_wave - cylindrical - density_file - density_map - density - dents - diffuse - dist_exp - double_illuminate - eccentricity - emission - exponent - exterior - extinction - facets - fade_colour - fade_color - fade_distance - fade_power - filter - finish - form - frequency - fresnel - gradient - granite - gray - green - hexagon - hypercomplex - interior_texture - image_map - image_pattern - interior - interpolate - intervals - ior - irid - irid_wavelength - julia - lambda - leopard - magnet - mandel - map_type - marble - material_map - material - media - metallic - method - metric - mortar - normal - normal_map - number_of_waves - octaves - omega - once - onion - orientation - phase - phong_size - phong - pigment_map - pigment - planar - quaternion - quick_color - quick_colour - quilted - radial - ramp_wave - red - reflection_exponent - reflection - repeat - rgbft - rgbf - rgbt - rgb - ripples - roughness - samples - scallop_wave - scattering - sine_wave - slope_map - slope - solid - specular - spherical - spiral1 - spiral2 - spotted - texture_list - texture_map - texture - tile2 - tiles - normal - toroidal - transmit - triangle_wave - turbulence - turb_depth - use_alpha - use_color - use_colour - use_index - uv_mapping - warp - waves - wood - wrinkles - cutaway_textures - pigment_pattern - no_bump_scale - - - matrix - rotate - scale - translate - transform - - - df3 - gif - iff - jpeg - pgm - png - pot - ppm - tga - tiff - ttf - - - clock - clock_delta - clock_on - final_clock - final_frame - frame_number - image_height - image_width - initial_clock - initial_frame - t - u - v - x - y - z - - - false - no - off - on - pi - true - yes - - - abs - acos - acosh - asc - asin - asinh - atan - atan2 - atanh - ceil - chr - concat - cos - cosh - cube - defined - degress - dimension_size - dimensions - div - exp - file_exists - floor - inside - int - ln - log - max - min - mod - pow - prod - pwr - radians - rand - seed - select - sin - sinh - sqrt - str - strcmp - strlen - strlwr - strupr - substr - sum - tan - tanh - trace - val - vaxis_rotate - vcross - vdot - vlength - vnormalize - vrotate - vstr - vturbulence - - - #debug - #default - #else - #end - #error - #fclose - #fopen - #if - #ifdef - #ifndef - #include - #range - #read - #render - #statistics - #switch - #undef - #version - #warning - #while - #write - - - FIXME - TODO - ### - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ppd.xml ktexteditor-5.31.0/src/syntax/data/ppd.xml --- ktexteditor-5.28.0/src/syntax/data/ppd.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ppd.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/praat.xml ktexteditor-5.31.0/src/syntax/data/praat.xml --- ktexteditor-5.28.0/src/syntax/data/praat.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/praat.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,510 +0,0 @@ - - -]> - - - - - assert - clearinfo - demo - elif - else - elsif - from - minus - nocheck - noprogress - nowarn - plus - select - stopwatch - then - to - - - backslashTrigraphsToUnicode$ - chooseDirectory$ - chooseReadFile$ - chooseWriteFile$ - date$ - demoKey$ - do$ - environment$ - extractLine$ - extractWord$ - fixed$ - info$ - left$ - mid$ - percent$ - readFile$ - replace$ - replace_regex$ - right$ - selected$ - string$ - - - abs - appendFile - appendFileLine - appendInfo - appendInfoLine - arccos - arccosh - arcsin - arcsinh - arctan - arctan2 - arctanh - barkToHertz - beginPause - beginSendPraat - besselI - besselK - beta - beta2 - binomialP - binomialQ - boolean - ceiling - chiSquareP - chiSquareQ - choice - comment - cos - cosh - createDirectory - deleteFile - demoClicked - demoClickedIn - demoCommandKeyPressed - demoExtraControlKeyPressed - demoInput - demoKeyPressed - demoOptionKeyPressed - demoShiftKeyPressed - demoShow - demoWaitForInput - demoWindowTitle - demoX - demoY - differenceLimensToPhon - do - editor - endPause - endSendPraat - endsWith - erb - erbToHertz - erf - erfc - exitScript - exp - extractNumber - fileReadable - fisherP - fisherQ - floor - gaussP - gaussQ - hash - hertzToBark - hertzToErb - hertzToMel - hertzToSemitones - imax - imin - incompleteBeta - incompleteGammaP - index - index_regex - integer - invBinomialP - invBinomialQ - invChiSquareQ - invFisherQ - invGaussQ - invSigmoid - invStudentQ - length - ln - lnBeta - lnGamma - log10 - log2 - max - melToHertz - min - minusObject - natural - number - numberOfColumns - numberOfRows - numberOfSelected - objectsAreIdentical - option - optionMenu - pauseScript - phonToDifferenceLimens - plusObject - positive - randomBinomial - randomGauss - randomInteger - randomPoisson - randomUniform - real - readFile - removeObject - rindex - rindex_regex - round - runScript - runSystem - runSystem_nocheck - selectObject - selected - semitonesToHertz - sentence - sentencetext - sigmoid - sin - sinc - sincpi - sinh - soundPressureToPhon - sqrt - startsWith - studentP - studentQ - tan - tanh - text - variableExists - word - writeFile - writeFileLine - writeInfo - writeInfoLine - - - linear# - randomGauss# - randomInteger# - randomUniform# - zero# - - - all - average - e - left - macintosh - mono - pi - praatVersion - right - stereo - undefined - unix - windows - - - praatVersion$ - tab$ - shellDirectory$ - homeDirectory$ - preferencesDirectory$ - newline$ - temporaryDirectory$ - defaultDirectory$ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/progress.xml ktexteditor-5.31.0/src/syntax/data/progress.xml --- ktexteditor-5.28.0/src/syntax/data/progress.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/progress.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1709 +0,0 @@ - - - - - - - - CHAR - CHARACTER - COM-HANDLE - DECI - DECIMAL - DATE - INTE - INTEGER - ROWID - RECID - LOGI - LONGCHAR - LOGICAL - HANDLE - WIDGET-HANDLE - RAW - LONG - BYTE - SHORT - BLOB - UNSIGNED-SHORT - FLOAT - DOUBLE - CLOB - LONGCHAR - DATETIME - DATETIME-TZ - TEMP-TABLE - DATASET - DATASET-HANDLE - BUFFER - STREAM - SAX-WRITER - MEMPTR - - - - AND - OR - NOT - BEGINS - MATCHES - MODULO - EQ - NE - LT - GT - GE - LE - FALSE - TRUE - YES - NO - - - - OUT - BATCH-MODE - FILE-NAME - GLOBAL-DEFINE - LINE-NUMBER - OPSYS - ENDIF - SCOPED-DEFINE - SEQUENCE - UNDEFINE - WINDOW-SYSTEM - ANALYZE-RESUME - ANALYZE-SUSPEND - WEBSTREAM - - - - VOID - IMPLEMENTS - OVERRIDE - FINAL - INHERITS - AS - WORD-INDEX - LIKE - ALERT-BOX - AT - COLOR - COMBO-BOX - EDITOR - FORMAT - FRAME - IMAGE - ENDKEY - ERROR - QUIT - STOP - PRESELECT - QUERY-TUNING - RADIO-SET - RECORD - SELECTION-LIST - SIZE - SLIDER - TRIGGER - WIDGET - VIEW-AS - NO-UNDO - NO-ERROR - OUT - WHERE - GLOBAL - SHARED - DEFINED - EXCLUSIVE-LOCK - SHARE-LOCK - NO-LOCK - EACH - FIRST - PREV - LAST - SKIP - FORWARD - UNIQUE - UNFORMATTED - APPEND - IN - OF - BEFORE-HIDE - NO-BOX - NO-UNDERLINE - KEEP-TAB-ORDER - UNBUFFERED - BINARY - NO-CONVERT - CONVERT - TARGET - NO-FILL - BY - NO-LABEL - GROUP - BREAK - COLON-ALIGNED - WITH - NO-LABELS - NO-PAUSE - NO-MESSAGE - NO-ECHO - NO-MAP - PRIVATE - PUBLIC - PROTECTED - - - - ROW-UPDATE - VALID-OBJECT - TYPE-OF - CAST - AUDIT-ENABLED - GENERATE-UUID - GUID - HEX-DECODE - HEX-ENCODE - SET-DB-CLIENT - output-content-type - get-value - get-cgi - get-field - html-encode - url-encode - ABSOLUTE - ACCUM - ADD-INTERVAL - ALIAS - AMBIGUOUS - ASC - AVAILABLE - BASE64-DECODE - BASE64-ENCODE - CAN-DO - CAN-FIND - CAN-QUERY - CAN-SET - CAPS - CHR - CODEPAGE-CONVERT - COMPARE - CONNECTED - COUNT-OF - CURRENT-CHANGED - CURRENT-LANGUAGE - CURRENT-RESULT-ROW - CURRENT-VALUE - DATASERVERS - DATA-SOURCE-MODIFIED - DATE - DATETIME - DATETIME-TZ - DAY - DBCODEPAGE - DBCOLLATION - DBNAME - DBPARAM - DBRESTRICTIONS - DBTASKID - DBTYPE - DBVERSION - DECIMAL - DECRYPT - DYNAMIC-CURRENT-VALUE - DYNAMIC-FUNCTION - DYNAMIC-NEXT-VALUE - ENCODE - ENCRYPT - ENTERED - ENTRY - ERROR - ETIME - EXP - EXTENT - FILL - FIRST - FIRST-OF - FIX-CODEPAGE - FRAME-COL - FRAME-DB - FRAME-DOWN - FRAME-FIELD - FRAME-FILE - FRAME-INDEX - FRAME-LINE - FRAME-NAME - FRAME-ROW - FRAME-VALUE - GENERATE-PBE-KEY - GENERATE-PBE-SALT - GENERATE-RANDOM-KEY - GET-BITS - GET-BYTE - GET-BYTE-ORDER - GET-BYTES - GET-CODEPAGE - GET-CODEPAGES - GET-COLLATION - GET-COLLATIONS - GET-DOUBLE - GET-FLOAT - GET-LONG - GET-POINTER-VALUE - GET-SHORT - GET-SIZE - GET-STRING - GET-UNSIGNED-SHORT - INDEX - INTEGER - INTERVAL - IS-CODEPAGE-FIXED - IS-COLUMN-CODEPAGE - IS-LEAD-BYTE - ISO-DATE - KBLABEL - KEYCODE - KEYFUNCTION - KEYLABEL - KEYWORD - KEYWORD-ALL - LAST - LASTKEY - LAST-OF - LC - LDBNAME - LEFT-TRIM - LENGTH - LIBRARY - LINE-COUNTER - LIST-EVENTS - LIST-QUERY-ATTRS - LIST-SET-ATTRS - LIST-WIDGETS - LOCKED - LOG - LOGICAL - LOOKUP - MAXIMUM - MD5-DIGEST - MEMBER - MESSAGE-LINES - MINIMUM - MONTH - MTIME - NEW - NEXT-VALUE - NORMALIZE - NOT ENTERED - NOW - NUM-ALIASES - NUM-DBS - NUM-ENTRIES - NUM-RESULTS - OPSYS - OS-DRIVES - OS-ERROR - OS-GETENV - PAGE-NUMBER - PAGE-SIZE - PDBNAME - PROC-HANDLE - PROC-STATUS - PROGRAM-NAME - PROGRESS - PROMSGS - PROPATH - PROVERSION - QUERY-OFF-END - QUOTER - RANDOM - RAW - RECID - RECORD-LENGTH - REJECTED - REPLACE - RETRY - RETURN-VALUE - RGB-VALUE - RIGHT-TRIM - R-INDEX - ROUND - ROWID - ROW-STATE - SCREEN-LINES - SDBNAME - SEARCH - SEEK - SETUSERID - SHA1-DIGEST - SQRT - SSL-SERVER-NAME - STRING - SUBSTITUTE - SUBSTRING - SUPER - TERMINAL - TIME - TIMEZONE - TODAY - TO-ROWID - TRANSACTION - TRIM - TRUNCATE - USERID - VALID-EVENT - VALID-HANDLE - WEEKDAY - WIDGET-HANDLE - YEAR - - - - IF - THEN - ELSE - WHEN - OTHERWISE - ACCUMULATE - APPLY - ASSIGN - BELL - BUFFER-COMPARE - BUFFER-COPY - CLEAR - CLOSE - QUERY - STORED-PROCEDURE - COLOR - COMPILE - CONNECT - COPY-LOB - CREATE - CLIENT-PRINCIPAL - ALIAS - BROWSE - BUFFER - CALL - DATABASE - DATA-SOURCE - QUERY - SAX-READER - SERVER - SERVER-SOCKET - SOAP-HEADER - SOAP-HEADER-ENTRYREF - SOCKET - TEMP-TABLE - WIDGET - WIDGET-POOL - X-DOCUMENT - X-NODEREF - CURRENT-LANGUAGE - CURRENT-VALUE - DDE - ADVISE - EXECUTE - GET - INITIATE - REQUEST - SEND - TERMINATE - DEF - DEFINE - VAR - VARIABLE - BROWSE - BUFFER - BUTTON - DATA-SOURCE - FRAME - IMAGE - MENU - PARAM - PARAMETER - QUERY - RECTANGLE - STREAM - SUB-MENU - TEMP-TABLE - VARIABLE - WORK-TABLE - WORKFILE - DELETE - ALIAS - OBJECT - WIDGET - WIDGET-POOL - DICTIONARY - DISABLE - TRIGGERS - DISCONNECT - DISPLAY - DOS - DOWN - DYNAMIC-CURRENT-VALUE - EMPTY - TEMP-TABLE - ENABLE - ENTRY - EXPORT - FIND - FORM - FRAME-VALUE - GET - GET-KEY-VALUE - HIDE - IMPORT - INPUT - CLEAR - CLOSE - FROM - TO - THROUGH - INPUT-OUTPUT - THROUGH - INSERT - LEAVE - LENGTH - LOAD - LOAD-PICTURE - MESSAGE - NEXT - NEXT-PROMPT - QUERY - OPEN - OS-APPEND - OS-COMMAND - OS-COPY - OS-CREATE-DIR - OS-DELETE - OS-RENAME - OUTPUT - OVERLAY - PAGE - PAUSE - PROCESS - EVENTS - PROMPT-FOR - PROMSGS - PROPATH - PUBLISH - CURSOR - PUT - PUT-BITS - PUT-BYTE - PUT-BYTES - PUT-DOUBLE - PUT-FLOAT - PUT-KEY-VALUE - PUT-LONG - PUT-SHORT - PUT-STRING - PUT-UNSIGNED-SHORT - QUIT - RAW - RAW-TRANSFER - READKEY - RELEASE - EXTERNAL - OBJECT - REPOSITION - RETURN - RETURNS - RUN - STORED-PROCEDURE - SUPER - SAVE - CACHE - SEEK - SET - SET-BYTE-ORDER - SET-POINTER-VALUE - SET-SIZE - SHOW-STATS - STATUS - STOP - SUBSCRIBE - SUBSTRING - COLOR - SYSTEM-DIALOG - FONT - GET-DIR - GET-FILE - PRINTER-SETUP - SYSTEM-HELP - TERMINAL - TRANSACTION-MODE - AUTOMATIC - TRIGGER - UNDERLINE - UNDO - UNIX - UNLOAD - UNSUBSCRIBE - UP - UPDATE - USE - VALIDATE - VIEW - WAIT-FOR - - - - BROWSE - BUTTON - COMBO-BOX - CONTROL-FRAME - DIALOG-BOX - EDITOR - FIELD-GROUP - FILL-IN - FRAME - IMAGE - LITERAL - MENU - MENU-ITEM - RADIO-SET - RECTANGLE - SELECTION-LIST - SLIDER - SUB-MENU - TEXT - TOGGLE-BOX - WINDOW - - - - THIS-OBJECT - AUDIT-CONTROL - AUDIT-POLICY - SECURITY-POLICY - ACTIVE-WINDOW - BUFFER - BUFFER-FIELD - CALL - CLIPBOARD - CODEBASE-LOCATOR - COLOR-TABLE - COM-SELF - COMPILER - CURRENT-WINDOW - DATA-RELATION - DATE-SOURCE - DEBUGGER - DEFAULT-WINDOW - ERROR-STATUS - FILE-INFO - FIELD - FOCUS - FONT-TABLE - LAST-EVENT - LOG-MANAGER - PRODATASET - QUERY - RCODE-INFO - SAX-ATTRIBUTES - SAX-READER - SELF - SERVER SOCKET - SESSION - SOAP-FAULT - SOAP-FAULT-DETAIL - SOAP-HEADER - SOAP-HEADER-ENTRYREF - SOCKET - SOURCE-PROCEDURE - TARGET-PROCEDURE - TEMP-TABLE - THIS-PROCEDURE - TRANSACTION - WEB-CONTEXT - X-DOCUMENT - X-NODEREF - - - - CONTROL-NAME - CONTROLS - HEIGHT - HONORPROKEYS - HONORRETURNKEY - LEFT - TOP - WIDTH - TAG - - - - ANYWHERE - SCHEMA-MARSHAL - ATTACHED-PAIRLIST - DATA-SOURCE-COMPLETE-MAP - KEYS - NEXT-ROWID - NUM-REFERENCES - RESTART-ROWID - CLASS-TYPE - FIRST-OBJECT - LAST-OBJECT - MULTI-COMPILE - WIDGET-ID - SCHEMA-LOCATION - STANDALONE - STRICT - VERSION - WRITE-STATUS - NONAMESPACE-SCHEMA-LOCATION - FRAGMENT - APPL-CONTEXT-ID - AUDIT-EVENT-CONTEXT - CLIENT-TTY - CLIENT-WORKSTATION - DOMAIN-DESCRIPTION - DOMAIN-NAME - DOMAIN-TYPE - EVENT-GROUP-ID - LOGIN-EXPIRATION-TIMESTAMP - LOGIN-HOST - LOGIN-STATE - ROLES - SEAL-TIMESTAMP - SESSION-ID - STATE-DETAIL - USER-ID - ACCELERATOR - ACTIVE - ACTOR - ADM-DATA - AFTER-BUFFER - AFTER-ROWID - AFTER-TABLE - ALLOW-COLUMN-SEARCHING - ALWAYS-ON-TOP - AMBIGUOUS - APPL-ALERT-BOXES - APPSERVER-INFO - APPSERVER-PASSWORD - APPSERVER-USERID - ASYNCHRONOUS - ASYNC-REQUEST-COUNT - ASYNC-REQUEST-HANDLE - ATTRIBUTE-NAMES - ATTR-SPACE - AUTO-COMPLETION - AUTO-DELETE - AUTO-ENDKEY - AUTO-GO - AUTO-INDENT - AUTO-RESIZE - AUTO-RETURN - AUTO-VALIDATE - AUTO-ZAP - AVAILABLE - AVAILABLE-FORMATS - BACKGROUND - BASE-ADE - BASIC-LOGGING - BATCH-MODE - BEFORE-BUFFER - BEFORE-ROWID - BEFORE-TABLE - BGCOLOR - BLANK - BLOCK-ITERATION-DISPLAY - BORDER-BOTTOM-CHARS - BORDER-BOTTOM-PIXELS - BORDER-LEFT-CHARS - BORDER-LEFT-PIXELS - BORDER-RIGHT-CHARS - BORDER-RIGHT-PIXELS - BORDER-TOP-CHARS - BORDER-TOP-PIXELS - BOX - BOX-SELECTABLE - BUFFER-CHARS - BUFFER-VALUE - BYTES-READ - BYTES-WRITTEN - CACHE - CALL-NAME - CALL-TYPE - BUFFER-FIELD - BUFFER-HANDLE - BUFFER-LINES - BUFFER-NAME - CANCEL-BUTTON - CANCELLED - CAN-CREATE - CAN-DELETE - CAN-READ - CAN-WRITE - CAREFUL-PAINT - CASE-SENSITIVE - CENTERED - CHARSET - CHECKED - CHILD-BUFFER - CHILD-NUM - CLIENT-CONNECTION-ID - CLIENT-TYPE - CODE - CODEPAGE - COLUMN - COLUMN-BGCOLOR - COLUMN-DCOLOR - COLUMN-FGCOLOR - COLUMN-FONT - COLUMN-LABEL - COLUMN-MOVABLE - COLUMN-PFCOLOR - COLUMN-READ-ONLY - COLUMN-RESIZABLE - COLUMN-SCROLLING - COM-HANDLE - COMPLETE - CONTEXT-HELP - CONTEXT-HELP-FILE - CONTEXT-HELP-ID - CONTROL-BOX - CONVERT-D-COLORS - CPCASE - CPCOLL - CPINTERNAL - CPLOG - CPPRINT - CPRCODEIN - CPRCODEOUT - CPSTREAM - CPTERM - CRC-VALUE - CURRENT-CHANGED - CURRENT-COLUMN - CURRENT-ITERATION - CURRENT-RESULT-ROW - CURRENT-ROW-MODIFIED - CURRENT-WINDOW - CURSOR-CHAR - CURSOR-LINE - CURSOR-OFFSET - DATA-ENTRY-RETURN - DATA-SOURCE - DATA-TYPE - DATASET - DATE-FORMAT - DBNAME - DB-REFERENCES - DCOLOR - DDE-ERROR - DDE-ID - DDE-ITEM - DDE-NAME - DDE-TOPIC - DEBLANK - DEBUG-ALERT - DECIMALS - DEFAULT - DEFAULT-BUFFER-HANDLE - DEFAULT-BUTTON - DEFAULT-COMMIT - DELIMITER - DISABLE-AUTO-ZAP - DISPLAY-TIMEZONE - DISPLAY-TYPE - DOWN - DRAG-ENABLED - DROP-TARGET - DYNAMIC - EDGE-CHARS - EDGE-PIXELS - EDIT-CAN-PASTE - EDIT-CAN-UNDO - EMPTY - ENCODING - END-USER-PROMPT - ENTRY-TYPES-LIST - ERROR - ERROR-COLUMN - ERROR-OBJECT-DETAIL - ERROR-ROW - ERROR-STRING - EVENT-PROCEDURE - EVENT-PROCEDURE-CONTEXT - EVENT-TYPE - EXPAND - EXPANDABLE - EXTENT - FGCOLOR - FILE-CREATE-DATE - FILE-CREATE-TIME - FILE-MOD-DATE - FILE-MOD-TIME - FILE-NAME - FILE-OFFSET - FILE-SIZE - FILE-TYPE - FILLED - FILL-MODE - FILL-WHERE-STRING - FIRST-ASYNC-REQUEST - FIRST-BUFFER - FIRST-CHILD - FIRST-COLUMN - FIRST-DATASET - FIRST-DATA-SOURCE - FIRST-PROCEDURE - FIRST-QUERY - FIRST-SERVER - FIRST-SERVER-SOCKET - FIRST-SOCKET - FIRST-TAB-ITEM - FIT-LAST-COLUMN - FLAT-BUTTON - FOCUSED-ROW - FOCUSED-ROW-SELECTED - FONT - FOREGROUND - FORMAT - FORWARD-ONLY - FRAME - FRAME-COL - FRAME-NAME - FRAME-ROW - FRAME-SPACING - FRAME-X - FRAME-Y - FREQUENCY - FULL-HEIGHT-CHARS - FULL-HEIGHT-PIXELS - FULL-PATHNAME - FULL-WIDTH-CHARS - FULL-WIDTH-PIXELS - GRAPHIC-EDGE - GRID-FACTOR-HORIZONTAL - GRID-FACTOR-VERTICAL - GRID-SNAP - GRID-UNIT-HEIGHT-CHARS - GRID-UNIT-HEIGHT-PIXELS - GRID-UNIT-WIDTH-CHARS - GRID-UNIT-WIDTH-PIXELS - GRID-VISIBLE - HANDLER - HAS-LOBS - HAS-RECORDS - HEIGHT-CHARS - HEIGHT-PIXELS - HELP - HIDDEN - HORIZONTAL - HTML-CHARSET - HWND - ICFPARAMETER - ICON - IGNORE-CURRENT-MODIFIED - IMAGE - IMAGE-DOWN - IMAGE-INSENSITIVE - IMAGE-UP - IMMEDIATE-DISPLAY - INDEX - INDEX-INFORMATION - INIT - INITIAL - INNER-CHARS - INNER-LINES - INPUT-VALUE - INSTANTIATING-PROCEDURE - INTERNAL-ENTRIES - IN-HANDLE - IS-OPEN - IS-PARAMETER-SET - ITEMS-PER-ROW - KEEP-CONNECTION-OPEN - KEEP-FRAME-Z-ORDER - KEEP-SECURITY-CACHE - KEY - LABEL - LABEL-BGCOLOR - LABEL-DCOLOR - LABEL-FGCOLOR - LABEL-FONT - LABELS - LANGUAGES - LARGE - LARGE-TO-SMALL - LAST-ASYNC-REQUEST - LAST-CHILD - LAST-PROCEDURE - LAST-SERVER - LAST-SERVER-SOCKET - LAST-SOCKET - LAST-TAB-ITEM - LENGTH - LINE - LIST-ITEM-PAIRS - LIST-ITEMS - LITERAL-QUESTION - LOCAL-HOST - LOCAL-NAME - LOCAL-PORT - LOCATOR-COLUMN-NUMBER - LOCATOR-LINE-NUMBER - LOCATOR-PUBLIC-ID - LOCATOR-SYSTEM-ID - LOCATOR-TYPE - LOCKED - LOG-ENTRY-TYPES - LOG-THRESHOLD - LOGFILE-NAME - LOGGING-LEVEL - MANDATORY - MANUAL-HIGHLIGHT - MAX-BUTTON - MAX-CHARS - MAX-DATA-GUESS - MAX-HEIGHT-CHARS - MAX-HEIGHT-PIXELS - MAX-VALUE - MAX-WIDTH-CHARS - MAX-WIDTH-PIXELS - MD-VALUE - MENU-BAR - MENU-KEY - MENU-MOUSE - MESSAGE-AREA - MESSAGE-AREA-FONT - MIN-BUTTON - MIN-COLUMN-WIDTH-CHARS - MIN-COLUMN-WIDTH-PIXELS - MIN-HEIGHT-CHARS - MIN-HEIGHT-PIXELS - MIN-SCHEMA-MARSHAL - MIN-VALUE - MIN-WIDTH-CHARS - MIN-WIDTH-PIXELS - MODIFIED - MOUSE-POINTER - MOVABLE - MULTIPLE - MULTITASKING-INTERVAL - MUST-UNDERSTAND - NAMESPACE-PREFIX - NAMESPACE-URI - NEEDS-APPSERVER-PROMPT - NEEDS-PROMPT - NEW - NEW-ROW - NEXT-COLUMN - NEXT-SIBLING - NEXT-TAB-ITEM - NO-CURRENT-VALUE - NO-EMPTY-SPACE - NO-FOCUS - NO-SCHEMA-MARSHAL - NO-VALIDATE - NODE-VALUE - NUM-BUFFERS - NUM-BUTTONS - NUM-CHILD-RELATIONS - NUM-CHILDREN - NUM-COLUMNS - NUM-DROPPED-FILES - NUM-ENTRIES - NUM-FIELDS - NUM-FORMATS - NUM-HEADER-ENTRIES - NUM-ITEMS - NUM-ITERATIONS - NUM-LINES - NUM-LOCKED-COLUMNS - NUM-LOG-FILES - NUM-MESSAGES - NUM-PARAMETERS - NUM-RELATIONS - NUM-REPLACED - NUM-RESULTS - NUM-SELECTED-ROWS - NUM-SELECTED-WIDGETS - NUM-SOURCE-BUFFERS - NUM-TABS - NUM-TO-RETAIN - NUM-TOP-BUFFERS - NUM-VISIBLE-COLUMNS - NUMERIC-DECIMAL-POINT - NUMERIC-FORMAT - NUMERIC-SEPARATOR - ON-FRAME-BORDER - ORIGIN-HANDLE - ORIGIN-ROWID - OVERLAY - OWNER - OWNER-DOCUMENT - PAGE-BOTTOM - PAGE-TOP - PARAMETER - PARENT - PARENT-BUFFER - PARENT-RELATION - PARSE-STATUS - PASSWORD-FIELD - PATHNAME - PERSISTENT - PERSISTENT-CACHE-DISABLED - PERSISTENT-PROCEDURE - PFCOLOR - PIXELS-PER-COLUMN - PIXELS-PER-ROW - POPUP-MENU - POPUP-ONLY - POSITION - PREPARED - PREPARE-STRING - PREV-COLUMN - PREV-SIBLING - PREV-TAB-ITEM - PRIMARY - PRINTER-CONTROL-HANDLE - PRINTER-HDC - PRINTER-NAME - PRINTER-PORT - PRIVATE-DATA - PROCEDURE-NAME - PROGRESS-SOURCE - PROXY - PROXY-PASSWORD - PROXY-USERID - PUBLIC-ID - PUBLISHED-EVENTS - QUERY - QUERY-OFF-END - QUIT - RADIO-BUTTONS - READ-ONLY - RECID - RECORD-LENGTH - REFRESHABLE - REJECTED - RELATION-FIELDS - RELATIONS-ACTIVE - REMOTE - REMOTE-HOST - REMOTE-PORT - REPOSITION - RESIZABLE - RESIZE - RETAIN-SHAPE - RETURN-INSERTED - RETURN-VALUE - RETURN-VALUE-DATA-TYPE - ROW - COL - ROW-HEIGHT-CHARS - ROW-HEIGHT-PIXELS - ROW-STATE - ROWID - ROW-MARKERS - ROW-RESIZABLE - SAVE-WHERE-STRING - SCHEMA-CHANGE - SCHEMA-PATH - SCREEN-LINES - SCREEN-VALUE - SCROLL-BARS - SCROLLABLE - SCROLLBAR-HORIZONTAL - SCROLLBAR-VERTICAL - SELECTABLE - SELECTED - SELECTION-END - SELECTION-START - SELECTION-TEXT - SENSITIVE - SEPARATORS - SEPARATOR-FGCOLOR - SERVER - SERVER-CONNECTION-BOUND - SERVER-CONNECTION-BOUND-REQUEST - SERVER-CONNECTION-CONTEXT - SERVER-CONNECTION-ID - SERVER-OPERATING-MODE - SHOW-IN-TASKBAR - SIDE-LABEL-HANDLE - SIDE-LABELS - SKIP-DELETED-RECORD - SMALL-ICON - SMALL-TITLE - SOAP-FAULT-ACTOR - SOAP-FAULT-CODE - SOAP-FAULT-DETAIL - SOAP-FAULT-STRING - SORT - STARTUP-PARAMETERS - STATUS-AREA - STATUS-AREA-FONT - STOP - STOPPED - STREAM - STRETCH-TO-FIT - STRING-VALUE - SUBTYPE - SUPER-PROCEDURES - SUPPRESS-NAMESPACE-PROCESSING - SUPPRESS-WARNINGS - SYSTEM-ALERT-BOXES - SYSTEM-ID - TAB-POSITION - TAB-STOP - TABLE - TABLE-CRC-LIST - TABLE-HANDLE - TABLE-LIST - TABLE-NUMBER - TEMP-DIRECTORY - TEXT-SELECTED - THREE-D - TIC-MARKS - TIME-SOURCE - TITLE - TITLE-BGCOLOR - TITLE-DCOLOR - TITLE-FGCOLOR - TITLE-FONT - TOGGLE-BOX - TOOLTIP - TOOLTIPS - TOP-ONLY - TRACKING-CHANGES - TRANSACTION - TRANSPARENT - TRANS-INIT-PROCEDURE - TYPE - UNDO - UNIQUE-ID - UNIQUE-MATCH - URL - URL-PASSWORD - URL-USERID - DISPLAY - VALIDATE-EXPRESSION - VALIDATE-MESSAGE - VALIDATION-ENABLED - VALUE - VIEW-FIRST-COLUMN-ON-REOPEN - VIRTUAL-HEIGHT - VIRTUAL-WIDTH - VIRTUAL-HEIGHT-CHARS - VIRTUAL-HEIGHT-PIXELS - VIRTUAL-WIDTH-CHARS - VIRTUAL-WIDTH-PIXELS - VISIBLE - WARNING - WHERE-STRING - WIDGET-ENTER - WIDGET-LEAVE - WIDTH-CHARS - WIDTH-PIXELS - WINDOW - WINDOW-STATE - WINDOW-SYSTEM - WORD-WRAP - WORK-AREA-HEIGHT-PIXELS - WORK-AREA-WIDTH-PIXELS - WORK-AREA-X - WORK-AREA-Y - X - XML-SCHEMA-PATH - XML-SUPPRESS-NAMESPACE-PROCESSING - Y - YEAR-OFFSET - WRITE-XMLSCHEMA - READ-XMLSCHEMA - WRITE-XML - READ-XML - NESTED - XML-DATA-TYPE - XML-NODE-TYPE - FORMATTED - SET-OUTPUT-DESTINATION - START-DOCUMENT - START-ELEMENT - WRITE-CHARACTERS - END-ELEMENT - END-DOCUMENT - WRITE-DATA-ELEMENT - INSERT-ATTRIBUTE - - - - COPY-DATASET - COPY-TEMP-TABLE - GET-CALLBACK-PROC-CONTEXT - GET-CALLBACK-PROC-NAME - GET-BINARY-DATA - ADD-SCHEMA-LOCATION - DECLARE-NAMESPACE - RESET - WRITE-CDATA - WRITE-COMMENT - WRITE-EMPTY-ELEMENT - WRITE-ENTITY-REF - WRITE-EXTERNAL-DTD - WRITE-FRAGMENT - WRITE-PROCESSING-INSTRUCTION - CLEAR-LOG - CLOSE-LOG - WRITE-MESSAGE - AUTHENTICATION-FAILED - BEGIN-EVENT-GROUP - CLEAR-APPL-CONTEXT - ENCRYPT-AUDIT-MAC-KEY - END-EVENT-GROUP - EXPORT-PRINCIPAL - GET-PROPERTY - IMPORT-PRINCIPAL - LIST-PROPERTY-NAMES - LOAD-DOMAINS - LOCK-REGISTRATION - LOG-AUDIT-EVENT - LOGOUT - REFRESH-AUDIT-POLICY - REGISTER-DOMAIN - SEAL - SET-APPL-CONTEXT - SET-CLIENT - SET-PROPERTY - VALIDATE-SEAL - ACCEPT-CHANGES - ACCEPT-ROW-CHANGES - ADD-BUFFER - ADD-CALC-COLUMN - ADD-COLUMNS-FROM - ADD-EVENTS-PROCEDURE - ADD-FIELDS-FROM - ADD-FIRST - ADD-HEADER-ENTRY - ADD-INDEX-FIELD - ADD-LAST - ADD-LIKE-COLUMN - ADD-LIKE-FIELD - ADD-LIKE-INDEX - ADD-NEW-FIELD - ADD-NEW-INDEX - ADD-RELATION - ADD-SOURCE-BUFFER - ADD-SUPER-PROCEDURE - APPEND-CHILD - APPLY-CALLBACK - ATTACH-DATA-SOURCE - BUFFER-COMPARE - BUFFER-COPY - BUFFER-CREATE - BUFFER-DELETE - BUFFER-FIELD - BUFFER-RELEASE - BUFFER-VALIDATE - CANCEL-BREAK - CANCEL-REQUESTS - CLEAR - CLEAR-SELECTION - CLONE-NODE - CONNECT - CONNECTED - CONVERT-TO-OFFSET - CREATE-LIKE - CREATE-NODE - CREATE-NODE-NAMESPACE - CREATE-RESULT-LIST-ENTRY - DEBUG - DELETE - DELETE-CHAR - DELETE-CURRENT-ROW - DELETE-HEADER-ENTRY - DELETE-LINE - DELETE-NODE - DELETE-RESULT-LIST-ENTRY - DELETE-SELECTED-ROW - DELETE-SELECTED-ROWS - DESELECT-FOCUSED-ROW - DESELECT-ROWS - DESELECT-SELECTED-ROW - DETACH-DATA-SOURCE - DISABLE - DISABLE-CONNECTIONS - DISABLE-DUMP-TRIGGERS - DISABLE-LOAD-TRIGGERS - DISCONNECT - DISPLAY-MESSAGE - DUMP-LOGGING-NOW - EDIT-CLEAR - EDIT-COPY - EDIT-CUT - EDIT-PASTE - EDIT-UNDO - EMPTY-DATASET - EMPTY-TEMP-TABLE - ENABLE - ENABLE-CONNECTIONS - ENABLE-EVENTS - END-FILE-DROP - ENTRY - EXPORT - FETCH-SELECTED-ROW - FILL - FIND-BY-ROWID - FIND-CURRENT - FIND-FIRST - FIND-LAST - FIND-UNIQUE - GET-ATTRIBUTE - GET-ATTRIBUTE-NODE - GET-BLUE-VALUE - GET-BROWSE-COLUMN - GET-BUFFER-HANDLE - GET-BYTES-AVAILABLE - GET-CHANGES - GET-CHILD - GET-CHILD-RELATION - GET-CURRENT - GET-DATASET-BUFFER - GET-DOCUMENT-ELEMENT - GET-DROPPED-FILE - GET-DYNAMIC - GET-FIRST - GET-GREEN-VALUE - GET-HEADER-ENTRY - GET-INDEX-BY-NAMESPACE-NAME - GET-INDEX-BY-QNAME - GET-ITERATION - GET-LAST - GET-LOCALNAME-BY-INDEX - GET-MESSAGE - GET-NEXT - GET-NODE - GET-NUMBER - GET-PARENT - GET-PREV - GET-PRINTERS - GET-QNAME-BY-INDEX - GET-RED-VALUE - GET-RELATION - GET-REPOSITIONED-ROW - GET-RGB-VALUE - GET-SELECTED-WIDGET - GET-SERIALIZED - GET-SIGNATURE - GET-SOCKET-OPTION - GET-SOURCE-BUFFER - GET-TAB-ITEM - GET-TEXT-HEIGHT-CHARS - GET-TEXT-HEIGHT-PIXELS - GET-TEXT-WIDTH-CHARS - GET-TEXT-WIDTH-PIXELS - GET-TOP-BUFFER - GET-TYPE-BY-INDEX - GET-TYPE-BY-NAMESPACE-NAME - GET-TYPE-BY-QNAME - GET-URI-BY-INDEX - GET-VALUE-BY-INDEX - GET-VALUE-BY-NAMESPACE-NAME - GET-VALUE-BY-QNAME - GET-WAIT-STATE - IMPORT-NODE - INDEX-INFORMATION - INITIALIZE-DOCUMENT-TYPE - INITIATE - INSERT - INSERT-BACKTAB - INSERT-BEFORE - INSERT-FILE - INSERT-ROW - INSERT-STRING - INSERT-TAB - INVOKE - IS-ROW-SELECTED - IS-SELECTED - LOAD - LoadControls - LOAD-ICON - LOAD-IMAGE - LOAD-IMAGE-DOWN - LOAD-IMAGE-INSENSITIVE - LOAD-IMAGE-UP - LOAD-MOUSE-POINTER - LOAD-SMALL-ICON - LONGCHAR-TO-NODE-VALUE - LOOKUP - MEMPTR-TO-NODE-VALUE - MERGE-CHANGES - MERGE-ROW-CHANGES - MOVE-AFTER-TAB-ITEM - MOVE-BEFORE-TAB-ITEM - MOVE-COLUMN - MOVE-TO-BOTTOM - MOVE-TO-EOF - MOVE-TO-TOP - NODE-VALUE-TO-LONGCHAR - NODE-VALUE-TO-MEMPTR - NORMALIZE - QUERY-CLOSE - QUERY-OPEN - QUERY-PREPARE - RAW-TRANSFER - READ - READ-FILE - REFRESH - REJECT-CHANGES - REJECT-ROW-CHANGES - REMOVE-ATTRIBUTE - REMOVE-CHILD - REMOVE-EVENTS-PROCEDURE - REMOVE-SUPER-PROCEDURE - REPLACE - REPLACE-CHILD - REPLACE-SELECTION-TEXT - REPOSITION-BACKWARD - REPOSITION-FORWARD - REPOSITION-TO-ROW - REPOSITION-TO-ROWID - SAVE - SAVE-FILE - SAVE-ROW-CHANGES - SAX-PARSE - SAX-PARSE-FIRST - SAX-PARSE-NEXT - SCROLL-TO-CURRENT-ROW - SCROLL-TO-ITEM - SCROLL-TO-SELECTED-ROW - SEARCH - SELECT-ALL - SELECT-FOCUSED-ROW - SELECT-NEXT-ROW - SELECT-PREV-ROW - SELECT-ROW - SET-ACTOR - SET-ATTRIBUTE - SET-ATTRIBUTE-NODE - SET-BLUE-VALUE - SET-BREAK - SET-BUFFERS - SET-CALLBACK-PROCEDURE - SET-COMMIT - SET-CONNECT-PROCEDURE - SET-DYNAMIC - SET-GREEN-VALUE - SET-INPUT-SOURCE - SET-MUST-UNDERSTAND - SET-NODE - SET-NUMERIC-FORMAT - SET-PARAMETER - SET-READ-RESPONSE-PROCEDURE - SET-RED-VALUE - SET-REPOSITIONED-ROW - SET-RGB-VALUE - SET-ROLLBACK - SET-SELECTION - SET-SERIALIZED - SET-SOCKET-OPTION - SET-WAIT-STATE - STOP-PARSING - SYNCHRONIZE - TEMP-TABLE-PREPARE - VALIDATE - WRITE - MAX-HEIGHT - MAX-WIDTH - - - - CLASSPATH - DLC - EVTLEVEL - JDKCP - JDKHOME - JFCCP - JFHOME - JIT - JRECP - JREHOME - JVMEXE - PATH - PROCFG - PROCONV - PROEXE - PROGRESSCP - PROLOAD - PROMSGS - PROPATH - PROSRV - PROSTARTUP - PROTERMCAP - TERM - TERMINAL - GATEWAY_INTERFACE - SERVER_SOFTWARE - SERVER_PROTOCOL - SERVER_NAME - SERVER_PORT - REQUEST_METHOD - SCRIPT_NAME - PATH_INFO - PATH_TRANSLATED - QUERY_STRING - REMOTE_ADDR - REMOTE_IDENT - REMOTE_USER - AUTH_TYPE - REMOTE_HOST - CONTENT_TYPE - CONTENT_LENGTH - HTTP_ACCEPT - HTTP_COOKIE - HTTP_REFERER - HTTP_USER_AGENT - HTTP_REFERER - HTTPS - HTTP_REFERER - HOSTURL - SELFURL - APPPROGRAM - APPURL - APPPROGRAM - OUTPUT-CONTENT-TYPE - WEB_SRC_PATH - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/prolog.xml ktexteditor-5.31.0/src/syntax/data/prolog.xml --- ktexteditor-5.28.0/src/syntax/data/prolog.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/prolog.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1109 +0,0 @@ - - - - - - ?@^~\\]"> - - - - - - - - |\\\+|:-|=|\\=)(?!&gr_char_iso;)"> - - - (?!&gr_char_iso;)"> - - - =|>)(?!&gr_char_iso;)"> - - - - >)(?!&gr_char_iso;)"> - - - =|@>|=\.\.|@|:)(?!&gr_char_iso;)"> - - - - - - - - - - - - - - - - - - - ?@^~\"> - - - - - - - - - - - - -]> - - - - - - - - - error - - - instantiation_error - uninstantiation_error - type_error - domain_error - existence_error - permission_error - representation_error - evaluation_error - resource_error - syntax_error - system_error - - - - - char_conversion - current_char_conversion - include - ensure_loaded - - atan - - xor - - - - consult - built_in - - - - - - - - - - - - initialization - - fail - repeat - call - catch - throw - true - false - once - - - - - dynamic - asserta - assertz - retractall - retract - abolish - clause - - - - - - listing - - - - - atom_concat - atom_length - atom_chars - atom_codes - arg - subsumes_term - acyclic_term - char_code - compare - copy_term - functor - number_chars - number_codes - - term_variables - unify_with_occurs_check - - - - number_atom - expand_term - term_expansion - - - display - print - format - portray_clause - portray - term_expansion - - - phrase - - - sort - keysort - - - append - delete - length - last - map_list - min_list - maplist - msort - memberchk - member - nth - permutation - reverse - select - prefix - suffix - sublist - sum_list - - - open - - set_stream_position - get_char - get_code - peek_char - peek_code - get_byte - peek_byte - - put_char - put_code - put_byte - nl - - read_term - read - write_canonical - writeq - write - - - append - seeing - seen - see - telling - tell - told - get0 - get - skip - put - tab - - - is - - - rem - mod - div - - - - - abs - sign - min - max - - - - - ceiling - floor - round - truncate - - - - pi - - - sqrt - tan - cos - sin - atan2 - acos - asin - exp - log - float - float_fractional_part - float_integer_part - - - - - multifile - discontigous - op - set_prolog_flag - - - var - nonvar - atom - integer - float - number - atomic - compound - callable - ground - - - - list - is_list - - - - - current_op - current_prolog_flag - current_input - current_output - - - set_input - set_output - - - close - - flush_output - - - at_end_of_stream - - stream_property - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/protobuf.xml ktexteditor-5.31.0/src/syntax/data/protobuf.xml --- ktexteditor-5.28.0/src/syntax/data/protobuf.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/protobuf.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,121 +0,0 @@ - - - - - - message - required - optional - repeated - packed - enum - default - import - public - extensions - package - option - deprecated - extend - - - = - ; - - - double - float - int32 - int64 - uint32 - uint64 - sint32 - sint64 - fixed32 - fixed64 - sfixed32 - sfixed64 - bool - string - bytes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/puppet.xml ktexteditor-5.31.0/src/syntax/data/puppet.xml --- ktexteditor-5.28.0/src/syntax/data/puppet.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/puppet.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,711 +0,0 @@ - - - - -]> - - - - - - - import - false - true - undef - - - - in - and - or - - - - and - or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/purebasic.xml ktexteditor-5.31.0/src/syntax/data/purebasic.xml --- ktexteditor-5.28.0/src/syntax/data/purebasic.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/purebasic.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1766 +0,0 @@ - - - - - Break - Continue - For - ForEach - To - Step - Next - Gosub - Return - FakeReturn - If - Else - ElseIf - EndIf - Repeat - Until - Select - Case - Default - EndSelect - While - Wend - End - Structure - EndStructure - Interface - EndInterface - Extends - DefType - Dim - Enumeration - EndEnumeration - Global - Procedure - EndProcedure - ProcedureReturn - Shared - Protected - Static - Declare - DataSection - EndDataSection - Data - Restore - Read - IncludeFile - XIncludeFile - IncludeBinary - IncludePath - ProcedureDLL - NewList - Goto - With - DeclareModule - EndDeclareModule - Module - EndModule - UseModule - UnuseModule - - - CompilerIf - CompilerElse - CompilerEndIf - CompilerSelect - CompilerCase - CompilerDefault - CompilerEndSelect - - - CallDebugger - Debug - - - ACos - ACosH - AESDecoder - AESEncoder - ASin - ASinH - ATan - ATan2 - ATanH - AbortFTPFile - Abs - Add3DArchive - AddBillboard - AddCipherBuffer - AddDate - AddElement - AddEntityAnimationTime - AddGadgetColumn - AddGadgetItem - AddGadgetItem3D - AddJSONElement - AddJSONMember - AddKeyboardShortcut - AddMailAttachment - AddMailAttachmentData - AddMailRecipient - AddMapElement - AddMaterialLayer - AddNodeAnimationTime - AddPackFile - AddPackMemory - AddSplinePoint - AddStaticGeometryEntity - AddStatusBarField - AddSubMesh - AddSysTrayIcon - AddTerrainTexture - AddVertexPoseReference - AddWindowTimer - AffectedDatabaseRows - AllocateMemory - AllocateStructure - Alpha - AlphaBlend - AmbientColor - AntialiasingMode - ApplyEntityForce - ApplyEntityImpulse - ArraySize - Asc - AttachEntityObject - AttachNodeObject - AttachRibbonEffect - AudioCDLength - AudioCDName - AudioCDStatus - AudioCDTrackLength - AudioCDTrackSeconds - AudioCDTracks - AvailableProgramOutput - AvailableScreenMemory - AvailableSerialPortInput - AvailableSerialPortOutput - BackColor - Base64Decoder - Base64Encoder - BillboardGroupCommonDirection - BillboardGroupCommonUpVector - BillboardGroupID - BillboardGroupMaterial - BillboardGroupX - BillboardGroupY - BillboardGroupZ - BillboardHeight - BillboardLocate - BillboardWidth - BillboardX - BillboardY - BillboardZ - Bin - BindEvent - BindGadgetEvent - BindMenuEvent - Blue - Box - BoxedGradient - BuildMeshShadowVolume - BuildMeshTangents - BuildStaticGeometry - BuildTerrain - ButtonGadget - ButtonGadget3D - ButtonImageGadget - CPUName - CRC32FileFingerprint - CRC32Fingerprint - CalendarGadget - CallCFunction - CallCFunctionFast - CallFunction - CallFunctionFast - CameraBackColor - CameraDirection - CameraDirectionX - CameraDirectionY - CameraDirectionZ - CameraFOV - CameraFixedYawAxis - CameraFollow - CameraID - CameraLookAt - CameraPitch - CameraProjectionMode - CameraProjectionX - CameraProjectionY - CameraRange - CameraRenderMode - CameraRoll - CameraViewHeight - CameraViewWidth - CameraViewX - CameraViewY - CameraX - CameraY - CameraYaw - CameraZ - CanvasGadget - CanvasOutput - CatchImage - CatchJSON - CatchMusic - CatchSound - CatchSprite - CatchXML - ChangeCurrentElement - ChangeGamma - ChangeListIconGadgetDisplay - ChangeSysTrayIcon - CheckBoxGadget - CheckBoxGadget3D - CheckDatabaseNull - CheckFTPConnection - CheckFilename - CheckObjectVisibility - ChildXMLNode - Chr - Circle - CircularGradient - ClearBillboards - ClearClipboard - ClearConsole - ClearDebugOutput - ClearGadgetItemList - ClearGadgetItems - ClearGadgetItems3D - ClearJSONElements - ClearJSONMembers - ClearList - ClearMap - ClearScreen - ClearSpline - ClipOutput - ClipSprite - CloseConsole - CloseCryptRandom - CloseDatabase - CloseFTP - CloseFile - CloseGadgetList - CloseGadgetList3D - CloseHelp - CloseLibrary - CloseNetworkConnection - CloseNetworkServer - ClosePack - ClosePreferences - CloseProgram - CloseScreen - CloseSerialPort - CloseSubMenu - CloseWindow - CloseWindow3D - CocoaMessage - ColorRequester - ComboBoxGadget - ComboBoxGadget3D - CompareMemory - CompareMemoryString - ComposeJSON - ComposeXML - CompositorEffectParameter - CompressMemory - ComputeSpline - ComputerName - ConeTwistJoint - ConicalGradient - ConnectionID - ConsoleColor - ConsoleCursor - ConsoleError - ConsoleLocate - ConsoleTitle - ContainerGadget - ContainerGadget3D - ConvertLocalToWorldPosition - ConvertWorldToLocalPosition - CopyArray - CopyDirectory - CopyEntity - CopyFile - CopyImage - CopyLight - CopyList - CopyMap - CopyMaterial - CopyMemory - CopyMemoryString - CopyMesh - CopySprite - CopyTexture - CopyXMLNode - Cos - CosH - CountBillboards - CountCPUs - CountGadgetItems - CountGadgetItems3D - CountLibraryFunctions - CountList - CountMaterialLayers - CountProgramParameters - CountRegularExpressionGroups - CountSplinePoints - CountString - CreateBillboardGroup - CreateCamera - CreateCompositorEffect - CreateCube - CreateCubeMapTexture - CreateCylinder - CreateDialog - CreateDirectory - CreateEntity - CreateFTPDirectory - CreateFile - CreateGadgetList - CreateImage - CreateImageMenu - CreateJSON - CreateLensFlareEffect - CreateLight - CreateLine3D - CreateMail - CreateMaterial - CreateMenu - CreateMesh - CreateMutex - CreateNetworkServer - CreateNode - CreateNodeAnimation - CreateNodeAnimationKeyFrame - CreatePack - CreateParticleEmitter - CreatePlane - CreatePopupImageMenu - CreatePopupMenu - CreatePreferences - CreateRegularExpression - CreateRenderTexture - CreateRibbonEffect - CreateSemaphore - CreateSphere - CreateSpline - CreateSprite - CreateStaticGeometry - CreateStatusBar - CreateTerrain - CreateText3D - CreateTexture - CreateThread - CreateToolBar - CreateVertexAnimation - CreateVertexPoseKeyFrame - CreateVertexTrack - CreateWater - CreateXML - CreateXMLNode - CryptRandom - CryptRandomData - CustomFilterCallback - CustomGradient - DESFingerprint - DatabaseColumnIndex - DatabaseColumnName - DatabaseColumnSize - DatabaseColumnType - DatabaseColumns - DatabaseDriverDescription - DatabaseDriverName - DatabaseError - DatabaseID - DatabaseQuery - DatabaseUpdate - Date - DateGadget - Day - DayOfWeek - DayOfYear - DefaultPrinter - DefineTerrainTile - Degree - Delay - DeleteDirectory - DeleteElement - DeleteFTPDirectory - DeleteFTPFile - DeleteFile - DeleteMapElement - DeleteXMLNode - DesktopDepth - DesktopFrequency - DesktopHeight - DesktopMouseX - DesktopMouseY - DesktopName - DesktopWidth - DesktopX - DesktopY - DetachEntityObject - DetachNodeObject - DetachRibbonEffect - DialogError - DialogGadget - DialogID - DialogWindow - DirectoryEntryAttributes - DirectoryEntryDate - DirectoryEntryName - DirectoryEntrySize - DirectoryEntryType - DisableEntityBody - DisableGadget - DisableGadget3D - DisableLightShadows - DisableMaterialLighting - DisableMenuItem - DisableParticleEmitter - DisableToolBarButton - DisableWindow - DisableWindow3D - DisplayPopupMenu - DisplaySprite - DisplayTransparentSprite - DoubleClickTime - DragFiles - DragImage - DragOSFormats - DragPrivate - DragText - DrawAlphaImage - DrawImage - DrawRotatedText - DrawText - DrawingBuffer - DrawingBufferPitch - DrawingBufferPixelFormat - DrawingFont - DrawingMode - EditorGadget - EditorGadget3D - EjectAudioCD - ElapsedMilliseconds - Ellipse - EllipticalGradient - EnableGadgetDrop - EnableGraphicalConsole - EnableHingeJointAngularMotor - EnableManualEntityBoneControl - EnableWindowDrop - EnableWorldCollisions - EnableWorldPhysics - EncodeImage - Engine3DStatus - EntityAngularFactor - EntityAnimationBlendMode - EntityAnimationStatus - EntityBonePitch - EntityBoneRoll - EntityBoneX - EntityBoneY - EntityBoneYaw - EntityBoneZ - EntityBoundingBox - EntityCollide - EntityCubeMapTexture - EntityCustomParameter - EntityFixedYawAxis - EntityID - EntityLinearFactor - EntityLookAt - EntityParentNode - EntityPhysicBody - EntityPitch - EntityRenderMode - EntityRoll - EntityVelocity - EntityX - EntityY - EntityYaw - EntityZ - EnvironmentVariableName - EnvironmentVariableValue - Eof - ErrorAddress - ErrorCode - ErrorFile - ErrorLine - ErrorMessage - ErrorRegister - ErrorTargetAddress - EventClient - EventData - EventDropAction - EventDropBuffer - EventDropFiles - EventDropImage - EventDropPrivate - EventDropSize - EventDropText - EventDropType - EventDropX - EventDropY - EventGadget - EventGadget3D - EventMenu - EventServer - EventTimer - EventType - EventType3D - EventWindow - EventWindow3D - EventlParam - EventwParam - ExamineAssembly - ExamineDatabaseDrivers - ExamineDesktops - ExamineDirectory - ExamineEnvironmentVariables - ExamineFTPDirectory - ExamineIPAddresses - ExamineJSONMembers - ExamineJoystick - ExamineKeyboard - ExamineLibraryFunctions - ExamineMD5Fingerprint - ExamineMouse - ExaminePack - ExaminePreferenceGroups - ExaminePreferenceKeys - ExamineRegularExpression - ExamineSHA1Fingerprint - ExamineScreenModes - ExamineWorldCollisions - ExamineXMLAttributes - Exp - ExplorerComboGadget - ExplorerListGadget - ExplorerTreeGadget - ExportJSON - ExportJSONSize - ExportXML - ExportXMLSize - ExtractJSONArray - ExtractJSONList - ExtractJSONMap - ExtractJSONStructure - ExtractRegularExpression - ExtractXMLArray - ExtractXMLList - ExtractXMLMap - ExtractXMLStructure - FTPDirectoryEntryAttributes - FTPDirectoryEntryDate - FTPDirectoryEntryName - FTPDirectoryEntryRaw - FTPDirectoryEntrySize - FTPDirectoryEntryType - FTPProgress - FetchEntityMaterial - FetchOrientation - FileBuffersSize - FileID - FileSeek - FileSize - FillArea - FillMemory - FindMapElement - FindString - FinishCipher - FinishDatabaseQuery - FinishDirectory - FinishFTPDirectory - FinishFingerprint - FinishMesh - FirstDatabaseRow - FirstElement - FirstWorldCollisionEntity - FlipBuffers - FlushFileBuffers - Fog - FontID - FontRequester - FormatDate - FormatXML - FrameGadget - FrameGadget3D - FreeArray - FreeBillboardGroup - FreeCamera - FreeDialog - FreeEffect - FreeEntity - FreeEntityJoints - FreeFont - FreeGadget - FreeGadget3D - FreeIP - FreeImage - FreeJSON - FreeJoint - FreeLight - FreeList - FreeMail - FreeMap - FreeMaterial - FreeMemory - FreeMenu - FreeMesh - FreeMovie - FreeMusic - FreeMutex - FreeNode - FreeNodeAnimation - FreeParticleEmitter - FreeRegularExpression - FreeSemaphore - FreeSound - FreeSound3D - FreeSpline - FreeSprite - FreeStaticGeometry - FreeStatusBar - FreeStructure - FreeTerrain - FreeText3D - FreeTexture - FreeToolBar - FreeWater - FreeXML - FrontColor - GadgetHeight - GadgetHeight3D - GadgetID - GadgetID3D - GadgetItemID - GadgetToolTip - GadgetToolTip3D - GadgetType - GadgetType3D - GadgetWidth - GadgetWidth3D - GadgetX - GadgetX3D - GadgetY - GadgetY3D - GetActiveGadget - GetActiveGadget3D - GetActiveWindow - GetActiveWindow3D - GetClientIP - GetClientPort - GetClipboardImage - GetClipboardText - GetCurrentDirectory - GetDatabaseBlob - GetDatabaseDouble - GetDatabaseFloat - GetDatabaseLong - GetDatabaseQuad - GetDatabaseString - GetEntityAnimationLength - GetEntityAnimationTime - GetEntityAnimationWeight - GetEntityAttribute - GetEntityCollisionGroup - GetEntityCollisionMask - GetEnvironmentVariable - GetExtensionPart - GetFTPDirectory - GetFileAttributes - GetFileDate - GetFilePart - GetFunction - GetFunctionEntry - GetGadgetAttribute - GetGadgetAttribute3D - GetGadgetColor - GetGadgetData - GetGadgetData3D - GetGadgetFont - GetGadgetItemAttribute - GetGadgetItemColor - GetGadgetItemData - GetGadgetItemData3D - GetGadgetItemState - GetGadgetItemState3D - GetGadgetItemText - GetGadgetItemText3D - GetGadgetState - GetGadgetState3D - GetGadgetText - GetGadgetText3D - GetHTTPHeader - GetHomeDirectory - GetJSONBoolean - GetJSONDouble - GetJSONElement - GetJSONFloat - GetJSONInteger - GetJSONMember - GetJSONQuad - GetJSONString - GetJointAttribute - GetLightColor - GetMailAttribute - GetMailBody - GetMaterialAttribute - GetMaterialColor - GetMenuItemState - GetMenuItemText - GetMenuTitleText - GetMeshData - GetMusicPosition - GetMusicRow - GetNodeAnimationKeyFrameTime - GetNodeAnimationLength - GetNodeAnimationTime - GetNodeAnimationWeight - GetOriginX - GetOriginY - GetPathPart - GetRuntimeDouble - GetRuntimeInteger - GetRuntimeString - GetScriptMaterial - GetScriptParticleEmitter - GetScriptTexture - GetSerialPortStatus - GetSoundFrequency - GetSoundPosition - GetTemporaryDirectory - GetTerrainTileHeightAtPoint - GetTerrainTileLayerBlend - GetToolBarButtonState - GetURLPart - GetW - GetWindowColor - GetWindowData - GetWindowState - GetWindowTitle - GetWindowTitle3D - GetX - GetXMLAttribute - GetXMLEncoding - GetXMLNodeName - GetXMLNodeOffset - GetXMLNodeText - GetXMLStandalone - GetY - GetZ - GrabDrawingImage - GrabImage - GrabSprite - GradientColor - Green - Hex - HideBillboardGroup - HideEffect - HideEntity - HideGadget - HideGadget3D - HideLight - HideMenu - HideParticleEmitter - HideWindow - HideWindow3D - HingeJoint - HingeJointMotorTarget - HostName - Hour - HyperLinkGadget - IPAddressField - IPAddressGadget - IPString - ImageDepth - ImageFormat - ImageGadget - ImageGadget3D - ImageHeight - ImageID - ImageOutput - ImageWidth - Infinity - InitAudioCD - InitEngine3D - InitJoystick - InitKeyboard - InitMouse - InitMovie - InitNetwork - InitScintilla - InitSound - InitSprite - Inkey - Input - InputEvent3D - InputRequester - InsertElement - InsertJSONArray - InsertJSONList - InsertJSONMap - InsertJSONStructure - InsertString - InsertXMLArray - InsertXMLList - InsertXMLMap - InsertXMLStructure - InstructionAddress - InstructionString - Int - IntQ - IsBillboardGroup - IsCamera - IsDatabase - IsDialog - IsDirectory - IsEffect - IsEntity - IsFile - IsFingerprint - IsFont - IsFtp - IsGadget - IsGadget3D - IsImage - IsInfinity - IsJSON - IsLibrary - IsLight - IsMail - IsMaterial - IsMenu - IsMesh - IsMovie - IsMusic - IsNaN - IsNode - IsParticleEmitter - IsProgram - IsRegularExpression - IsRuntime - IsScreenActive - IsSerialPort - IsSound - IsSound3D - IsSprite - IsStaticGeometry - IsStatusBar - IsSysTrayIcon - IsText3D - IsTexture - IsThread - IsToolBar - IsWindow - IsWindow3D - IsXML - JSONArraySize - JSONErrorLine - JSONErrorMessage - JSONErrorPosition - JSONMemberKey - JSONMemberValue - JSONObjectSize - JSONType - JSONValue - JoystickAxisX - JoystickAxisY - JoystickAxisZ - JoystickButton - JoystickName - KeyboardInkey - KeyboardMode - KeyboardPushed - KeyboardReleased - KillProgram - KillThread - LCase - LSet - LTrim - LastElement - Left - Len - LensFlareEffectColor - LibraryFunctionAddress - LibraryFunctionName - LibraryID - LightAttenuation - LightDirection - LightDirectionX - LightDirectionY - LightDirectionZ - LightID - LightLookAt - LightPitch - LightRoll - LightX - LightY - LightYaw - LightZ - Line - LineXY - LinearGradient - ListIconGadget - ListIndex - ListSize - ListViewGadget - ListViewGadget3D - LoadFont - LoadImage - LoadJSON - LoadMesh - LoadMovie - LoadMusic - LoadSound - LoadSound3D - LoadSprite - LoadTexture - LoadWorld - LoadXML - Loc - LockMutex - Lof - Log - Log10 - MD5FileFingerprint - MD5Fingerprint - MDIGadget - MailProgress - MainXMLNode - MakeIPAddress - MapKey - MapSize - MatchRegularExpression - MaterialBlendingMode - MaterialCullingMode - MaterialFilteringMode - MaterialFog - MaterialID - MaterialShadingMode - MaterialShininess - MemorySize - MemoryStatus - MemoryStringLength - MenuBar - MenuHeight - MenuID - MenuItem - MenuTitle - MergeLists - MeshFace - MeshID - MeshIndex - MeshIndexCount - MeshPoseCount - MeshPoseName - MeshRadius - MeshVertexColor - MeshVertexCount - MeshVertexNormal - MeshVertexPosition - MeshVertexTangent - MeshVertexTextureCoordinate - MessageRequester - Mid - Minute - Mod - Month - MouseButton - MouseDeltaX - MouseDeltaY - MouseLocate - MousePick - MouseRayCast - MouseWheel - MouseX - MouseY - MoveBillboard - MoveBillboardGroup - MoveCamera - MoveElement - MoveEntity - MoveEntityBone - MoveLight - MoveMemory - MoveNode - MoveParticleEmitter - MoveText3D - MoveXMLNode - MovieAudio - MovieHeight - MovieInfo - MovieLength - MovieSeek - MovieStatus - MovieWidth - MusicVolume - NaN - NetworkClientEvent - NetworkServerEvent - NewPrinterPage - NextDatabaseDriver - NextDatabaseRow - NextDirectoryEntry - NextElement - NextEnvironmentVariable - NextFTPDirectoryEntry - NextFingerprint - NextIPAddress - NextInstruction - NextJSONMember - NextLibraryFunction - NextMapElement - NextPackEntry - NextPreferenceGroup - NextPreferenceKey - NextRegularExpressionMatch - NextScreenMode - NextSelectedFilename - NextWorldCollision - NextXMLAttribute - NextXMLNode - NodeAnimationKeyFramePitch - NodeAnimationKeyFrameRoll - NodeAnimationKeyFrameX - NodeAnimationKeyFrameY - NodeAnimationKeyFrameYaw - NodeAnimationKeyFrameZ - NodeAnimationStatus - NodeFixedYawAxis - NodeID - NodeLookAt - NodePitch - NodeRoll - NodeX - NodeY - NodeYaw - NodeZ - NormalX - NormalY - NormalZ - NormalizeMesh - OSVersion - OnErrorCall - OnErrorDefault - OnErrorExit - OnErrorGoto - OpenConsole - OpenCryptRandom - OpenDatabase - OpenDatabaseRequester - OpenFTP - OpenFile - OpenFileRequester - OpenGLGadget - OpenGadgetList - OpenGadgetList3D - OpenHelp - OpenLibrary - OpenNetworkConnection - OpenPack - OpenPreferences - OpenScreen - OpenSerialPort - OpenSubMenu - OpenWindow - OpenWindow3D - OpenWindowedScreen - OpenXMLDialog - OptionGadget - OptionGadget3D - OutputDepth - OutputHeight - OutputWidth - PackEntryName - PackEntrySize - PackEntryType - PanelGadget - PanelGadget3D - ParentXMLNode - Parse3DScripts - ParseDate - ParseJSON - ParseXML - ParticleColorFader - ParticleColorRange - ParticleEmissionRate - ParticleEmitterDirection - ParticleEmitterID - ParticleEmitterX - ParticleEmitterY - ParticleEmitterZ - ParticleMaterial - ParticleSize - ParticleSpeedFactor - ParticleTimeToLive - ParticleVelocity - PathRequester - PauseAudioCD - PauseMovie - PauseSound - PauseThread - PeekA - PeekB - PeekC - PeekD - PeekF - PeekI - PeekL - PeekQ - PeekS - PeekU - PeekW - PickX - PickY - PickZ - Pitch - PlayAudioCD - PlayMovie - PlayMusic - PlaySound - PlaySound3D - Plot - Point - PointJoint - PointPick - PokeA - PokeB - PokeC - PokeD - PokeF - PokeI - PokeL - PokeQ - PokeS - PokeU - PokeW - PopListPosition - PopMapPosition - PostEvent - Pow - PreferenceComment - PreferenceGroup - PreferenceGroupName - PreferenceKeyName - PreferenceKeyValue - PreviousDatabaseRow - PreviousElement - PreviousXMLNode - Print - PrintN - PrintRequester - PrinterOutput - PrinterPageHeight - PrinterPageWidth - ProgramExitCode - ProgramFilename - ProgramID - ProgramParameter - ProgramRunning - ProgressBarGadget - ProgressBarGadget3D - PurifierGranularity - PushListPosition - PushMapPosition - RGB - RGBA - RSet - RTrim - Radian - RaiseError - Random - RandomData - RandomSeed - RandomizeArray - RandomizeList - RawKey - RayCast - RayCollide - RayPick - ReAllocateMemory - ReadAsciiCharacter - ReadByte - ReadCharacter - ReadConsoleData - ReadData - ReadDouble - ReadFile - ReadFloat - ReadInteger - ReadLong - ReadPreferenceDouble - ReadPreferenceFloat - ReadPreferenceInteger - ReadPreferenceLong - ReadPreferenceQuad - ReadPreferenceString - ReadProgramData - ReadProgramError - ReadProgramString - ReadQuad - ReadSerialPortData - ReadString - ReadStringFormat - ReadUnicodeCharacter - ReadWord - ReceiveFTPFile - ReceiveHTTPFile - ReceiveNetworkData - Red - RegularExpressionError - RegularExpressionGroup - RegularExpressionGroupLength - RegularExpressionGroupPosition - RegularExpressionMatchLength - RegularExpressionMatchPosition - RegularExpressionMatchString - RegularExpressionNamedGroup - RegularExpressionNamedGroupLength - RegularExpressionNamedGroupPosition - ReleaseMouse - ReloadMaterial - RemoveBillboard - RemoveEnvironmentVariable - RemoveGadgetColumn - RemoveGadgetItem - RemoveGadgetItem3D - RemoveJSONElement - RemoveJSONMember - RemoveKeyboardShortcut - RemoveMailRecipient - RemoveMaterialLayer - RemovePackFile - RemovePreferenceGroup - RemovePreferenceKey - RemoveString - RemoveSysTrayIcon - RemoveWindowTimer - RemoveXMLAttribute - RenameFTPFile - RenameFile - RenderWorld - ReplaceRegularExpression - ReplaceString - ResetGradientColors - ResetList - ResetMap - ResetMaterial - ResetProfiler - ResizeBillboard - ResizeGadget - ResizeGadget3D - ResizeImage - ResizeJSONElements - ResizeMovie - ResizeParticleEmitter - ResizeWindow - ResizeWindow3D - ResolveXMLAttributeName - ResolveXMLNodeName - ResumeAudioCD - ResumeMovie - ResumeSound - ResumeThread - ReverseString - RibbonEffectColor - RibbonEffectWidth - Right - Roll - RootXMLNode - RotateBillboardGroup - RotateCamera - RotateEntity - RotateEntityBone - RotateLight - RotateMaterial - RotateNode - RotateSprite - Round - RoundBox - RunProgram - SHA1FileFingerprint - SHA1Fingerprint - SaveDebugOutput - SaveFileRequester - SaveImage - SaveJSON - SaveMesh - SaveRenderTexture - SaveSprite - SaveTerrain - SaveXML - ScaleEntity - ScaleMaterial - ScaleNode - ScaleText3D - ScintillaGadget - ScintillaSendMessage - ScreenDepth - ScreenHeight - ScreenID - ScreenModeDepth - ScreenModeHeight - ScreenModeRefreshRate - ScreenModeWidth - ScreenOutput - ScreenWidth - ScrollAreaGadget - ScrollAreaGadget3D - ScrollBarGadget - ScrollBarGadget3D - ScrollMaterial - Second - SecondWorldCollisionEntity - SelectElement - SelectedFilePattern - SelectedFontColor - SelectedFontName - SelectedFontSize - SelectedFontStyle - SendFTPFile - SendMail - SendNetworkData - SendNetworkString - SerialPortError - SerialPortID - SerialPortTimeouts - ServerID - SetActiveGadget - SetActiveGadget3D - SetActiveWindow - SetActiveWindow3D - SetClipboardImage - SetClipboardText - SetCurrentDirectory - SetDatabaseBlob - SetDragCallback - SetDropCallback - SetEntityAnimationLength - SetEntityAnimationTime - SetEntityAnimationWeight - SetEntityAttribute - SetEntityCollisionFilter - SetEntityMaterial - SetEnvironmentVariable - SetFTPDirectory - SetFileAttributes - SetFileDate - SetFrameRate - SetGUITheme3D - SetGadgetAttribute - SetGadgetAttribute3D - SetGadgetColor - SetGadgetData - SetGadgetData3D - SetGadgetFont - SetGadgetItemAttribute - SetGadgetItemColor - SetGadgetItemData - SetGadgetItemData3D - SetGadgetItemImage - SetGadgetItemState - SetGadgetItemState3D - SetGadgetItemText - SetGadgetItemText3D - SetGadgetState - SetGadgetState3D - SetGadgetText - SetGadgetText3D - SetJSONArray - SetJSONBoolean - SetJSONDouble - SetJSONFloat - SetJSONInteger - SetJSONNull - SetJSONObject - SetJSONQuad - SetJSONString - SetJointAttribute - SetLightColor - SetMailAttribute - SetMailBody - SetMaterialAttribute - SetMaterialColor - SetMenuItemState - SetMenuItemText - SetMenuTitleText - SetMeshData - SetMeshMaterial - SetMusicPosition - SetNodeAnimationKeyFramePosition - SetNodeAnimationKeyFrameRotation - SetNodeAnimationKeyFrameScale - SetNodeAnimationLength - SetNodeAnimationTime - SetNodeAnimationWeight - SetOrientation - SetOrigin - SetRenderQueue - SetRuntimeDouble - SetRuntimeInteger - SetRuntimeString - SetSerialPortStatus - SetSoundFrequency - SetSoundPosition - SetTerrainTileHeightAtPoint - SetTerrainTileLayerBlend - SetToolBarButtonState - SetURLPart - SetWindowCallback - SetWindowColor - SetWindowData - SetWindowState - SetWindowTitle - SetWindowTitle3D - SetXMLAttribute - SetXMLEncoding - SetXMLNodeName - SetXMLNodeOffset - SetXMLNodeText - SetXMLStandalone - SetupTerrains - ShortcutGadget - ShowAssemblyViewer - ShowCallstack - ShowDebugOutput - ShowGUI - ShowLibraryViewer - ShowMemoryViewer - ShowProfiler - ShowVariableViewer - ShowWatchlist - Sign - SignalSemaphore - Sin - SinH - SkyBox - SkyDome - SliderJoint - SmartWindowRefresh - SortArray - SortList - SortStructuredArray - SortStructuredList - SoundCone3D - SoundID3D - SoundLength - SoundListenerLocate - SoundPan - SoundRange3D - SoundStatus - SoundVolume - SoundVolume3D - Space - SpinGadget - SpinGadget3D - SplinePointX - SplinePointY - SplinePointZ - SplineX - SplineY - SplineZ - SplitList - SplitterGadget - SpotLightRange - SpriteBlendingMode - SpriteCollision - SpriteDepth - SpriteHeight - SpriteID - SpriteOutput - SpritePixelCollision - SpriteQuality - SpriteWidth - Sqr - StartAESCipher - StartDrawing - StartEntityAnimation - StartNodeAnimation - StartPrinting - StartProfiler - StatusBarHeight - StatusBarID - StatusBarImage - StatusBarProgress - StatusBarText - StickyWindow - StopAudioCD - StopDrawing - StopEntityAnimation - StopMovie - StopMusic - StopNodeAnimation - StopPrinting - StopProfiler - StopSound - StopSound3D - Str - StrD - StrF - StrU - StringByteLength - StringField - StringGadget - StringGadget3D - SubMeshCount - Sun - SwapElements - SwitchCamera - SysTrayIconToolTip - Tan - TanH - TerrainHeight - TerrainLocate - TerrainMousePick - TerrainPhysicBody - TerrainRenderMode - TerrainTileHeightAtPosition - TerrainTileLayerMapSize - TerrainTilePointX - TerrainTilePointY - TerrainTileSize - Text3DAlignment - Text3DCaption - Text3DColor - Text3DID - TextGadget - TextGadget3D - TextHeight - TextWidth - TextureHeight - TextureID - TextureOutput - TextureWidth - ThreadID - ThreadPriority - ToolBarHeight - ToolBarID - ToolBarImageButton - ToolBarSeparator - ToolBarStandardButton - ToolBarToolTip - TrackBarGadget - TransformMesh - TransformSprite - TransparentSpriteColor - TreeGadget - Trim - TruncateFile - TryLockMutex - TrySemaphore - UCase - URLDecoder - URLEncoder - UnbindEvent - UnbindGadgetEvent - UnbindMenuEvent - UnclipOutput - UncompressMemory - UncompressPackFile - UncompressPackMemory - UnlockMutex - UpdateEntityAnimation - UpdateMesh - UpdateMeshBoundingBox - UpdateRenderTexture - UpdateSplinePoint - UpdateTerrain - UpdateTerrainTileLayerBlend - UpdateVertexPoseReference - UseAudioCD - UseBriefLZPacker - UseFLACSoundDecoder - UseGadgetList - UseJCALG1Packer - UseJPEG2000ImageDecoder - UseJPEG2000ImageEncoder - UseJPEGImageDecoder - UseJPEGImageEncoder - UseLZMAPacker - UseODBCDatabase - UseOGGSoundDecoder - UsePNGImageDecoder - UsePNGImageEncoder - UsePostgreSQLDatabase - UseSQLiteDatabase - UseTGAImageDecoder - UseTIFFImageDecoder - UseZipPacker - UserName - Val - ValD - ValF - VertexPoseReferenceCount - WaitProgram - WaitSemaphore - WaitThread - WaitWindowEvent - WaterColor - WaterHeight - WebGadget - WebGadgetPath - WindowBounds - WindowEvent - WindowEvent3D - WindowHeight - WindowHeight3D - WindowID - WindowID3D - WindowMouseX - WindowMouseY - WindowOutput - WindowWidth - WindowWidth3D - WindowX - WindowX3D - WindowY - WindowY3D - WorldCollisionAppliedImpulse - WorldCollisionContact - WorldCollisionNormal - WorldDebug - WorldGravity - WorldShadows - WriteAsciiCharacter - WriteByte - WriteCharacter - WriteConsoleData - WriteData - WriteDouble - WriteFloat - WriteInteger - WriteLong - WritePreferenceDouble - WritePreferenceFloat - WritePreferenceInteger - WritePreferenceLong - WritePreferenceQuad - WritePreferenceString - WriteProgramData - WriteProgramString - WriteProgramStringN - WriteQuad - WriteSerialPortData - WriteSerialPortString - WriteString - WriteStringFormat - WriteStringN - WriteUnicodeCharacter - WriteWord - XMLAttributeName - XMLAttributeValue - XMLChildCount - XMLError - XMLErrorLine - XMLErrorPosition - XMLNodeFromID - XMLNodeFromPath - XMLNodePath - XMLNodeType - XMLStatus - Yaw - Year - ZoomSprite - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/python.xml ktexteditor-5.31.0/src/syntax/data/python.xml --- ktexteditor-5.28.0/src/syntax/data/python.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/python.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,624 +0,0 @@ - - - - - - - - - - - - - - - - - - import - from - as - - - class - def - del - global - lambda - nonlocal - - - and - in - is - not - or - - - assert - break - continue - elif - else - except - finally - for - if - pass - raise - return - try - while - with - yield - async - await - - - __import__ - abs - all - any - apply - ascii - basestring - bin - bool - buffer - bytearray - bytes - callable - chr - classmethod - cmp - coerce - compile - complex - delattr - dict - dir - divmod - enumerate - eval - exec - execfile - file - filter - float - format - frozenset - getattr - globals - hasattr - hash - help - hex - id - input - int - intern - isinstance - issubclass - iter - len - list - locals - long - map - max - memoryview - min - next - object - oct - open - ord - pow - print - property - range - raw_input - reduce - reload - repr - reversed - round - set - setattr - slice - sorted - staticmethod - str - sum - super - tuple - type - unichr - unicode - vars - xrange - zip - - - None - self - True - False - NotImplemented - Ellipsis - __debug__ - __file__ - __name__ - - - SIGNAL - SLOT - connect - - - __new__ - __init__ - __del__ - __repr__ - __str__ - __lt__ - __le__ - __eq__ - __ne__ - __gt__ - __ge__ - __cmp__ - __rcmp__ - __hash__ - __nonzero__ - __unicode__ - __getattr__ - __setattr__ - __delattr__ - __getattribute__ - __get__ - __set__ - __delete__ - __call__ - __len__ - __getitem__ - __setitem__ - __delitem__ - __iter__ - __reversed__ - __contains__ - __getslice__ - __setslice__ - __delslice__ - __add__ - __sub__ - __mul__ - __floordiv__ - __mod__ - __divmod__ - __pow__ - __lshift__ - __rshift__ - __and__ - __xor__ - __or__ - __div__ - __truediv__ - __radd__ - __rsub__ - __rmul__ - __rdiv__ - __rtruediv__ - __rfloordiv__ - __rmod__ - __rdivmod__ - __rpow__ - __rlshift__ - __rrshift__ - __rand__ - __rxor__ - __ror__ - __iadd__ - __isub__ - __imul__ - __idiv__ - __itruediv__ - __ifloordiv__ - __imod__ - __ipow__ - __ilshift__ - __irshift__ - __iand__ - __ixor__ - __ior__ - __neg__ - __pos__ - __abs__ - __invert__ - __complex__ - __int__ - __long__ - __float__ - __oct__ - __hex__ - __index__ - __coerce__ - __enter__ - __exit__ - __bytes__ - __format__ - __next__ - __dir__ - __await__ - __aiter__ - __anext__ - __aenter__ - __aexit__ - - - - ArithmeticError - AssertionError - AttributeError - BaseException - BlockingIOError - BrokenPipeError - BufferError - BytesWarning - ChildProcessError - ConnectionAbortedError - ConnectionError - ConnectionRefusedError - ConnectionResetError - DeprecationWarning - EnvironmentError - EOFError - Exception - FileExistsError - FileNotFoundError - FloatingPointError - FutureWarning - GeneratorExit - ImportError - ImportWarning - IndentationError - IndexError - InterruptedError - IOError - IsADirectoryError - KeyboardInterrupt - KeyError - LookupError - MemoryError - NameError - NotADirectoryError - NotImplementedError - OSError - OverflowError - PendingDeprecationWarning - PermissionError - ProcessLookupError - ReferenceError - ResourceWarning - RuntimeError - RuntimeWarning - StandardError - StopIteration - SyntaxError - SyntaxWarning - SystemError - SystemExit - TabError - TimeoutError - TypeError - UnboundLocalError - UnicodeDecodeError - UnicodeEncodeError - UnicodeError - UnicodeTranslateError - UnicodeWarning - UserWarning - ValueError - Warning - WindowsError - ZeroDivisionError - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/qmake.xml ktexteditor-5.31.0/src/syntax/data/qmake.xml --- ktexteditor-5.28.0/src/syntax/data/qmake.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/qmake.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ - - - - - - - CONFIG - DEFINES - DESTDIR - DLLDESTDIR - FORMS - HEADERS - INCLUDEPATH - INSTALLS - LIBS - OBJECTIVE_SOURCES - OTHER_FILES - OUT_PWD - QMAKE_CXXFLAGS - QMAKE_CFLAGS - QMAKE_EXTRA_COMPILERS - QMAKE_FILE_IN - QMAKE_FILE_OUT - QMAKE_LFLAGS - QMAKE_LFLAGS_SONAME - QMAKE_RPATHDIR - QMAKE_SUBSTITUTES - QT - QT_CONFIG - QT_MAJOR_VERSION - QT_MINOR_VERSION - QT_PATCH_VERSION - RCC_DIR - RESOURCES - SOURCES - SUBDIRS - TARGET - TEMPLATE - UI_DIR - MOC_DIR - OBJECTS_DIR - VPATH - - - - contains - defineReplace - defineTest - equals - error - eval - greaterThan - include - isEmpty - isEqual - message - return - unset - - - build_pass - debug - debug_and_release - linux - macx - msvc - release - unix - win32 - - - else - for - if - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/qml.xml ktexteditor-5.31.0/src/syntax/data/qml.xml --- ktexteditor-5.28.0/src/syntax/data/qml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/qml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,170 +0,0 @@ - - - - - - - - State - PropertyChanges - StateGroup - ParentChange - StateChangeScript - AnchorChanges - PropertyAnimation - NumberAnimation - ColorAnimation - SequentialAnimation - ParallelAnimation - PauseAnimation - PropertyAction - ParentAction - ScriptAction - Transition - SpringFollow - EaseFollow - Behavior - Binding - ListModel - ListElement - VisualItemModel - XmlListModel - XmlRole - DateTimeFormatter - NumberFormatter - Script - Connections - Component - Timer - QtObject - Item - Rectangle - Image - BorderImage - Text - TextInput - TextEdit - MouseArea - FocusScope - Flickable - Flipable - WebView - Loader - Repeater - SystemPalette - GraphicsObjectContainer - LayoutItem - ListView - GridView - PathView - Path - PathLine - PathQuad - PathCubic - PathAttribute - PathPercent - Column - Row - Grid - Scale - Rotation - Blur - Colorize - DropShadow - Opacity - Particles - ParticleMotionLinear - ParticleMotionGravity - ParticleMotionWander - - Gradient - GradientStop - MouseRegion - - - - string - int - bool - date - color - url - real - double - var - variant - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/q.xml ktexteditor-5.31.0/src/syntax/data/q.xml --- ktexteditor-5.28.0/src/syntax/data/q.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/q.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,210 +0,0 @@ - - - - - - .Q.addmonths - .Q.addr - .Q.host - .Q.chk - .Q.cn - .Q.dd - .Q.dpft - .Q.dsftg - .Q.def - .Q.en - .Q.fc - .Q.fk - .Q.fmt - .Q.fs - .Q.ft - .Q.fu - .Q.gc - .Q.hdpf - .Q.ind - .Q.j10 - .Q.x10 - .Q.j12 - .Q.x12 - .Q.k - .Q.l - .Q.opt - .Q.par - .Q.qp - .Q.qt - .Q.s - .Q.ty - .Q.v - .Q.V - .Q.view - .Q.w - .Q.M - .Q.pf - .Q.pt - .Q.PD - .Q.PV - .Q.pd - .Q.pv - .Q.pn - .Q.bv - .Q.vp - .Q.P - .Q.D - .Q.u - - - aj - aj0 - all - and - any - asc - asof - attr - avgs - ceiling - cols - cor - count - cov - cross - csv - cut - deltas - desc - dev - differ - distinct - each - ej - enlist - eval - except - fby - fills - first - fkeys - flip - floor - from - get - group - gtime - hclose - hcount - hdel - hopen - hsym - iasc - idesc - ij - inter - inv - key - keys - lj - load - lower - lsq - ltime - ltrim - mavg - maxs - mcount - md5 - mdev - med - meta - mins - mmax - mmin - mmu - mod - msum - neg - next - not - null - or - over - parse - peach - pj - plist - prds - prev - prior - rand - rank - ratios - raze - read0 - read1 - reciprocal - reverse - rload - rotate - rsave - rtrim - save - scan - set - show - signum - ssr - string - sublist - sums - sv - system - tables - til - trim - txf - type - uj - ungroup - union - update - upper - upsert - value - var - view - views - vs - where - wj - wj1 - xasc - xbar - xcol - xcols - xdesc - xgroup - xkey - xlog - xprev - xrank - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rapidq.xml ktexteditor-5.31.0/src/syntax/data/rapidq.xml --- ktexteditor-5.28.0/src/syntax/data/rapidq.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rapidq.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,432 +0,0 @@ - - - - - - abs - acos - asc - asin - atn - atan - bin$ - bind - callfunc - chdir - chr$ - cint - clng - const - convbase$ - cos - data - date$ - dec - def - delete$ - dim - dir$ - direxists - doevents - end - environ - environ$ - exp - extractresource - field$ - fileexists - fix - format$ - frac - hex$ - iif - inc - inp - insert$ - instr - int - kill - lcase$ - left$ - len - log - lbound - lflush - lprint - ltrim$ - messagedlg - mid$ - mkdir - out - playwav - postmessage - quicksort - randomize - read - redim - rem - rename - replace$ - replacesubstr$ - resource - resourcecount - restore - reverse$ - rgb - right$ - rinstr - rmdir - rnd - round - rtrim$ - run - sendmessage - sgn - shell - showmessage - sin - sizeof - space$ - sqr - str$ - strf$ - string$ - swap - tally - tan - time$ - timer - ubound - ucase$ - val - varptr - varptr$ - true - false - sound - call - goto - gosub - sub - function - declare - do - doevent - loop - while - wend - until - if - then - elseif - select - case - functioni - subi - create - type - exit - messagebox - as - string - integer - word - long - byte - off - on - else - gui - for - next - with - mask - and - or - constructor - extends - defint - defstr - static - public - private - event - single - double - to - - - clipboard - printer - qbitmap - qbutton - qcanvas - qcheckbox - qcombobox - qcomport - qcoolbtn - qdirtree - qedit - qfilelistbox - qfilestream - qfont - qfontdialog - qform - qgauge - qglassframe - qgroupbox - qheader - qimage - qimagelist - qlabel - qlistbox - qlistview - qmainmenu - qmemorystream - qmenuitem - qmysql - qnotifyicondata - qopendialog - qoutline - qovalbtn - qpanel - qpopupmenu - qradiobutton - qrect - qregistry - qrichedit - qsavedialog - qscrollbar - qsocket - qsplitter - qstatusbar - qstringgrid - qstringlist - qtabcontrol - qtimer - qtrackbar - qdximagelist - qdxscreen - qdxtimer - qd3dface - qd3dframe - qd3dlight - qd3dmesh - qd3dtexture - qd3dvector - qd3dvisual - qd3dwarp - application - screen - command$ - curdir$ - sender - - - $apptype - $typecheck - $include - $resource - $define - $undef - $ifdef - $ifndef - $option - $optimize - $escapechars - $EndIf - - - left - top - width - height - open - close - readstring - readinteger - readudt - writestring - writeinteger - writeudt - rootkey - openkey - closekey - flat - cursor - showhint - hint - transparent - caption - onclick - onkeydown - onkeyup - onmousedown - onmouseup - tag - color - onchange - autosize - borderstyle - wordwrap - align - alignment - font - visible - enabled - readline - writeline - additems - addstrings - addstring - delitems - itemcount - itemindex - item - handle - icon - bmphandle - terminate - wndproc - onclose - ontimer - interval - name - size - addstyles - hidetitlebar - show - showmodal - text - button - labelstyle - center - taborder - position - delbordericons - onshow - addbordericons - onkeypress - key - mousex - mousey - onpaint - parent - icohandle - directory - filter - execute - + - filename - bevelinner - bold - checked - clear - underline - maxlength - inputmask - forecolor - - backcolor - deldrivetypes - adddrivetypes - update - bevelouter - - loadfromfile - subitem - viewstyle - rowselect - readonly - gridlines - - addcolumns - oncolumnclick - ondblclick - addsubitem - scrollbars - - addchilditems - plaintext - selstart - sellength - sorted - ColCount - - onmoved - groupindex - OnResize - RowCount - cell - TabPosition - KeyPreview - AddTabs - DelTabs - HotTrack - TabIndex - SizeGrip - AddPanels - Panel - DefaultColWidth - FixedCols - AddOptions - Separator - Col - Row - Rectangle - FillRect - Draw - Count - Line - Circle - TextWidth - TextHeight - TextOut - BeginDoc - EndDoc - CopyRect - FilterIndex - SaveToStream - LoadFromStream - PrinterIndex - Orientation - PageWidth - PageHeight - Right - Bottom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/relaxngcompact.xml ktexteditor-5.31.0/src/syntax/data/relaxngcompact.xml --- ktexteditor-5.28.0/src/syntax/data/relaxngcompact.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/relaxngcompact.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,108 +0,0 @@ - - - - - - default - datatypes - div - empty - external - grammar - include - inherit - list - mixed - namespace - notAllowed - parent - start - token - - - attribute - element - - - string - text - xsd:anyURI - xsd:base64Binary - xsd:boolean - xsd:byte - xsd:date - xsd:dateTime - xsd:decimal - xsd:double - xsd:duration - xsd:ENTITIES - xsd:ENTITY - xsd:float - xsd:gDay - xsd:gMonth - xsd:gMonthDay - xsd:gYear - xsd:gYearMonth - xsd:hexBinary - xsd:ID - xsd:IDREF - xsd:IDREFS - xsd:int - xsd:integer - xsd:language - xsd:long - xsd:Name - xsd:NCName - xsd:negativeInteger - xsd:NMTOKEN - xsd:NMTOKENS - xsd:nonNegativeInteger - xsd:nonPositiveInteger - xsd:normalizedString - xsd:NOTATION - xsd:positiveInteger - xsd:QName - xsd:short - xsd:string - xsd:time - xsd:token - xsd:unsignedByte - xsd:unsignedInt - xsd:unsignedLong - xsd:unsignedShort - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/relaxng.xml ktexteditor-5.31.0/src/syntax/data/relaxng.xml --- ktexteditor-5.28.0/src/syntax/data/relaxng.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/relaxng.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,117 +0,0 @@ - - - -]> - - - - - - - anyName - attribute - choice - data - define - div - element - empty - except - externalRef - grammar - group - include - interleave - list - mixed - name - notAllowed - nsName - oneOrMore - optional - param - parentRef - ref - start - text - value - zeroOrMore - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/replicode.xml ktexteditor-5.31.0/src/syntax/data/replicode.xml --- ktexteditor-5.28.0/src/syntax/data/replicode.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/replicode.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,200 +0,0 @@ - - - - - - - _now - equ - neq - gtr - lsr - gte - lse - add - sub - mul - div - dis - ln - exp - log - e10 - syn - red - rnd - fvw - - - view - grp_view - pgm_view - _obj - ptn - |ptn - pgm - |pgm - _grp - grp - _fact - fact - |fact - pred - goal - cst - mdl - icst - icmd - cmd - ent - ont - dev - nod - ipgm - icpp_pgm - perf - - - mk.rdx - mk.grp_pair - mk.low_sln - mk.high_sln - mk.low_act - mk.high_act - mk.low_res - mk.sln_chg - mk.act_chg - mk.new - - - self - - - stdin - stdout - - - _inj - _eje - _mod - _set - _new_class - _del_class - _ldc - _swp - _stop - - - |nb - |bl - true - false - |[] - |nid - |did - |fid - |st - |us - forever - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rest.xml ktexteditor-5.31.0/src/syntax/data/rest.xml --- ktexteditor-5.28.0/src/syntax/data/rest.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rest.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,109 +0,0 @@ - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rexx.xml ktexteditor-5.31.0/src/syntax/data/rexx.xml --- ktexteditor-5.28.0/src/syntax/data/rexx.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rexx.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,134 +0,0 @@ - - - - - - arg - drop - else - end - exit - forever - if - interpret - iterate - leave - nop - options - otherwise - pull - push - queue - return - say - select - syntax - then - - - abbrev - abs - address - bitand - bitor - bitxor - b2x - center - charin - charout - chars - c2d - c2x - compare - condition - copies - datatype - date - delstr - delword - digits - d2c - d2x - errortext - form - format - fuzz - insert - lastpos - left - linein - lineout - lines - max - min - overlay - pos - queued - random - reverse - right - sign - sourceline - space - stream - strip - substr - subword - symbol - time - trace - translate - trunc - value - verify - word - wordindex - wordlength - wordpos - words - xrange - x2b - x2c - x2d - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rhtml.xml ktexteditor-5.31.0/src/syntax/data/rhtml.xml --- ktexteditor-5.28.0/src/syntax/data/rhtml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rhtml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1234 +0,0 @@ - - - -]> - - - - - - - - - - - - BEGIN - END - and - begin - break - case - defined? - do - else - elsif - end - ensure - for - if - in - include - next - not - or - redo - rescue - retry - return - then - unless - until - when - while - yield - - - - private_class_method - private - protected - public_class_method - public - - - - attr_reader - attr_writer - attr_accessor - - - - alias - module - class - def - undef - - - - self - super - nil - false - true - caller - __FILE__ - __LINE__ - - - - $stdout - $defout - $stderr - $deferr - $stdin - - - - - - abort - at_exit - autoload - autoload? - binding - block_given? - callcc - caller - catch - chomp - chomp! - chop - chop! - eval - exec - exit - exit! - fail - fork - format - getc - gets - global_variables - gsub - gsub! - iterator? - lambda - load - local_variables - loop - method_missing - open - p - print - printf - proc - putc - puts - raise - rand - readline - readlines - require - scan - select - set_trace_func - sleep - split - sprintf - srand - sub - sub! - syscall - system - test - throw - trace_var - trap - untrace_var - warn - - - auto_complete_field - auto_complete_result - auto_discovery_link_tag - auto_link - benchmark - button_to - cache - capture - check_box - check_box_tag - collection_select - concat - content_for - content_tag - country_options_for_select - country_select - current_page? - date_select - datetime_select - debug - define_javascript_functions - distance_of_time_in_words - distance_of_time_in_words_to_now - draggable_element - drop_receiving_element - end_form_tag - error_message_on - error_messages_for - escape_javascript - evaluate_remote_response - excerpt - file_field - file_field_tag - finish_upload_status - form - form_remote_tag - form_tag - form_tag_with_upload_progress - h - hidden_field - hidden_field_tag - highlight - human_size - image_path - image_submit_tag - image_tag - input - javascript_include_tag - javascript_path - javascript_tag - link_image_to - link_to - link_to_function - link_to_if - link_to_image - link_to_remote - link_to_unless - link_to_unless_current - mail_to - markdown - number_to_currency - number_to_human_size - number_to_percentage - number_to_phone - number_with_delimiter - number_with_precision - observe_field - observe_form - option_groups_from_collection_for_select - options_for_select - options_from_collection_for_select - pagination_links - password_field - password_field_tag - periodically_call_remote - pluralize - radio_button - radio_button_tag - register_template_handler - render - render_file - render_template - sanitize - select - select_date - select_datetime - select_day - select_hour - select_minute - select_month - select_second - select_tag - select_time - select_year - simple_format - sortable_element - start_form_tag - strip_links - stylesheet_link_tag - stylesheet_path - submit_tag - submit_to_remote - tag - text_area - text_area_tag - text_field - text_field_tag - text_field_with_auto_complete - textilize - textilize_without_paragraph - time_ago_in_words - time_zone_options_for_select - time_zone_select - truncate - update_element_function - upload_progress_status - upload_progress_text - upload_progress_update_bar_js - upload_status_progress_bar_tag - upload_status_tag - upload_status_text_tag - url_for - visual_effect - word_wrap - - - - TODO - FIXME - NOTE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rib.xml ktexteditor-5.31.0/src/syntax/data/rib.xml --- ktexteditor-5.28.0/src/syntax/data/rib.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rib.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,143 +0,0 @@ - - - - - - - - - - - AreaLightSource - Attribute - AttributeBegin - AttributeEnd - Begin - Bound - Clipping - Color - ColorSamples - ConcatTransform - CoordinateSystem - CropWindow - Declare - DepthOfField - Detail - DetailRange - Displacement - Display - End - Exterior - Format - FrameAspectRatio - FrameBegin - FrameEnd - GeometricApproximation - Hider - Identity - Illuminance - Illuminate - Interior - LightSource - Matte - Opacity - Option - Orientation - Perspective - PixelFilter - PixelSamples - PixelVariance - Projection - Quantize - RelativeDetail - Rotate - Scale - ScreenWindow - ShadingInterpolation - ShadingRate - Shutter - Sides - Skew - Surface - TextureCoordinates - Transform - TransformBegin - TransformEnd - TransformPoints - Translate - version - WorldBegin - WorldEnd - - - Basis - Cylinder - Disk - GeneralPolygon - Geometry - Hyperboloid - NuPatch - ObjectBegin - ObjectEnd - ObjectInstance - Patch - Paraboloid - PointsPolygons - PointsGeneralPolygons - Polygon - Procedural - SolidBegin - SolidEnd - Sphere - Torus - - - MotionBegin - MotionEnd - - - MakeBump - MakeCubeFaceEnvironment - MakeLatLongEnvironment - MakeTexture - ArchiveRecord - ErrorHandler - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rmarkdown.xml ktexteditor-5.31.0/src/syntax/data/rmarkdown.xml --- ktexteditor-5.28.0/src/syntax/data/rmarkdown.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rmarkdown.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/roff.xml ktexteditor-5.31.0/src/syntax/data/roff.xml --- ktexteditor-5.28.0/src/syntax/data/roff.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/roff.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,197 +0,0 @@ - - - - - - -]> - - - - - - br - sp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rpmspec.xml ktexteditor-5.31.0/src/syntax/data/rpmspec.xml --- ktexteditor-5.28.0/src/syntax/data/rpmspec.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rpmspec.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,505 +0,0 @@ - - - - - - - - -]> - - - - - - - - Mon - Tue - Wed - Thu - Fri - Sat - Sun - - - - Jan - Feb - Mar - Apr - May - Jun - Jul - Aug - Sep - Oct - Nov - Dec - - - - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 01 - 02 - 03 - 04 - 05 - 06 - 07 - 08 - 09 - 10 - 11 - 12 - 13 - 14 - 15 - 16 - 17 - 18 - 19 - 20 - 21 - 22 - 23 - 24 - 25 - 26 - 27 - 28 - 29 - 30 - 31 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rsiidl.xml ktexteditor-5.31.0/src/syntax/data/rsiidl.xml --- ktexteditor-5.28.0/src/syntax/data/rsiidl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rsiidl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,442 +0,0 @@ - - - - - - For - Do - Endfor - Repeat - Endrep - While - Endwhile - Until - Case - Endcase - If - Endif - Else - Endelse - Then - Begin - End - Function - Goto - Pro - Eq - Ge - Gt - Le - Lt - Ne - Mod - Or - Xor - Not - And - Then - Return - Common - Of - On_ioerror - Switch - Endswitch - - - dpi - dtor - map - pi - radeg - values - err - error_state - error - err_string - except - mouse - msg_prefix - syserror - syserr_string - warn - dir - dlm_path - edit_input - help_path - journal - more - path - prompt - quiet - version - c - d - order - p - x - y - z - stime - - - Fix - Long - Long64 - uint - Byte - Float - Double - complex - dcomplex - complexarr - dcomplexarr - String - Intarr - lonarr - lon64arr - uintarr - ulong - ulonarr - ulon64arr - Bytarr - Bytscl - Fltarr - Dblarr - Strarr - Objarr - Indgen - Findgen - Dindgen - Dcindgen - cindgen - lindgen - bindgen - sindgen - uindgen - ul64indgen - l64indgen - ulindgen - Replicate - Ptrarr - - - ABS - ACOS - ADAPT_HIST_EQUAL - ALOG - ALOG10 - ARG_PRESENT - ASIN - ASSOC - ATAN - AXIS - BESELI - BESELJ - BESELY - BLAS_AXPY - BREAKPOINT - BROYDEN - BYTEORDER - CALL_EXTERNAL - CALL_FUNCTION - CALL_METHOD - CALL_PROCEDURE - CATCH - CEIL - CHECK_MATH - CHOLDC - CHOLSOL - COLOR_CONVERT - COLOR_QUAN - COMPILE_OPT - COMPUTE_MESH_NORMALS - CONJ - CONSTRAINED_MIN - CONTOUR - CONVERT_COORD - CONVOL - CORRELATE - COS - COSH - CREATE_STRUCT - CURSOR - DEFINE_KEY - DEFSYSV - DELVAR - DEVICE - DFPMIN - DIALOG_MESSAGE - DIALOG_PICKFILE - DIALOG_PRINTERSETUP - DIALOG_PRINTJOB - DILATE - DLM_LOAD - DRAW_ROI - ELMHES - EMPTY - ENABLE_SYSRTN - ERASE - ERODE - ERRORF - EXECUTE - EXIT - EXP - EXPAND_PATH - EXPINT - FINDFILE - FINITE - FLOOR - FORMAT_AXIS_VALUES - FORWARD_FUNCTION - FSTAT - FULSTR - FZ_ROOTS - GAUSSINT - GET_KBRD - GETENV - GRID_TPS - GRID3 - HEAP_GC - HELP - HISTOGRAM - HQR - IMAGE_STATISTICS - IMAGINARY - INTERPOLATE - INVERT - ISHFT - ISOCONTOUR - ISOSURFACE - JOURNAL - KEYWORD_SET - LABEL_REGION - LINBCG - LINKIMAGE - LMGR - LNGAMMA - LNP_TEST - LOADCT - LOCALE_GET - LSODE - LUDC - LUMPROVE - LUSOL - MACHAR - MAKE_ARRAY - MAP_PROJ_INFO - MAX - MEDIAN - MESH_CLIP - MESH_DECIMATE - MESH_ISSOLID - MESH_MERGE - MESH_NUMTRIANGLES - MESH_SMOOTH - MESH_SURFACEAREA - MESH_VALIDATE - MESH_VOLUME - MESSAGE - MIN - N_ELEMENTS - N_PARAMS - N_TAGS - NEWTON - OBJ_CLASS - OBJ_DESTROY - OBJ_ISA - OBJ_NEW - OBJ_VALID - ON_ERROR - OPLOT - PARTICLE_TRACE - PLOT - PLOTS - POLY_2D - POLYFILL - POLYFILLV - POLYSHADE - POWELL - PROFILER - PTR_FREE - PTR_NEW - PTR_VALID - QROMB - QROMO - QSIMP - RANDOMN - RANDOMU - REBIN - REFORM - RETALL - RETURN - RIEMANN - RK4 - ROBERTS - ROTATE - ROUND - SET_PLOT - SET_SHADING - SETENV - SHADE_SURF - SHADE_VOLUME - SHIFT - SIN - SINH - SIZE - SMOOTH - SOBEL - SORT - SPL_INIT - SPL_INTERP - SPRSAB - SPRSAX - SPRSIN - SQRT - STOP - STRCMP - STRCOMPRESS - STREGEX - STRJOIN - STRLEN - STRLOWCASE - STRMATCH - STRMESSAGE - STRMID - STRPOS - STRPUT - STRTRIM - STRUCT_ASSIGN - STRUCT_HIDE - STRUPCASE - SURFACE - SVDC - SVSOL - SYSTIME - TAG_NAMES - TAN - TANH - TEMPORARY - TETRA_CLIP - TETRA_SURFACE - TETRA_VOLUME - THIN - THREED - TOTAL - TRANSPOSE - TRIANGULATE - TRIGRID - TRIQL - TRIRED - TRISOL - TV - TVCRS - TVLCT - TVRD - TVSCLU - USERSYM - VALUE_LOCATE - VOIGT - VOXEL_PROJ - WAIT - WATERSHED - WDELETE - WHERE - WIDGET_BASE - WIDGET_BUTTON - WIDGET_CONTROL - WIDGET_DRAW - WIDGET_DROPLIST - WIDGET_EVENT - WIDGET_INFO - WIDGET_LABEL - WIDGET_LIST - WIDGET_SLIDER - WIDGET_TABLE - WIDGET_TEXT - WINDOW - WSET - WSHOW - WTN - XYOUTS - - - Open - FLUSH - IOCTL - RESTORE - SAVE - POINT_LUN - Openr - Openw - Openu - Close - Free_lun - get_lun - assoc - catch - cd - spawn - eof - print - printf - prints - read - readf - reads - writu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rtf.xml ktexteditor-5.31.0/src/syntax/data/rtf.xml --- ktexteditor-5.28.0/src/syntax/data/rtf.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rtf.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ - - ] > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/ruby.xml ktexteditor-5.31.0/src/syntax/data/ruby.xml --- ktexteditor-5.28.0/src/syntax/data/ruby.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/ruby.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,924 +0,0 @@ - - - - - - - - - - - - - - BEGIN - END - and - begin - break - case - defined? - do - else - elsif - end - ensure - for - if - in - next - not - or - redo - rescue - retry - return - then - unless - until - when - yield - - - - private_class_method - private - protected - public_class_method - public - - - - attr_reader - attr_writer - attr_accessor - - - - alias - module - class - def - undef - - - - self - super - nil - false - true - caller - __FILE__ - __LINE__ - - - - $stdout - $defout - $stderr - $deferr - $stdin - - - - - - abort - at_exit - autoload - autoload? - binding - block_given? - callcc - caller - catch - chomp - chomp! - chop - chop! - eval - exec - exit - exit! - fail - fork - format - getc - gets - global_variables - gsub - gsub! - iterator? - lambda - load - local_variables - loop - method_missing - open - p - print - printf - proc - putc - puts - raise - rand - readline - readlines - require - require_relative - scan - select - set_trace_func - sleep - split - sprintf - srand - sub - sub! - syscall - system - test - throw - trace_var - trap - untrace_var - warn - - - - extend - include - prepend - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/rust.xml ktexteditor-5.31.0/src/syntax/data/rust.xml --- ktexteditor-5.28.0/src/syntax/data/rust.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/rust.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,366 +0,0 @@ - - - - - -]> - - - - fn - - - type - - - abstract - alignof - as - become - box - break - const - continue - crate - do - else - enum - extern - final - for - if - impl - in - let - loop - macro - match - mod - move - mut - offsetof - override - priv - proc - pub - pure - ref - return - Self - self - sizeof - static - struct - super - trait - type - typeof - unsafe - unsized - use - virtual - where - while - yield - - - AsSlice - CharExt - Clone - Copy - Debug - Decodable - Default - Display - DoubleEndedIterator - Drop - Encodable - Eq - Default - Extend - Fn - FnMut - FnOnce - FromPrimitive - Hash - Iterator - IteratorExt - MutPtrExt - Ord - PartialEq - PartialOrd - PtrExt - Rand - Send - Sized - SliceConcatExt - SliceExt - Str - StrExt - Sync - ToString - - - bool - int - isize - uint - usize - i8 - i16 - i32 - i64 - u8 - u16 - u32 - u64 - f32 - f64 - float - char - str - Option - Result - Self - Box - Vec - String - - - c_float - c_double - c_void - FILE - fpos_t - DIR - dirent - c_char - c_schar - c_uchar - c_short - c_ushort - c_int - c_uint - c_long - c_ulong - size_t - ptrdiff_t - clock_t - time_t - c_longlong - c_ulonglong - intptr_t - uintptr_t - off_t - dev_t - ino_t - pid_t - mode_t - ssize_t - - - self - - - true - false - Some - None - Ok - Err - Success - Failure - Cons - Nil - - - EXIT_FAILURE - EXIT_SUCCESS - RAND_MAX - EOF - SEEK_SET - SEEK_CUR - SEEK_END - _IOFBF - _IONBF - _IOLBF - BUFSIZ - FOPEN_MAX - FILENAME_MAX - L_tmpnam - TMP_MAX - O_RDONLY - O_WRONLY - O_RDWR - O_APPEND - O_CREAT - O_EXCL - O_TRUNC - S_IFIFO - S_IFCHR - S_IFBLK - S_IFDIR - S_IFREG - S_IFMT - S_IEXEC - S_IWRITE - S_IREAD - S_IRWXU - S_IXUSR - S_IWUSR - S_IRUSR - F_OK - R_OK - W_OK - X_OK - STDIN_FILENO - STDOUT_FILENO - STDERR_FILENO - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/r.xml ktexteditor-5.31.0/src/syntax/data/r.xml --- ktexteditor-5.28.0/src/syntax/data/r.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/r.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,152 +0,0 @@ - - - - - - - - for - in - next - break - while - repeat - if - else - switch - function - - - TRUE - FALSE - NULL - NA - NA_integer_ - NA_real_ - NA_complex_ - NA_character_ - Inf - NaN - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sather.xml ktexteditor-5.31.0/src/syntax/data/sather.xml --- ktexteditor-5.28.0/src/syntax/data/sather.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sather.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,141 +0,0 @@ - - - - - - and - assert - attr - break! - case - class - const - else - elsif - end - exception - external - false - if - include - initial - is - ITER - loop - new - or - post - pre - private - protect - quit - raise - readonly - result - return - ROUT - SAME - self - shared - then - true - typecase - type - until! - value - void - when - while! - yield - abstract - any - bind - fork - guard - immutable - inout - in - lock - once - out - parloop - partial - par - spread - stub - - - $OB - ARRAY - AREF - AVAL - BOOL - CHAR - EXT_OB - FLTDX - FLTD - FLTX - FLTI - FLT - INTI - INT - $REHASH - STR - SYS - - - create - invariant - main - aget - aset - div - is_eq - is_geq - is_gt - is_leq - is_lt - is_neq - minus - mod - negate - not - plus - pow - times - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/scala.xml ktexteditor-5.31.0/src/syntax/data/scala.xml --- ktexteditor-5.28.0/src/syntax/data/scala.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/scala.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3503 +0,0 @@ - - - - - - - Actor - ActorProxy - ActorTask - ActorThread - AllRef - Any - AnyRef - Application - AppliedType - Array - ArrayBuffer - Attribute - BoxedArray - BoxedBooleanArray - BoxedByteArray - BoxedCharArray - Buffer - BufferedIterator - Char - Console - Enumeration - Fluid - Function - IScheduler - ImmutableMapAdaptor - ImmutableSetAdaptor - Int - Iterable - List - ListBuffer - None - Option - Ordered - Pair - PartialFunction - Pid - Predef - PriorityQueue - PriorityQueueProxy - Reaction - Ref - Responder - RichInt - RichString - Rule - RuleTransformer - Script - Seq - SerialVersionUID - Some - Stream - Symbol - TcpService - TcpServiceWorker - Triple - Unit - Value - WorkerThread - serializable - transient - volatile - - - ACTIVE - ACTIVITY_COMPLETED - ACTIVITY_REQUIRED - ARG_IN - ARG_INOUT - ARG_OUT - AWTError - AWTEvent - AWTEventListener - AWTEventListenerProxy - AWTEventMulticaster - AWTException - AWTKeyStroke - AWTPermission - AbstractAction - AbstractBorder - AbstractButton - AbstractCellEditor - AbstractCollection - AbstractColorChooserPanel - AbstractDocument - AbstractDocument.AttributeContext - AbstractDocument.Content - AbstractDocument.ElementEdit - AbstractExecutorService - AbstractInterruptibleChannel - AbstractLayoutCache - AbstractLayoutCache.NodeDimensions - AbstractList - AbstractListModel - AbstractMap - AbstractMethodError - AbstractPreferences - AbstractQueue - AbstractQueuedSynchronizer - AbstractSelectableChannel - AbstractSelectionKey - AbstractSelector - AbstractSequentialList - AbstractSet - AbstractSpinnerModel - AbstractTableModel - AbstractUndoableEdit - AbstractWriter - AccessControlContext - AccessControlException - AccessController - AccessException - Accessible - AccessibleAction - AccessibleAttributeSequence - AccessibleBundle - AccessibleComponent - AccessibleContext - AccessibleEditableText - AccessibleExtendedComponent - AccessibleExtendedTable - AccessibleExtendedText - AccessibleHyperlink - AccessibleHypertext - AccessibleIcon - AccessibleKeyBinding - AccessibleObject - AccessibleRelation - AccessibleRelationSet - AccessibleResourceBundle - AccessibleRole - AccessibleSelection - AccessibleState - AccessibleStateSet - AccessibleStreamable - AccessibleTable - AccessibleTableModelChange - AccessibleText - AccessibleTextSequence - AccessibleValue - AccountException - AccountExpiredException - AccountLockedException - AccountNotFoundException - Acl - AclEntry - AclNotFoundException - Action - ActionEvent - ActionListener - ActionMap - ActionMapUIResource - Activatable - ActivateFailedException - ActivationDesc - ActivationException - ActivationGroup - ActivationGroupDesc - ActivationGroupDesc.CommandEnvironment - ActivationGroupID - ActivationGroup_Stub - ActivationID - ActivationInstantiator - ActivationMonitor - ActivationSystem - Activator - ActiveEvent - ActivityCompletedException - ActivityRequiredException - AdapterActivator - AdapterActivatorOperations - AdapterAlreadyExists - AdapterAlreadyExistsHelper - AdapterInactive - AdapterInactiveHelper - AdapterManagerIdHelper - AdapterNameHelper - AdapterNonExistent - AdapterNonExistentHelper - AdapterStateHelper - AddressHelper - Adjustable - AdjustmentEvent - AdjustmentListener - Adler32 - AffineTransform - AffineTransformOp - AlgorithmParameterGenerator - AlgorithmParameterGeneratorSpi - AlgorithmParameterSpec - AlgorithmParameters - AlgorithmParametersSpi - AllPermission - AlphaComposite - AlreadyBound - AlreadyBoundException - AlreadyBoundHelper - AlreadyBoundHolder - AlreadyConnectedException - AncestorEvent - AncestorListener - AnnotatedElement - Annotation - Annotation - AnnotationFormatError - AnnotationTypeMismatchException - Any - AnyHolder - AnySeqHelper - AnySeqHelper - AnySeqHolder - AppConfigurationEntry - AppConfigurationEntry.LoginModuleControlFlag - Appendable - Applet - AppletContext - AppletInitializer - AppletStub - ApplicationException - Arc2D - Arc2D.Double - Arc2D.Float - Area - AreaAveragingScaleFilter - ArithmeticException - Array - Array - ArrayBlockingQueue - ArrayIndexOutOfBoundsException - ArrayList - ArrayStoreException - ArrayType - Arrays - AssertionError - AsyncBoxView - AsynchronousCloseException - AtomicBoolean - AtomicInteger - AtomicIntegerArray - AtomicIntegerFieldUpdater - AtomicLong - AtomicLongArray - AtomicLongFieldUpdater - AtomicMarkableReference - AtomicReference - AtomicReferenceArray - AtomicReferenceFieldUpdater - AtomicStampedReference - Attr - Attribute - Attribute - Attribute - AttributeChangeNotification - AttributeChangeNotificationFilter - AttributeException - AttributeInUseException - AttributeList - AttributeList - AttributeList - AttributeListImpl - AttributeModificationException - AttributeNotFoundException - AttributeSet - AttributeSet - AttributeSet.CharacterAttribute - AttributeSet.ColorAttribute - AttributeSet.FontAttribute - AttributeSet.ParagraphAttribute - AttributeSetUtilities - AttributeValueExp - AttributedCharacterIterator - AttributedCharacterIterator.Attribute - AttributedString - Attributes - Attributes - Attributes - Attributes.Name - Attributes2 - Attributes2Impl - AttributesImpl - AudioClip - AudioFileFormat - AudioFileFormat.Type - AudioFileReader - AudioFileWriter - AudioFormat - AudioFormat.Encoding - AudioInputStream - AudioPermission - AudioSystem - AuthPermission - AuthProvider - AuthenticationException - AuthenticationException - AuthenticationNotSupportedException - Authenticator - Authenticator.RequestorType - AuthorizeCallback - Autoscroll - BAD_CONTEXT - BAD_INV_ORDER - BAD_OPERATION - BAD_PARAM - BAD_POLICY - BAD_POLICY_TYPE - BAD_POLICY_VALUE - BAD_QOS - BAD_TYPECODE - BMPImageWriteParam - BackingStoreException - BadAttributeValueExpException - BadBinaryOpValueExpException - BadKind - BadLocationException - BadPaddingException - BadStringOperationException - BandCombineOp - BandedSampleModel - BaseRowSet - BasicArrowButton - BasicAttribute - BasicAttributes - BasicBorders - BasicBorders.ButtonBorder - BasicBorders.FieldBorder - BasicBorders.MarginBorder - BasicBorders.MenuBarBorder - BasicBorders.RadioButtonBorder - BasicBorders.RolloverButtonBorder - BasicBorders.SplitPaneBorder - BasicBorders.ToggleButtonBorder - BasicButtonListener - BasicButtonUI - BasicCheckBoxMenuItemUI - BasicCheckBoxUI - BasicColorChooserUI - BasicComboBoxEditor - BasicComboBoxEditor.UIResource - BasicComboBoxRenderer - BasicComboBoxRenderer.UIResource - BasicComboBoxUI - BasicComboPopup - BasicControl - BasicDesktopIconUI - BasicDesktopPaneUI - BasicDirectoryModel - BasicEditorPaneUI - BasicFileChooserUI - BasicFormattedTextFieldUI - BasicGraphicsUtils - BasicHTML - BasicIconFactory - BasicInternalFrameTitlePane - BasicInternalFrameUI - BasicLabelUI - BasicListUI - BasicLookAndFeel - BasicMenuBarUI - BasicMenuItemUI - BasicMenuUI - BasicOptionPaneUI - BasicOptionPaneUI.ButtonAreaLayout - BasicPanelUI - BasicPasswordFieldUI - BasicPermission - BasicPopupMenuSeparatorUI - BasicPopupMenuUI - BasicProgressBarUI - BasicRadioButtonMenuItemUI - BasicRadioButtonUI - BasicRootPaneUI - BasicScrollBarUI - BasicScrollPaneUI - BasicSeparatorUI - BasicSliderUI - BasicSpinnerUI - BasicSplitPaneDivider - BasicSplitPaneUI - BasicStroke - BasicTabbedPaneUI - BasicTableHeaderUI - BasicTableUI - BasicTextAreaUI - BasicTextFieldUI - BasicTextPaneUI - BasicTextUI - BasicTextUI.BasicCaret - BasicTextUI.BasicHighlighter - BasicToggleButtonUI - BasicToolBarSeparatorUI - BasicToolBarUI - BasicToolTipUI - BasicTreeUI - BasicViewportUI - BatchUpdateException - BeanContext - BeanContextChild - BeanContextChildComponentProxy - BeanContextChildSupport - BeanContextContainerProxy - BeanContextEvent - BeanContextMembershipEvent - BeanContextMembershipListener - BeanContextProxy - BeanContextServiceAvailableEvent - BeanContextServiceProvider - BeanContextServiceProviderBeanInfo - BeanContextServiceRevokedEvent - BeanContextServiceRevokedListener - BeanContextServices - BeanContextServicesListener - BeanContextServicesSupport - BeanContextServicesSupport.BCSSServiceProvider - BeanContextSupport - BeanContextSupport.BCSIterator - BeanDescriptor - BeanInfo - Beans - BevelBorder - Bidi - BigDecimal - BigInteger - BinaryRefAddr - BindException - Binding - Binding - BindingHelper - BindingHolder - BindingIterator - BindingIteratorHelper - BindingIteratorHolder - BindingIteratorOperations - BindingIteratorPOA - BindingListHelper - BindingListHolder - BindingType - BindingTypeHelper - BindingTypeHolder - BitSet - Blob - BlockView - BlockingQueue - Book - Boolean - BooleanControl - BooleanControl.Type - BooleanHolder - BooleanSeqHelper - BooleanSeqHolder - Border - BorderFactory - BorderLayout - BorderUIResource - BorderUIResource.BevelBorderUIResource - BorderUIResource.CompoundBorderUIResource - BorderUIResource.EmptyBorderUIResource - BorderUIResource.EtchedBorderUIResource - BorderUIResource.LineBorderUIResource - BorderUIResource.MatteBorderUIResource - BorderUIResource.TitledBorderUIResource - BoundedRangeModel - Bounds - Bounds - Box - Box.Filler - BoxLayout - BoxView - BoxedValueHelper - BreakIterator - BrokenBarrierException - Buffer - BufferCapabilities - BufferCapabilities.FlipContents - BufferOverflowException - BufferStrategy - BufferUnderflowException - BufferedImage - BufferedImageFilter - BufferedImageOp - BufferedInputStream - BufferedOutputStream - BufferedReader - BufferedWriter - Button - ButtonGroup - ButtonModel - ButtonUI - Byte - ByteArrayInputStream - ByteArrayOutputStream - ByteBuffer - ByteChannel - ByteHolder - ByteLookupTable - ByteOrder - CDATASection - CMMException - CODESET_INCOMPATIBLE - COMM_FAILURE - CRC32 - CRL - CRLException - CRLSelector - CSS - CSS.Attribute - CTX_RESTRICT_SCOPE - CacheRequest - CacheResponse - CachedRowSet - Calendar - Callable - CallableStatement - Callback - CallbackHandler - CancelablePrintJob - CancellationException - CancelledKeyException - CannotProceed - CannotProceedException - CannotProceedHelper - CannotProceedHolder - CannotRedoException - CannotUndoException - Canvas - CardLayout - Caret - CaretEvent - CaretListener - CellEditor - CellEditorListener - CellRendererPane - CertPath - CertPath.CertPathRep - CertPathBuilder - CertPathBuilderException - CertPathBuilderResult - CertPathBuilderSpi - CertPathParameters - CertPathTrustManagerParameters - CertPathValidator - CertPathValidatorException - CertPathValidatorResult - CertPathValidatorSpi - CertSelector - CertStore - CertStoreException - CertStoreParameters - CertStoreSpi - Certificate - Certificate - Certificate - Certificate.CertificateRep - CertificateEncodingException - CertificateEncodingException - CertificateException - CertificateException - CertificateExpiredException - CertificateExpiredException - CertificateFactory - CertificateFactorySpi - CertificateNotYetValidException - CertificateNotYetValidException - CertificateParsingException - CertificateParsingException - ChangeEvent - ChangeListener - ChangedCharSetException - Channel - ChannelBinding - Channels - CharArrayReader - CharArrayWriter - CharBuffer - CharConversionException - CharHolder - CharSeqHelper - CharSeqHolder - CharSequence - Character - Character.Subset - Character.UnicodeBlock - CharacterCodingException - CharacterData - CharacterIterator - Charset - CharsetDecoder - CharsetEncoder - CharsetProvider - Checkbox - CheckboxGroup - CheckboxMenuItem - CheckedInputStream - CheckedOutputStream - Checksum - Choice - ChoiceCallback - ChoiceFormat - Chromaticity - Cipher - CipherInputStream - CipherOutputStream - CipherSpi - Class - ClassCastException - ClassCircularityError - ClassDefinition - ClassDesc - ClassFileTransformer - ClassFormatError - ClassLoader - ClassLoaderRepository - ClassLoadingMXBean - ClassNotFoundException - ClientRequestInfo - ClientRequestInfoOperations - ClientRequestInterceptor - ClientRequestInterceptorOperations - Clip - Clipboard - ClipboardOwner - Clob - CloneNotSupportedException - Cloneable - Closeable - ClosedByInterruptException - ClosedChannelException - ClosedSelectorException - CodeSets - CodeSigner - CodeSource - Codec - CodecFactory - CodecFactoryHelper - CodecFactoryOperations - CodecOperations - CoderMalfunctionError - CoderResult - CodingErrorAction - CollationElementIterator - CollationKey - Collator - Collection - CollectionCertStoreParameters - Collections - Color - ColorChooserComponentFactory - ColorChooserUI - ColorConvertOp - ColorModel - ColorSelectionModel - ColorSpace - ColorSupported - ColorType - ColorUIResource - ComboBoxEditor - ComboBoxModel - ComboBoxUI - ComboPopup - Comment - CommunicationException - Comparable - Comparator - CompilationMXBean - Compiler - CompletionService - CompletionStatus - CompletionStatusHelper - Component - ComponentAdapter - ComponentColorModel - ComponentEvent - ComponentIdHelper - ComponentInputMap - ComponentInputMapUIResource - ComponentListener - ComponentOrientation - ComponentSampleModel - ComponentUI - ComponentView - Composite - CompositeContext - CompositeData - CompositeDataSupport - CompositeName - CompositeType - CompositeView - CompoundBorder - CompoundControl - CompoundControl.Type - CompoundEdit - CompoundName - Compression - ConcurrentHashMap - ConcurrentLinkedQueue - ConcurrentMap - ConcurrentModificationException - Condition - Configuration - ConfigurationException - ConfirmationCallback - ConnectException - ConnectException - ConnectIOException - Connection - ConnectionEvent - ConnectionEventListener - ConnectionPendingException - ConnectionPoolDataSource - ConsoleHandler - Constructor - Container - ContainerAdapter - ContainerEvent - ContainerListener - ContainerOrderFocusTraversalPolicy - ContentHandler - ContentHandler - ContentHandlerFactory - ContentModel - Context - Context - ContextList - ContextNotEmptyException - ContextualRenderedImageFactory - Control - Control - Control.Type - ControlFactory - ControllerEventListener - ConvolveOp - CookieHandler - CookieHolder - Copies - CopiesSupported - CopyOnWriteArrayList - CopyOnWriteArraySet - CountDownLatch - CounterMonitor - CounterMonitorMBean - CredentialException - CredentialExpiredException - CredentialNotFoundException - CropImageFilter - CubicCurve2D - CubicCurve2D.Double - CubicCurve2D.Float - Currency - Current - Current - Current - CurrentHelper - CurrentHelper - CurrentHelper - CurrentHolder - CurrentOperations - CurrentOperations - CurrentOperations - Cursor - CustomMarshal - CustomValue - Customizer - CyclicBarrier - DATA_CONVERSION - DESKeySpec - DESedeKeySpec - DGC - DHGenParameterSpec - DHKey - DHParameterSpec - DHPrivateKey - DHPrivateKeySpec - DHPublicKey - DHPublicKeySpec - DISCARDING - DOMConfiguration - DOMError - DOMErrorHandler - DOMException - DOMImplementation - DOMImplementationLS - DOMImplementationList - DOMImplementationRegistry - DOMImplementationSource - DOMLocator - DOMLocator - DOMResult - DOMSource - DOMStringList - DSAKey - DSAKeyPairGenerator - DSAParameterSpec - DSAParams - DSAPrivateKey - DSAPrivateKeySpec - DSAPublicKey - DSAPublicKeySpec - DTD - DTDConstants - DTDHandler - DataBuffer - DataBufferByte - DataBufferDouble - DataBufferFloat - DataBufferInt - DataBufferShort - DataBufferUShort - DataFlavor - DataFormatException - DataInput - DataInputStream - DataInputStream - DataLine - DataLine.Info - DataOutput - DataOutputStream - DataOutputStream - DataSource - DataTruncation - DatabaseMetaData - DatagramChannel - DatagramPacket - DatagramSocket - DatagramSocketImpl - DatagramSocketImplFactory - DatatypeConfigurationException - DatatypeConstants - DatatypeConstants.Field - DatatypeFactory - Date - Date - DateFormat - DateFormat.Field - DateFormatSymbols - DateFormatter - DateTimeAtCompleted - DateTimeAtCreation - DateTimeAtProcessing - DateTimeSyntax - DebugGraphics - DecimalFormat - DecimalFormatSymbols - DeclHandler - DefaultBoundedRangeModel - DefaultButtonModel - DefaultCaret - DefaultCellEditor - DefaultColorSelectionModel - DefaultComboBoxModel - DefaultDesktopManager - DefaultEditorKit - DefaultEditorKit.BeepAction - DefaultEditorKit.CopyAction - DefaultEditorKit.CutAction - DefaultEditorKit.DefaultKeyTypedAction - DefaultEditorKit.InsertBreakAction - DefaultEditorKit.InsertContentAction - DefaultEditorKit.InsertTabAction - DefaultEditorKit.PasteAction - DefaultFocusManager - DefaultFocusTraversalPolicy - DefaultFormatter - DefaultFormatterFactory - DefaultHandler - DefaultHandler2 - DefaultHighlighter - DefaultHighlighter.DefaultHighlightPainter - DefaultKeyboardFocusManager - DefaultListCellRenderer - DefaultListCellRenderer.UIResource - DefaultListModel - DefaultListSelectionModel - DefaultLoaderRepository - DefaultLoaderRepository - DefaultMenuLayout - DefaultMetalTheme - DefaultMutableTreeNode - DefaultPersistenceDelegate - DefaultSingleSelectionModel - DefaultStyledDocument - DefaultStyledDocument.AttributeUndoableEdit - DefaultStyledDocument.ElementSpec - DefaultTableCellRenderer - DefaultTableCellRenderer.UIResource - DefaultTableColumnModel - DefaultTableModel - DefaultTextUI - DefaultTreeCellEditor - DefaultTreeCellRenderer - DefaultTreeModel - DefaultTreeSelectionModel - DefinitionKind - DefinitionKindHelper - Deflater - DeflaterOutputStream - DelayQueue - Delayed - Delegate - Delegate - Delegate - DelegationPermission - Deprecated - Descriptor - DescriptorAccess - DescriptorSupport - DesignMode - DesktopIconUI - DesktopManager - DesktopPaneUI - Destination - DestroyFailedException - Destroyable - Dialog - Dictionary - DigestException - DigestInputStream - DigestOutputStream - Dimension - Dimension2D - DimensionUIResource - DirContext - DirObjectFactory - DirStateFactory - DirStateFactory.Result - DirectColorModel - DirectoryManager - DisplayMode - DnDConstants - Doc - DocAttribute - DocAttributeSet - DocFlavor - DocFlavor.BYTE_ARRAY - DocFlavor.CHAR_ARRAY - DocFlavor.INPUT_STREAM - DocFlavor.READER - DocFlavor.SERVICE_FORMATTED - DocFlavor.STRING - DocFlavor.URL - DocPrintJob - Document - Document - DocumentBuilder - DocumentBuilderFactory - DocumentEvent - DocumentEvent.ElementChange - DocumentEvent.EventType - DocumentFilter - DocumentFilter.FilterBypass - DocumentFragment - DocumentHandler - DocumentListener - DocumentName - DocumentParser - DocumentType - Documented - DomainCombiner - DomainManager - DomainManagerOperations - Double - DoubleBuffer - DoubleHolder - DoubleSeqHelper - DoubleSeqHolder - DragGestureEvent - DragGestureListener - DragGestureRecognizer - DragSource - DragSourceAdapter - DragSourceContext - DragSourceDragEvent - DragSourceDropEvent - DragSourceEvent - DragSourceListener - DragSourceMotionListener - Driver - DriverManager - DriverPropertyInfo - DropTarget - DropTarget.DropTargetAutoScroller - DropTargetAdapter - DropTargetContext - DropTargetDragEvent - DropTargetDropEvent - DropTargetEvent - DropTargetListener - DuplicateFormatFlagsException - DuplicateName - DuplicateNameHelper - Duration - DynAny - DynAny - DynAnyFactory - DynAnyFactoryHelper - DynAnyFactoryOperations - DynAnyHelper - DynAnyOperations - DynAnySeqHelper - DynArray - DynArray - DynArrayHelper - DynArrayOperations - DynEnum - DynEnum - DynEnumHelper - DynEnumOperations - DynFixed - DynFixed - DynFixedHelper - DynFixedOperations - DynSequence - DynSequence - DynSequenceHelper - DynSequenceOperations - DynStruct - DynStruct - DynStructHelper - DynStructOperations - DynUnion - DynUnion - DynUnionHelper - DynUnionOperations - DynValue - DynValue - DynValueBox - DynValueBoxOperations - DynValueCommon - DynValueCommonOperations - DynValueHelper - DynValueOperations - DynamicImplementation - DynamicImplementation - DynamicMBean - ECField - ECFieldF2m - ECFieldFp - ECGenParameterSpec - ECKey - ECParameterSpec - ECPoint - ECPrivateKey - ECPrivateKeySpec - ECPublicKey - ECPublicKeySpec - ENCODING_CDR_ENCAPS - EOFException - EditorKit - Element - Element - Element - ElementIterator - ElementType - Ellipse2D - Ellipse2D.Double - Ellipse2D.Float - EllipticCurve - EmptyBorder - EmptyStackException - EncodedKeySpec - Encoder - Encoding - EncryptedPrivateKeyInfo - Entity - Entity - EntityReference - EntityResolver - EntityResolver2 - Enum - EnumConstantNotPresentException - EnumControl - EnumControl.Type - EnumMap - EnumSet - EnumSyntax - Enumeration - Environment - Error - ErrorHandler - ErrorListener - ErrorManager - EtchedBorder - Event - EventContext - EventDirContext - EventHandler - EventListener - EventListenerList - EventListenerProxy - EventObject - EventQueue - EventSetDescriptor - Exception - ExceptionDetailMessage - ExceptionInInitializerError - ExceptionList - ExceptionListener - Exchanger - ExecutionException - Executor - ExecutorCompletionService - ExecutorService - Executors - ExemptionMechanism - ExemptionMechanismException - ExemptionMechanismSpi - ExpandVetoException - ExportException - Expression - ExtendedRequest - ExtendedResponse - Externalizable - FREE_MEM - FactoryConfigurationError - FailedLoginException - FeatureDescriptor - Fidelity - Field - FieldNameHelper - FieldNameHelper - FieldPosition - FieldView - File - FileCacheImageInputStream - FileCacheImageOutputStream - FileChannel - FileChannel.MapMode - FileChooserUI - FileDescriptor - FileDialog - FileFilter - FileFilter - FileHandler - FileImageInputStream - FileImageOutputStream - FileInputStream - FileLock - FileLockInterruptionException - FileNameMap - FileNotFoundException - FileOutputStream - FilePermission - FileReader - FileSystemView - FileView - FileWriter - FilenameFilter - Filter - FilterInputStream - FilterOutputStream - FilterReader - FilterWriter - FilteredImageSource - FilteredRowSet - Finishings - FixedHeightLayoutCache - FixedHolder - FlatteningPathIterator - FlavorEvent - FlavorException - FlavorListener - FlavorMap - FlavorTable - Float - FloatBuffer - FloatControl - FloatControl.Type - FloatHolder - FloatSeqHelper - FloatSeqHolder - FlowLayout - FlowView - FlowView.FlowStrategy - Flushable - FocusAdapter - FocusEvent - FocusListener - FocusManager - FocusTraversalPolicy - Font - FontFormatException - FontMetrics - FontRenderContext - FontUIResource - FormSubmitEvent - FormSubmitEvent.MethodType - FormView - Format - Format.Field - FormatConversionProvider - FormatFlagsConversionMismatchException - FormatMismatch - FormatMismatchHelper - Formattable - FormattableFlags - Formatter - Formatter - FormatterClosedException - ForwardRequest - ForwardRequest - ForwardRequestHelper - ForwardRequestHelper - Frame - Future - FutureTask - GSSContext - GSSCredential - GSSException - GSSManager - GSSName - GZIPInputStream - GZIPOutputStream - GapContent - GarbageCollectorMXBean - GatheringByteChannel - GaugeMonitor - GaugeMonitorMBean - GeneralPath - GeneralSecurityException - GenericArrayType - GenericDeclaration - GenericSignatureFormatError - GlyphJustificationInfo - GlyphMetrics - GlyphVector - GlyphView - GlyphView.GlyphPainter - GradientPaint - GraphicAttribute - Graphics - Graphics2D - GraphicsConfigTemplate - GraphicsConfiguration - GraphicsDevice - GraphicsEnvironment - GrayFilter - GregorianCalendar - GridBagConstraints - GridBagLayout - GridLayout - Group - Guard - GuardedObject - HOLDING - HTML - HTML.Attribute - HTML.Tag - HTML.UnknownTag - HTMLDocument - HTMLDocument.Iterator - HTMLEditorKit - HTMLEditorKit.HTMLFactory - HTMLEditorKit.HTMLTextAction - HTMLEditorKit.InsertHTMLTextAction - HTMLEditorKit.LinkController - HTMLEditorKit.Parser - HTMLEditorKit.ParserCallback - HTMLFrameHyperlinkEvent - HTMLWriter - Handler - HandlerBase - HandshakeCompletedEvent - HandshakeCompletedListener - HasControls - HashAttributeSet - HashDocAttributeSet - HashMap - HashPrintJobAttributeSet - HashPrintRequestAttributeSet - HashPrintServiceAttributeSet - HashSet - Hashtable - HeadlessException - HierarchyBoundsAdapter - HierarchyBoundsListener - HierarchyEvent - HierarchyListener - Highlighter - Highlighter.Highlight - Highlighter.HighlightPainter - HostnameVerifier - HttpRetryException - HttpURLConnection - HttpsURLConnection - HyperlinkEvent - HyperlinkEvent.EventType - HyperlinkListener - ICC_ColorSpace - ICC_Profile - ICC_ProfileGray - ICC_ProfileRGB - IDLEntity - IDLType - IDLTypeHelper - IDLTypeOperations - ID_ASSIGNMENT_POLICY_ID - ID_UNIQUENESS_POLICY_ID - IIOByteBuffer - IIOException - IIOImage - IIOInvalidTreeException - IIOMetadata - IIOMetadataController - IIOMetadataFormat - IIOMetadataFormatImpl - IIOMetadataNode - IIOParam - IIOParamController - IIOReadProgressListener - IIOReadUpdateListener - IIOReadWarningListener - IIORegistry - IIOServiceProvider - IIOWriteProgressListener - IIOWriteWarningListener - IMPLICIT_ACTIVATION_POLICY_ID - IMP_LIMIT - INACTIVE - INITIALIZE - INTERNAL - INTF_REPOS - INVALID_ACTIVITY - INVALID_TRANSACTION - INV_FLAG - INV_IDENT - INV_OBJREF - INV_POLICY - IOException - IOR - IORHelper - IORHolder - IORInfo - IORInfoOperations - IORInterceptor - IORInterceptorOperations - IORInterceptor_3_0 - IORInterceptor_3_0Helper - IORInterceptor_3_0Holder - IORInterceptor_3_0Operations - IRObject - IRObjectOperations - Icon - IconUIResource - IconView - IdAssignmentPolicy - IdAssignmentPolicyOperations - IdAssignmentPolicyValue - IdUniquenessPolicy - IdUniquenessPolicyOperations - IdUniquenessPolicyValue - IdentifierHelper - Identity - IdentityHashMap - IdentityScope - IllegalAccessError - IllegalAccessException - IllegalArgumentException - IllegalBlockSizeException - IllegalBlockingModeException - IllegalCharsetNameException - IllegalClassFormatException - IllegalComponentStateException - IllegalFormatCodePointException - IllegalFormatConversionException - IllegalFormatException - IllegalFormatFlagsException - IllegalFormatPrecisionException - IllegalFormatWidthException - IllegalMonitorStateException - IllegalPathStateException - IllegalSelectorException - IllegalStateException - IllegalThreadStateException - Image - ImageCapabilities - ImageConsumer - ImageFilter - ImageGraphicAttribute - ImageIO - ImageIcon - ImageInputStream - ImageInputStreamImpl - ImageInputStreamSpi - ImageObserver - ImageOutputStream - ImageOutputStreamImpl - ImageOutputStreamSpi - ImageProducer - ImageReadParam - ImageReader - ImageReaderSpi - ImageReaderWriterSpi - ImageTranscoder - ImageTranscoderSpi - ImageTypeSpecifier - ImageView - ImageWriteParam - ImageWriter - ImageWriterSpi - ImagingOpException - ImplicitActivationPolicy - ImplicitActivationPolicyOperations - ImplicitActivationPolicyValue - IncompatibleClassChangeError - IncompleteAnnotationException - InconsistentTypeCode - InconsistentTypeCode - InconsistentTypeCodeHelper - IndexColorModel - IndexOutOfBoundsException - IndexedPropertyChangeEvent - IndexedPropertyDescriptor - IndirectionException - Inet4Address - Inet6Address - InetAddress - InetSocketAddress - Inflater - InflaterInputStream - InheritableThreadLocal - Inherited - InitialContext - InitialContextFactory - InitialContextFactoryBuilder - InitialDirContext - InitialLdapContext - InlineView - InputContext - InputEvent - InputMap - InputMapUIResource - InputMethod - InputMethodContext - InputMethodDescriptor - InputMethodEvent - InputMethodHighlight - InputMethodListener - InputMethodRequests - InputMismatchException - InputSource - InputStream - InputStream - InputStream - InputStreamReader - InputSubset - InputVerifier - Insets - InsetsUIResource - InstanceAlreadyExistsException - InstanceNotFoundException - InstantiationError - InstantiationException - Instrument - Instrumentation - InsufficientResourcesException - IntBuffer - IntHolder - Integer - IntegerSyntax - Interceptor - InterceptorOperations - InternalError - InternalFrameAdapter - InternalFrameEvent - InternalFrameFocusTraversalPolicy - InternalFrameListener - InternalFrameUI - InternationalFormatter - InterruptedException - InterruptedIOException - InterruptedNamingException - InterruptibleChannel - IntrospectionException - IntrospectionException - Introspector - Invalid - InvalidActivityException - InvalidAddress - InvalidAddressHelper - InvalidAddressHolder - InvalidAlgorithmParameterException - InvalidApplicationException - InvalidAttributeIdentifierException - InvalidAttributeValueException - InvalidAttributeValueException - InvalidAttributesException - InvalidClassException - InvalidDnDOperationException - InvalidKeyException - InvalidKeyException - InvalidKeySpecException - InvalidMarkException - InvalidMidiDataException - InvalidName - InvalidName - InvalidName - InvalidNameException - InvalidNameHelper - InvalidNameHelper - InvalidNameHolder - InvalidObjectException - InvalidOpenTypeException - InvalidParameterException - InvalidParameterSpecException - InvalidPolicy - InvalidPolicyHelper - InvalidPreferencesFormatException - InvalidPropertiesFormatException - InvalidRelationIdException - InvalidRelationServiceException - InvalidRelationTypeException - InvalidRoleInfoException - InvalidRoleValueException - InvalidSearchControlsException - InvalidSearchFilterException - InvalidSeq - InvalidSlot - InvalidSlotHelper - InvalidTargetObjectTypeException - InvalidTransactionException - InvalidTypeForEncoding - InvalidTypeForEncodingHelper - InvalidValue - InvalidValue - InvalidValueHelper - InvocationEvent - InvocationHandler - InvocationTargetException - InvokeHandler - IstringHelper - ItemEvent - ItemListener - ItemSelectable - Iterable - Iterator - IvParameterSpec - JApplet - JButton - JCheckBox - JCheckBoxMenuItem - JColorChooser - JComboBox - JComboBox.KeySelectionManager - JComponent - JDesktopPane - JDialog - JEditorPane - JFileChooser - JFormattedTextField - JFormattedTextField.AbstractFormatter - JFormattedTextField.AbstractFormatterFactory - JFrame - JInternalFrame - JInternalFrame.JDesktopIcon - JLabel - JLayeredPane - JList - JMException - JMRuntimeException - JMXAuthenticator - JMXConnectionNotification - JMXConnector - JMXConnectorFactory - JMXConnectorProvider - JMXConnectorServer - JMXConnectorServerFactory - JMXConnectorServerMBean - JMXConnectorServerProvider - JMXPrincipal - JMXProviderException - JMXServerErrorException - JMXServiceURL - JMenu - JMenuBar - JMenuItem - JOptionPane - JPEGHuffmanTable - JPEGImageReadParam - JPEGImageWriteParam - JPEGQTable - JPanel - JPasswordField - JPopupMenu - JPopupMenu.Separator - JProgressBar - JRadioButton - JRadioButtonMenuItem - JRootPane - JScrollBar - JScrollPane - JSeparator - JSlider - JSpinner - JSpinner.DateEditor - JSpinner.DefaultEditor - JSpinner.ListEditor - JSpinner.NumberEditor - JSplitPane - JTabbedPane - JTable - JTable.PrintMode - JTableHeader - JTextArea - JTextComponent - JTextComponent.KeyBinding - JTextField - JTextPane - JToggleButton - JToggleButton.ToggleButtonModel - JToolBar - JToolBar.Separator - JToolTip - JTree - JTree.DynamicUtilTreeNode - JTree.EmptySelectionModel - JViewport - JWindow - JarEntry - JarException - JarFile - JarInputStream - JarOutputStream - JarURLConnection - JdbcRowSet - JobAttributes - JobAttributes.DefaultSelectionType - JobAttributes.DestinationType - JobAttributes.DialogType - JobAttributes.MultipleDocumentHandlingType - JobAttributes.SidesType - JobHoldUntil - JobImpressions - JobImpressionsCompleted - JobImpressionsSupported - JobKOctets - JobKOctetsProcessed - JobKOctetsSupported - JobMediaSheets - JobMediaSheetsCompleted - JobMediaSheetsSupported - JobMessageFromOperator - JobName - JobOriginatingUserName - JobPriority - JobPrioritySupported - JobSheets - JobState - JobStateReason - JobStateReasons - JoinRowSet - Joinable - KerberosKey - KerberosPrincipal - KerberosTicket - Kernel - Key - KeyAdapter - KeyAgreement - KeyAgreementSpi - KeyAlreadyExistsException - KeyEvent - KeyEventDispatcher - KeyEventPostProcessor - KeyException - KeyFactory - KeyFactorySpi - KeyGenerator - KeyGeneratorSpi - KeyListener - KeyManagementException - KeyManager - KeyManagerFactory - KeyManagerFactorySpi - KeyPair - KeyPairGenerator - KeyPairGeneratorSpi - KeyRep - KeyRep.Type - KeySpec - KeyStore - KeyStore.Builder - KeyStore.CallbackHandlerProtection - KeyStore.Entry - KeyStore.LoadStoreParameter - KeyStore.PasswordProtection - KeyStore.PrivateKeyEntry - KeyStore.ProtectionParameter - KeyStore.SecretKeyEntry - KeyStore.TrustedCertificateEntry - KeyStoreBuilderParameters - KeyStoreException - KeyStoreSpi - KeyStroke - KeyboardFocusManager - Keymap - LDAPCertStoreParameters - LIFESPAN_POLICY_ID - LOCATION_FORWARD - LSException - LSInput - LSLoadEvent - LSOutput - LSParser - LSParserFilter - LSProgressEvent - LSResourceResolver - LSSerializer - LSSerializerFilter - Label - LabelUI - LabelView - LanguageCallback - LastOwnerException - LayeredHighlighter - LayeredHighlighter.LayerPainter - LayoutFocusTraversalPolicy - LayoutManager - LayoutManager2 - LayoutQueue - LdapContext - LdapName - LdapReferralException - Lease - Level - LexicalHandler - LifespanPolicy - LifespanPolicyOperations - LifespanPolicyValue - LimitExceededException - Line - Line.Info - Line2D - Line2D.Double - Line2D.Float - LineBorder - LineBreakMeasurer - LineEvent - LineEvent.Type - LineListener - LineMetrics - LineNumberInputStream - LineNumberReader - LineUnavailableException - LinkException - LinkLoopException - LinkRef - LinkageError - LinkedBlockingQueue - LinkedHashMap - LinkedHashSet - LinkedList - List - List - ListCellRenderer - ListDataEvent - ListDataListener - ListIterator - ListModel - ListResourceBundle - ListSelectionEvent - ListSelectionListener - ListSelectionModel - ListUI - ListView - ListenerNotFoundException - LoaderHandler - LocalObject - Locale - LocateRegistry - Locator - Locator2 - Locator2Impl - LocatorImpl - Lock - LockSupport - LogManager - LogRecord - LogStream - Logger - LoggingMXBean - LoggingPermission - LoginContext - LoginException - LoginModule - Long - LongBuffer - LongHolder - LongLongSeqHelper - LongLongSeqHolder - LongSeqHelper - LongSeqHolder - LookAndFeel - LookupOp - LookupTable - MARSHAL - MBeanAttributeInfo - MBeanConstructorInfo - MBeanException - MBeanFeatureInfo - MBeanInfo - MBeanNotificationInfo - MBeanOperationInfo - MBeanParameterInfo - MBeanPermission - MBeanRegistration - MBeanRegistrationException - MBeanServer - MBeanServerBuilder - MBeanServerConnection - MBeanServerDelegate - MBeanServerDelegateMBean - MBeanServerFactory - MBeanServerForwarder - MBeanServerInvocationHandler - MBeanServerNotification - MBeanServerNotificationFilter - MBeanServerPermission - MBeanTrustPermission - MGF1ParameterSpec - MLet - MLetMBean - Mac - MacSpi - MalformedInputException - MalformedLinkException - MalformedObjectNameException - MalformedParameterizedTypeException - MalformedURLException - ManageReferralControl - ManagementFactory - ManagementPermission - ManagerFactoryParameters - Manifest - Map - Map.Entry - MappedByteBuffer - MarshalException - MarshalledObject - MaskFormatter - MatchResult - Matcher - Math - MathContext - MatteBorder - Media - MediaName - MediaPrintableArea - MediaSize - MediaSize.Engineering - MediaSize.ISO - MediaSize.JIS - MediaSize.NA - MediaSize.Other - MediaSizeName - MediaTracker - MediaTray - Member - MemoryCacheImageInputStream - MemoryCacheImageOutputStream - MemoryHandler - MemoryImageSource - MemoryMXBean - MemoryManagerMXBean - MemoryNotificationInfo - MemoryPoolMXBean - MemoryType - MemoryUsage - Menu - MenuBar - MenuBarUI - MenuComponent - MenuContainer - MenuDragMouseEvent - MenuDragMouseListener - MenuElement - MenuEvent - MenuItem - MenuItemUI - MenuKeyEvent - MenuKeyListener - MenuListener - MenuSelectionManager - MenuShortcut - MessageDigest - MessageDigestSpi - MessageFormat - MessageFormat.Field - MessageProp - MetaEventListener - MetaMessage - MetalBorders - MetalBorders.ButtonBorder - MetalBorders.Flush3DBorder - MetalBorders.InternalFrameBorder - MetalBorders.MenuBarBorder - MetalBorders.MenuItemBorder - MetalBorders.OptionDialogBorder - MetalBorders.PaletteBorder - MetalBorders.PopupMenuBorder - MetalBorders.RolloverButtonBorder - MetalBorders.ScrollPaneBorder - MetalBorders.TableHeaderBorder - MetalBorders.TextFieldBorder - MetalBorders.ToggleButtonBorder - MetalBorders.ToolBarBorder - MetalButtonUI - MetalCheckBoxIcon - MetalCheckBoxUI - MetalComboBoxButton - MetalComboBoxEditor - MetalComboBoxEditor.UIResource - MetalComboBoxIcon - MetalComboBoxUI - MetalDesktopIconUI - MetalFileChooserUI - MetalIconFactory - MetalIconFactory.FileIcon16 - MetalIconFactory.FolderIcon16 - MetalIconFactory.PaletteCloseIcon - MetalIconFactory.TreeControlIcon - MetalIconFactory.TreeFolderIcon - MetalIconFactory.TreeLeafIcon - MetalInternalFrameTitlePane - MetalInternalFrameUI - MetalLabelUI - MetalLookAndFeel - MetalMenuBarUI - MetalPopupMenuSeparatorUI - MetalProgressBarUI - MetalRadioButtonUI - MetalRootPaneUI - MetalScrollBarUI - MetalScrollButton - MetalScrollPaneUI - MetalSeparatorUI - MetalSliderUI - MetalSplitPaneUI - MetalTabbedPaneUI - MetalTextFieldUI - MetalTheme - MetalToggleButtonUI - MetalToolBarUI - MetalToolTipUI - MetalTreeUI - Method - MethodDescriptor - MidiChannel - MidiDevice - MidiDevice.Info - MidiDeviceProvider - MidiEvent - MidiFileFormat - MidiFileReader - MidiFileWriter - MidiMessage - MidiSystem - MidiUnavailableException - MimeTypeParseException - MinimalHTMLWriter - MissingFormatArgumentException - MissingFormatWidthException - MissingResourceException - Mixer - Mixer.Info - MixerProvider - ModelMBean - ModelMBeanAttributeInfo - ModelMBeanConstructorInfo - ModelMBeanInfo - ModelMBeanInfoSupport - ModelMBeanNotificationBroadcaster - ModelMBeanNotificationInfo - ModelMBeanOperationInfo - ModificationItem - Modifier - Monitor - MonitorMBean - MonitorNotification - MonitorSettingException - MouseAdapter - MouseDragGestureRecognizer - MouseEvent - MouseInfo - MouseInputAdapter - MouseInputListener - MouseListener - MouseMotionAdapter - MouseMotionListener - MouseWheelEvent - MouseWheelListener - MultiButtonUI - MultiColorChooserUI - MultiComboBoxUI - MultiDesktopIconUI - MultiDesktopPaneUI - MultiDoc - MultiDocPrintJob - MultiDocPrintService - MultiFileChooserUI - MultiInternalFrameUI - MultiLabelUI - MultiListUI - MultiLookAndFeel - MultiMenuBarUI - MultiMenuItemUI - MultiOptionPaneUI - MultiPanelUI - MultiPixelPackedSampleModel - MultiPopupMenuUI - MultiProgressBarUI - MultiRootPaneUI - MultiScrollBarUI - MultiScrollPaneUI - MultiSeparatorUI - MultiSliderUI - MultiSpinnerUI - MultiSplitPaneUI - MultiTabbedPaneUI - MultiTableHeaderUI - MultiTableUI - MultiTextUI - MultiToolBarUI - MultiToolTipUI - MultiTreeUI - MultiViewportUI - MulticastSocket - MultipleComponentProfileHelper - MultipleComponentProfileHolder - MultipleDocumentHandling - MultipleMaster - MutableAttributeSet - MutableComboBoxModel - MutableTreeNode - NON_EXISTENT - NO_IMPLEMENT - NO_MEMORY - NO_PERMISSION - NO_RESOURCES - NO_RESPONSE - NVList - Name - NameAlreadyBoundException - NameCallback - NameClassPair - NameComponent - NameComponentHelper - NameComponentHolder - NameDynAnyPair - NameDynAnyPairHelper - NameDynAnyPairSeqHelper - NameHelper - NameHolder - NameList - NameNotFoundException - NameParser - NameValuePair - NameValuePair - NameValuePairHelper - NameValuePairHelper - NameValuePairSeqHelper - NamedNodeMap - NamedValue - NamespaceChangeListener - NamespaceContext - NamespaceSupport - Naming - NamingContext - NamingContextExt - NamingContextExtHelper - NamingContextExtHolder - NamingContextExtOperations - NamingContextExtPOA - NamingContextHelper - NamingContextHolder - NamingContextOperations - NamingContextPOA - NamingEnumeration - NamingEvent - NamingException - NamingExceptionEvent - NamingListener - NamingManager - NamingSecurityException - NavigationFilter - NavigationFilter.FilterBypass - NegativeArraySizeException - NetPermission - NetworkInterface - NoClassDefFoundError - NoConnectionPendingException - NoContext - NoContextHelper - NoInitialContextException - NoPermissionException - NoRouteToHostException - NoServant - NoServantHelper - NoSuchAlgorithmException - NoSuchAttributeException - NoSuchElementException - NoSuchFieldError - NoSuchFieldException - NoSuchMethodError - NoSuchMethodException - NoSuchObjectException - NoSuchPaddingException - NoSuchProviderException - Node - NodeChangeEvent - NodeChangeListener - NodeList - NonReadableChannelException - NonWritableChannelException - NoninvertibleTransformException - NotActiveException - NotBoundException - NotCompliantMBeanException - NotContextException - NotEmpty - NotEmptyHelper - NotEmptyHolder - NotFound - NotFoundHelper - NotFoundHolder - NotFoundReason - NotFoundReasonHelper - NotFoundReasonHolder - NotOwnerException - NotSerializableException - NotYetBoundException - NotYetConnectedException - Notation - Notification - NotificationBroadcaster - NotificationBroadcasterSupport - NotificationEmitter - NotificationFilter - NotificationFilterSupport - NotificationListener - NotificationResult - NullCipher - NullPointerException - Number - NumberFormat - NumberFormat.Field - NumberFormatException - NumberFormatter - NumberOfDocuments - NumberOfInterveningJobs - NumberUp - NumberUpSupported - NumericShaper - OAEPParameterSpec - OBJECT_NOT_EXIST - OBJ_ADAPTER - OMGVMCID - ORB - ORB - ORBIdHelper - ORBInitInfo - ORBInitInfoOperations - ORBInitializer - ORBInitializerOperations - ObjID - Object - Object - ObjectAlreadyActive - ObjectAlreadyActiveHelper - ObjectChangeListener - ObjectFactory - ObjectFactoryBuilder - ObjectHelper - ObjectHolder - ObjectIdHelper - ObjectIdHelper - ObjectImpl - ObjectImpl - ObjectInput - ObjectInputStream - ObjectInputStream.GetField - ObjectInputValidation - ObjectInstance - ObjectName - ObjectNotActive - ObjectNotActiveHelper - ObjectOutput - ObjectOutputStream - ObjectOutputStream.PutField - ObjectReferenceFactory - ObjectReferenceFactoryHelper - ObjectReferenceFactoryHolder - ObjectReferenceTemplate - ObjectReferenceTemplateHelper - ObjectReferenceTemplateHolder - ObjectReferenceTemplateSeqHelper - ObjectReferenceTemplateSeqHolder - ObjectStreamClass - ObjectStreamConstants - ObjectStreamException - ObjectStreamField - ObjectView - Observable - Observer - OceanTheme - OctetSeqHelper - OctetSeqHolder - Oid - OpenDataException - OpenMBeanAttributeInfo - OpenMBeanAttributeInfoSupport - OpenMBeanConstructorInfo - OpenMBeanConstructorInfoSupport - OpenMBeanInfo - OpenMBeanInfoSupport - OpenMBeanOperationInfo - OpenMBeanOperationInfoSupport - OpenMBeanParameterInfo - OpenMBeanParameterInfoSupport - OpenType - OpenType - OperatingSystemMXBean - Operation - OperationNotSupportedException - OperationsException - Option - OptionPaneUI - OptionalDataException - OrientationRequested - OutOfMemoryError - OutputDeviceAssigned - OutputKeys - OutputStream - OutputStream - OutputStream - OutputStreamWriter - OverlappingFileLockException - OverlayLayout - Override - Owner - PBEKey - PBEKeySpec - PBEParameterSpec - PDLOverrideSupported - PERSIST_STORE - PKCS8EncodedKeySpec - PKIXBuilderParameters - PKIXCertPathBuilderResult - PKIXCertPathChecker - PKIXCertPathValidatorResult - PKIXParameters - POA - POAHelper - POAManager - POAManagerOperations - POAOperations - PRIVATE_MEMBER - PSSParameterSpec - PSource - PSource.PSpecified - PUBLIC_MEMBER - Pack200 - Pack200.Packer - Pack200.Unpacker - Package - PackedColorModel - PageAttributes - PageAttributes.ColorType - PageAttributes.MediaType - PageAttributes.OrientationRequestedType - PageAttributes.OriginType - PageAttributes.PrintQualityType - PageFormat - PageRanges - Pageable - PagedResultsControl - PagedResultsResponseControl - PagesPerMinute - PagesPerMinuteColor - Paint - PaintContext - PaintEvent - Panel - PanelUI - Paper - ParagraphView - ParagraphView - Parameter - ParameterBlock - ParameterDescriptor - ParameterMetaData - ParameterMode - ParameterModeHelper - ParameterModeHolder - ParameterizedType - ParseException - ParsePosition - Parser - Parser - ParserAdapter - ParserConfigurationException - ParserDelegator - ParserFactory - PartialResultException - PasswordAuthentication - PasswordCallback - PasswordView - Patch - PathIterator - Pattern - PatternSyntaxException - Permission - Permission - PermissionCollection - Permissions - PersistenceDelegate - PersistentMBean - PhantomReference - Pipe - Pipe.SinkChannel - Pipe.SourceChannel - PipedInputStream - PipedOutputStream - PipedReader - PipedWriter - PixelGrabber - PixelInterleavedSampleModel - PlainDocument - PlainView - Point - Point2D - Point2D.Double - Point2D.Float - PointerInfo - Policy - Policy - Policy - PolicyError - PolicyErrorCodeHelper - PolicyErrorHelper - PolicyErrorHolder - PolicyFactory - PolicyFactoryOperations - PolicyHelper - PolicyHolder - PolicyListHelper - PolicyListHolder - PolicyNode - PolicyOperations - PolicyQualifierInfo - PolicyTypeHelper - Polygon - PooledConnection - Popup - PopupFactory - PopupMenu - PopupMenuEvent - PopupMenuListener - PopupMenuUI - Port - Port.Info - PortUnreachableException - PortableRemoteObject - PortableRemoteObjectDelegate - Position - Position.Bias - Predicate - PreferenceChangeEvent - PreferenceChangeListener - Preferences - PreferencesFactory - PreparedStatement - PresentationDirection - Principal - Principal - PrincipalHolder - PrintEvent - PrintException - PrintGraphics - PrintJob - PrintJobAdapter - PrintJobAttribute - PrintJobAttributeEvent - PrintJobAttributeListener - PrintJobAttributeSet - PrintJobEvent - PrintJobListener - PrintQuality - PrintRequestAttribute - PrintRequestAttributeSet - PrintService - PrintServiceAttribute - PrintServiceAttributeEvent - PrintServiceAttributeListener - PrintServiceAttributeSet - PrintServiceLookup - PrintStream - PrintWriter - Printable - PrinterAbortException - PrinterException - PrinterGraphics - PrinterIOException - PrinterInfo - PrinterIsAcceptingJobs - PrinterJob - PrinterLocation - PrinterMakeAndModel - PrinterMessageFromOperator - PrinterMoreInfo - PrinterMoreInfoManufacturer - PrinterName - PrinterResolution - PrinterState - PrinterStateReason - PrinterStateReasons - PrinterURI - PriorityBlockingQueue - PriorityQueue - PrivateClassLoader - PrivateCredentialPermission - PrivateKey - PrivateMLet - PrivilegedAction - PrivilegedActionException - PrivilegedExceptionAction - Process - ProcessBuilder - ProcessingInstruction - ProfileDataException - ProfileIdHelper - ProgressBarUI - ProgressMonitor - ProgressMonitorInputStream - Properties - PropertyChangeEvent - PropertyChangeListener - PropertyChangeListenerProxy - PropertyChangeSupport - PropertyDescriptor - PropertyEditor - PropertyEditorManager - PropertyEditorSupport - PropertyPermission - PropertyResourceBundle - PropertyVetoException - ProtectionDomain - ProtocolException - Provider - Provider.Service - ProviderException - Proxy - Proxy - Proxy.Type - ProxySelector - PublicKey - PushbackInputStream - PushbackReader - QName - QuadCurve2D - QuadCurve2D.Double - QuadCurve2D.Float - Query - QueryEval - QueryExp - Queue - QueuedJobCount - RC2ParameterSpec - RC5ParameterSpec - REBIND - REQUEST_PROCESSING_POLICY_ID - RGBImageFilter - RMIClassLoader - RMIClassLoaderSpi - RMIClientSocketFactory - RMIConnection - RMIConnectionImpl - RMIConnectionImpl_Stub - RMIConnector - RMIConnectorServer - RMICustomMaxStreamFormat - RMIFailureHandler - RMIIIOPServerImpl - RMIJRMPServerImpl - RMISecurityException - RMISecurityManager - RMIServer - RMIServerImpl - RMIServerImpl_Stub - RMIServerSocketFactory - RMISocketFactory - RSAKey - RSAKeyGenParameterSpec - RSAMultiPrimePrivateCrtKey - RSAMultiPrimePrivateCrtKeySpec - RSAOtherPrimeInfo - RSAPrivateCrtKey - RSAPrivateCrtKeySpec - RSAPrivateKey - RSAPrivateKeySpec - RSAPublicKey - RSAPublicKeySpec - RTFEditorKit - Random - RandomAccess - RandomAccessFile - Raster - RasterFormatException - RasterOp - Rdn - ReadOnlyBufferException - ReadWriteLock - Readable - ReadableByteChannel - Reader - RealmCallback - RealmChoiceCallback - Receiver - Rectangle - Rectangle2D - Rectangle2D.Double - Rectangle2D.Float - RectangularShape - ReentrantLock - ReentrantReadWriteLock - ReentrantReadWriteLock.ReadLock - ReentrantReadWriteLock.WriteLock - Ref - RefAddr - Reference - Reference - ReferenceQueue - ReferenceUriSchemesSupported - Referenceable - ReferralException - ReflectPermission - ReflectionException - RefreshFailedException - Refreshable - Region - RegisterableService - Registry - RegistryHandler - RejectedExecutionException - RejectedExecutionHandler - Relation - RelationException - RelationNotFoundException - RelationNotification - RelationService - RelationServiceMBean - RelationServiceNotRegisteredException - RelationSupport - RelationSupportMBean - RelationType - RelationTypeNotFoundException - RelationTypeSupport - RemarshalException - Remote - RemoteCall - RemoteException - RemoteObject - RemoteObjectInvocationHandler - RemoteRef - RemoteServer - RemoteStub - RenderContext - RenderableImage - RenderableImageOp - RenderableImageProducer - RenderedImage - RenderedImageFactory - Renderer - RenderingHints - RenderingHints.Key - RepaintManager - ReplicateScaleFilter - RepositoryIdHelper - Request - RequestInfo - RequestInfoOperations - RequestProcessingPolicy - RequestProcessingPolicyOperations - RequestProcessingPolicyValue - RequestingUserName - RequiredModelMBean - RescaleOp - ResolutionSyntax - ResolveResult - Resolver - ResourceBundle - ResponseCache - ResponseHandler - Result - ResultSet - ResultSetMetaData - Retention - RetentionPolicy - ReverbType - Robot - Role - RoleInfo - RoleInfoNotFoundException - RoleList - RoleNotFoundException - RoleResult - RoleStatus - RoleUnresolved - RoleUnresolvedList - RootPaneContainer - RootPaneUI - RoundRectangle2D - RoundRectangle2D.Double - RoundRectangle2D.Float - RoundingMode - RowMapper - RowSet - RowSetEvent - RowSetInternal - RowSetListener - RowSetMetaData - RowSetMetaDataImpl - RowSetReader - RowSetWarning - RowSetWriter - RuleBasedCollator - RunTime - RunTimeOperations - Runnable - Runtime - RuntimeErrorException - RuntimeException - RuntimeMBeanException - RuntimeMXBean - RuntimeOperationsException - RuntimePermission - SAXException - SAXNotRecognizedException - SAXNotSupportedException - SAXParseException - SAXParser - SAXParserFactory - SAXResult - SAXSource - SAXTransformerFactory - SERVANT_RETENTION_POLICY_ID - SQLData - SQLException - SQLInput - SQLInputImpl - SQLOutput - SQLOutputImpl - SQLPermission - SQLWarning - SSLContext - SSLContextSpi - SSLEngine - SSLEngineResult - SSLEngineResult.HandshakeStatus - SSLEngineResult.Status - SSLException - SSLHandshakeException - SSLKeyException - SSLPeerUnverifiedException - SSLPermission - SSLProtocolException - SSLServerSocket - SSLServerSocketFactory - SSLSession - SSLSessionBindingEvent - SSLSessionBindingListener - SSLSessionContext - SSLSocket - SSLSocketFactory - SUCCESSFUL - SYNC_WITH_TRANSPORT - SYSTEM_EXCEPTION - SampleModel - Sasl - SaslClient - SaslClientFactory - SaslException - SaslServer - SaslServerFactory - Savepoint - Scanner - ScatteringByteChannel - ScheduledExecutorService - ScheduledFuture - ScheduledThreadPoolExecutor - Schema - SchemaFactory - SchemaFactoryLoader - SchemaViolationException - ScrollBarUI - ScrollPane - ScrollPaneAdjustable - ScrollPaneConstants - ScrollPaneLayout - ScrollPaneLayout.UIResource - ScrollPaneUI - Scrollable - Scrollbar - SealedObject - SearchControls - SearchResult - SecretKey - SecretKeyFactory - SecretKeyFactorySpi - SecretKeySpec - SecureCacheResponse - SecureClassLoader - SecureRandom - SecureRandomSpi - Security - SecurityException - SecurityManager - SecurityPermission - Segment - SelectableChannel - SelectionKey - Selector - SelectorProvider - Semaphore - SeparatorUI - Sequence - SequenceInputStream - Sequencer - Sequencer.SyncMode - SerialArray - SerialBlob - SerialClob - SerialDatalink - SerialException - SerialJavaObject - SerialRef - SerialStruct - Serializable - SerializablePermission - Servant - ServantActivator - ServantActivatorHelper - ServantActivatorOperations - ServantActivatorPOA - ServantAlreadyActive - ServantAlreadyActiveHelper - ServantLocator - ServantLocatorHelper - ServantLocatorOperations - ServantLocatorPOA - ServantManager - ServantManagerOperations - ServantNotActive - ServantNotActiveHelper - ServantObject - ServantRetentionPolicy - ServantRetentionPolicyOperations - ServantRetentionPolicyValue - ServerCloneException - ServerError - ServerException - ServerIdHelper - ServerNotActiveException - ServerRef - ServerRequest - ServerRequestInfo - ServerRequestInfoOperations - ServerRequestInterceptor - ServerRequestInterceptorOperations - ServerRuntimeException - ServerSocket - ServerSocketChannel - ServerSocketFactory - ServiceContext - ServiceContextHelper - ServiceContextHolder - ServiceContextListHelper - ServiceContextListHolder - ServiceDetail - ServiceDetailHelper - ServiceIdHelper - ServiceInformation - ServiceInformationHelper - ServiceInformationHolder - ServiceNotFoundException - ServicePermission - ServiceRegistry - ServiceRegistry.Filter - ServiceUI - ServiceUIFactory - ServiceUnavailableException - Set - SetOfIntegerSyntax - SetOverrideType - SetOverrideTypeHelper - Severity - Shape - ShapeGraphicAttribute - SheetCollate - Short - ShortBuffer - ShortBufferException - ShortHolder - ShortLookupTable - ShortMessage - ShortSeqHelper - ShortSeqHolder - Sides - Signature - SignatureException - SignatureSpi - SignedObject - Signer - SimpleAttributeSet - SimpleBeanInfo - SimpleDateFormat - SimpleDoc - SimpleFormatter - SimpleTimeZone - SimpleType - SinglePixelPackedSampleModel - SingleSelectionModel - Size2DSyntax - SizeLimitExceededException - SizeRequirements - SizeSequence - Skeleton - SkeletonMismatchException - SkeletonNotFoundException - SliderUI - Socket - SocketAddress - SocketChannel - SocketException - SocketFactory - SocketHandler - SocketImpl - SocketImplFactory - SocketOptions - SocketPermission - SocketSecurityException - SocketTimeoutException - SoftBevelBorder - SoftReference - SortControl - SortKey - SortResponseControl - SortedMap - SortedSet - SortingFocusTraversalPolicy - Soundbank - SoundbankReader - SoundbankResource - Source - SourceDataLine - SourceLocator - SpinnerDateModel - SpinnerListModel - SpinnerModel - SpinnerNumberModel - SpinnerUI - SplitPaneUI - Spring - SpringLayout - SpringLayout.Constraints - SslRMIClientSocketFactory - SslRMIServerSocketFactory - Stack - StackOverflowError - StackTraceElement - StandardMBean - StartTlsRequest - StartTlsResponse - State - StateEdit - StateEditable - StateFactory - Statement - Statement - StreamCorruptedException - StreamHandler - StreamPrintService - StreamPrintServiceFactory - StreamResult - StreamSource - StreamTokenizer - Streamable - StreamableValue - StrictMath - String - StringBuffer - StringBufferInputStream - StringBuilder - StringCharacterIterator - StringContent - StringHolder - StringIndexOutOfBoundsException - StringMonitor - StringMonitorMBean - StringNameHelper - StringReader - StringRefAddr - StringSelection - StringSeqHelper - StringSeqHolder - StringTokenizer - StringValueExp - StringValueHelper - StringWriter - Stroke - Struct - StructMember - StructMemberHelper - Stub - StubDelegate - StubNotFoundException - Style - StyleConstants - StyleConstants.CharacterConstants - StyleConstants.ColorConstants - StyleConstants.FontConstants - StyleConstants.ParagraphConstants - StyleContext - StyleSheet - StyleSheet.BoxPainter - StyleSheet.ListPainter - StyledDocument - StyledEditorKit - StyledEditorKit.AlignmentAction - StyledEditorKit.BoldAction - StyledEditorKit.FontFamilyAction - StyledEditorKit.FontSizeAction - StyledEditorKit.ForegroundAction - StyledEditorKit.ItalicAction - StyledEditorKit.StyledTextAction - StyledEditorKit.UnderlineAction - Subject - SubjectDelegationPermission - SubjectDomainCombiner - SupportedValuesAttribute - SuppressWarnings - SwingConstants - SwingPropertyChangeSupport - SwingUtilities - SyncFactory - SyncFactoryException - SyncFailedException - SyncProvider - SyncProviderException - SyncResolver - SyncScopeHelper - SynchronousQueue - SynthConstants - SynthContext - SynthGraphicsUtils - SynthLookAndFeel - SynthPainter - SynthStyle - SynthStyleFactory - Synthesizer - SysexMessage - System - SystemColor - SystemException - SystemFlavorMap - TAG_ALTERNATE_IIOP_ADDRESS - TAG_CODE_SETS - TAG_INTERNET_IOP - TAG_JAVA_CODEBASE - TAG_MULTIPLE_COMPONENTS - TAG_ORB_TYPE - TAG_POLICIES - TAG_RMI_CUSTOM_MAX_STREAM_FORMAT - TCKind - THREAD_POLICY_ID - TIMEOUT - TRANSACTION_MODE - TRANSACTION_REQUIRED - TRANSACTION_ROLLEDBACK - TRANSACTION_UNAVAILABLE - TRANSIENT - TRANSPORT_RETRY - TabExpander - TabSet - TabStop - TabableView - TabbedPaneUI - TableCellEditor - TableCellRenderer - TableColumn - TableColumnModel - TableColumnModelEvent - TableColumnModelListener - TableHeaderUI - TableModel - TableModelEvent - TableModelListener - TableUI - TableView - TabularData - TabularDataSupport - TabularType - TagElement - TaggedComponent - TaggedComponentHelper - TaggedComponentHolder - TaggedProfile - TaggedProfileHelper - TaggedProfileHolder - Target - TargetDataLine - TargetedNotification - Templates - TemplatesHandler - Text - TextAction - TextArea - TextAttribute - TextComponent - TextEvent - TextField - TextHitInfo - TextInputCallback - TextLayout - TextLayout.CaretPolicy - TextListener - TextMeasurer - TextOutputCallback - TextSyntax - TextUI - TexturePaint - Thread - Thread.State - Thread.UncaughtExceptionHandler - ThreadDeath - ThreadFactory - ThreadGroup - ThreadInfo - ThreadLocal - ThreadMXBean - ThreadPolicy - ThreadPolicyOperations - ThreadPolicyValue - ThreadPoolExecutor - ThreadPoolExecutor.AbortPolicy - ThreadPoolExecutor.CallerRunsPolicy - ThreadPoolExecutor.DiscardOldestPolicy - ThreadPoolExecutor.DiscardPolicy - Throwable - Tie - TileObserver - Time - TimeLimitExceededException - TimeUnit - TimeZone - TimeoutException - Timer - Timer - Timer - TimerAlarmClockNotification - TimerMBean - TimerNotification - TimerTask - Timestamp - Timestamp - TitledBorder - TooManyListenersException - ToolBarUI - ToolTipManager - ToolTipUI - Toolkit - Track - TransactionRequiredException - TransactionRolledbackException - TransactionService - TransactionalWriter - TransferHandler - Transferable - TransformAttribute - Transformer - TransformerConfigurationException - TransformerException - TransformerFactory - TransformerFactoryConfigurationError - TransformerHandler - Transmitter - Transparency - TreeCellEditor - TreeCellRenderer - TreeExpansionEvent - TreeExpansionListener - TreeMap - TreeModel - TreeModelEvent - TreeModelListener - TreeNode - TreePath - TreeSelectionEvent - TreeSelectionListener - TreeSelectionModel - TreeSet - TreeUI - TreeWillExpandListener - TrustAnchor - TrustManager - TrustManagerFactory - TrustManagerFactorySpi - Type - TypeCode - TypeCodeHolder - TypeInfo - TypeInfoProvider - TypeMismatch - TypeMismatch - TypeMismatch - TypeMismatchHelper - TypeMismatchHelper - TypeNotPresentException - TypeVariable - Types - UID - UIDefaults - UIDefaults.ActiveValue - UIDefaults.LazyInputMap - UIDefaults.LazyValue - UIDefaults.ProxyLazyValue - UIManager - UIManager.LookAndFeelInfo - UIResource - ULongLongSeqHelper - ULongLongSeqHolder - ULongSeqHelper - ULongSeqHolder - UNKNOWN - UNKNOWN - UNSUPPORTED_POLICY - UNSUPPORTED_POLICY_VALUE - URI - URIException - URIResolver - URISyntax - URISyntaxException - URL - URLClassLoader - URLConnection - URLDecoder - URLEncoder - URLStreamHandler - URLStreamHandlerFactory - URLStringHelper - USER_EXCEPTION - UShortSeqHelper - UShortSeqHolder - UTFDataFormatException - UUID - UndeclaredThrowableException - UndoManager - UndoableEdit - UndoableEditEvent - UndoableEditListener - UndoableEditSupport - UnexpectedException - UnicastRemoteObject - UnionMember - UnionMemberHelper - UnknownEncoding - UnknownEncodingHelper - UnknownError - UnknownException - UnknownFormatConversionException - UnknownFormatFlagsException - UnknownGroupException - UnknownHostException - UnknownHostException - UnknownObjectException - UnknownServiceException - UnknownUserException - UnknownUserExceptionHelper - UnknownUserExceptionHolder - UnmappableCharacterException - UnmarshalException - UnmodifiableClassException - UnmodifiableSetException - UnrecoverableEntryException - UnrecoverableKeyException - Unreferenced - UnresolvedAddressException - UnresolvedPermission - UnsatisfiedLinkError - UnsolicitedNotification - UnsolicitedNotificationEvent - UnsolicitedNotificationListener - UnsupportedAddressTypeException - UnsupportedAudioFileException - UnsupportedCallbackException - UnsupportedCharsetException - UnsupportedClassVersionError - UnsupportedEncodingException - UnsupportedFlavorException - UnsupportedLookAndFeelException - UnsupportedOperationException - UserDataHandler - UserException - Util - UtilDelegate - Utilities - VMID - VM_ABSTRACT - VM_CUSTOM - VM_NONE - VM_TRUNCATABLE - Validator - ValidatorHandler - ValueBase - ValueBaseHelper - ValueBaseHolder - ValueExp - ValueFactory - ValueHandler - ValueHandlerMultiFormat - ValueInputStream - ValueMember - ValueMemberHelper - ValueOutputStream - VariableHeightLayoutCache - Vector - VerifyError - VersionSpecHelper - VetoableChangeListener - VetoableChangeListenerProxy - VetoableChangeSupport - View - ViewFactory - ViewportLayout - ViewportUI - VirtualMachineError - Visibility - VisibilityHelper - VoiceStatus - Void - VolatileImage - WCharSeqHelper - WCharSeqHolder - WStringSeqHelper - WStringSeqHolder - WStringValueHelper - WeakHashMap - WeakReference - WebRowSet - WildcardType - Window - WindowAdapter - WindowConstants - WindowEvent - WindowFocusListener - WindowListener - WindowStateListener - WrappedPlainView - WritableByteChannel - WritableRaster - WritableRenderedImage - WriteAbortedException - Writer - WrongAdapter - WrongAdapterHelper - WrongPolicy - WrongPolicyHelper - WrongTransaction - WrongTransactionHelper - WrongTransactionHolder - X500Principal - X500PrivateCredential - X509CRL - X509CRLEntry - X509CRLSelector - X509CertSelector - X509Certificate - X509Certificate - X509EncodedKeySpec - X509ExtendedKeyManager - X509Extension - X509KeyManager - X509TrustManager - XAConnection - XADataSource - XAException - XAResource - XMLConstants - XMLDecoder - XMLEncoder - XMLFilter - XMLFilterImpl - XMLFormatter - XMLGregorianCalendar - XMLParseException - XMLReader - XMLReaderAdapter - XMLReaderFactory - XPath - XPathConstants - XPathException - XPathExpression - XPathExpressionException - XPathFactory - XPathFactoryConfigurationException - XPathFunction - XPathFunctionException - XPathFunctionResolver - XPathVariableResolver - Xid - XmlReader - XmlWriter - ZipEntry - ZipException - ZipFile - ZipInputStream - ZipOutputStream - ZoneView - _BindingIteratorImplBase - _BindingIteratorStub - _DynAnyFactoryStub - _DynAnyStub - _DynArrayStub - _DynEnumStub - _DynFixedStub - _DynSequenceStub - _DynStructStub - _DynUnionStub - _DynValueStub - _IDLTypeStub - _NamingContextExtStub - _NamingContextImplBase - _NamingContextStub - _PolicyStub - _Remote_Stub - _ServantActivatorStub - _ServantLocatorStub - - - abstract - case - catch - class - def - do - else - extends - false - final - finally - for - forSome - if - implicit - import - lazy - match - new - null - object - override - package - private - protected - requires - return - sealed - super - this - throw - trait - true - try - type - val - var - while - with - yield - - - boolean - byte - char - double - float - int - long - short - unit - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/scheme.xml ktexteditor-5.31.0/src/syntax/data/scheme.xml --- ktexteditor-5.28.0/src/syntax/data/scheme.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/scheme.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,436 +0,0 @@ - - - - - - - <= - < - = - => - >= - > - - - / - *,* - *) - + - - - #\nul - #\soh - #\stx - #\etx - #\eot - #\enq - #\ack - #\bel - #\bs - #\ht - #\nl - #\vt - #\np - #\cr - #\so - #\si - #\dle - #\dc1 - #\dc2 - #\dc3 - #\dc4 - #\nak - #\syn - #\etb - #\can - #\em - #\sub - #\esc - #\fs - #\gs - #\rs - #\us - #\space - #\sp - #\newline - #\nl - #\tab - #\ht - #\backspace - #\bs - #\return - #\cr - #\page - #\np - #\null - #\nul - - - define - define* - define-accessor - define-class - defined? - define-generic - define-macro - define-method - define-module - define-private - define-public - define*-public - define-reader-ctor - define-syntax - define-syntax-macro - defmacro - defmacro* - defmacro*-public - - - abs - acos - and - angle - append - applymap - asin - assoc - assq - assv - atan - begin - boolean? - break - caaaar - caaadr - caaar - caadar - caaddr - caadr - caar - cadaar - cadadr - cadar - caddar - cadddr - caddr - cadr - call/cc - call-with-current-continuation - call-with-input-file - call-with-output-file - call-with-values - car - case - catch - cdaaar - cdaadr - cdaar - cdadar - cdaddr - cdadr - cdar - cddaar - cddadr - cddar - cdddar - cddddr - cdddr - cddr - cdr - ceiling - char-alphabetic? - char-ci>=? - char-ci>? - char-ci=? - char-ci<=? - char-downcase - char->integer - char>=? - char>? - char=? - char? - char-lower-case? - char<?c - char<=? - char-numeric? - char-ready? - char-upcase - char-upper-case? - char-whitespace? - close-input-port - close-output-port - complex? - cond - cons - continue - cos - current-input-port - current-output-port - denominator - display - do - dynamic-wind - else - eof-object? - eq? - equal? - eqv? - eval - even? - exact->inexact - exact? - exp - expt - floor - force - for-each - gcd - har-ci<? - if - imag-part - inexact->exact - inexact? - input-port? - integer->char - integer? - interaction-environment - lambda - lcm - length - let - let* - letrec - letrec-syntax - let-syntax - list->string - list - list? - list-ref - list-tail - load - log - magnitude - make-polar - make-rectangular - make-string - make-vector - max - member - memq - memv - min - modulo - negative? - newline - not - null-environment - null? - number? - number->string - numerator - odd? - open-input-file - open-output-file - or - output-port? - pair? - peek-char - port? - positive? - procedure? - quotient - rational? - rationalize - read-char - read - real? - real-part - remainder - reverse - round - scheme-report-environment - set-car! - set-cdr! - sin - sqrt - string-append - string-ci>=? - string-ci>? - string-ci=? - string-ci<=? - string-ci<? - string-copy - string-fill! - string>=? - string>? - string->list - string->number - string->symbol - string=? - string - string? - string-length - string<=? - string<? - string-ref - string-set! - substring - symbol->string - symbol? - syntax-rules - tan - transcript-off - transcript-on - truncate - values - vector-fill! - vector->listlist->vector - vector - vector? - vector-length - vector-ref - vector-set! - while - with-input-from-file - with-output-to-file - write-char - write - zero? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sci.xml ktexteditor-5.31.0/src/syntax/data/sci.xml --- ktexteditor-5.28.0/src/syntax/data/sci.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sci.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1191 +0,0 @@ - - - - - - do - else - for - if - elseif - end - select - then - while - - - abort - break - quit - return - resume - pause - - - function - endfunction - - - error - warning - - - %F - %f - %T - %t - %e - %pi - %inf - %i - %z - %io - %s - %nan - $ - %eps - MSDOS - - - zpell - zpch2 - zpch1 - zpbutt - zgrid - zeros - zeropen - ZCROSS_f - yulewalk - xtitle - xtape - xstringl - xstringb - xstring - xsetm - xsetech - xset - xselect - xsegs - xsave - xs2fig - xrpoly - xrects - xrect - xpolys - xpoly - xpause - xnumb - xname - x_message_modeless - x_message - x_mdialog - x_matrix - xload - xlfont - xinit - xinfo - xgrid - xgraduate - xgetmouse - xgetfile - xgetech - xget - xfrect - xfpolys - xfpoly - xfarcs - xfarc - xend - x_dialog - xdel - xclip - xclick - xclear - xclea - x_choose - x_choices - xchange - xbasr - xbasimp - xbasc - xaxis - xarrows - xarcs - xarc - WRITEC_f - write4b - write - writb - winsid - window - wigner - wiener - whos - who - whereis - whereami - where - what - wfir - WFILE_f - wavwrite - wavread - warning - WaitMsg - varn - varargout - varargin - user - unsetmenu - unobs - unix_x - unix_w - unix_s - unix_g - unix - unique - union - ulink - ui_observer - uint8 - uint32 - uint16 - uimenu - uicontrol - typeof - typename - type - trzeros - triu - trisolve - tril - trianfml - trfmod - TRASH_f - translatepaths - trans_closure - trans - trace - toeplitz - tlist - TK_SetVar - TK_GetVar - TK_EvalStr - TK_EvalFile - titlepage - timer - time_id - TIME_f - tilda - tf2ss - tf2des - TEXT_f - texprint - testmatrix - tdinit - TCLSS_f - tanm - tanhm - tanh - tangent - TANBLK_f - tan - systmat - systems - system - syssize - syslin - sysfact- - sysdiag - sysconv - symbols - sylv - sylm - svplot - svd - sva - supernode - SUPER_f - sum - successors - subplot - subgraph - subf - strsubst - strong_con_nodes - strong_connex - stripblanks - strings - string - strindex - strcat - str2code - STOP_f - st_ility - st_deviation - startup - star - standard_output - standard_origin - standard_input - standard_draw - standard_define - stacksize - stabil - ssrand - ssprint - sskf - sscanf - ss2tf - ss2ss - ss2des - srkf - srfaur - squarewave - square - sqrtm - sqrt - sqroot - spzeros - sprintf - sprand - spones - SPLIT_f - split_edge - splin - spget - speye - specfact - spec - spcompack - spchol - sparse - spantwo - spanplus - spaninter - sp2adj - sound - sort - SOM_f - solve - %sn - smooth - sm2ss - sm2des - slash - size - sinm - sinhm - sinh - sincd - sinc - SINBLK_f - sin - simp_mode - simp - signm - sign - showprofile - show_nodes - show_graph - show_arcs - shortest_path - sgrid - Sgrayplot - Sfgrayplot - sfact - setscicosvars - setmenu - setfield - setbpt - set - sensi - SendMsg - semidef - semicolumn - semi - SELECT_f - secto3d - sd2sci - SCOPXY_f - SCOPE_f - scilink - ScilabEval - scilab - scifunc_block - scicos_model - scicos_menus - scicos_main - scicos_link - scicosim - scicos_graphics - scicos_cpr - scicos_block - scicos - sciargs - sci2map - sci2for - sci2exp - schur - scanf_conversion - scanf - scaling - SAWTOOTH_f - savewave - save_graph - save - SAT_f - SAMPLEHOLD_f - salesman - rtitr - rref - rpem - rowshuff - rowregul - rowinout - rowcompr - rowcomp - routh_t - round - rotate - roots - rlist - ric_desc - riccati - ricc - RFILE_f - residu - replot - repfreq - remezb - remez - RELAY_f - reglin - REGISTER_f - recur - real - readmps - READC_f - readc_ - readb - read4b - read - rdivf - rcond - rational - rat - rank - range - randpencil - RAND_f - rand - quote - quit - quaskro - quapro - QUANT_f - qr - qassign - pwd - pvm_tidtohost - pvm_start - pvm_spawn_independent - pvm_spawn - pvm_set_timer - pvm_send - pvm_sci2f77 - pvm_reduce - pvm_recv - pvm_probe - pvm_mytid - pvm_lvgroup - pvm_kill - pvm_joingroup - pvm_halt - pvm_gsize - pvm_get_timer - pvm_getinst - pvm_exit - pvm_error - pvm_delhosts - pvmd3 - pvm_config - pvm_bufinfo - pvm_bcast - pvm_addhosts - pvm - pspect - psmall - projspec - projsl - proj - profile - PROD_f - prod - printing - printf_conversion - printf - print - predef - predecessors - prbs_a - ppol - power - POWBLK_f - POSTONEG_f - portrait - portr3d - poly - polfact - polarplot - polar - pol2tex - pol2str - pol2des - pmodulo - p_margin - plzr - plus - plotprofile - plot_graph - plotframe - plot3d3 - plot3d2 - plot3d1 - plot3d - plot2d4 - plot2d3 - plot2d2 - plot2d1 - plot2d - plot - playsnd - pipe_network - pinv - phc - phasemag - pfss - pertrans - perfect_match - percent - penlaur - pencan - pen2ea - pdiv - pbig - path_2_nodes - part - parrot - parents - paramfplot2d - param3d1 - param3d - overloading - OUT_f - orth - or - optim - ones - oldsave - oldload - ode_root - odeoptions - ode_discrete - odedi - odedc - ode - obsvss - obsv_mat - obs_gram - observer - obscont1 - obscont - nyquist - numer - null - not - norm - noisegen - nodes_degrees - nodes_2_path - node_number - nnz - nlev - nf3d - newfun - newest - netwindows - netwindow - netclose - neighbors - nehari - NEGTOPOS_f - narsimul - names - MUX_f - mulf - mu2lin - mtlb_sparse - mtlb_save - mtlb_mode - mtlb_load - mtell - msscanf - msprintf - mseek - mscanf - mrfit - mputstr - mputl - mput - mps2linpro - mprintf - mopen - modulo - mode - mlist - min_weight_tree - minus - minss - minreal - min_qcost_flow - min_lcost_flow2 - min_lcost_flow1 - min_lcost_cflow - mini - MIN_f - mine - min - milk_drop - mgetstr - mgetl - mgeti - mget - mfscanf - mfprintf - mfile2sci - mfft - MFCLCK_f - metanet_sync - metanet - mesh2d - mese - meof - median - mean - mclose - MCLOCK_f - mclearerr - m_circle - maxi - max_flow - MAX_f - max_clique - max_cap_path - max - matrix - matrices - Matplot1 - Matplot - mat_2_graph - markp2ss - mapsound - manedit - man - make_graph - macrovar - macro - macr2lst - macglov - lyap - lusolve - luget - lufact - ludel - lu - ltitr - lstcat - lsslist - lqr - lqg_ltr - lqg2stan - lqg - lqe - lotest - LOOKUP_f - logspace - logm - LOGBLK_f - log2 - log10 - log - locate - loadwave - load_graph - load - lmitool - lmisolver - list - linspace - linsolve - linpro - link - linfn - linf - lines - line_graph - lindquist - lin2mu - lin - lib - lgfft - lft - lex_sort - levin - lev - less - leqr - length - legends - left - leastsq - ldivf - ldiv - lcmdiag - lcm - lcf - lattp - lattn - lasterror - kroneck - kron - krac2 - kpure - knapsack - keyboard - kernel - karmarkar - kalm - %k - jmat - isreal - isoview - isnan - isinf - isglobal - iserror - isdef - is_connex - invsyslin - invr - inv_coeff - INVBLK_f - inv - inttype - inttrap - intsplin - INTRPLBLK_f - INTRP2BLK_f - intppty - intl - intg - intersect - intersci - interpln - interp - integrate - INTEGRAL_f - intdec - intc - int8 - int3d - int32 - int2d - int16 - int - insertion - input - IN_f - imrep2ss - impl - im_inv - imag - ilib_gen_Make - ilib_gen_loader - ilib_gen_gateway - ilib_for_link - ilib_compile - ilib_build - iirlp - iirgroup - iir - IFTHEL_f - ieee - iconvert - hypermatrices - hypermat - htrianr - hrmt - householder - hotcolormap - host - horner - h_norm - histplot - hist3d - h_inf_st - h_inf - hilb - hex2dec - hess - hermit - %helps - help - h_cl - havewindow - hat - hankelsv - hank - hamilton - HALT_f - halt - h2norm - gtild - gstacksize - gspec - gsort - gschur - group - gr_menu - grep - graypolarplot - grayplot - graycolormap - graph_union - graph_sum - graph_simp - graph_power - graph-list - Graphics - graph_diameter - graph_complement - graph_center - graph_2_mat - grand - graduate - gpeche - g_margin - G_make - global - glist - glever - givens - girth - gfrancis - gfare - getversion - getvalue - getsymbol - getscicosvars - getpid - GetMsg - getmark - getlinestyle - getio - get_function_path - getfont - getfield - getf - getenv - getdate - getd - getcwd - getcolor - getblocklabel - get - geom3d - GENSQR_f - GENSIN_f - gen_net - genmarkov - genlib - genfac3d - GENERIC_f - GENERAL_f - gcf - gcd - gcare - gammaln - gamma - gamitg - gainplot - GAIN_f - GAINBLK_f - fusee - funptr - funcprot - fun2string - fullrfk - fullrf - full - fstair - fstabst - fspecg - fsolve - fsfirlin - fscanfMat - fscanf - frmag - frfit - frexp - freson - freq - frep2tf - fprintfMat - fprintf - fplot3d1 - fplot3d - fplot2d - fourplan - fort - formatman - format - flts - floor - fix - fit_dat - find_path - findobj - findm - find_freq - find - filter - fileinfo - file - figure - fgrayplot - fft - ffilt - feval - feedback - fec - fcontour2d - fcontour - fchamp - faurre - factors - fac3d - eye - extraction - external - expm - EXPBLK_f - exp - exit - exists - execstr - ExecScilab - ExeclScilab - ExecAppli - exec - excel2sci - Example - EVTGEN_f - EVTDLY_f - evstr - EVENTSCOPE_f - evans - eval3dp - eval3d - eval - error - errclear - errcatch - errbar - erfcx - erfc - erf - ereduc - equil1 - equil - equal - eqiir - eqfir - emptystr - empty - ell1mag - eigenmarkov - edit_curv - edit - edge_number - dtsi - dt_ility - dsimul - dscr - driver - drawaxis - dragrect - double - dot - DLSS_f - DLR_f - DLRADAPT_f - dlgamma - dispfile - dispbpt - disp - diophant - diary - diag - dhnorm - dft - detr - determ - det - DestroyLink - des2tf - des2ss - derivative- - derivat - denom - DEMUX_f - demos - delmenu - delip - delete_nodes - delete_arcs - delbpt - DELAYV_f - DELAY_f - degree - deff - dec2hex - debug - ddp - dcf - dbphi - date - datafit - dassl - dasrt - czt - cycle_basis - CURV_f - curblock - cumsum - cumprod - ctr_gram - cspect - csim - CreateLink - cothm - coth - cotg - cosm - coshm - cosh - COSBLK_f - cos - corr - copfac - convstr - convol - convex_hull - contrss - contract_edge - contr - contourf - contour2di - contour2d - contour - cont_mat - cont_frm - CONST_f - con_nodes - connex - conj - cond - companion - comp - Communications - colregul - colormap - colon - colnew - colinout - colcompr - colcomp - coffg - coff - coeff - code2str - cmndred - cmb_lin - CLSS_f - cls2dls - CLR_f - close - CLOCK_f - CLKSPLIT_f - CLKSOMV_f - CLKSOM_f - CLKOUTV_f - CLKOUT_f - CLKINV_f - CLKIN_f - c_link - CLINDUMMY_f - clearglobal - clearfun - clear - clean - classmarkov - circuit - chsolve - chol - chfact - chepol - check_graph - cheb2mag - cheb1mag - chdir - chart - champ1 - champ - chaintest - chain_struct - cepstrum - ceil - cdft - cdfpoi - cdfnor - cdfnbn - cdfgam - cdffnc - cdff - cdfchn - cdfchi - cdfbin - cdfbet - ccontrg - casc - canon - call - calfrq - calerf - cainv - bvode - buttmag - bstap - boucle - boolean - bool2s - bode - bloc2ss - bloc2exp - black - binomial - bilin - BIGSOM_f - bifish - bezout - best_match - bessely - besselk - besselj - besseli - bdiag - bandwr - balreal - balanc - backslash - auwrite - auread - augment - atanm - atanhm - atanh - atan - %asn - asinm - asinhm - asinh - asin - ascii - articul - artest - arsimul - armax1 - armax - armac - arma2p - arma - arl2 - arhnk - argn - arc_number - arc_graph - apropos - ans - ANIMXY_f - ANDLOG_f - and - analyze - analpf - amell - alufunctions - AFFICH_f - aff2ab - adj_lists - adj2sp - add_node - addmenu - addinter - addf - add_edge - addcolor - AdCommunications - acosm - acoshm - acosh - acos - ABSBLK_f - abs - abinv - abcd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/scss.xml ktexteditor-5.31.0/src/syntax/data/scss.xml --- ktexteditor-5.28.0/src/syntax/data/scss.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/scss.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1139 +0,0 @@ - - - - -]> - - - - - - - - - azimuth - align-content - align-items - align-self - alignment-baseline - all - animation-name - animation-duration - animation-iteration-count - animation-direction - animation-delay - animation-play-state - animation-fill-mode - animation-timing-function - backface-visibility - background - background-attachment - background-blend-mode - background-break - background-clip - background-color - background-image - background-origin - background-position - background-repeat - background-size - baseline-shift - bookmark-label - bookmark-level - bookmark-level - border - border-bottom - border-bottom-color - border-bottom-image - border-bottom-style - border-bottom-width - border-bottom-left-image - border-bottom-left-radius - border-bottom-right-image - border-bottom-right-radius - border-boundary - border-collapse - border-color - border-corner-image - border-image - border-image-outset - border-image-repeat - border-image-slice - border-image-source - border-image-width - border-left - border-left-color - border-left-image - border-left-style - border-left-width - border-radius - border-right - border-right-color - border-right-image - border-right-style - border-right-width - border-spacing - border-style - border-top - border-top-color - border-top-image - border-top-style - border-top-width - border-top-left-image - border-top-left-radius - border-top-right-image - border-top-right-radius - border-width - bottom - box-align - box-decoration-break - box-direction - box-flex - box-shadow - box-sizing - box-snap - box-suppress - break-after - break-before - break-inside - caret-color - caption-side - chains - clear - clip - clip-path - clip-rule - color - color-interpolation-filters - column-count - column-fill - column-gap - column-rule - column-rule-color - column-rule-style - column-rule-width - column-span - column-width - columns - content - counter-increment - counter-reset - counter-set - cue - cue-after - cue-before - cursor - direction - display - dominant-baseline - elevation - empty-cells - filter - flex - flex-basis - flex-direction - flex-flow - flex-grow - flex-shrink - flex-wrap - float - flood-color - flood-opacity - flow - flow-from - flow-into - font - font-family - font-size - font-size-adjust - font-stretch - font-style - font-variant - font-weight - font-stretch - font-feature-settings - font-kerning - font-language-override - font-synthesis - font-variant-alternates - font-variant-caps - font-variant-east-asian - font-variant-ligatures - font-variant-numeric - font-variant-position - footnote-display - footnote-policy - glyph-orientation-vertical - grid - grid-area - grid-auto-columns - grid-auto-flow - grid-auto-rows - grid-column - grid-column-end - grid-column-gap - grid-column-start - grid-gap - grid-row - grid-row-end - grid-row-gap - grid-row-start - grid-template - grid-template-areas - grid-template-columns - grid-template-rows - hanging-punctuation - height - hyphens - image-orientation - image-rendering - image-resolution - initial-letter - initial-letter-align - initial-letter-wrap - isolation - justify-content - justify-items - justify-self - left - letter-spacing - lighting-color - linear-gradient - line-grid - line-height - line-snap - list-style - list-style-image - list-style-keyword - list-style-position - list-style-type - margin - margin-bottom - margin-left - margin-right - margin-top - marker-offset - marker-side - marquee-direction - marquee-loop - marquee-speed - marquee-style - mask - mask-border - mask-border-mode - mask-border-outset - mask-border-repeat - mask-border-slice - mask-border-source - mask-border-width - mask-clip - mask-composite - mask-image - mask-mode - mask-origin - mask-position - mask-repeat - mask-size - mask-type - max-height - max-lines - max-width - min-height - min-width - mix-blend-mode - nav-down - nav-left - nav-right - nav-up - object-fit - object-position - offset-after - offset-before - offset-end - offset-start - opacity - order - orphans - outline - outline-color - outline-offset - outline-style - outline-width - overflow - overflow-style - overflow-wrap - overflow-x - overflow-y - padding - padding-bottom - padding-left - padding-right - padding-top - page - page-break-after - page-break-before - page-break-inside - pause - pause-after - pause-before - perspective - perspective-origin - pitch - pitch-range - play-during - pointer-events - polar-anchor - polar-angle - polar-distance - polar-origin - position - presentation-level - quotes - resize - rest - rest-after - rest-before - richness - right - rotation - rotation-point - ruby-align - ruby-merge - ruby-position - running - scroll-behavior - scroll-snap-align - scroll-snap-margin - scroll-snap-margin-block - scroll-snap-margin-block-end - scroll-snap-margin-block-start - scroll-snap-margin-bottom - scroll-snap-margin-inline - scroll-snap-margin-inline-end - scroll-snap-margin-inline-start - scroll-snap-margin-left - scroll-snap-margin-right - scroll-snap-margin-top - scroll-snap-padding - scroll-snap-padding-block - scroll-snap-padding-block-end - scroll-snap-padding-block-start - scroll-snap-padding-bottom - scroll-snap-padding-inline - scroll-snap-padding-inline-end - scroll-snap-padding-inline-start - scroll-snap-padding-left - scroll-snap-padding-right - scroll-snap-padding-top - scroll-snap-stop - scroll-snap-type - shape-image-threshold - shape-inside - shape-margin - shape-outside - size - speak - speak-as - speak-header - speak-numeral - speak-punctuation - speech-rate - stress - string-set - tab-size - table-layout - text-align - text-align-last - text-combine-upright - text-decoration - text-decoration-color - text-decoration-line - text-decoration-skip - text-decoration-style - text-emphasis - text-emphasis-color - text-emphasis-position - text-emphasis-style - text-indent - text-justify - text-orientation - text-overflow - text-shadow - text-transform - text-underline-position - text-wrap - top - transform - transform-origin - transform-style - transition - transition-delay - transition-property - transition-duration - transition-timing-function - unicode-bidi - vertical-align - visibility - voice-balance - voice-duration - voice-family - voice-pitch - voice-range - voice-rate - voice-stress - voice-volume - volume - white-space - widows - width - will-change - word-break - word-spacing - word-wrap - wrap-flow - wrap-through - writing-mode - z-index - - - -moz-animation-name - -moz-animation-duration - -moz-animation-iteration - -moz-animation-direction - -moz-animation-delay - -moz-animation-play-state - -moz-animation-fill-mode - -moz-background-size - -moz-border-image - -moz-border-bottom-colors - -moz-border-left-colors - -moz-border-radius - -moz-border-radius-topleft - -moz-border-radius-topright - -moz-border-radius-bottomleft - -moz-border-radius-bottomright - -moz-border-right-colors - -moz-border-top-colors - -moz-box - -moz-box-flex - -moz-box-shadow - -moz-box-sizing - -moz-column-count - -moz-column-gap - -moz-hyphens - -moz-linear-gradient - -moz-opacity - -moz-outline-style - -moz-perspective - -moz-radial-gradient - -moz-resize - -moz-transform - -moz-transform-origin - -moz-transform-style - -moz-transition - -moz-transition-property - -moz-transition-duration - - - -o-background-size - -o-linear-gradient - -o-text-overflow - -o-transition - -o-transform-origin - - - konq_bgpos_x - konq_bgpos_y - -khtml-background-size - -khtml-border-top-left-radius - -khtml-border-top-right-radius - -khtml-border-bottom-left-radius - -khtml-border-bottom-right-radius - -khtml-border-radius - -khtml-box-shadow - -khtml-opacity - - - -webkit-appearance - -webkit-animation-name - -webkit-animation-duration - -webkit-animation-iteration - -webkit-animation-direction - -webkit-animation-delay - -webkit-animation-play-state - -webkit-animation-fill-mode - -webkit-background-size - -webkit-border-image - -webkit-border-bottom-colors - -webkit-border-left-colors - -webkit-border-radius - -webkit-border-right-colors - -webkit-border-top-colors - -webkit-border-top-left-radius - -webkit-border-top-right-radius - -webkit-border-bottom-left-radius - -webkit-border-bottom-right-radius - -webkit-border-radius-bottomleft - -webkit-border-radius-bottomright - -webkit-box-flex - -webkit-box-reflect - -webkit-box-shadow - -webkit-box-sizing - -webkit-column-count - -webkit-column-gap - -webkit-hyphens - -webkit-linear-gradient - -webkit-gradient - -webkit-perspective - -webkit-text-fill-color - -webkit-text-stroke-color - -webkit-text-stroke-width - -webkit-text-size-adjust - -webkit-transform - -webkit-transform-origin - -webkit-transform-style - -webkit-transition - -webkit-transition-property - -webkit-transition-duration - - - zoom - -ms-animation-name - -ms-animation-duration - -ms-animation-iteration - -ms-animation-direction - -ms-animation-delay - -ms-animation-play-state - -ms-animation-fill-mode - -ms-box-sizing - -ms-filter - -ms-interpolation-mode - -ms-linear-gradient - -ms-text-size-adjust - -ms-transform - -ms-transition - - - font-family - font-size - font-stretch - font-style - font-variant - font-weight - unicode-range - units-per-em - src - panose-1 - stemv - stemh - slope - cap-height - x-height - ascent - descent - widths - bbox - definition-src - baseline - centerline - mathline - topline - - - - inherit - none - hidden - dotted - dashed - solid - double - groove - ridge - inset - outset - xx-small - x-small - small - medium - large - x-large - xx-large - smaller - larger - italic - oblique - small-caps - normal - bold - bolder - lighter - light - 100 - 200 - 300 - 400 - 500 - 600 - 700 - 800 - 900 - transparent - repeat - repeat-x - repeat-y - no-repeat - baseline - sub - super - top - text-top - middle - bottom - text-bottom - left - right - center - justify - konq-center - disc - circle - square - box - decimal - decimal-leading-zero - lower-roman - upper-roman - lower-greek - lower-alpha - lower-latin - upper-alpha - upper-latin - hebrew - armenian - georgian - cjk-ideographic - hiragana - katakana - hiragana-iroha - katakana-iroha - inline - inline-block - block - list-item - run-in - compact - marker - table - inline-table - table-row-group - table-header-group - table-footer-group - table-row - table-column-group - table-column - table-cell - table-caption - auto - crosshair - default - pointer - move - e-resize - ne-resize - nw-resize - n-resize - se-resize - sw-resize - s-resize - w-resize - text - wait - help - above - absolute - always - avoid - below - bidi-override - blink - both - capitalize - caption - clip - close-quote - collapse - condensed - crop - cross - ellipsis - ellipsis-word - embed - expanded - extra-condensed - extra-expanded - fixed - hand - hide - higher - icon - inside - invert - landscape - level - line-through - loud - lower - lowercase - ltr - menu - message-box - mix - narrower - no-close-quote - no-open-quote - nowrap - open-quote - outside - overline - portrait - pre - pre-line - pre-wrap - relative - rtl - scroll - semi-condensed - semi-expanded - separate - show - small-caption - static - static-position - status-bar - thick - thin - ultra-condensed - ultra-expanded - underline - uppercase - visible - wider - break - serif - sans-serif - cursive - fantasy - monospace - border-box - content-box - -epub-hyphens - - - - aqua - black - blue - cyan - fuchsia - gray - green - lime - maroon - navy - olive - purple - red - silver - teal - white - yellow - ActiveBorder - ActiveCaption - AppWorkspace - Background - ButtonFace - ButtonHighlight - ButtonShadow - ButtonText - CaptionText - GrayText - Highlight - HighlightText - InactiveBorder - InactiveCaption - InactiveCaptionText - InfoBackground - InfoText - Menu - MenuText - Scrollbar - ThreeDDarkShadow - ThreeDFace - ThreeDHighlight - ThreeDLightShadow - ThreeDShadow - Window - WindowFrame - WindowText - - - - url - attr - rect - rgb - rgba - hsl - hsla - counter - counters - - - local - format - - - expression - - - - - all - aural - braille - embossed - handheld - print - projection - screen - tty - tv - - - - not - only - - - - width - min-width - max-width - height - min-height - max-height - device-width - min-device-width - max-device-width - device-height - min-device-height - max-device-height - orientation - aspect-ratio - min-aspect-ratio - max-aspect-ratio - device-aspect-ratio - min-device-aspect-ratio - max-device-aspect-ratio - color - min-color - max-color - color-index - min-color-index - max-color-index - monochrome - min-monochrome - max-monochrome - resolution - min-resolution - max-resolution - scan - grid - - - - hover - link - visited - active - focus - first-child - last-child - only-child - first-of-type - last-of-type - only-of-type - first-letter - first-line - before - after - selection - root - empty - target - enabled - disabled - checked - indeterminate - nth-child - nth-last-child - nth-of-type - nth-last-of-type - not - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sed.xml ktexteditor-5.31.0/src/syntax/data/sed.xml --- ktexteditor-5.28.0/src/syntax/data/sed.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sed.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,267 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sgml.xml ktexteditor-5.31.0/src/syntax/data/sgml.xml --- ktexteditor-5.28.0/src/syntax/data/sgml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sgml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sieve.xml ktexteditor-5.31.0/src/syntax/data/sieve.xml --- ktexteditor-5.28.0/src/syntax/data/sieve.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sieve.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,67 +0,0 @@ - - - - - - - require - if - elsif - else - discard - stop - fileinto - keep - reject - redirect - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sisu.xml ktexteditor-5.31.0/src/syntax/data/sisu.xml --- ktexteditor-5.28.0/src/syntax/data/sisu.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sisu.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,157 +0,0 @@ - - - - - - class - const - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sml.xml ktexteditor-5.31.0/src/syntax/data/sml.xml --- ktexteditor-5.28.0/src/syntax/data/sml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,104 +0,0 @@ - - - - - - abstype - and - andalso - as - case - do - datatype - else - end - eqtype - exception - false - fn - fun - functor - handle - if - in - include - infix - infixr - let - local - nonfix - of - op - open - orelse - raise - rec - sharing - sig - signature - struct - structure - then - true - type - val - where - with - withtype - while - - - unit - int - real - char - string - substring - word - ref - array - vector - bool - list - option - order - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/spice.xml ktexteditor-5.31.0/src/syntax/data/spice.xml --- ktexteditor-5.28.0/src/syntax/data/spice.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/spice.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sql-mysql.xml ktexteditor-5.31.0/src/syntax/data/sql-mysql.xml --- ktexteditor-5.28.0/src/syntax/data/sql-mysql.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sql-mysql.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,474 +0,0 @@ - - - - - - - ACCESS - ADD - ALL - ALTER - ANALYZE - AND - AS - ASC - AUTO_INCREMENT - BDB - BERKELEYDB - BETWEEN - BOTH - BY - CASCADE - CASE - CHANGE - - CHARSET - COLUMN - COLUMNS - CONSTRAINT - CREATE - CROSS - CURRENT_DATE - CURRENT_TIME - CURRENT_TIMESTAMP - DATABASE - DATABASES - DAY_HOUR - DAY_MINUTE - DAY_SECOND - DEC - DEFAULT - DELAYED - DELETE - DESC - DESCRIBE - DISTINCT - DISTINCTROW - DROP - ELSE - ENCLOSED - ESCAPED - EXISTS - EXPLAIN - FIELDS - FOR - FOREIGN - FROM - FULLTEXT - FUNCTION - GRANT - GROUP - HAVING - HIGH_PRIORITY - IF - IGNORE - IN - INDEX - INFILE - INNER - INNODB - INSERT - INTERVAL - INTO - IS - JOIN - KEY - KEYS - KILL - LEADING - LEFT - LIKE - LIMIT - LINES - LOAD - LOCK - LOW_PRIORITY - MASTER_SERVER_ID - MATCH - MRG_MYISAM - NATIONAL - NATURAL - NOT - NULL - NUMERIC - ON - OPTIMIZE - OPTION - OPTIONALLY - OR - ORDER - OUTER - OUTFILE - PARTIAL - PRECISION - PRIMARY - PRIVILEGES - PROCEDURE - PURGE - READ - REFERENCES - REGEXP - RENAME - REPLACE - REQUIRE - RESTRICT - RETURNS - REVOKE - RIGHT - RLIKE - SELECT - SET - SHOW - SONAME - SQL_BIG_RESULT - SQL_CALC_FOUND_ROWS - SQL_SMALL_RESULT - SSL - STARTING - STRAIGHT_JOIN - STRIPED - TABLE - TABLES - TERMINATED - THEN - TO - TRAILING - TRUNCATE - TYPE - UNION - UNIQUE - UNLOCK - UNSIGNED - UPDATE - USAGE - USE - USER_RESOURCES - USING - VALUES - VARYING - WHEN - WHERE - WHILE - WITH - WRITE - XOR - YEAR_MONTH - ZEROFILL - - - + - - - * - / - || - = - != - <> - < - <= - > - >= - ~= - ^= - := - => - ** - .. - - - - ASCII - BIN - BIT_LENGTH - CHAR - CHARACTER_LENGTH - CHAR_LENGTH - CONCAT - CONCAT_WS - CONV - ELT - EXPORT_SET - FIELD - FIND_IN_SET - HEX - INSERT - INSTR - LCASE - LEFT - LENGTH - LOAD_FILE - LOCATE - LOWER - LPAD - LTRIM - MAKE_SET - MID - OCT - OCTET_LENGTH - ORD - POSITION - QUOTE - REPEAT - REPLACE - REVERSE - RIGHT - RPAD - RTRIM - SOUNDEX - SPACE - SUBSTRING - SUBSTRING_INDEX - TRIM - UCASE - UPPER - - ABS - ACOS - ASIN - ATAN - ATAN2 - CEILING - COS - COT - DEGREES - EXP - FLOOR - GREATEST - LEAST - LN - LOG - LOG10 - LOG2 - MOD - PI - POW - POWER - RADIANS - RAND - ROUND - SIGN - SIN - SQRT - TAN - - ADDDATE - CURDATE - CURRENT_DATE - CURRENT_TIME - CURRENT_TIMESTAMP - CURTIME - DATE_ADD - DATE_FORMAT - DATE_SUB - DAYNAME - DAYOFMONTH - DAYOFWEEK - DAYOFYEAR - EXTRACT - FROM_DAYS - FROM_UNIXTIME - HOUR - MINUTE - MONTH - MONTHNAME - NOW - PERIOD_ADD - PERIOD_DIFF - QUARTER - SECOND - SEC_TO_TIME - SUBDATE - SYSDATE - TIME_FORMAT - TIME_TO_SEC - TO_DAYS - UNIX_TIMESTAMP - WEEK - WEEKDAY - YEAR - YEARWEEK - - CAST - CONVERT - - AES_DECRYPT - AES_ENCRYPT - BENCHMARK - BIT_COUNT - CONNECTION_ID - DATABASE - DECODE - DES_DECRYPT - DES_ENCRYPT - ENCODE - ENCRYPT - FORMAT - FOUND_ROWS - GET_LOCK - INET_ATON - INET_NTOA - IS_FREE_LOCK - LAST_INSERT_ID - MASTER_POS_WAIT - MD5 - PASSWORD - RELEASE_LOCK - SESSION_USER - SHA - SHA1 - SYSTEM_USER - USER - VERSION - - AVG - BIT_AND - BIT_OR - COUNT - MAX - MIN - STD - STDDEV - SUM - - - - BINARY - BLOB - CHAR - CHARACTER - ENUM - LONGBLOB - LONGTEXT - MEDIUMBLOB - MEDIUMTEXT - TEXT - TINYBLOB - TINYTEXT - VARBINARY - VARCHAR - - - BIGINT - BIT - BOOL - BOOLEAN - DEC - DECIMAL - DOUBLE - FIXED - FLOAT - INT - INTEGER - LONG - MEDIUMINT - MIDDLEINT - NUMERIC - TINYINT - REAL - SERIAL - SMALLINT - - DATE - DATETIME - TIME - TIMESTAMP - YEAR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sql-oracle.xml ktexteditor-5.31.0/src/syntax/data/sql-oracle.xml --- ktexteditor-5.28.0/src/syntax/data/sql-oracle.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sql-oracle.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,2174 +0,0 @@ - - - - - - - A - ABORT - ABS - ACCESS - ACCESSED - ACCOUNT - ACOS - ACTIVATE - ACTIVE_COMPONENT - ACTIVE_FUNCTION - ACTIVE_TAG - ADD - ADD_COLUMN - ADD_GROUP - ADD_MONTHS - ADJ_DATE - ADMIN - ADMINISTER - ADMINISTRATOR - ADVISE - ADVISOR - AFTER - ALIAS - ALL - ALLOCATE - ALLOW - ALL_ROWS - ALTER - ALWAYS - ANALYZE - ANCILLARY - AND - AND_EQUAL - ANTIJOIN - ANY - ANYSCHEMA - APPEND - APPENDCHILDXML - APPEND_VALUES - APPLY - ARCHIVE - ARCHIVELOG - ARRAY - AS - ASC - ASCII - ASCIISTR - ASIN - ASSEMBLY - ASSOCIATE - ASYNC - ASYNCHRONOUS - AT - ATAN - ATAN2 - ATTRIBUTE - ATTRIBUTES - AUDIT - AUTHENTICATED - AUTHENTICATION - AUTHID - AUTHORIZATION - AUTO - AUTOALLOCATE - AUTOEXTEND - AUTOMATIC - AVAILABILITY - AVG - BACKUP - BASIC - BASICFILE - BATCH - BECOME - BEFORE - BEGIN - BEGIN_OUTLINE_DATA - BEHALF - BETWEEN - BFILE - BFILENAME - BIGFILE - BINARY - BINARY_DOUBLE - BINARY_DOUBLE_INFINITY - BINARY_DOUBLE_NAN - BINARY_FLOAT - BINARY_FLOAT_INFINITY - BINARY_FLOAT_NAN - BIND_AWARE - BINDING - BIN_TO_NUM - BITAND - BITMAP - BITMAPS - BITMAP_TREE - BITS - BLOB - BLOCK - BLOCK_RANGE - BLOCKS - BLOCKSIZE - BODY - BOTH - BOUND - BRANCH - BREADTH - BROADCAST - BUFFER - BUFFER_CACHE - BUFFER_POOL - BUILD - BULK - BY - BYPASS_RECURSIVE_CHECK - BYPASS_UJVC - BYTE - CACHE - CACHE_CB - CACHE_INSTANCES - CACHE_TEMP_TABLE - CALL - CANCEL - CARDINALITY - CASCADE - CASE - CAST - CATEGORY - CEIL - CELL_FLASH_CACHE - CERTIFICATE - CFILE - CHAINED - CHANGE - CHANGE_DUPKEY_ERROR_INDEX - CHAR - CHARACTER - CHAR_CS - CHARTOROWID - CHECK - CHECK_ACL_REWRITE - CHECKPOINT - CHILD - CHOOSE - CHR - CHUNK - CLASS - CLEAR - CLOB - CLONE - CLOSE - CLOSE_CACHED_OPEN_CURSORS - CLUSTER - CLUSTER_ID - CLUSTERING_FACTOR - CLUSTER_PROBABILITY - CLUSTER_SET - COALESCE - COALESCE_SQ - COARSE - CO_AUTH_IND - COLD - COLLECT - COLUMN - COLUMNAR - COLUMN_AUTH_INDICATOR - COLUMNS - COLUMN_STATS - COLUMN_VALUE - COMMENT - COMMIT - COMMITTED - COMPACT - COMPATIBILITY - COMPILE - COMPLETE - COMPLIANCE - COMPOSE - COMPOSITE - COMPOSITE_LIMIT - COMPOUND - COMPRESS - COMPUTE - CONCAT - CONFIRM - CONFORMING - CONNECT - CONNECT_BY_CB_WHR_ONLY - CONNECT_BY_COMBINE_SW - CONNECT_BY_COST_BASED - CONNECT_BY_ELIM_DUPS - CONNECT_BY_FILTERING - CONNECT_BY_ISCYCLE - CONNECT_BY_ISLEAF - CONNECT_BY_ROOT - CONNECT_TIME - CONSIDER - CONSISTENT - CONST - CONSTANT - CONSTRAINT - CONSTRAINTS - CONTAINER - CONTENT - CONTENTS - CONTEXT - CONTINUE - CONTROLFILE - CONVERT - CORR - CORR_K - CORR_S - CORRUPTION - CORRUPT_XID - CORRUPT_XID_ALL - COS - COSH - COST - COST_XML_QUERY_REWRITE - COUNT - COVAR_POP - COVAR_SAMP - CPU_COSTING - CPU_PER_CALL - CPU_PER_SESSION - CRASH - CREATE - CREATE_STORED_OUTLINES - CREATION - CROSS - CROSSEDITION - CSCONVERT - CUBE - CUBE_GB - CUME_DIST - CUME_DISTM - CURRENT - CURRENT_DATE - CURRENT_SCHEMA - CURRENT_TIME - CURRENT_TIMESTAMP - CURRENT_USER - CURRENTV - CURSOR - CURSOR_SHARING_EXACT - CURSOR_SPECIFIC_SEGMENT - CV - CYCLE - D - DANGLING - DATA - DATABASE - DATABASE_DEFAULT - DATAFILE - DATAFILES - DATAOBJNO - DATAOBJ_TO_PARTITION - DATE - DATE_MODE - DAY - DBA - DBA_RECYCLEBIN - DBMS_STATS - DB_ROLE_CHANGE - DBTIMEZONE - DB_VERSION - DDL - DEALLOCATE - DEBUG - DEBUGGER - DEC - DECIMAL - DECLARE - DECODE - DECOMPOSE - DECR - DECREMENT - DECRYPT - DEDUPLICATE - DEFAULT - DEFAULTS - DEFERRABLE - DEFERRED - DEFINED - DEFINER - DEGREE - DELAY - DELETE - DELETEXML - DEMAND - DENSE_RANK - DENSE_RANKM - DEPENDENT - DEPTH - DEQUEUE - DEREF - DEREF_NO_REWRITE - DESC - DETACHED - DETERMINES - DICTIONARY - DIMENSION - DIRECT_LOAD - DIRECTORY - DISABLE - DISABLE_PRESET - DISABLE_RPKE - DISALLOW - DISASSOCIATE - DISCONNECT - DISK - DISKGROUP - DISKS - DISMOUNT - DISTINCT - DISTINGUISHED - DISTRIBUTED - DML - DML_UPDATE - DOCFIDELITY - DOCUMENT - DOMAIN_INDEX_FILTER - DOMAIN_INDEX_NO_SORT - DOMAIN_INDEX_SORT - DOUBLE - DOWNGRADE - DRIVING_SITE - DROP - DROP_COLUMN - DROP_GROUP - DST_UPGRADE_INSERT_CONV - DUMP - DYNAMIC - DYNAMIC_SAMPLING - DYNAMIC_SAMPLING_EST_CDN - E - EACH - EDITION - EDITIONING - EDITIONS - ELEMENT - ELIMINATE_JOIN - ELIMINATE_OBY - ELIMINATE_OUTER_JOIN - ELSE - EMPTY - EMPTY_BLOB - EMPTY_CLOB - ENABLE - ENABLE_PRESET - ENCODING - ENCRYPT - ENCRYPTION - END - END_OUTLINE_DATA - ENFORCE - ENFORCED - ENQUEUE - ENTERPRISE - ENTITYESCAPING - ENTRY - ERROR - ERROR_ARGUMENT - ERROR_ON_OVERLAP_TIME - ERRORS - ESCAPE - ESTIMATE - EVALNAME - EVALUATION - EVENTS - EVERY - EXCEPT - EXCEPTIONS - EXCHANGE - EXCLUDE - EXCLUDING - EXCLUSIVE - EXECUTE - EXEMPT - EXISTS - EXISTSNODE - EXP - EXPAND_GSET_TO_UNION - EXPAND_TABLE - EXPIRE - EXPLAIN - EXPLOSION - EXPORT - EXPR_CORR_CHECK - EXTENDS - EXTENT - EXTENTS - EXTERNAL - EXTERNALLY - EXTRA - EXTRACT - EXTRACTVALUE - FACILITY - FACT - FACTORIZE_JOIN - FAILED - FAILED_LOGIN_ATTEMPTS - FAILGROUP - FALSE - FAST - FBTSCAN - FEATURE_ID - FEATURE_SET - FEATURE_VALUE - FILE - FILESYSTEM_LIKE_LOGGING - FILTER - FINAL - FINE - FINISH - FIRST - FIRSTM - FIRST_ROWS - FIRST_VALUE - FLAGGER - FLASHBACK - FLASH_CACHE - FLOAT - FLOB - FLOOR - FLUSH - FOLDER - FOLLOWING - FOLLOWS - FOR - FORCE - FORCE_XML_QUERY_REWRITE - FOREIGN - FOREVER - FORWARD - FREELIST - FREELISTS - FREEPOOLS - FRESH - FROM - FROM_TZ - FULL - FUNCTION - FUNCTIONS - G - GATHER_PLAN_STATISTICS - GBY_CONC_ROLLUP - GBY_PUSHDOWN - GENERATED - GLOBAL - GLOBALLY - GLOBAL_NAME - GLOBAL_TOPIC_ENABLED - GRANT - GREATEST - GROUP - GROUP_BY - GROUP_ID - GROUPING - GROUPING_ID - GROUPS - GUARANTEE - GUARANTEED - GUARD - H - HASH - HASH_AJ - HASHKEYS - HASH_SJ - HAVING - HEADER - HEAP - HELP - HEXTORAW - HEXTOREF - HIDDEN - HIDE - HIERARCHY - HIGH - HINTSET_BEGIN - HINTSET_END - HOT - HOUR - HWM_BROKERED - HYBRID - ID - IDENTIFIED - IDENTIFIER - IDENTITY - IDGENERATORS - IDLE_TIME - IF - IGNORE - IGNORE_OPTIM_EMBEDDED_HINTS - IGNORE_ROW_ON_DUPKEY_INDEX - IGNORE_WHERE_CLAUSE - IMMEDIATE - IMPACT - IMPORT - IN - INCLUDE - INCLUDE_VERSION - INCLUDING - INCR - INCREMENT - INCREMENTAL - INDENT - INDEX - INDEX_ASC - INDEX_COMBINE - INDEX_DESC - INDEXED - INDEXES - INDEX_FFS - INDEX_FILTER - INDEX_JOIN - INDEX_ROWS - INDEX_RRS - INDEX_RS - INDEX_RS_ASC - INDEX_RS_DESC - INDEX_SCAN - INDEX_SKIP_SCAN - INDEX_SS - INDEX_SS_ASC - INDEX_SS_DESC - INDEX_STATS - INDEXTYPE - INDEXTYPES - INDICATOR - INFINITE - INFORMATIONAL - INITCAP - INITIAL - INITIALIZED - INITIALLY - INITRANS - INLINE - INLINE_XMLTYPE_NT - IN_MEMORY_METADATA - INNER - INSERT - INSERTCHILDXML - INSERTCHILDXMLAFTER - INSERTCHILDXMLBEFORE - INSERTXMLAFTER - INSERTXMLBEFORE - INSTANCE - INSTANCES - INSTANTIABLE - INSTANTLY - INSTEAD - INSTR - INSTRB - INSTRC - INSTR2 - INSTR4 - INT - INTEGER - INTERMEDIATE - INTERNAL_CONVERT - INTERNAL_USE - INTERPRETED - INTERSECT - INTERVAL - INTO - INVALIDATE - INVISIBLE - IN_XQUERY - IS - ISOLATION - ISOLATION_LEVEL - ITERATE - ITERATION_NUMBER - JAVA - JOB - JOIN - K - KEEP - KEEP_DUPLICATES - KERBEROS - KEY - KEY_LENGTH - KEYS - KEYSIZE - KILL - LAG - LAST - LAST_DAY - LAST_VALUE - LATERAL - LAYER - LDAP_REGISTRATION - LDAP_REGISTRATION_ENABLED - LDAP_REG_SYNC_INTERVAL - LEAD - LEADING - LEAST - LEFT - LENGTH - LENGTHB - LENGTHC - LENGTH2 - LENGTH4 - LESS - LEVEL - LEVELS - LIBRARY - LIFE - LIFETIME - LIKE - LIKEC - LIKE_EXPAND - LIKE2 - LIKE4 - LIMIT - LINK - LIST - LISTAGG - LN - LNNVL - LOB - LOBNVL - LOBS - LOCAL - LOCAL_INDEXES - LOCALTIME - LOCALTIMESTAMP - LOCATION - LOCATOR - LOCK - LOCKED - LOG - LOGFILE - LOGFILES - LOGGING - LOGICAL - LOGICAL_READS_PER_CALL - LOGICAL_READS_PER_SESSION - LOGOFF - LOGON - LONG - LOOP - LOW - LOWER - LPAD - LTRIM - M - MAIN - MAKE_REF - MANAGE - MANAGED - MANAGEMENT - MANUAL - MAPPING - MASTER - MATCHED - MATERIALIZE - MATERIALIZED - MAX - MAXARCHLOGS - MAXDATAFILES - MAXEXTENTS - MAXIMIZE - MAXINSTANCES - MAXLOGFILES - MAXLOGHISTORY - MAXLOGMEMBERS - MAXSIZE - MAXTRANS - MAXVALUE - MEASURE - MEASURES - MEDIAN - MEDIUM - MEMBER - MEMORY - MERGE - MERGE$ACTIONS - MERGE_AJ - MERGE_CONST_ON - MERGE_SJ - METHOD - MIGRATE - MIGRATION - MIN - MINEXTENTS - MINIMIZE - MINIMUM - MINING - MINUS - MINUS_NULL - MINUTE - MINVALUE - MIRROR - MIRRORCOLD - MIRRORHOT - MLSLABEL - MOD - MODE - MODEL - MODEL_COMPILE_SUBQUERY - MODEL_DONTVERIFY_UNIQUENESS - MODEL_DYNAMIC_SUBQUERY - MODEL_MIN_ANALYSIS - MODEL_NO_ANALYSIS - MODEL_PBY - MODEL_PUSH_REF - MODIFY - MONITOR - MONITORING - MONTH - MONTHS_BETWEEN - MOUNT - MOUNTPATH - MOVE - MOVEMENT - MULTISET - MV_MERGE - NAME - NAMED - NAMESPACE - NAN - NANVL - NATIONAL - NATIVE - NATIVE_FULL_OUTER_JOIN - NATURAL - NAV - NCHAR - NCHAR_CS - NCHR - NCLOB - NEEDED - NESTED - NESTED_TABLE_FAST_INSERT - NESTED_TABLE_GET_REFS - NESTED_TABLE_ID - NESTED_TABLE_SET_REFS - NESTED_TABLE_SET_SETID - NETWORK - NEVER - NEW - NEW_TIME - NEXT - NEXT_DAY - NL_AJ - NLJ_BATCHING - NLJ_INDEX_FILTER - NLJ_INDEX_SCAN - NLJ_PREFETCH - NLS_CALENDAR - NLS_CHARACTERSET - NLS_CHARSET_DECL_LEN - NLS_CHARSET_ID - NLS_CHARSET_NAME - NLS_COMP - NLS_CURRENCY - NLS_DATE_FORMAT - NLS_DATE_LANGUAGE - NLS_INITCAP - NLS_ISO_CURRENCY - NL_SJ - NLS_LANG - NLS_LANGUAGE - NLS_LENGTH_SEMANTICS - NLS_LOWER - NLS_NCHAR_CONV_EXCP - NLS_NUMERIC_CHARACTERS - NLS_SORT - NLSSORT - NLS_SPECIAL_CHARS - NLS_TERRITORY - NLS_UPPER - NO - NO_ACCESS - NOAPPEND - NOARCHIVELOG - NOAUDIT - NO_BASETABLE_MULTIMV_REWRITE - NO_BIND_AWARE - NO_BUFFER - NOCACHE - NO_CARTESIAN - NO_CHECK_ACL_REWRITE - NO_COALESCE_SQ - NOCOMPRESS - NO_CONNECT_BY_CB_WHR_ONLY - NO_CONNECT_BY_COMBINE_SW - NO_CONNECT_BY_COST_BASED - NO_CONNECT_BY_ELIM_DUPS - NO_CONNECT_BY_FILTERING - NO_COST_XML_QUERY_REWRITE - NO_CPU_COSTING - NOCPU_COSTING - NOCYCLE - NODELAY - NO_DOMAIN_INDEX_FILTER - NO_DST_UPGRADE_INSERT_CONV - NO_ELIMINATE_JOIN - NO_ELIMINATE_OBY - NO_ELIMINATE_OUTER_JOIN - NOENTITYESCAPING - NO_EXPAND - NO_EXPAND_GSET_TO_UNION - NO_EXPAND_TABLE - NO_FACT - NO_FACTORIZE_JOIN - NO_FILTERING - NOFORCE - NO_GBY_PUSHDOWN - NOGUARANTEE - NO_INDEX - NO_INDEX_FFS - NO_INDEX_SS - NO_LOAD - NOLOCAL - NOLOGGING - NOMAPPING - NOMAXVALUE - NO_MERGE - NOMINIMIZE - NOMINVALUE - NO_MODEL_PUSH_REF - NO_MONITOR - NO_MONITORING - NOMONITORING - NO_MULTIMV_REWRITE - NO_NATIVE_FULL_OUTER_JOIN - NONE - NO_NLJ_BATCHING - NO_NLJ_PREFETCH - NONSCHEMA - NOORDER - NO_ORDER_ROLLUPS - NO_OUTER_JOIN_TO_INNER - NOOVERRIDE - NO_PARALLEL - NOPARALLEL - NO_PARALLEL_INDEX - NOPARALLEL_INDEX - NO_PARTIAL_COMMIT - NO_PLACE_DISTINCT - NO_PLACE_GROUP_BY - NO_PQ_MAP - NO_PRUNE_GSETS - NO_PULL_PRED - NO_PUSH_PRED - NO_PUSH_SUBQ - NO_PX_JOIN_FILTER - NO_QKN_BUFF - NO_QUERY_TRANSFORMATION - NO_REF_CASCADE - NORELY - NOREPAIR - NORESETLOGS - NO_RESULT_CACHE - NOREVERSE - NO_REWRITE - NOREWRITE - NORMAL - NOROWDEPENDENCIES - NOSCHEMACHECK - NOSEGMENT - NO_SEMIJOIN - NO_SET_TO_JOIN - NOSORT - NO_SQL_TUNE - NO_STAR_TRANSFORMATION - NO_STATEMENT_QUEUING - NO_STATS_GSETS - NOSTRICT - NO_SUBQUERY_PRUNING - NO_SUBSTRB_PAD - NO_SWAP_JOIN_INPUTS - NOSWITCH - NOT - NO_TEMP_TABLE - NOTHING - NOTIFICATION - NO_TRANSFORM_DISTINCT_AGG - NO_UNNEST - NO_USE_HASH - NO_USE_HASH_AGGREGATION - NO_USE_INVISIBLE_INDEXES - NO_USE_MERGE - NO_USE_NL - NOVALIDATE - NOWAIT - NO_XML_DML_REWRITE - NO_XMLINDEX_REWRITE - NO_XMLINDEX_REWRITE_IN_SELECT - NO_XML_QUERY_REWRITE - NTH_VALUE - NTILE - NULL - NULLIF - NULLS - NUMBER - NUMERIC - NUM_INDEX_KEYS - NUMTODSINTERVAL - NUMTOYMINTERVAL - NVARCHAR2 - NVL - NVL2 - OBJECT - OBJECTTOXML - OBJNO - OBJNO_REUSE - OCCURENCES - OF - OFF - OFFLINE - OID - OIDINDEX - OLAP - OLD - OLD_PUSH_PRED - OLTP - ON - ONLINE - ONLY - OPAQUE - OPAQUE_TRANSFORM - OPAQUE_XCANONICAL - OPCODE - OPEN - OPERATIONS - OPERATOR - OPT_ESTIMATE - OPTIMAL - OPTIMIZER_FEATURES_ENABLE - OPTIMIZER_GOAL - OPTION - OPT_PARAM - OR - ORA_BRANCH - ORA_CHECKACL - ORADEBUG - ORA_DST_AFFECTED - ORA_DST_CONVERT - ORA_DST_ERROR - ORA_GET_ACLIDS - ORA_GET_PRIVILEGES - ORA_HASH - ORA_ROWSCN - ORA_ROWSCN_RAW - ORA_ROWVERSION - ORA_TABVERSION - ORDER - ORDERED - ORDERED_PREDICATES - ORDINALITY - OR_EXPAND - ORGANIZATION - OR_PREDICATES - OTHER - OUTER - OUTER_JOIN_TO_INNER - OUTLINE - OUTLINE_LEAF - OUT_OF_LINE - OVER - OVERFLOW - OVERFLOW_NOMOVE - OVERLAPS - OWN - OWNER - OWNERSHIP - P - PACKAGE - PACKAGES - PARALLEL - PARALLEL_INDEX - PARAM - PARAMETERS - PARENT - PARITY - PARTIALLY - PARTITION - PARTITION_HASH - PARTITION_LIST - PARTITION_RANGE - PARTITIONS - PART$NUM$INST - PASSING - PASSWORD - PASSWORD_GRACE_TIME - PASSWORD_LIFE_TIME - PASSWORD_LOCK_TIME - PASSWORD_REUSE_MAX - PASSWORD_REUSE_TIME - PASSWORD_VERIFY_FUNCTION - PATH - PATHS - PBL_HS_BEGIN - PBL_HS_END - PCTFREE - PCTINCREASE - PCTTHRESHOLD - PCTUSED - PCTVERSION - PENDING - PERCENT - PERCENTILE_CONT - PERCENTILE_DISC - PERCENT_RANK - PERCENT_RANKM - PERFORMANCE - PERMANENT - PERMISSION - PFILE - PHYSICAL - PIKEY - PIV_GB - PIVOT - PIV_SSF - PLACE_DISTINCT - PLACE_GROUP_BY - PLAN - PLSCOPE_SETTINGS - PLSQL_CCFLAGS - PLSQL_CODE_TYPE - PLSQL_DEBUG - PLSQL_OPTIMIZE_LEVEL - PLSQL_WARNINGS - POINT - POLICY - POST_TRANSACTION - POWER - POWERMULTISET - POWERMULTISET_BY_CARDINALITY - PQ_DISTRIBUTE - PQ_MAP - PQ_NOMAP - PREBUILT - PRECEDES - PRECEDING - PRECISION - PRECOMPUTE_SUBQUERY - PREDICATE_REORDERS - PREDICTION - PREDICTION_BOUNDS - PREDICTION_COST - PREDICTION_DETAILS - PREDICTION_PROBABILITY - PREDICTION_SET - PREPARE - PRESENT - PRESENTNNV - PRESENTV - PRESERVE - PRESERVE_OID - PREVIOUS - PRIMARY - PRIOR - PRIVATE - PRIVATE_SGA - PRIVILEGE - PRIVILEGES - PROCEDURAL - PROCEDURE - PROCESS - PROFILE - PROGRAM - PROJECT - PROPAGATE - PROTECTED - PROTECTION - PUBLIC - PULL_PRED - PURGE - PUSH_PRED - PUSH_SUBQ - PX_GRANULE - PX_JOIN_FILTER - QB_NAME - QUERY - QUERY_BLOCK - QUEUE - QUEUE_CURR - QUEUE_ROWP - QUIESCE - QUORUM - QUOTA - RANDOM - RANDOM_LOCAL - RANGE - RANK - RANKM - RAPIDLY - RATIO_TO_REPORT - RAW - RAWTOHEX - RAWTONHEX - RBA - RBO_OUTLINE - RDBA - READ - READS - REAL - REBALANCE - REBUILD - RECORDS_PER_BLOCK - RECOVER - RECOVERABLE - RECOVERY - RECYCLE - RECYCLEBIN - REDO - REDUCED - REDUNDANCY - REF - REF_CASCADE_CURSOR - REFERENCE - REFERENCED - REFERENCES - REFERENCING - REFRESH - REFTOHEX - REGEXP_COUNT - REGEXP_INSTR - REGEXP_LIKE - REGEXP_REPLACE - REGEXP_SUBSTR - REGISTER - REGR_AVGX - REGR_AVGY - REGR_COUNT - REGR_INTERCEPT - REGR_R2 - REGR_SLOPE - REGR_SXX - REGR_SXY - REGR_SYY - REGULAR - REJECT - REKEY - RELATIONAL - RELY - REMAINDER - REMOTE_MAPPED - REMOVE - RENAME - REPAIR - REPEAT - REPLACE - REPLICATION - REQUIRED - RESET - RESETLOGS - RESIZE - RESOLVE - RESOLVER - RESOURCE - RESPECT - RESTORE - RESTORE_AS_INTERVALS - RESTRICT - RESTRICT_ALL_REF_CONS - RESTRICTED - RESULT_CACHE - RESUMABLE - RESUME - RETENTION - RETRY_ON_ROW_CHANGE - RETURN - RETURNING - REUSE - REVERSE - REVOKE - REWRITE - REWRITE_OR_ERROR - RIGHT - ROLE - ROLES - ROLLBACK - ROLLING - ROLLUP - ROUND - ROW - ROWDEPENDENCIES - ROWID - ROWIDTOCHAR - ROWIDTONCHAR - ROW_LENGTH - ROWNUM - ROW_NUMBER - ROWS - RPAD - RTRIM - RULE - RULES - SALT - SAMPLE - SAVE_AS_INTERVALS - SAVEPOINT - SB4 - SCALE - SCALE_ROWS - SCAN - SCAN_INSTANCES - SCHEDULER - SCHEMA - SCHEMACHECK - SCN - SCN_ASCENDING - SCOPE - SD_ALL - SD_INHIBIT - SD_SHOW - SEARCH - SECOND - SECUREFILE - SECUREFILE_DBA - SECURITY - SEED - SEG_BLOCK - SEG_FILE - SEGMENT - SELECT - SELECTIVITY - SEMIJOIN - SEMIJOIN_DRIVER - SEQUENCE - SEQUENCED - SEQUENTIAL - SERIALIZABLE - SERVERERROR - SESSION - SESSION_CACHED_CURSORS - SESSIONS_PER_USER - SESSIONTIMEZONE - SESSIONTZNAME - SET - SETS - SETTINGS - SET_TO_JOIN - SEVERE - SHARE - SHARED - SHARED_POOL - SHOW - SHRINK - SHUTDOWN - SIBLINGS - SID - SIGN - SIGNAL_COMPONENT - SIGNAL_FUNCTION - SIMPLE - SIN - SINGLE - SINGLETASK - SINH - SIZE - SKIP - SKIP_EXT_OPTIMIZER - SKIP_UNQ_UNUSABLE_IDX - SKIP_UNUSABLE_INDEXES - SMALLFILE - SMALLINT - SNAPSHOT - SOME - SORT - SOUNDEX - SOURCE - SPACE - SPECIFICATION - SPFILE - SPLIT - SPREADSHEET - SQL - SQLLDR - SQL_TRACE - SQRT - STALE - STANDALONE - STANDBY - STANDBY_MAX_DATA_DELAY - STAR - START - STAR_TRANSFORMATION - STARTUP - STATEMENT_ID - STATEMENT_QUEUING - STATEMENTS - STATIC - STATISTICS - STATS_BINOMIAL_TEST - STATS_CROSSTAB - STATS_F_TEST - STATS_KS_TEST - STATS_MODE - STATS_MW_TEST - STATS_ONE_WAY_ANOVA - STATS_T_TEST_INDEP - STATS_T_TEST_INDEPU - STATS_T_TEST_ONE - STATS_T_TEST_PAIRED - STATS_WSR_TEST - STDDEV - STDDEV_POP - STDDEV_SAMP - STOP - STORAGE - STORE - STREAMS - STRICT - STRING - STRIP - STRIPE_COLUMNS - STRIPE_WIDTH - STRUCTURE - SUBMULTISET - SUBPARTITION - SUBPARTITION_REL - SUBPARTITIONS - SUBQUERIES - SUBQUERY_PRUNING - SUBSTITUTABLE - SUBSTR - SUBSTRB - SUBSTRC - SUBSTR2 - SUBSTR4 - SUCCESSFUL - SUM - SUMMARY - SUPPLEMENTAL - SUSPEND - SWAP_JOIN_INPUTS - SWITCH - SWITCHOVER - SYNC - SYNCHRONOUS - SYNONYM - SYSASM - SYS_AUDIT - SYSAUX - SYS_CHECKACL - SYS_CONNECT_BY_PATH - SYS_CONTEXT - SYSDATE - SYSDBA - SYS_DBURIGEN - SYS_DL_CURSOR - SYS_DM_RXFORM_CHR - SYS_DM_RXFORM_NUM - SYS_DOM_COMPARE - SYS_DST_PRIM2SEC - SYS_DST_SEC2PRIM - SYS_ET_BFILE_TO_RAW - SYS_ET_BLOB_TO_IMAGE - SYS_ET_IMAGE_TO_BLOB - SYS_ET_RAW_TO_BFILE - SYS_EXTPDTXT - SYS_EXTRACT_UTC - SYS_FBT_INSDEL - SYS_FILTER_ACLS - SYS_GET_ACLIDS - SYS_GET_PRIVILEGES - SYS_GETTOKENID - SYS_GUID - SYS_MAKEXML - SYS_MAKE_XMLNODEID - SYS_MKXMLATTR - SYS_OP_ADTCONS - SYS_OP_ADT2BIN - SYS_OP_ALSCRVAL - SYS_OP_ATG - SYS_OP_BIN2ADT - SYS_OP_BITVEC - SYS_OP_BLOOM_FILTER - SYS_OP_BLOOM_FILTER_LIST - SYS_OP_BL2R - SYS_OP_CAST - SYS_OP_CEG - SYS_OP_CL2C - SYS_OP_COMBINED_HASH - SYS_OP_COMP - SYS_OP_CONVERT - SYS_OP_COUNTCHG - SYS_OP_CSCONV - SYS_OP_CSCONVTEST - SYS_OP_CSR - SYS_OP_CSX_PATCH - SYS_OP_C2C - SYS_OP_DECOMP - SYS_OP_DESCEND - SYS_OP_DISTINCT - SYS_OP_DRA - SYS_OP_DUMP - SYS_OP_ENFORCE_NOT_NULL$ - SYSOPER - SYS_OP_EXTRACT - SYS_OP_GROUPING - SYS_OP_GUID - SYS_OP_IIX - SYS_OP_ITR - SYS_OP_LBID - SYS_OP_LOBLOC2BLOB - SYS_OP_LOBLOC2CLOB - SYS_OP_LOBLOC2ID - SYS_OP_LOBLOC2NCLOB - SYS_OP_LOBLOC2TYP - SYS_OP_LSVI - SYS_OP_LVL - SYS_OP_MAKEOID - SYS_OP_MAP_NONNULL - SYS_OP_MSR - SYS_OP_NICOMBINE - SYS_OP_NIEXTRACT - SYS_OP_NII - SYS_OP_NIX - SYS_OP_NOEXPAND - SYS_OP_NTCIMG$ - SYS_OP_NUMTORAW - SYS_OP_OIDVALUE - SYS_OP_OPNSIZE - SYS_OP_PAR - SYS_OP_PARGID - SYS_OP_PARGID_1 - SYS_OP_PAR_1 - SYS_OP_PIVOT - SYS_OP_RAWTONUM - SYS_OP_RDTM - SYS_OP_REF - SYS_OP_RMTD - SYS_OP_ROWIDTOOBJ - SYS_OP_RPB - SYS_OP_R2O - SYS_OPTLOBPRBSC - SYS_OP_TOSETID - SYS_OP_TPR - SYS_OP_TRTB - SYS_OPTXICMP - SYS_OPTXQCASTASNQ - SYS_OP_UNDESCEND - SYS_OP_VECAND - SYS_OP_VECBIT - SYS_OP_VECOR - SYS_OP_VECXOR - SYS_OP_VERSION - SYS_OP_VREF - SYS_OP_VVD - SYS_OP_XPTHATG - SYS_OP_XPTHIDX - SYS_OP_XPTHOP - SYS_OP_XTXT2SQLT - SYS_ORDERKEY_DEPTH - SYS_ORDERKEY_MAXCHILD - SYS_ORDERKEY_PARENT - SYS_PARALLEL_TXN - SYS_PATHID_IS_ATTR - SYS_PATHID_IS_NMSPC - SYS_PATHID_LASTNAME - SYS_PATHID_LASTNMSPC - SYS_PATH_REVERSE - SYS_PXQEXTRACT - SYS_RID_ORDER - SYS_ROW_DELTA - SYS_SC_2_XMLT - SYS_SYNRCIREDO - SYSTEM - SYSTEM_DEFINED - SYSTIMESTAMP - SYS_TYPEID - SYS_UMAKEXML - SYS_XMLANALYZE - SYS_XMLCONTAINS - SYS_XMLCONV - SYS_XMLEXNSURI - SYS_XMLGEN - SYS_XMLI_LOC_ISNODE - SYS_XMLI_LOC_ISTEXT - SYS_XMLLOCATOR_GETSVAL - SYS_XMLNODEID - SYS_XMLNODEID_GETCID - SYS_XMLNODEID_GETLOCATOR - SYS_XMLNODEID_GETOKEY - SYS_XMLNODEID_GETPATHID - SYS_XMLNODEID_GETPTRID - SYS_XMLNODEID_GETRID - SYS_XMLNODEID_GETSVAL - SYS_XMLNODEID_GETTID - SYS_XMLTRANSLATE - SYS_XMLTYPE2SQL - SYS_XMLT_2_SC - SYS_XQ_ASQLCNV - SYS_XQ_ATOMCNVCHK - SYS_XQBASEURI - SYS_XQCASTABLEERRH - SYS_XQCODEPEQ - SYS_XQCODEP2STR - SYS_XQCONCAT - SYS_XQCON2SEQ - SYS_XQDELETE - SYS_XQDFLTCOLATION - SYS_XQDOC - SYS_XQDOCURI - SYS_XQED4URI - SYS_XQENDSWITH - SYS_XQERR - SYS_XQERRH - SYS_XQESHTMLURI - SYS_XQEXLOBVAL - SYS_XQEXSTWRP - SYS_XQEXTRACT - SYS_XQEXTRREF - SYS_XQEXVAL - SYS_XQFB2STR - SYS_XQFNBOOL - SYS_XQFNCMP - SYS_XQFNDATIM - SYS_XQFNLNAME - SYS_XQFNNM - SYS_XQFNNSURI - SYS_XQFNPREDTRUTH - SYS_XQFNQNM - SYS_XQFNROOT - SYS_XQFORMATNUM - SYS_XQFTCONTAIN - SYS_XQFUNCR - SYS_XQGETCONTENT - SYS_XQINDXOF - SYS_XQINSERT - SYS_XQINSPFX - SYS_XQIRI2URI - SYS_XQLANG - SYS_XQLLNMFRMQNM - SYS_XQMKNODEREF - SYS_XQNILLED - SYS_XQNODENAME - SYS_XQNORMSPACE - SYS_XQNORMUCODE - SYS_XQ_NRNG - SYS_XQNSPFRMQNM - SYS_XQNSP4PFX - SYS_XQPFXFRMQNM - SYS_XQ_PKSQL2XML - SYS_XQPOLYABS - SYS_XQPOLYADD - SYS_XQPOLYCEL - SYS_XQPOLYCST - SYS_XQPOLYCSTBL - SYS_XQPOLYDIV - SYS_XQPOLYFLR - SYS_XQPOLYMOD - SYS_XQPOLYMUL - SYS_XQPOLYRND - SYS_XQPOLYSQRT - SYS_XQPOLYSUB - SYS_XQPOLYUMUS - SYS_XQPOLYUPLS - SYS_XQPOLYVEQ - SYS_XQPOLYVGE - SYS_XQPOLYVGT - SYS_XQPOLYVLE - SYS_XQPOLYVLT - SYS_XQPOLYVNE - SYS_XQREF2VAL - SYS_XQRENAME - SYS_XQREPLACE - SYS_XQRESVURI - SYS_XQRNDHALF2EVN - SYS_XQRSLVQNM - SYS_XQRYENVPGET - SYS_XQRYVARGET - SYS_XQRYWRP - SYS_XQSEQDEEPEQ - SYS_XQSEQINSB - SYS_XQSEQRM - SYS_XQSEQRVS - SYS_XQSEQSUB - SYS_XQSEQTYPMATCH - SYS_XQSEQ2CON - SYS_XQSEQ2CON4XC - SYS_XQSTARTSWITH - SYS_XQSTATBURI - SYS_XQSTRJOIN - SYS_XQSTR2CODEP - SYS_XQSUBSTRAFT - SYS_XQSUBSTRBEF - SYS_XQTOKENIZE - SYS_XQTREATAS - SYS_XQ_UPKXML2SQL - SYS_XQXFORM - T - TABLE - TABLES - TABLESPACE - TABLESPACE_NO - TABLE_STATS - TABNO - TAN - TANH - TBL$OR$IDX$PART$NUM - TEMPFILE - TEMPLATE - TEMPORARY - TEMP_TABLE - TEST - THAN - THE - THEN - THREAD - THROUGH - TIME - TIMEOUT - TIMES - TIMESTAMP - TIME_ZONE - TIMEZONE_ABBR - TIMEZONE_HOUR - TIMEZONE_MINUTE - TIMEZONE_OFFSET - TIMEZONE_REGION - TIV_GB - TIV_SSF - TO - TO_BINARY_DOUBLE - TO_BINARY_FLOAT - TO_BLOB - TO_CHAR - TO_CLOB - TO_DATE - TO_DSINTERVAL - TO_LOB - TO_MULTI_BYTE - TO_NCHAR - TO_NCLOB - TO_NUMBER - TOPLEVEL - TO_SINGLE_BYTE - TO_TIME - TO_TIMESTAMP - TO_TIMESTAMP_TZ - TO_TIME_TZ - TO_YMINTERVAL - TRACE - TRACING - TRACKING - TRAILING - TRANSACTION - TRANSFORM_DISTINCT_AGG - TRANSITION - TRANSITIONAL - TRANSLATE - TREAT - TRIGGER - TRIGGERS - TRIM - TRUE - TRUNC - TRUNCATE - TRUSTED - TUNING - TX - TYPE - TYPES - TZ_OFFSET - U - UBA - UB2 - UID - UNARCHIVED - UNBOUND - UNBOUNDED - UNDER - UNDO - UNDROP - UNIFORM - UNION - UNIQUE - UNISTR - UNLIMITED - UNLOCK - UNNEST - UNPACKED - UNPIVOT - UNPROTECTED - UNQUIESCE - UNRECOVERABLE - UNRESTRICTED - UNTIL - UNUSABLE - UNUSED - UPDATABLE - UPDATE - UPDATED - UPDATEXML - UPD_INDEXES - UPD_JOININDEX - UPGRADE - UPPER - UPSERT - UROWID - USAGE - USE - USE_ANTI - USE_CONCAT - USE_HASH - USE_HASH_AGGREGATION - USE_INVISIBLE_INDEXES - USE_MERGE - USE_MERGE_CARTESIAN - USE_NL - USE_NL_WITH_INDEX - USE_PRIVATE_OUTLINES - USER - USER_DEFINED - USERENV - USERGROUP - USER_RECYCLEBIN - USERS - USE_SEMI - USE_STORED_OUTLINES - USE_TTT_FOR_GSETS - USE_WEAK_NAME_RESL - USING - VALIDATE - VALIDATION - VALUE - VALUES - VARCHAR - VARCHAR2 - VARIANCE - VAR_POP - VARRAY - VARRAYS - VAR_SAMP - VARYING - VECTOR_READ - VECTOR_READ_TRACE - VERIFY - VERSION - VERSIONING - VERSIONS - VERSIONS_ENDSCN - VERSIONS_ENDTIME - VERSIONS_OPERATION - VERSIONS_STARTSCN - VERSIONS_STARTTIME - VERSIONS_XID - VIEW - VIRTUAL - VISIBLE - VOLUME - VSIZE - WAIT - WALLET - WELLFORMED - WHEN - WHENEVER - WHERE - WHILE - WHITESPACE - WIDTH_BUCKET - WITH - WITHIN - WITHOUT - WORK - WRAPPED - WRITE - X_DYN_PRUNE - XID - XML - XMLATTRIBUTES - XMLCAST - XMLCDATA - XMLCOLATTVAL - XMLCOMMENT - XMLCONCAT - XMLDIFF - XML_DML_RWT_STMT - XMLELEMENT - XMLEXISTS - XMLEXISTS2 - XMLFOREST - XMLINDEX_REWRITE - XMLINDEX_REWRITE_IN_SELECT - XMLINDEX_SEL_IDX_TBL - XMLISNODE - XMLISVALID - XMLNAMESPACES - XMLPARSE - XMLPATCH - XMLPI - XMLQUERY - XMLROOT - XMLSCHEMA - XMLSERIALIZE - XMLTABLE - XMLTOOBJECT - XMLTRANSFORM - XMLTRANSFORMBLOB - XMLTYPE - XPATHTABLE - XS_SYS_CONTEXT - YEAR - YES - ZONE - - - + - - - * - / - || - = - != - ^= - <> - < - <= - > - >= - := - => - ** - .. - - - ABS - ACOS - ADD_MONTHS - ASCII - ASCIISTR - ASIN - ATAN - ATAN2 - AVG - BFILENAME - BIN_TO_NUM - BITAND - CARDINALITY - CAST - CEIL - CHARTOROWID - CHR - COALESCE - COLLECT - COMPOSE - CONCAT - CONVERT - CONTAINS - CORR - CORR_K - CORR_S - COS - COSH - COUNT - COVAR_POP - COVAR_SAMP - CUME_DIST - CURRENT_DATE - CURRENT_TIMESTAMP - CV - DBTIMEZONE - DECODE - DECOMPOSE - DENSE_RANK - DEPTH - DEREF - DUMP - EMPTY_BLOB - EMPTY_CLOB - EXISTSNODE - EXP - EXTRACT - EXTRACTVALUE - FIRST - FIRST_VALUE - FLOOR - FROM_TZ - GREATEST - GROUP_ID - GROUPING - GROUPING_ID - HEXTORAW - INITCAP - INSTR - INSTRB - LAG - LAST - LAST_DAY - LAST_VALUE - LEAD - LEAST - LENGTH - LENGTHB - LN - LNNVL - LOCALTIMESTAMP - LOG - LOWER - LPAD - LTRIM - MAKE_REF - MAX - MEDIAN - MIN - MOD - MONTHS_BETWEEN - NANVL - NCHR - NEW_TIME - NEXT_DAY - NLS_CHARSET_DECL_LEN - NLS_CHARSET_ID - NLS_CHARSET_NAME - NLS_INITCAP - NLS_LOWER - NLS_UPPER - NLSSORT - NTILE - NULLIF - NUMTODSINTERVAL - NUMTOYMINTERVAL - NVL - NVL2 - ORA_HASH - ORA_ROWSCN - PERCENT_RANK - PERCENTILE_CONT - PERCENTILE_DISC - POWER - POWERMULTISET - POWERMULTISET_BY_CARDINALITY - PRESENTNNV - PRESENTV - RANK - RATIO_TO_REPORT - RAWTOHEX - RAWTONHEX - REF - REFTOHEX - REGEXP_INSTR - REGEXP_LIKE - REGEXP_REPLACE - REGEXP_SUBSTR - REGR_SLOPE - REGR_INTERCEPT - REGR_COUNT - REGR_R2 - REGR_AVGX - REGR_AVGY - REGR_SXX - REGR_SYY - REGR_SXY - REMAINDER - ROUND - ROW_NUMBER - ROWIDTOCHAR - ROWIDTONCHAR - RPAD - RTRIM - SCN_TO_TIMESTAMP - SESSIONTIMEZONE - SIGN - SIN - SINH - SOUNDEX - SQRT - STATS_BINOMIAL_TEST - STATS_CROSSTAB - STATS_F_TEST - STATS_KS_TEST - STATS_MODE - STATS_MW_TEST - STATS_ONE_WAY_ANOVA - STATS_T_TEST_ONE - STATS_T_TEST_PAIRED - STATS_T_TEST_INDEP - STATS_T_TEST_INDEPU - STATS_WSR_TEST - STDDEV - STDDEV_POP - STDDEV_SAMP - SUBSTR - SUBSTRB - SUM - SYS_CONNECT_BY_PATH - SYS_CONTEXT - SYS_DBURIGEN - SYS_EXTRACT_UTC - SYS_GUID - SYS_TYPEID - SYS_XMLAGG - SYS_XMLGEN - SYSDATE - SYSTIMESTAMP - TAN - TANH - TIMESTAMP_TO_SCN - TO_BINARY_DOUBLE - TO_BINARY_FLOAT - TO_CHAR - TO_CLOB - TO_DATE - TO_DSINTERVAL - TO_LOB - TO_MULTI_BYTE - TO_NCHAR - TO_NCLOB - TO_NUMBER - TO_SINGLE_BYTE - TO_TIMESTAMP - TO_TIMESTAMP_TZ - TO_YMINTERVAL - TRANSLATE - TREAT - TRIM - TRUNC - TZ_OFFSET - UID - UNISTR - UPDATEXML - UPPER - USER - USERENV - VALUE - VAR_POP - VAR_SAMP - VARIANCE - VSIZE - WIDTH_BUCKET - XMLAGG - XMLCOLATTVAL - XMLCONCAT - XMLELEMENT - XMLFOREST - XMLSEQUENCE - XMLTRANSFORM - - - ANYDATA - ANYDATASET - ANYTYPE - ARRAY - BFILE - BINARY_DOUBLE - BINARY_FLOAT - BINARY_INTEGER - BLOB - BOOLEAN - CFILE - CHAR - CHARACTER - CLOB - DATE - DAY - DBURITYPE - DEC - DECIMAL - DOUBLE - FLOAT - FLOB - HTTPURITYPE - INT - INTEGER - INTERVAL - LOB - LONG - MLSLABEL - MONTH - NATIONAL - NCHAR - NCLOB - NUMBER - NUMERIC - NVARCHAR - OBJECT - PLS_INTEGER - PRECISION - RAW - RECORD - REFCURSOR - REAL - ROWID - SECOND - SINGLE - SMALLINT - TIME - TIMESTAMP - URIFACTORYTYPE - URITYPE - UROWID - VARCHAR - VARCHAR2 - VARYING - VARRAY - XMLTYPE - YEAR - ZONE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sql-postgresql.xml ktexteditor-5.31.0/src/syntax/data/sql-postgresql.xml --- ktexteditor-5.28.0/src/syntax/data/sql-postgresql.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sql-postgresql.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,813 +0,0 @@ - - - - - - - ABORT - ACCESS - ACTION - ADD - ADMIN - AFTER - AGGREGATE - ALIAS - ALL - ALLOCATE - ALTER - ANALYSE - ANALYZE - ANY - ARE - AS - ASC - ASENSITIVE - ASSERTION - ASSIGNMENT - ASYMMETRIC - AT - ATOMIC - AUTHORIZATION - BACKWARD - BEFORE - BEGIN - BETWEEN - BINARY - BOTH - BREADTH - BY - C - CACHE - CALL - CALLED - CARDINALITY - CASCADE - CASCADED - CASE - CAST - CATALOG - CATALOG_NAME - CHAIN - CHARACTERISTICS - CHARACTER_LENGTH - CHARACTER_SET_CATALOG - CHARACTER_SET_NAME - CHARACTER_SET_SCHEMA - CHAR_LENGTH - CHECK - CHECKED - CHECKPOINT - CLASS - CLASS_ORIGIN - CLOB - CLOSE - CLUSTER - COALESCE - COBOL - COLLATE - COLLATION - COLLATION_CATALOG - COLLATION_NAME - COLLATION_SCHEMA - COLUMN - COLUMN_NAME - COMMAND_FUNCTION - COMMAND_FUNCTION_CODE - COMMENT - COMMIT - COMMITTED - COMPLETION - CONDITION_NUMBER - CONNECT - CONNECTION - CONNECTION_NAME - CONSTRAINTS - CONSTRAINT - CONSTRAINT_CATALOG - CONSTRAINT_NAME - CONSTRAINT_SCHEMA - CONSTRUCTOR - CONTAINS - CONTINUE - CONVERT - COPY - CORRESPONDING - COUNT - CREATE - CREATEDB - CREATEUSER - CROSS - CUBE - CURRENT - CURRENT_DATE - CURRENT_PATH - CURRENT_ROLE - CURRENT_TIME - CURRENT_TIMESTAMP - CURRENT_USER - CURSOR - CURSOR_NAME - CYCLE - DATA - DATABASE - DATE - DATETIME_INTERVAL_CODE - DATETIME_INTERVAL_PRECISION - DAY - DEALLOCATE - DEC - DECIMAL - DECLARE - DEFAULT - DEFERRABLE - DEFERRED - DEFINED - DEFINER - DELETE - DELIMITERS - DEPTH - DEREF - DESC - DESCRIBE - DESCRIPTOR - DESTROY - DESTRUCTOR - DETERMINISTIC - DIAGNOSTICS - DICTIONARY - DISCONNECT - DISPATCH - DISTINCT - DO - DOMAIN - DOUBLE - DROP - DYNAMIC - DYNAMIC_FUNCTION - DYNAMIC_FUNCTION_CODE - EACH - ELSE - ENCODING - ENCRYPTED - END - END-EXEC - EQUALS - ESCAPE - EVERY - EXCEPT - EXCEPTION - EXCLUSIVE - EXEC - EXECUTE - EXISTING - EXISTS - EXPLAIN - EXTERNAL - FALSE - FETCH - FINAL - FIRST - FOR - FORCE - FOREIGN - FORTRAN - FORWARD - FOUND - FREE - FREEZE - FROM - FULL - FUNCTION - G - GENERAL - GENERATED - GET - GLOBAL - GO - GOTO - GRANT - GRANTED - GROUP - GROUPING - HANDLER - HAVING - HIERARCHY - HOLD - HOST - HOUR - IDENTITY - IGNORE - ILIKE - IMMEDIATE - IMMUTABLE - IMPLEMENTATION - IN - INCREMENT - INDEX - INDICATOR - INFIX - INHERITS - INITIALIZE - INITIALLY - INNER - INOUT - INPUT - INSENSITIVE - INSERT - INSTANCE - INSTANTIABLE - INSTEAD - INTERSECT - INTERVAL - INTO - INVOKER - IS - ISNULL - ISOLATION - ITERATE - JOIN - K - KEY - KEY_MEMBER - KEY_TYPE - LANCOMPILER - LANGUAGE - LARGE - LAST - LATERAL - LEADING - LEFT - LENGTH - LESS - LEVEL - LIKE - LIMIT - LISTEN - LOAD - LOCAL - LOCALTIME - LOCALTIMESTAMP - LOCATION - LOCATOR - LOCK - LOWER - M - MAP - MATCH - MAX - MAXVALUE - MESSAGE_LENGTH - MESSAGE_OCTET_LENGTH - MESSAGE_TEXT - METHOD - MIN - MINUTE - MINVALUE - MOD - MODE - MODIFIES - MODIFY - MODULE - MONTH - MORE - MOVE - MUMPS - NAME - NAMES - NATIONAL - NATURAL - NEW - NEXT - NO - NOCREATEDB - NOCREATEUSER - NONE - NOT - NOTHING - NOTIFY - NOTNULL - NULL - NULLABLE - NULLIF - NUMBER - NUMERIC - OBJECT - OCTET_LENGTH - OF - OFF - OFFSET - OIDS - OLD - ON - ONLY - OPEN - OPERATION - OPERATOR - OPTION - OPTIONS - ORDER - ORDINALITY - OUT - OUTER - OUTPUT - OVERLAPS - OVERLAY - OVERRIDING - OWNER - PAD - PARAMETER - PARAMETERS - PARAMETER_MODE - PARAMETER_NAME - PARAMETER_ORDINAL_POSITION - PARAMETER_SPECIFIC_CATALOG - PARAMETER_SPECIFIC_NAME - PARAMETER_SPECIFIC_SCHEMA - PARTIAL - PASCAL - PASSWORD - PATH - PENDANT - PLI - POSITION - POSTFIX - PRECISION - PREFIX - PREORDER - PREPARE - PRESERVE - PRIMARY - PRIOR - PRIVILEGES - PROCEDURAL - PROCEDURE - PUBLIC - READ - READS - REAL - RECURSIVE - REF - REFERENCES - REFERENCING - REINDEX - RELATIVE - RENAME - REPEATABLE - REPLACE - RESET - RESTRICT - RESULT - RETURN - RETURNED_LENGTH - RETURNED_OCTET_LENGTH - RETURNED_SQLSTATE - RETURNS - REVOKE - RIGHT - ROLE - ROLLBACK - ROLLUP - ROUTINE - ROUTINE_CATALOG - ROUTINE_NAME - ROUTINE_SCHEMA - ROW - ROWS - ROW_COUNT - RULE - SAVEPOINT - SCALE - SCHEMA - SCHEMA_NAME - SCOPE - SCROLL - SEARCH - SECOND - SECTION - SECURITY - SELECT - SELF - SENSITIVE - SEQUENCE - SERIALIZABLE - SERVER_NAME - SESSION - SESSION_USER - SET - SETOF - SETS - SHARE - SHOW - SIMILAR - SIMPLE - SIZE - SOME - SOURCE - SPACE - SPECIFIC - SPECIFICTYPE - SPECIFIC_NAME - SQL - SQLCODE - SQLERROR - SQLEXCEPTION - SQLSTATE - SQLWARNING - STABLE - START - STATE - STATEMENT - STATIC - STATISTICS - STDIN - STDOUT - STRUCTURE - STYLE - SUBCLASS_ORIGIN - SUBLIST - SUBSTRING - SUM - SYMMETRIC - SYSID - SYSTEM - SYSTEM_USER - TABLE - TABLE_NAME - TEMP - TEMPLATE - TEMPORARY - TERMINATE - THAN - THEN - TIMEZONE_HOUR - TIMEZONE_MINUTE - TO - TOAST - TRAILING - TRANSACTION - TRANSACTIONS_COMMITTED - TRANSACTIONS_ROLLED_BACK - TRANSACTION_ACTIVE - TRANSFORM - TRANSFORMS - TRANSLATE - TRANSLATION - TREAT - TRIGGER - TRIGGER_CATALOG - TRIGGER_NAME - TRIGGER_SCHEMA - TRIM - TRUE - TRUNCATE - TRUSTED - TYPE - UNCOMMITTED - UNDER - UNENCRYPTED - UNION - UNIQUE - UNKNOWN - UNLISTEN - UNNAMED - UNNEST - UNTIL - UPDATE - UPPER - USAGE - USER - USER_DEFINED_TYPE_CATALOG - USER_DEFINED_TYPE_NAME - USER_DEFINED_TYPE_SCHEMA - USING - VACUUM - VALID - VALUE - VALUES - VARIABLE - VARYING - VERBOSE - VERSION - VIEW - VOLATILE - WHEN - WHENEVER - WHERE - WHILE - WITH - WITHOUT - WORK - WRITE - YEAR - ZONE - - - + - - - * - / - || - |/ - ||/ - ! - !! - @ - & - | - # - << - >> - % - ^ - = - != - <> - < - <= - > - >= - ~ - ~* - !~ - !~* - ^= - := - => - ** - .. - AND - OR - NOT - - ## - && - &< - &> - <-> - <^ - >^ - ?# - ?- - ?-| - @-@ - ?| - ?|| - @@ - ~= - - <<= - >>= - - - - ABS - CBRT - CEIL - DEGREES - EXP - FLOOR - LN - LOG - MOD - PI - POW - RADIANS - RANDOM - ROUND - SIGN - SQRT - TRUNC - - ACOS - ASIN - ATAN - ATAN2 - COS - COT - SIN - TAN - - BIT_LENGTH - CHAR_LENGTH - CHARACTER_LENGTH - LOWER - OCTET_LENGTH - POSITION - SUBSTRING - TRIM - UPPER - - ASCII - BTRIM - CHR - CONVERT - INITCAP - LENGTH - LPAD - LTRIM - PG_CLIENT_ENCODING - REPEAT - RPAD - RTRIM - STRPOS - SUBSTR - TO_ASCII - TRANSLATE - ENCODE - DECODE - - TO_CHAR - TO_DATE - TO_TIMESTAMP - TO_NUMBER - - AGE - DATE_PART - DATE_TRUNC - EXTRACT - ISFINITE - NOW - TIMEOFDAY - TIMESTAMP - EXTRACT - - AREA - BOX - CENTER - DIAMETER - HEIGHT - ISCLOSED - ISOPEN - PCLOSE - NPOINT - POPEN - RADIUS - WIDTH - - BOX - CIRCLE - LSEG - PATH - POINT - POLYGON - - BROADCAST - HOST - MASKLEN - SET_MASKLEN - NETMASK - NETWORK - ABBREV - - NEXTVAL - CURRVAL - SETVAL - - COALESCE - NULLIF - - HAS_TABLE_PRIVILEGE - PG_GET_VIEWDEF - PG_GET_RULEDEF - PG_GET_INDEXDEF - PG_GET_USERBYID - OBJ_DESCRIPTION - COL_DESCRIPTION - - AVG - COUNT - MAX - MIN - STDDEV - SUM - VARIANCE - - - BIGINT - BIGSERIAL - BIT - BIT VARYING - BOOL - BOOLEAN - BOX - BYTEA - CHAR - CHARACTER - CHARACTER VARYING - CIDR - CIRCLE - DATE - DECIMAL - DOUBLE PRECISION - FLOAT8 - INET - INT - INT2 - INT4 - INT8 - INTEGER - INTERVAL - LINE - LSEG - LZTEXT - MACADDR - MONEY - NUMERIC - OID - PATH - POINT - POLYGON - REAL - SERIAL - SERIAL8 - SMALLINT - TEXT - TIME - TIMESTAMP - TIMESTAMP WITH TIMEZONE - TIMESTAMPTZ - TIMETZ - VARBIT - VARCHAR - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/sql.xml ktexteditor-5.31.0/src/syntax/data/sql.xml --- ktexteditor-5.28.0/src/syntax/data/sql.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/sql.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,956 +0,0 @@ - - - - - - - - - ACCESS - ACCOUNT - ADD - ADMIN - ADMINISTER - ADVISE - AFTER - AGENT - ALL - ALLOCATE - ALL_ROWS - ALTER - ANALYZE - ANCILLARY - AND - ANY - ARCHIVE - ARCHIVELOG - AS - ASC - ASSERTION - ASSOCIATE - AT - ATTRIBUTE - ATTRIBUTES - AUDIT - AUTHENTICATED - AUTHID - AUTHORIZATION - AUTOALLOCATE - AUTOEXTEND - AUTOMATIC - BACKUP - BECOME - BEFORE - BEGIN - BEHALF - BETWEEN - BINDING - BITMAP - BLOCK - BLOCK_RANGE - BODY - BOTH - BOUND - BREAK - BROADCAST - BTITLE - BUFFER_POOL - BUILD - BULK - BY - CACHE - CACHE_INSTANCES - CALL - CANCEL - CASCADE - CASE - CATEGORY - CHAINED - CHANGE - CHECK - CHECKPOINT - CHILD - CHOOSE - CHUNK - CLASS - CLEAR - CLONE - CLOSE - CLOSE_CACHED_OPEN_CURSORS - CLUSTER - COALESCE - COLUMN - COLUMNS - COLUMN_VALUE - COMMENT - COMMIT - COMMITTED - COMPATIBILITY - COMPILE - COMPLETE - COMPOSITE_LIMIT - COMPRESS - COMPUTE - CONNECT - CONNECT_TIME - CONSIDER - CONSISTENT - CONSTANT - CONSTRAINT - CONSTRAINTS - CONTAINER - CONTENTS - CONTEXT - CONTINUE - CONTROLFILE - COPY - COST - CPU_PER_CALL - CPU_PER_SESSION - CREATE - CREATE_STORED_OUTLINES - CROSS - CUBE - CURRENT - CURSOR - CYCLE - DANGLING - DATA - DATABASE - DATAFILE - DATAFILES - DBA - DDL - DEALLOCATE - DEBUG - DECLARE - DEFAULT - DEFERRABLE - DEFERRED - DEFINER - DEGREE - DELETE - DEMAND - DESC - DETERMINES - DICTIONARY - DIMENSION - DIRECTORY - DISABLE - DISASSOCIATE - DISCONNECT - DISKGROUP - DISMOUNT - DISTINCT - DISTRIBUTED - DOMAIN - DROP - DYNAMIC - EACH - ELSE - ELSIF - EMPTY - ENABLE - END - ENFORCE - ENTRY - ESCAPE - ESTIMATE - EVENTS - EXCEPT - EXCEPTION - EXCEPTIONS - EXCHANGE - EXCLUDING - EXCLUSIVE - EXEC - EXECUTE - EXISTS - EXPIRE - EXPLAIN - EXPLOSION - EXTENDS - EXTENT - EXTENTS - EXTERNALLY - FAILED_LOGIN_ATTEMPTS - FALSE - FAST - FILE - FILTER - FIRST_ROWS - FLAGGER - FLASHBACK - FLUSH - FOLLOWING - FOR - FORCE - FOREIGN - FREELIST - FREELISTS - FRESH - FROM - FULL - FUNCTION - FUNCTIONS - GENERATED - GLOBAL - GLOBALLY - GLOBAL_NAME - GRANT - GROUP - GROUPS - HASH - HASHKEYS - HAVING - HEADER - HEAP - HIERARCHY - HOUR - ID - IDENTIFIED - IDENTIFIER - IDGENERATORS - IDLE_TIME - IF - IMMEDIATE - IN - INCLUDING - INCREMENT - INCREMENTAL - INDEX - INDEXED - INDEXES - INDEXTYPE - INDEXTYPES - INDICATOR - INITIAL - INITIALIZED - INITIALLY - INITRANS - INNER - INSERT - INSTANCE - INSTANCES - INSTEAD - INTERMEDIATE - INTERSECT - INTO - INVALIDATE - IS - ISOLATION - ISOLATION_LEVEL - JAVA - JOIN - KEEP - KEY - KILL - LABEL - LAYER - LEADING - LEFT - LESS - LEVEL - LIBRARY - LIKE - LIMIT - LINK - LIST - LOCAL - LOCATOR - LOCK - LOCKED - LOGFILE - LOGGING - LOGICAL_READS_PER_CALL - LOGICAL_READS_PER_SESSION - LOGOFF - LOGON - LOOP - MANAGE - MANAGED - MANAGEMENT - MASTER - MATERIALIZED - MAXARCHLOGS - MAXDATAFILES - MAXEXTENTS - MAXINSTANCES - MAXLOGFILES - MAXLOGHISTORY - MAXLOGMEMBERS - MAXSIZE - MAXTRANS - MAXVALUE - MEMBER - MERGE - METHOD - MINEXTENTS - MINIMIZE - MINIMUM - MINUS - MINUTE - MINVALUE - MODE - MODIFY - MONITORING - MOUNT - MOVE - MOVEMENT - MTS_DISPATCHERS - MULTISET - NAMED - NATURAL - NEEDED - NESTED - NESTED_TABLE_ID - NETWORK - NEVER - NEW - NEXT - NLS_CALENDAR - NLS_CHARACTERSET - NLS_COMP - NLS_CURRENCY - NLS_DATE_FORMAT - NLS_DATE_LANGUAGE - NLS_ISO_CURRENCY - NLS_LANG - NLS_LANGUAGE - NLS_NUMERIC_CHARACTERS - NLS_SORT - NLS_SPECIAL_CHARS - NLS_TERRITORY - NO - NOARCHIVELOG - NOAUDIT - NOCACHE - NOCOMPRESS - NOCYCLE - NOFORCE - NOLOGGING - NOMAXVALUE - NOMINIMIZE - NOMINVALUE - NOMONITORING - NONE - NOORDER - NOOVERRIDE - NOPARALLEL - NORELY - NORESETLOGS - NOREVERSE - NORMAL - NOSEGMENT - NOSORT - NOT - NOTHING - NOVALIDATE - NOWAIT - NULL - NULLS - OBJNO - OBJNO_REUSE - OF - OFF - OFFLINE - OID - OIDINDEX - OLD - ON - ONLINE - ONLY - OPCODE - OPEN - OPERATOR - OPTIMAL - OPTIMIZER_GOAL - OPTION - OR - ORDER - ORGANIZATION - OUT - OUTER - OUTLINE - OVER - OVERFLOW - OVERLAPS - OWN - PACKAGE - PACKAGES - PARALLEL - PARAMETERS - PARENT - PARTITION - PARTITIONS - PARTITION_HASH - PARTITION_RANGE - PASSWORD - PASSWORD_GRACE_TIME - PASSWORD_LIFE_TIME - PASSWORD_LOCK_TIME - PASSWORD_REUSE_MAX - PASSWORD_REUSE_TIME - PASSWORD_VERIFY_FUNCTION - PCTFREE - PCTINCREASE - PCTTHRESHOLD - PCTUSED - PCTVERSION - PERCENT - PERMANENT - PLAN - PLSQL_DEBUG - POST_TRANSACTION - PREBUILT - PRECEDING - PREPARE - PRESENT - PRESERVE - PREVIOUS - PRIMARY - PRIOR - PRIVATE - PRIVATE_SGA - PRIVILEGE - PRIVILEGES - PROCEDURE - PROFILE - PUBLIC - PURGE - QUERY - QUEUE - QUOTA - RANDOM - RANGE - RBA - READ - READS - REBUILD - RECORDS_PER_BLOCK - RECOVER - RECOVERABLE - RECOVERY - RECYCLE - REDUCED - REFERENCES - REFERENCING - REFRESH - RELY - RENAME - REPLACE - RESET - RESETLOGS - RESIZE - RESOLVE - RESOLVER - RESOURCE - RESTRICT - RESTRICTED - RESUME - RETURN - RETURNING - REUSE - REVERSE - REVOKE - REWRITE - RIGHT - ROLE - ROLES - ROLLBACK - ROLLUP - ROW - ROWNUM - ROWS - RULE - SAMPLE - SAVEPOINT - SCAN - SCAN_INSTANCES - SCHEMA - SCN - SCOPE - SD_ALL - SD_INHIBIT - SD_SHOW - SEGMENT - SEG_BLOCK - SEG_FILE - SELECT - SELECTIVITY - SEQUENCE - SERIALIZABLE - SERVERERROR - SESSION - SESSIONS_PER_USER - SESSION_CACHED_CURSORS - SET - SHARE - SHARED - SHARED_POOL - SHRINK - SHUTDOWN - SINGLETASK - SIZE - SKIP - SKIP_UNUSABLE_INDEXES - SNAPSHOT - SOME - SORT - SOURCE - SPECIFICATION - SPLIT - SQL_TRACE - STANDBY - START - STARTUP - STATEMENT_ID - STATIC - STATISTICS - STOP - STORAGE - STORE - STRUCTURE - SUBMULTISET - SUBPARTITION - SUBPARTITIONS - SUCCESSFUL - SUMMARY - SUPPLEMENTAL - SUSPEND - SWITCH - SYNONYM - SYSDBA - SYSOPER - SYSTEM - SYS_OP_BITVEC - SYS_OP_ENFORCE_NOT_NULL$ - SYS_OP_NOEXPAND - SYS_OP_NTCIMG$ - TABLE - TABLES - TABLESPACE - TABLESPACE_NO - TABNO - TEMPFILE - TEMPORARY - THAN - THE - THEN - THREAD - THROUGH - TIMEOUT - TIMEZONE_HOUR - TIMEZONE_MINUTE - TIME_ZONE - TO - TOPLEVEL - TRACE - TRACING - TRAILING - TRANSACTION - TRANSITIONAL - TRIGGER - TRIGGERS - TRUE - TRUNCATE - TYPE - TYPES - UNARCHIVED - UNBOUND - UNBOUNDED - UNDO - UNIFORM - UNION - UNIQUE - UNLIMITED - UNLOCK - UNRECOVERABLE - UNTIL - UNUSABLE - UNUSED - UPDATABLE - UPDATE - UPD_INDEXES - UPPPER - USAGE - USE - USER_DEFINED - USE_STORED_OUTLINES - USING - VALIDATE - VALIDATION - VALUES - VIEW - WHEN - WHENEVER - WHERE - WHILE - WITH - WITHOUT - WORK - WRITE - - - + - - - * - / - || - = - != - <> - < - <= - > - >= - ~= - ^= - := - => - ** - .. - - - ABS - ACOS - ADD_MONTHS - ASCII - ASCIISTR - ASIN - ATAN - ATAN2 - AVG - BFILENAME - BIN_TO_NUM - BITAND - CARDINALITY - CAST - CEIL - CHARTOROWID - CHR - COALESCE - COLLECT - COMPOSE - CONCAT - CONVERT - CORR - CORR_K - CORR_S - COS - COSH - COUNT - COVAR_POP - COVAR_SAMP - CUME_DIST - CURRENT_DATE - CURRENT_TIMESTAMP - CV - DBTIMEZONE - DECODE - DECOMPOSE - DENSE_RANK - DEPTH - DEREF - DUMP - EMPTY_BLOB - EMPTY_CLOB - EXISTSNODE - EXP - EXTRACT - EXTRACTVALUE - FIRST - FIRST_VALUE - FLOOR - FROM_TZ - GREATEST - GROUP_ID - GROUPING - GROUPING_ID - HEXTORAW - INITCAP - INSTR - INSTRB - LAG - LAST - LAST_DAY - LAST_VALUE - LEAD - LEAST - LENGTH - LENGTHB - LN - LNNVL - LOCALTIMESTAMP - LOG - LOWER - LPAD - LTRIM - MAKE_REF - MAX - MEDIAN - MIN - MOD - MONTHS_BETWEEN - NANVL - NCHR - NEW_TIME - NEXT_DAY - NLS_CHARSET_DECL_LEN - NLS_CHARSET_ID - NLS_CHARSET_NAME - NLS_INITCAP - NLS_LOWER - NLS_UPPER - NLSSORT - NTILE - NULLIF - NUMTODSINTERVAL - NUMTOYMINTERVAL - NVL - NVL2 - ORA_HASH - ORA_ROWSCN - PERCENT_RANK - PERCENTILE_CONT - PERCENTILE_DISC - POWER - POWERMULTISET - POWERMULTISET_BY_CARDINALITY - PRESENTNNV - PRESENTV - RANK - RATIO_TO_REPORT - RAWTOHEX - RAWTONHEX - REF - REFTOHEX - REGEXP_INSTR - REGEXP_LIKE - REGEXP_REPLACE - REGEXP_SUBSTR - REGR_SLOPE - REGR_INTERCEPT - REGR_COUNT - REGR_R2 - REGR_AVGX - REGR_AVGY - REGR_SXX - REGR_SYY - REGR_SXY - REMAINDER - ROUND - ROW_NUMBER - ROWIDTOCHAR - ROWIDTONCHAR - RPAD - RTRIM - SCN_TO_TIMESTAMP - SESSIONTIMEZONE - SIGN - SIN - SINH - SOUNDEX - SQRT - STATS_BINOMIAL_TEST - STATS_CROSSTAB - STATS_F_TEST - STATS_KS_TEST - STATS_MODE - STATS_MW_TEST - STATS_ONE_WAY_ANOVA - STATS_T_TEST_ONE - STATS_T_TEST_PAIRED - STATS_T_TEST_INDEP - STATS_T_TEST_INDEPU - STATS_WSR_TEST - STDDEV - STDDEV_POP - STDDEV_SAMP - SUBSTR - SUBSTRB - SUM - SYS_CONNECT_BY_PATH - SYS_CONTEXT - SYS_DBURIGEN - SYS_EXTRACT_UTC - SYS_GUID - SYS_TYPEID - SYS_XMLAGG - SYS_XMLGEN - SYSDATE - SYSTIMESTAMP - TAN - TANH - TIMESTAMP_TO_SCN - TO_BINARY_DOUBLE - TO_BINARY_FLOAT - TO_CHAR - TO_CLOB - TO_DATE - TO_DSINTERVAL - TO_LOB - TO_MULTI_BYTE - TO_NCHAR - TO_NCLOB - TO_NUMBER - TO_SINGLE_BYTE - TO_TIMESTAMP - TO_TIMESTAMP_TZ - TO_YMINTERVAL - TRANSLATE - TREAT - TRIM - TRUNC - TZ_OFFSET - UID - UNISTR - UPDATEXML - UPPER - USER - USERENV - VALUE - VAR_POP - VAR_SAMP - VARIANCE - VSIZE - WIDTH_BUCKET - XMLAGG - XMLCOLATTVAL - XMLCONCAT - XMLELEMENT - XMLFOREST - XMLSEQUENCE - XMLTRANSFORM - - - ANYDATA - ANYDATASET - ANYTYPE - ARRAY - BFILE - BINARY_DOUBLE - BINARY_FLOAT - BINARY_INTEGER - BLOB - BOOLEAN - CFILE - CHAR - CHARACTER - CLOB - DATE - DAY - DBURITYPE - DEC - DECIMAL - DOUBLE - FLOAT - FLOB - HTTPURITYPE - INT - INTEGER - INTERVAL - LOB - LONG - MLSLABEL - MONTH - NATIONAL - NCHAR - NCLOB - NUMBER - NUMERIC - NVARCHAR - OBJECT - PLS_INTEGER - PRECISION - RAW - REAL - RECORD - ROWID - SECOND - SINGLE - SMALLINT - TIME - TIMESTAMP - URIFACTORYTYPE - URITYPE - UROWID - VARCHAR - VARCHAR2 - VARRAY - VARYING - XMLTYPE - YEAR - ZONE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/stata.xml ktexteditor-5.31.0/src/syntax/data/stata.xml --- ktexteditor-5.28.0/src/syntax/data/stata.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/stata.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,3231 +0,0 @@ - - - - - - - - - addlabels - addlabopts - addplot - bar - barwidth - bin - blabel - caption - center - circle - circle_hollow - color - cols - combine - dot - draw - dropline - frequency - grid - hbar - imargin - labsize - legend - margin - medthick - mlabangle - mlabcolor - mlabel - mlabgap - mlabposition - mlabsize - mlabstyle - mlabtextstyle - mlabvposition - msymbol - name - nodraw - nogrid - over - plotregion - position - ring - rows - scale - size - start - subtitle - t1title - t2title - text - textsize - title - xcommon - xlabel - xline - xscale - xsize - xtitle - ycommon - ylabel - yline - yscale - ysize - ytitle - zero - - - - background - bg - black - blue - bluishgray - brown - cranberry - cyan - dimgray - dkgreen - dknavy - dkorange - ebblue - ebg - edkblue - eggshell - eltblue - eltgreen - emerald - emidblue - erose - fg - foreground - forest_green - gold - gray - green - gs - khaki - lavender - lime - ltblue - ltbluishgray - ltkhaki - magenta - maroon - midblue - midgreen - mint - navy - none - olive - olive_teal - orange - orange_red - pink - purple - red - sand - sandb - sienna - stone - teal - white - yellow - - - - accum - as - ascending - BASE - be - begin - bfgs - bhhh - brrweight - clean - close - clpatt [ern] - clwidth - cole - color - confirm - continue - cov(unstr) - cov(unstructured) - covariance - dash - define - deft - delmacs - detail - dev - deviations - dfp - difficult - dirname - do - effects - eform - else - emdots - emiterate - emlog - emonly - emtolerance - end - error - estmetric - exchangeable - exit - family - fe - fitted - force - foreach - forvalues - fpc - frequency - function - global - gtolerance - hessian - ic - identity - if - in - independent - intpoints - irr - iterate - jkrweight - lincom - linearized - local - long - ltolerance - macro - manage - meff - meft - minimize - mle - mse - multiplier - noclear - nocons - noconstant - nodots - nofetable - nogroup - noheader - nolog - nolrtest - none - nonrtolerance - noobs - noomit - noretable - nostderr - not - nr - of - offset - or - p - parse - patterns - poststrata - postweight - prefix - program - r2_p - reffects - reml - reset - resid - run - scale - shift - showstep - SITE - size - star - stats - STBPLUS - stfmt - store - strata - syntax - tempfile - tempname - tempvar - tokenize - tolerance - unstructured - until - UPDATES - weight - while - wide - window - x2 - xb - - _b[ - _coeff[ - - ereturn - rreturn - sreturn - - e( - r( - s( - - - - all - BASE - coleq - colfullnames - coln - colnames - constraint - data - dir - display - environment - format - l - label - length - list - nobreak - nofail - permname - PERSONAL - piece - PLUS - quoted - row - roweq - rowfullnames - rown - rownames - SITE - sortedby - STATA - strict - sysdir - tempfile - tempvar - tsnorm - UPDATES - value - variable - - - - allstring - append - args - aweight - born - by - bys - bysort - byte - capture - cfreq - clear - Cns - Co - collinear - columns - comma - compress - connect - console - cpercent - cr - d0 - data - datestring - decode - delimit - depnames - desc - describe - di - diparm_options - display - double - drop - eclass - encode - esample - Ev - exec - fam - fdadescribe - fdasave - fdause - filefilter - float - format - fweight - gen - generate - gr [een] - gradient - hold - include - insert - insheet - int - iweight - k - keep - label - Ld - link - load - long - longstub - macrolen - markout - marksample - maximize - meanonly - mlmatsbysum - mlout - mode - model - more - N - namelen - noextend - nofootnote - noi - noisily - nolabel - nonotes - nopreserve - norescale - noscvars - nosummary - nototal - nrtolerance - obs - odbc - off - oim - on - oneway - opg - order - outfile - outsheet - percent - permanently - post - postclose - postfile - preserve - Psi - pweight - query - qui - quietly - rawsum - red - ren - rename - replace - Replay - report - repost - restore - robust - save - saving - SD - SE - search - set - shownrtolerance - sort - sqlfile - sqlshow - STATA - statistics - sum - summarize - t1title - t2title - tab - tabulate - technique - timer - total - unhold - unique - uniquemaster - uniqusing - use - using - V - values - variable - varlist - VCE - waldtest - width - xlabel - xmlsave - xmluse - yellow - ylabel - yline - - - - - - abs - acos - asin - atan - atan2 - atanh - ceil - cloglog - comb - cos - digamma - exp - floor - invcloglog - invlogit - ln - lnfact - lnfactorial - lngamma - log - log10 - max - min - mod - reldif - round - sign - sin - sqrt - sum - tan - tanh - trigamma - trunc - - - - betaden - Binomial - binorm - binormal - chi2 - chi2tail - dgammapda - dgammapdada - dgammapdadx - dgammapdx - dgammapdxdx - F - Fden - Ftail - gammaden - gammap - ibeta - invbinomial - invchi2 - invchi2tail - invF - invFtail - invgammap - invibeta - invnchi2 - invnFtail - invnibeta - invnorm - invnormal - invttail - nbetaden - nchi2 - nFden - nFtail - nibeta - norm - normal - normalden - normd - npnchi2 - tden - ttail - uniform() - - - - abbrev - char - index - indexnot - length - lower - ltrim - match - plural - proper - real - regexm - regexr - regexs - reverse - rtrim - string - strlen - strlower - strltrim - strmatch - strofreal - strpos - strproper - strreverse - strrtrim - strtrim - strupper - subinstr - subinword - substr - trim - upper - word - wordcount - - - - _caller - autocode - byteorder - chop - clip - cond - e - epsdouble - epsfloat - group - inlist - inrange - irecode - matrix - maxbyte - maxdouble - maxfloat - maxint - maxlong - mi - minbyte - mindouble - minfloat - minint - minlong - missing - r - recode - replay - return - s - scalar - - - - d - date - day - dow - doy - halfyear - mdy - month - quarter - week - year - - - - d - daily - dofd - dofh - dofm - dofq - dofw - dofy - h - halfyearly - hofd - m - mofd - monthly - q - qofd - quarterly - tin - twithin - w - weekly - wofd - y - yearly - yh - ym - yofd - yq - yw - - - - cholesky - colnumb - colsof - corr - det - diag - diag0cnt - el - get - hadamard - I - inv - invsym - issym - issymmetric - J - matmissing - matuniform - mreldif - nullmat - rownumb - rowsof - sweep - syminv - trace - vec - vecdiag - - - - anycount - anymatch - anyvalue - at - concat - count - cut - diff - ends - field - fill - group - groupicodes - head - iqr - kurt - label - last - lname - mad - max - maxlength - maxmode - mdev - mean - median - min - minmode - missing - mode - mtr - nummodemissing - pc prop - pctile - punct - rank - rowfirst - rowlast - rowmax - rowmean - rowmin - rowmiss - rownonmiss - rowsd - rowtotal - sd - seq - skew - std - strok - tag - tail - total - track - trim - truncate - - - - _all - _column - _cons - _dta - _dup - _merge - _n - _newline - _pi - _rc - creturn - c(adopath) - c(adosize) - c(ALPHA) - c(born_date) - c(byteorder) - c(changed) - c(checksum) - c(cmdlen) - c(console) - c(copycolor) - c(current_date) - c(current_time) - c(dirsep) - c(dockable) - c(dockingguides) - c(dp) - c(epsdouble) - c(epsfloat) - c(filedate) - c(filename) - c(flavor) - c(graphics) - c(httpproxy) - c(httpproxyauth) - c(httpproxyhost) - c(httpproxyport) - c(httpproxypw) - c(httpproxyuser) - c(k) - c(level) - c(linegap) - c(linesize) - c(locksplitters) - c(logtype) - c(machine_type) - c(macrolen) - c(matacache) - c(matafavor) - c(matalibs) - c(matalnum) - c(matamofirst) - c(mataoptimize) - c(matastrict) - c(matsize) - c(max_cmdlen) - c(max_k_current) - c(max_k_theory) - c(max_macrolen) - c(max_matsize) - c(max_N_current) - c(max_N_theory) - c(max_width_current) - c(max_width_theory) - c(maxbyte) - c(maxdb) - c(maxdouble) - c(maxfloat) - c(maxint) - c(maxiter) - c(maxlong) - c(maxstrvarlen) - c(maxvar) - c(memory) - c(min_matsize) - c(minbyte) - c(mindouble) - c(minfloat) - c(minint) - c(minlong) - c(mode) - c(Mons) - c(Months) - c(more) - c(N) - c(namelen) - c(os) - c(osdtl) - c(pagesize) - c(persistfv) - c(persistvtopic) - c(pi) - c(printcolor) - c(pwd) - c(rc) - c(reventries) - c(rmsg_time) - c(rmsg) - c(scheme) - c(scrollbufsize) - c(SE) - c(searchdefault) - c(seed) - c(stata_version) - c(sysdir_base) - c(sysdir_oldplace) - c(sysdir_personal) - c(sysdir_plus) - c(sysdir_site) - c(sysdir_stata) - c(sysdir_updates) - c(timeout1) - c(timeout2) - c(trace) - c(tracedepth) - c(traceexpand) - c(tracehilite) - c(traceindent) - c(tracenumber) - c(tracesep) - c(type) - c(update_interval) - c(update_prompt) - c(update_query) - c(varabbrev) - c(varlabelpos) - c(version) - c(virtual) - c(Wdays) - c(Weekdays) - c(width) - c(xptheme) - - - - adosize - checksum - copycolor - dockable - dockingguides - dp - graphics - httpproxy - httpproxyauth - httpproxyhost - httpproxyport - httpproxypw - httpproxyuser - level - linegap - linesize - locksplitters - logtype - matacache - matafavor - matalibs - matalnum - matamofirst - mataoptimize - matastrict - matsize - maxdb - maxiter - maxvar - memory - more - pagesize - persistfv - persistvtopic - printcolor - reventries - rmsg - scheme - scrollbufsize - searchdefault - seed - timeout1 - timeout2 - trace - tracedepth - traceexpand - tracehilite - traceindent - tracenumber - tracesep - type - update_interval - update_prompt - update_query - varabbrev - varlabelpos - version - virtual - xptheme - - - - - _a_cls_msg - _addgph - _assert - _assert_mreldif - _assert_mreldifp - _assert_mreldifs - _assert_obs - _assert_streq - _at - _bigtab - _binperfect - _binperfout - _biplotmat - _brr_sum - _bs_display - _bs_sum - _btcmd - _byoptnotallowed - _ca_parse_normalize - _callerr - _cci - _check_eformopt - _check4gropts - _choice_table - _ckirfset - _cknotsvaroi - _ckvec - _clsarr2list - _cmdxel - _coef_table - _coef_table_header - _confirm_date - _confirm_number_or_date - _copy_mat_stripes - _cpmatnm - _crc2use - _crc4fld - _crcacnt - _crcar1 - _crcause - _crcbin - _crcbygr - _crcchi2 - _crcchkw - _crccip - _crceprs - _crcgldv - _crcglil - _crcird - _crcirr - _crcmeq - _crcnuse - _crcor - _crcphdr - _crcra - _crcrd - _crcrr - _crcseq - _crcshdr - _crcslbl - _crcsrvc - _crcswxx - _crcunab - _crcunit - _crcvarl - _crcwsrv - _crczsku - _cvar - _date2elapsed - _diag2mat - _diparm - _diparm_8 - _dots - _e2r - _egennoby - _evlist - _exp_list_expand - _exp_list_parse - _find_tsops - _fr_area_parse_and_log - _fr_aspect_parse_and_log - _fr_draw_rect - _fr_droplines_draw - _fr_erasearr - _fr_legend_parse_and_log - _fr_merged_implicit - _fr_runlog - _fr_sztextbox_parse_and_log - _fr_tbstyle_parse_and_log - _fr_tedits_parse_and_log - _fr_textbox_parse_and_log - _fr_title_parse_and_log - _fr_x_log_cleanup - _fr_x_log_create - _fracpp - _fracxo - _frr_sztextbox_pnl - _gany - _ganycount - _ganymatch - _ganyvalue - _gconcat - _gcount - _gcut - _gdiff - _gends - _geqany - _get_diparmopts - _get_diparmopts_8 - _get_eformopts - _get_eqspec - _get_gropts - _get_irf - _get_offopt - _getbv - _getcovcorr - _getfilename - _getnewlabelname - _getrhs - _getvarcns - _getxel - _getxel2 - _gfill - _ggroup - _giqr - _gkurt - _gm_edit - _gm_log - _gma - _gmad - _gmax - _gmdev - _gmean - _gmedian - _gmin - _gmode - _gmtr - _gneqany - _gpc - _gpctile - _gr_arrowhead - _gr_atomize_styles - _gr_common_axes - _gr_drawrect - _gr_linkstyles - _gr_symbol_of - _grank - _grfirst - _grlast - _grmax - _grmean - _grmin - _grmiss - _grobs - _growfirst - _growlast - _growmax - _growmean - _growmin - _growmiss - _grownonmiss - _growsd - _growtotal - _grsd - _grsum - _gs_addgrname - _gs_bygraph - _gs_clean_graphlist - _gs_default_bands - _gs_islivefile - _gs_parse_and_log_axoptions - _gs_parse_and_log_axtitle - _gs_parse_and_log_lines - _gs_parse_and_log_tickset - _gs_rdfilehdr - _gs_wrfilehdr - _gs_x_create - _gsd - _gseq - _gskew - _gstd - _gsum - _gtag - _gtotal - _hadamard_verify - _hw_comp - _hw_opt_d0 - _hwsa_comp - _hwsa_opt_d0 - _hwsm_comp - _hwsm_opt_d0 - _isfit - _ivreg_project - _jk_nlegend - _jk_pseudo - _jk_sum - _labels2names - _linemax - _loop_brr - _loop_jknife - _loop_jknife_fw - _loop_jknife_iw - _loop_jknife2 - _loop_rw - _lrtest7 - _m2matrix - _m2scalar - _matplot - _matsort - _mdisplay - _mds_classical - _mds_dataheader - _mds_display - _mds_display_classical - _mds_euclidean - _mds_parse_dopts - _mds_parse_method - _mds_parse_s2d - _mds_s2d - _me_der - _me_der2 - _me_derb - _me_derd - _me_l_der - _me_l_der2 - _mfrmvec - _mka2 - _mkg - _mkkmn - _mksigma - _mkvec - _mprobitestimator - _mtest - _mvec - _no_estat - _no_predict - _nobs - _on_colon_parse - _parmlist - _parse_optexp - _parsewt - _pk_p - _plotpos - _pred_me - _pred_se - _prefix_check4esample - _prefix_checkopt - _prefix_clear - _prefix_command - _prefix_display - _prefix_expand - _prefix_explist - _prefix_footnote - _prefix_getchars - _prefix_getmat - _prefix_legend - _prefix_mlogit - _prefix_model_test - _prefix_note - _prefix_reject - _prefix_relabel_eqns - _prefix_run_error - _prefix_saving - _prefix_title - _prefix_vcenotallowed - _qsort_index - _qsur - _r2e - _repost - _resample_warn - _restore_labels - _returnclear - _rmdcoll - _robust2 - _roccom1 - _roccom1_8 - _rocsen - _rotate_clear - _rotate_text - _score_spec - _set_irf_vars - _shortenpath - _sigfm - _small2dotz - _stata_internalerror - _stcurv - _strip_labels - _sttrend - _stubstar2names - _sum_table - _sumaccum - _sunflower_binar - _svar_cnsmac - _svar_eqmac - _svar_newcns - _svar_post - _svard2 - _svariden - _svaridenlr - _svarlrd2 - _svd - _svy_check_cmdopts - _svy_check_fpc - _svy_check_postw - _svy_check_predict - _svy_check_vce - _svy_fpc_note - _svy_ftest - _svy_ivreg_first - _svy_mkdeff - _svy_mkmeff - _svy_mkvmsp - _svy_mkvsrs - _svy_newrule - _svy_setup - _svy_singleton_note - _svy_subpop - _svy_subpop_note - _svy_summarize - _svy_summarize_legend - _svy_tabulate - _svy2 - _svydes_dlg - _svylc - _svyset - _sw_ood - _ts - _ts_dexp - _ts_exp - _ts_hw - _ts_hwsa - _ts_hwsm - _tsheadr - _tsinchk - _tsma - _ttest - _ttest1 - _ttest2 - _tutends - _var_mka - _varbsf - _vardisprmse - _varfcast - _varfcast_clear - _varfcast_fcast - _varfcast_graph - _varirf - _varsim - _vce_parserun - _vec_ckgraph - _vec_dreduced - _vec_grcroots - _vec_opck - _vec_pgparse - _vec_pgridplots - _vec_postvar - _vecauxdisp - _vecfcast_compute - _vecfcast_compute_w - _vecgetacns - _vecgetcv - _vecgtn - _vecmka - _vecmkapvp - _vecmkce - _vecmkgam - _vecmksi - _vecmktrend - _vecortho - _vecpclean - _vectparse - _vecu - _virf_add - _virf_char - _virf_fck - _virf_mknewfile - _virf_nlen - _virf_use - _writenum - _xtreg_chk_cl - - ac - ac_7 - acprplot - acprplot_7 - adjust - adopath - alpha - ameans - anova_estat - anova_terms - aorder - arch - arch_dr - arch_estat - arch_p - archlm - areg - areg_p - arima - arima_dr - arima_estat - arima_p - asmprobit - asmprobit_estat - asmprobit_lf - asmprobit_p - avplot - avplot_7 - avplots - avplots_7 - bcskew0 - bgodfrey - binreg - bip0_lf - biplot - bipp_lf - bipr_lf - bipr_p - biprobit - bitest - bitesti - bitowt - blogit - bmemsize - boot - bootsamp - bootstrap - bootstrap_8 - boxco_l - boxco_p - boxcox - boxcox_6 - boxcox_p - bprobit - brier - brr - brrstat - bs - bs_7 - bsampl_w - bsample - bsample_7 - bsqreg - bstat - bstat_7 - bstat_8 - bstrap - bstrap_7 - ca - ca_estat - ca_p - cabiplot - camat - canon - canon_8 - canon_8_p - canon_estat - canon_p - caprojection - cc - cchart - cchart_7 - cci - censobs_table - centile - cf - checkdlgfiles - checkhlpfiles - ci - cii - classutil - clear - clo - clog - clog_lf - clog_p - clogi - clogi_sw - clogit - clogit_lf - clogit_p - clogitp - clogl_sw - cloglog - clonevar - clslistarray - cluster - cluster_measures - cluster_stop - cluster_tree - cluster_tree_8 - clustermat - cnr - cnre - cnreg - cnreg_p - cnreg_sw - cnsreg - codebook - collaps4 - collapse - colormult_nb - colormult_nw - compare - conren - contract - copyright - copysource - corc - corr_anti - corr_kmo - corr_smc - corr2data - corrgram - cox_p - cox_sw - coxbase - coxhaz - coxvar - cprplot - cprplot_7 - crc - cross - cs - cscript - cscript_log - csi - ct - ct_is - ctset - ctst_5 - ctst_st - cttost - cumsp - cumsp_7 - cumul - cusum - cusum_7 - cutil - - d - datetof - db - dbeta - de - deff - des - desc - descr - descri - describ - describe - destring - dfbeta - dfgls - dfuller - dirstats - disp_res - disp_s - dotplot - dotplot_7 - dprobit - drawnorm - ds - ds_util - dstdize - duplicates - durbina - dwstat - dydx - egen - eivreg - emdef - eq - ereg - ereg_lf - ereg_p - ereg_sw - ereghet - ereghet_glf - ereghet_glf_sh - ereghet_gp - ereghet_ilf - ereghet_ilf_sh - ereghet_ip - est - est_cfexist - est_cfname - est_clickable - est_expand - est_hold - est_table - est_unhold - est_unholdok - estat - estat_default - estat_summ - estat_vce_only - esti - estimates - etodow - etof - etomdy - expandcl - fac - fact - facto - factor - factor_estat - factor_p - factor_pca_rotated - factor_rotate - factormat - fcast - fcast_compute - fcast_graph - fh_st - fillin - find_hlp_file - findfile - findit - findit_7 - fit - for - for5_0 - fpredict - frac_154 - frac_adj - frac_chk - frac_cox - frac_ddp - frac_dis - frac_dv - frac_in - frac_mun - frac_pp - frac_pq - frac_pv - frac_wgt - frac_xo - fracgen - fracplot - fracplot_7 - fracpoly - fracpred - fron_ex - fron_hn - fron_p - fron_tn - fron_tn2 - frontier - ftodate - ftoe - ftomdy - ftowdate - - gamhet_glf - gamhet_gp - gamhet_ilf - gamhet_ip - gamma - gamma_d2 - gamma_p - gamma_sw - gammahet - gdi_hexagon - gdi_spokes - genrank - genstd - genvmean - gladder - gladder_7 - glim_l01 - glim_l02 - glim_l03 - glim_l04 - glim_l05 - glim_l06 - glim_l07 - glim_l08 - glim_l09 - glim_l10 - glim_l11 - glim_l12 - glim_lf - glim_mu - glim_nw1 - glim_nw2 - glim_nw3 - glim_p - glim_v1 - glim_v2 - glim_v3 - glim_v4 - glim_v5 - glim_v6 - glim_v7 - glm - glm_6 - glm_p - glm_sw - glmpred - glogit - glogit_8 - glogit_p - gmeans - gnbre_lf - gnbreg - gnbreg_5 - gnbreg_p - gomp_lf - gompe_sw - gomper_p - gompertz - gompertzhet - gomphet_glf - gomphet_glf_sh - gomphet_gp - gomphet_ilf - gomphet_ilf_sh - gomphet_ip - gphdot - gphpen - gphprint - gprobi_p - gprobit - gprobit_8 - gr - gr_copy - gr_current - gr_db - gr_describe - gr_dir - gr_draw - gr_draw_replay - gr_drop - gr_edit - gr_editviewopts - gr_example - gr_example2 - gr_export - gr_print - gr_qscheme - gr_query - gr_read - gr_rename - gr_replay - gr_save - gr_set - gr_setscheme - gr_table - gr_undo - gr_use - graph - grebar - greigen - greigen_7 - greigen_8 - grmeanby - grmeanby_7 - gs_fileinfo - gs_filetype - gs_graphinfo - gs_stat - gsort - gwood - h - hadimvo - hareg - hausman - he - heck_d2 - heckma_p - heckman - heckp_lf - heckpr_p - heckprob - hel - help - hereg - hetpr_lf - hetpr_p - hetprob - hettest - hilite - hist - hist_7 - histogram - hlogit - hlu - hmeans - hotel - hotelling - hprobit - hreg - icd9 - icd9_ff - icd9p - iis - impute - imtest - inbase - integ - inten - intreg - intreg_7 - intreg_p - intrg_ll - intrg_ll2 - intrg2_ll - ipolate - iqreg - ir - irf - irf_create - irfm - iri - is_svy - is_svysum - isid - istdize - ivprob_1_lf - ivprob_lf - ivprobit - ivprobit_p - ivreg - ivreg_footnote - ivtob_1_lf - ivtob_lf - ivtobit - ivtobit_p - - jackknife - jacknife - jknife - jknife_6 - jknife_8 - jkstat - joinby - kalarma1 - kap - kap_3 - kapmeier - kappa - kapwgt - kdensity - kdensity_7 - ksm - ksmirnov - ktau - kwallis - labelbook - ladder - levels - levelsof - leverage - lfit - lfit_p - lincom - line - linktest - lloghet_glf - lloghet_glf_sh - lloghet_gp - lloghet_ilf - lloghet_ilf_sh - lloghet_ip - llogi_sw - llogis_p - llogist - llogistic - llogistichet - lnorm_lf - lnorm_sw - lnorma_p - lnormal - lnormalhet - lnormhet_glf - lnormhet_glf_sh - lnormhet_gp - lnormhet_ilf - lnormhet_ilf_sh - lnormhet_ip - lnskew0 - loadingplot - logi - logis_lf - logistic - logistic_p - logit - logit_estat - logit_p - loglogs - logrank - loneway - lookfor - lowess - lowess_7 - lpredict - lrecomp - lroc - lroc_7 - lrtest - lsens - lsens_7 - lsens_x - lstat - ltable - ltable_7 - ltriang - lv - lvr2plot - lvr2plot_7 - - makecns - manova_estat - manova_p - mantel - mat_capp - mat_order - mat_rapp - mata_matdescribe - mata_matsave - mata_matuse - matalabel - matcproc - matlist - matname - matstrik - mcc - mcci - md0_ - md1_ - md1debug_ - md2_ - md2debug_ - mds - mds_estat - mds_p - mdsconfig - mdslong - mdsmat - mdsshepard - mdytoe - mdytof - me_derd - mean - means - median - memsize - meqparse - mer - merg - merge - mfp - mfx - mhelp - mhodds - mixed_ll - mixed_ll_reparm - mkassert - mkmat - mkspline - ml - ml_5 - ml_adjs - ml_bhhhs - ml_c_d - ml_check - ml_clear - ml_cnt - ml_debug - ml_defd - ml_e0 - ml_e0_bfgs - ml_e0_cycle - ml_e0_dfp - ml_e0i - ml_e1 - ml_e1_bfgs - ml_e1_bhhh - ml_e1_cycle - ml_e1_dfp - ml_e2 - ml_e2_cycle - ml_ebfg0 - ml_ebfr0 - ml_ebfr1 - ml_ebh0q - ml_ebhh0 - ml_ebhr0 - ml_ebr0i - ml_ecr0i - ml_edfp0 - ml_edfr0 - ml_edfr1 - ml_edr0i - ml_eds - ml_eer0i - ml_egr0i - ml_elf - ml_elf_bfgs - ml_elf_bhhh - ml_elf_cycle - ml_elf_dfp - ml_elfi - ml_elfs - ml_enr0i - ml_enrr0 - ml_erdu0 - ml_erdu0_bfgs - ml_erdu0_bhhh - ml_erdu0_bhhhq - ml_erdu0_cycle - ml_erdu0_dfp - ml_erdu0_nrbfgs - ml_exde - ml_footnote - ml_geqnr - ml_grad0 - ml_graph - ml_hbhhh - ml_hd0 - ml_hold - ml_init - ml_inv - ml_log - ml_max - ml_mlout - ml_model - ml_nb0 - ml_opt - ml_p - ml_plot - ml_query - ml_rdgrd - ml_repor - ml_s_e - ml_score - ml_searc - ml_technique - ml_unhold - mlf_ - mlog - mlogi - mlogit - mlogit_footnote - mlogit_p - mlopts - mnl0_ - mprobit - mprobit_lf - mprobit_p - mrdu0_ - mrdu1_ - mvdecode - mvencode - mvreg - mvreg_estat - nbreg - nbreg_al - nbreg_lf - nbreg_p - nbreg_sw - newey - newey_7 - newey_p - nl - nl_7 - nl_p - nl_p_7 - nlcom - nlcom_p - nlexp2 - nlexp2_7 - nlexp2a - nlexp2a_7 - nlexp3 - nlexp3_7 - nlgom3 - nlgom3_7 - nlgom4 - nlgom4_7 - nlinit - nllog3 - nllog3_7 - nllog4 - nllog4_7 - nlog_rd - nlogit - nlogit_p - nlogitgen - nlogittree - nlpred - note - notes - nptrend - numlabel - old_ver - olo - olog - ologi - ologi_sw - ologit - ologit_p - ologitp - op_colnm - op_comp - op_diff - op_inv - op_str - opr - opro - oprob - oprob_sw - oprobi - oprobi_p - oprobit - oprobitp - opts_exclusive - orthog - orthpoly - ovtest - - pac - pac_7 - palette - parse_dissim - pause - pca - pca_8 - pca_display - pca_estat - pca_p - pca_rotate - pcamat - pchart - pchart_7 - pchi - pchi_7 - pcorr - pctile - pentium - pergram - pergram_7 - permute - permute_8 - personal - peto_st - pkcollapse - pkcross - pkequiv - pkexamine - pkexamine_7 - pkshape - pksumm - pksumm_7 - pnorm - pnorm_7 - poisgof - poiss_lf - poiss_sw - poisso_p - poisson - poisson_estat - pperron - prais - prais_e - prais_e2 - prais_p - predict - predictnl - print - prob - probi - probit - probit_estat - probit_p - proc_time - procoverlay - procrustes - procrustes_estat - procrustes_p - profiler - prop - proportion - prtest - prtesti - pwcorr - qby - qbys - qchi - qchi_7 - qladder - qladder_7 - qnorm - qnorm_7 - qqplot - qqplot_7 - qreg - qreg_c - qreg_p - qreg_sw - quadchk - quantile - quantile_7 - range - ranksum - ratio - rchart - rchart_7 - rcof - recast - recode - reg - reg3 - reg3_p - regdw - regr - regre - regre_p2 - regres - regres_p - regress - regress_estat - regriv_p - remap - renpfix - repeat - reshape - robvar - roccomp - roccomp_7 - roccomp_8 - rocf_lf - rocfit - rocfit_8 - rocgold - rocplot - rocplot_7 - roctab - roctab_7 - rolling - rologit - rologit_p - rot - rota - rotat - rotate - rotatemat - rreg - rreg_p - runtest - rvfplot - rvfplot_7 - rvpplot - rvpplot_7 - - safesum - sample - sampsi - savedresults - saveold - sc - scatter - scm_mine - sco - scob_lf - scob_p - scobi_sw - scobit - scor - score - scoreplot - scoreplot_help - scree - screeplot - screeplot_help - sdtest - sdtesti - separate - seperate - serrbar - serrbar_7 - set_defaults - sfrancia - shewhart - shewhart_7 - signrank - signtest - simul - simul_7 - simulate - simulate_8 - sktest - slogit - slogit_d2 - slogit_p - smooth - snapspan - spearman - spikeplot - spikeplot_7 - spikeplt - spline_x - split - sqreg - sqreg_p - ssc - st - st_ct - st_hc - st_hcd - st_hcd_sh - st_is - st_issys - st_note - st_promo - st_set - st_show - st_smpl - st_subid - stack - statsby - statsby_8 - stbase - stci - stci_7 - stcox - stcox_estat - stcox_fr - stcox_fr_ll - stcox_p - stcox_sw - stcoxkm - stcoxkm_7 - stcstat - stcurv - stcurve - stcurve_7 - stdes - stem - stepwise - stereg - stfill - stgen - stir - stjoin - stmc - stmh - stphplot - stphplot_7 - stphtest - stphtest_7 - stptime - strate - strate_7 - streg - streg_sw - streset - sts - sts_7 - stset - stsplit - stsum - sttocc - sttoct - stvary - stweib - suest - suest_8 - sunflower - sureg - survcurv - survsum - svar - svar_p - svmat - svy - svy_disp - svy_dreg - svy_est - svy_est_7 - svy_estat - svy_get - svy_gnbreg_p - svy_head - svy_header - svy_heckman_p - svy_heckprob_p - svy_intreg_p - svy_ivreg_p - svy_logistic_p - svy_logit_p - svy_mlogit_p - svy_nbreg_p - svy_ologit_p - svy_oprobit_p - svy_poisson_p - svy_probit_p - svy_regress_p - svy_sub - svy_sub_7 - svy_x - svy_x_7 - svy_x_p - svydes - svydes_8 - svygen - svygnbreg - svyheckman - svyheckprob - svyintreg - svyintreg_7 - svyintrg - svyivreg - svylc - svylog_p - svylogit - svymarkout - svymarkout_8 - svymean - svymlog - svymlogit - svynbreg - svyolog - svyologit - svyoprob - svyoprobit - svyopts - svypois - svypois_7 - svypoisson - svyprobit - svyprobt - svyprop - svyprop_7 - svyratio - svyreg - svyreg_p - svyregress - svyset - svyset_7 - svyset_8 - svytab - svytab_7 - svytest - svytotal - sw - sw_8 - swcnreg - swcox - swereg - swilk - swlogis - swlogit - swologit - swoprbt - swpois - swprobit - swqreg - swtobit - swweib - symmetry - symmi - symplot - symplot_7 - sysdescribe - sysuse - szroeter - tab_or - tab1 - tab2 - tabi - table - tabodds - tabodds_7 - tabstat - te - tes - test - testnl - testparm - teststd - tetrachoric - time_it - tis - tob - tobi - tobit - tobit_p - tobit_sw - tostring - total - treat_ll - treatr_p - treatreg - trim - trnb_cons - trnb_mean - trpoiss_d2 - trunc_ll - truncr_p - truncreg - tsappend - tset - tsfill - tsline - tsline_ex - tsreport - tsrline - tsset - tssmooth - tsunab - ttest - ttesti - tut_chk - tut_wait - tutorial - tw - tware_st - two - twoway - twoway__fpfit_serset - twoway__function_gen - twoway__histogram_gen - twoway__ipoint_serset - twoway__ipoints_serset - twoway__kdensity_gen - twoway__lfit_serset - twoway__normgen_gen - twoway__pci_serset - twoway__qfit_serset - twoway__scatteri_serset - twoway__sunflower_gen - twoway_ksm_serset - typeof - unab - unabbrev - uselabel - - var - var_mkcompanion - var_p - varbasic - varfcast - vargranger - varirf - varirf_add - varirf_cgraph - varirf_create - varirf_ctable - varirf_describe - varirf_dir - varirf_drop - varirf_erase - varirf_graph - varirf_ograph - varirf_rename - varirf_set - varirf_table - varlmar - varnorm - varsoc - varstable - varstable_w - varstable_w2 - varwle - vce - vec - vec_fevd - vec_mkphi - vec_p - vec_p_w - vecirf_create - veclmar - veclmar_w - vecnorm - vecnorm_w - vecrank - vecstable - verinst - viewsource - vif - vwls - wdatetof - webdescribe - webseek - webuse - weib_lf - weib_lf0 - weib1_lf - weib2_lf - weibhet_glf - weibhet_glf_sh - weibhet_glfa - weibhet_glfa_sh - weibhet_gp - weibhet_ilf - weibhet_ilf_sh - weibhet_ilfa - weibhet_ilfa_sh - weibhet_ip - weibu_sw - weibul_p - weibull - weibull_c - weibull_s - weibullhet - whelp - wilc_st - wilcoxon - wntestb - wntestb_7 - wntestq - xchart - xchart_7 - xcorr - xcorr_7 - xi - xi_6 - xpose - xt_iis - xt_tis - xtab_p - xtabond - xtbin_p - xtclog - xtcloglog - xtcloglog_8 - xtcloglog_d2 - xtcloglog_re_p - xtcnt_p - xtcorr - xtdata - xtdes - xtfront_p - xtfrontier - xtgee - xtgee_elink - xtgee_estat - xtgee_makeivar - xtgee_p - xtgee_plink - xtgls - xtgls_p - xthaus - xthausman - xtht_p - xthtaylor - xtile - xtint_p - xtintreg - xtintreg_8 - xtintreg_d2 - xtintreg_p - xtivp_1 - xtivp_2 - xtivreg - xtline - xtline_ex - xtlogit - xtlogit_8 - xtlogit_d2 - xtlogit_fe_p - xtlogit_pa_p - xtlogit_re_p - xtmixed - xtmixed_estat - xtmixed_p - xtnb_fe - xtnb_lf - xtnbreg - xtnbreg_pa_p - xtnbreg_refe_p - xtpcse - xtpcse_p - xtpois - xtpoisson - xtpoisson_d2 - xtpoisson_pa_p - xtpoisson_refe_p - xtpred - xtprobit - xtprobit_8 - xtprobit_d2 - xtprobit_re_p - xtps_fe - xtps_lf - xtps_ren - xtps_ren_8 - xtrar_p - xtrc - xtrc_p - xtrchh - xtrefe_p - xtreg - xtreg_be - xtreg_fe - xtreg_ml - xtreg_pa_p - xtreg_re - xtregar - xtrere_p - xtsf_ll - xtsf_llti - xtsum - xttab - xttest0 - xttobit - xttobit_8 - xttobit_p - xttrans - yx - yxview__barlike_draw - yxview_area_draw - yxview_bar_draw - yxview_dot_draw - yxview_dropline_draw - yxview_function_draw - yxview_iarrow_draw - yxview_ilabels_draw - yxview_normal_draw - yxview_pcarrow_draw - yxview_pcbarrow_draw - yxview_pccapsym_draw - yxview_pcscatter_draw - yxview_pcspike_draw - yxview_rarea_draw - yxview_rbar_draw - yxview_rbarm_draw - yxview_rcap_draw - yxview_rcapsym_draw - yxview_rconnected_draw - yxview_rline_draw - yxview_rscatter_draw - yxview_rspike_draw - yxview_spike_draw - yxview_sunflower_draw - zap_s - zinb - zinb_llf - zinb_plf - zip - zip_llf - zip_p - zip_plf - zt_ct_5 - zt_hc_5 - zt_hcd_5 - zt_is_5 - zt_iss_5 - zt_sho_5 - zt_smp_5 - ztbase_5 - ztcox_5 - ztdes_5 - ztereg_5 - ztfill_5 - ztgen_5 - ztir_5 - ztjoin_5 - ztnb - ztnb_p - ztp - ztp_p - zts_5 - ztset_5 - ztspli_5 - ztsum_5 - zttoct_5 - ztvary_5 - ztweib_5 - - - - _cholinv - _cholsolve - _corr - _edittoint - _edittointtol - _edittozero - _edittozerotol - _eigen_work - _eigensystem - _eigenvalues - _equilc - _equilr - _equilrc - _ftell - _fullsvd - _hqrd - _hqrdp - _invlower - _jumble - _lefteigensystem - _lowertriangle - _lud - _lud_la - _luinv - _lusolve - _matexpsym - _matlogsym - _matpowersym - _mprobit_outer_prod - _mprobit_quadrature - _mprobit_quadrature_eval - _mprobit_quadrature_m - _mprobit_select - _mprobit_simulator - _mprobit_simulator_case_g - _mprobit_simulator_lk - _mprobit_simulator_m - _mprobit_simulator_mi - _mprobit_validate_choice - _mprobit_weights_roots_laguerre - _perhapsequilc - _perhapsequilr - _perhapsequilrc - _pinv - _qrinv - _qrsolve - _rowswap - _solvelower - _solveupper - _sort - _svd - _svdsv - _svsolve - _svy_design - _svy_group_sum - _svy_identify - _svy_mean - _svy_mean_post - _svy_mean_std - _svy_mean_stdpost - _svy_over_expand - _svy_over_sizes - _svy_post_sizes - _svy_ratio - _svy_ratio_post - _svy_ratio_std - _svy_ratio_stdpost - _svy_srs_variance - _svy_srssub_variance - _svy_std_sizes - _svy_total - _svy_total_post - _svy_variance - _symeigen_work - _symeigensystem - _symeigenvalues - _symmatfunc_work - _uppertriangle - _xtm_beta - _xtm_blup - _xtm_blup_save - _xtm_blup_save_u - _xtm_blup_u - _xtm_cleanup - _xtm_covtype - _xtm_de_th_u - _xtm_delta_to_theta - _xtm_det_upper - _xtm_em_get_rij - _xtm_em_get_uij - _xtm_em_iter - _xtm_em_iter_u - _xtm_em_solve - _xtm_fact_expand - _xtm_ga_th_u - _xtm_gamma_to_theta - _xtm_get_delta - _xtm_get_delta_u - _xtm_invert_R - _xtm_logdetr00 - _xtm_logdetr00_u - _xtm_matexp - _xtm_matlog - _xtm_mixed_ll - _xtm_mixed_ll_u - _xtm_mixed_ll_uu - _xtm_mk_eqs - _xtm_ml_eqlist - _xtm_ml_eqlist_wrk - _xtm_setup - _xtm_start - _xtm_start_collapse - _xtm_start_u - _xtm_th_de_u - _xtm_th_ga_u - _xtm_theta_to_delta - _xtm_theta_to_gamma - acos - acosh - aggregate - array - asin - asinh - assert - asserteq - atan - atanh - blockdiag - boolean - break - byte - case - cat - catch - chdir - cholesky - cholinv - cholsolve - class - cloglog - collate - colmax - colmin - colscalefactors - colshape - colvector - complex - cond - const - continue - convolve - convolveslowly - Corr - correlation - Corrslowly - corruppercase - cosh - deconvolve - default - delegate - delete - designmatrix - det - dettriangular - diag - diag0cnt - do - double - dsign - e - editmissing - edittoint - edittointtol - edittozero - edittozerotol - editvalue - eigensystem - eigenvalues - else - eltypedef - end - enum - explicit - export - external - fft - fileexists - findfile - float - for - friend - ftell - ftfreqs - ftpad - ftperiodogram - ftretime - ftunwrap - ftwrap - fullsdiag - fullsvd - function - gamma - global - goto - helloworld - Hilbert - hqrd - hqrdmultq - hqrdmultq1t - hqrdp - hqrdq - hqrdq1 - hqrdr - hqrdr1 - if - inline - int - invcloglog - invfft - invHilbert - invlogit - invlower - invorder - invslowfft - invslowft - invvech - isdiagonal - jumble - lefteigensystem - local - log10 - logit - long - lowertriangle - lud - luinv - lusolve - makesymmetric - mat_norm - mata - matexpsym - matlogsym - matpowersym - matrix - max - mean - meanvariance - min - mkdir - mmat_ - mmat_describe - mmat_expandlist - mmat_readerror - mmat_save - mmat_use - mmat_writeerror - namespace - new - norm - NULL - numeric - operator - orgtypedef - panelsetup - panelsetup_u - panelstats - panelsubmatrix - panelsubview - pathlist - pathsubsysdir - pi - pinv - pointer - polyadd - polyadd_expand - polyderiv - polydiv - polyeval - polyinteg - polymorphic - polymult - polyroots - polysolve - polytrim - pragma - private - protected - public - qrd - qrdp - qrinv - qrsolve - quad - quadcorrelation - quadmeanvariance - quadrant - quadvariance - range - rangen - rank - rank_from_singular_values - real - return - revorder - rmdir - rowmax - rowmin - rowscalefactors - rowvector - scalar - scalar_norm - short - sign - signed - sinh - sizeof - slowfft - slowft - solve_tol - solve_tolscale - solvelower - solveupper - sort - spline3 - spline3eval - splineeval - st_islmname - static - string - struct - super - svd - svdsv - svsolve - switch - symeigensystem - symeigenvalues - tanh - template - this - throw - Toeplitz - trace - trace_prod - transmorphic - transposeonly - try - typedef - typename - union - uniqrows - unitcircle - unorder - unsigned - uppertriangle - using - Vandermonde - variance - vec - vec_norm - vech - vector - version - virtual - void - volatile - while - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/stl.xml ktexteditor-5.31.0/src/syntax/data/stl.xml --- ktexteditor-5.28.0/src/syntax/data/stl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/stl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ - - - - - - solid - facet - normal - outer - loop - vertex - endloop - endfacet - endsolid - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/systemc.xml ktexteditor-5.31.0/src/syntax/data/systemc.xml --- ktexteditor-5.28.0/src/syntax/data/systemc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/systemc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,134 +0,0 @@ - - - - - - - - sensitive - - - dont_initialize - gen_unique_name - name - next_trigger - sc_assert_fail - sc_copyright - sc_cycle - sc_initialize - sc_simulation_time - sc_start - sc_stop - sc_get_default_time_unit - sc_get_default_time_resolution - sc_time_stamp - sc_version - timed_out - wait - sc_trace - sc_create_vcd_trace_file - sc_close_vcd_trace_file - - - - SC_MODULE - SC_CTOR - SC_METHOD - SC_THREAD - - - sc_time_unit - sc_clock - sc_int - sc_uint - sc_bigint - sc_biguint - sc_logic - sc_lv - sc_bit - sc_bv - sc_fixed - sc_ufixed - sc_fixed_fast - sc_ufixed_fast - sc_fix - sc_ufix - sc_buffer - sc_fifo - sc_mutex - sc_semaphore - sc_signal - sc_signal_resolved - sc_signal_rv - sc_fifo_in_if - sc_fifo_out_if - sc_mutex_if - sc_semaphore_if - sc_signal_in_if - sc_signal_inout_if - sc_master - sc_inmaster - sc_outmaster - sc_inout_master - sc_indexed - sc_slave - sc_inslave - sc_outslave - sc_inoutslave - sc_in - sc_out - sc_inout - sc_noHandshake - sc_fullHandshake - sc_memfullHandshake - sc_enable_Handshake - sc_memenHandshake - sc_link_mp - sc_trace_file - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/systemverilog.xml ktexteditor-5.31.0/src/syntax/data/systemverilog.xml --- ktexteditor-5.28.0/src/syntax/data/systemverilog.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/systemverilog.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,1028 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - defparam - deassign - - - - DPI - DPI-C - import - export - context - - - - assert - assume - cover - expect - disable - iff - binsof - intersect - first_match - throughout - within - - - - coverpoint - cross - wildcard - bins - ignore_bins - illegal_bins - - - - genvar - - - - if - else - unique - priority - matches - - - - default - - - - forever - repeat - while - for - do - foreach - break - continue - return - - - - pulsestyle_onevent - pulsestyle_ondetect - noshowcancelled - showcancelled - ifnone - - - - initial - final - always - always_comb - always_ff - always_latch - - - - alias - assign - force - release - - - - posedge - negedge - edge - wait - wait_order - - - - timeunit - timeprecision - s - ms - ns - us - ns - ps - fs - step - - - - new - extends - this - super - protected - local - rand - randc - bind - - - - constraint - solve - before - dist - inside - with - - - - virtual - pure - extern - forkjoin - - - - design - instance - cell - liblist - use - - - - library - incdir - include - - - - modport - - - - sync_accept_on - reject_on - accept_on - sync_reject_on - restrict - let - until - until_with - unique0 - eventually - s_until - s_always - s_eventually - s_nexttime - s_until_with - global - untyped - implies - weak - strong - nexttime - - - - - parameter - localparam - specparam - - input - output - inout - ref - - byte - shortint - int - integer - longint - time - - bit - logic - reg - - supply0 - supply1 - tri - triand - trior - trireg - tri0 - tri1 - wire - uwire - wand - wor - - signed - unsigned - - shortreal - real - realtime - - type - void - - struct - union - tagged - - const - var - automatic - static - packed - vectored - scalared - - typedef - enum - string - chandle - event - - null - - - - `__FILE__ - `__LINE__ - `begin_keywords - `celldefine - `default_nettype - `define - `else - `elsif - `end_keywords - `endcelldefine - `endif - `ifdef - `ifndef - `include - `line - `nounconnected_drive - `pragma - `resetall - `timescale - `unconnected_drive - `undef - `undefineall - - - - $finish - $stop - $exit - $realtime - $stime - $time - $printtimescale - $timeformat - $bitstoreal - $realtobits - $bitstoshortreal - $shortrealtobits - $itor - $rtoi - $signed - $unsigned - $cast - $bits - $isunbounded - $typename - $unpacked_dimensions - $dimensions - $left - $right - $low - $high - $increment - $size - $clog2 - $asin - $ln - $acos - $log10 - $atan - $exp - $atan2 - $sqrt - $hypot - $pow - $sinh - $floor - $cosh - $ceil - $tanh - $sin - $asinh - $cos - $acosh - $tan - $atanh - $fatal - $error - $warning - $info - $fatal - $error - $warning - $info - $asserton - $assertoff - $assertkill - $assertpasson - $assertpassoff - $assertfailon - $assertfailoff - $assertnonvacuouson - $assertvacuousoff - $onehot - $onehot0 - $isunknown - $sampled - $rose - $fell - $stable - $changed - $past - $countones - $past_gclk - $rose_gclk - $fell_gclk - $stable_gclk - $changed_gclk - $future_gclk - $rising_gclk - $falling_gclk - $steady_gclk - $changing_gclk - $coverage_control - $coverage_get_max - $coverage_get - $coverage_merge - $coverage_save - $get_coverage - $set_coverage_db_name - $load_coverage_db - $random - $dist_chi_square - $dist_erlang - $dist_exponential - $dist_normal - $dist_poisson - $dist_t - $dist_uniform - $q_initialize - $q_add - $q_remove - $q_full - $q_exam - $async$and$array - $async$and$plane - $async$nand$array - $async$nand$plane - $async$or$array - $async$or$plane - $async$nor$array - $async$nor$plane - $sync$and$array - $sync$and$plane - $sync$nand$array - $sync$nand$plane - $sync$or$array - $sync$or$plane - $sync$nor$array - $sync$nor$plane - $system - $display - $write - $displayb - $writeb - $displayh - $writeh - $displayo - $writeo - $strobe - $monitor - $strobeb - $monitorb - $strobeh - $monitorh - $strobeo - $monitoro - $monitoroff - $monitoron - $fclose - $fopen - $fdisplay - $fwrite - $fdisplayb - $fwriteb - $fdisplayh - $fwriteh - $fdisplayo - $fwriteo - $fstrobe - $fmonitor - $fstrobeb - $fmonitorb - $fstrobeh - $fmonitorh - $fstrobeo - $fmonitoro - $swrite - $sformat - $swriteb - $sformatf - $swriteh - $fgetc - $swriteo - $ungetc - $fscanf - $fgets - $fread - $sscanf - $fseek - $rewind - $fflush - $ftell - $feof - $ferror - $readmemb - $readmemh - $writememb - $writememh - $test$plusargs - $value$plusargs - $dumpfile - $dumpvars - $dumpoff - $dumpon - $dumpall - $dumplimit - $dumpflush - $dumpports - $dumpportsoff - $dumpportson - $dumpportsall - $dumpportslimit - $dumpportsflush - - - - pullup - pulldown - cmos - rcmos - nmos - pmos - rnmos - rpmos - and - nand - or - nor - xor - xnor - not - buf - tran - rtran - tranif0 - tranif1 - rtranif0 - rtranif1 - bufif0 - bufif1 - notif0 - notif1 - - - - - strong0 - strong1 - pull0 - pull1 - weak0 - weak1 - highz0 - highz1 - - small - medium - large - - - randomize - mailbox - semaphore - put - get - try_put - try_get - peek - try_peek - process - state - self - status - kill - await - suspend - resume - - size - delete - insert - num - first - last - next - prev - pop_front - pop_back - push_front - push_back - find - find_index - find_first - find_last - find_last_index - min - max - unique_index - reverse - sort - rsort - shuffle - sum - product - - List - List_Iterator - neq - eq - data - empty - front - back - start - finish - insert_range - erase - erase_range - set - swap - clear - purge - - - - begin - - - end - - - package - - - endpackage - - - macromodule - - - module - - - endmodule - - - generate - - - endgenerate - - - program - - - endprogram - - - class - - - endclass - - - function - - - endfunction - - - case - - - casex - - - casez - - - randcase - - - endcase - - - interface - - - endinterface - - - clocking - - - endclocking - - - task - - - endtask - - - primitive - - - endprimitive - - - fork - - - join - - - join_any - - - join_none - - - covergroup - - - endgroup - - - checker - - - endchecker - - - property - - - endproperty - - - randsequence - - - sequence - - - endsequence - - - specify - - - endspecify - - - config - - - endconfig - - - table - - - endtable - - - extern - - - pure - - - typedef - - - import - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/tads3.xml ktexteditor-5.31.0/src/syntax/data/tads3.xml --- ktexteditor-5.28.0/src/syntax/data/tads3.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/tads3.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,175 +0,0 @@ - - - - - - - - - abort - and - argcount - break - case - catch - class - construct - continue - default - definingobj - delegated - dictionary - do - else - enum - exit - export - extern - finalize - finally - for - foreach - function - goto - grammar - if - in - inherited - intrinsic - is - local - modify - new - nil - not - object - or - property - propertyset - replace - replaced - return - self - static - switch - targetobj - targetprop - template - throw - token - transient - true - try - while - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/taskjuggler.xml ktexteditor-5.31.0/src/syntax/data/taskjuggler.xml --- ktexteditor-5.28.0/src/syntax/data/taskjuggler.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/taskjuggler.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,386 +0,0 @@ - - - - - - - account - project - task - resource - shift - scenario - - - accountid - accountreport - accumulate - allocate - allowredefinitions - alternative - barlabels - booking - bookings - caption - celltext - cellurl - chart - columns - completed - complete - copyright - cost - credit - criticalness - csvaccountreport - csvresourcereport - csvtaskreport - currencydigits - currencyformat - currency - customer - dailymax - dailyworkinghours - db - depends - disabled - drawemptycontainersastasks - duration - efficiency - effort - empty - enabled - endbuffer - endbufferstart - endcredit - end - endsAfter - endsBefore - export - extend - finished - flags - follows - freeload - gapduration - gaplength - headline - hideaccount - hidecelltext - hidecellurl - hideresource - hidetask - hierarchindex - hierarchlevel - hierarchno - htmlaccountreport - htmlmonthlycalendar - htmlresourcereport - htmlstatusreport - htmltaskreport - htmlweeklycalendar - icalreport - id - include - index - inherit - inprogress - journalentry - label - late - length - limits - load - loadunit - macro - mandatory - maxeffort - maxend - maxstart - milestone - mineffort - minend - minstart - monthlymax - name - no - note - notimestamp - notstarted - now - numberformat - ontime - optimize - order - overtime - pathcriticalness - period - period - persistent - precedes - priority - profit - projectid - projectids - projection - project - rate - rawhead - rawstylesheet - rawtail - reference - resourceid - resourcereport - resources - responsibilities - responsible - revenue - rollupaccount - rollupresource - rolluptask - scenario - scenarios - scheduled - schedule - scheduling - select - separator - seqno - shorttimeformat - showprojectids - sloppy - sortaccounts - sortresources - sorttasks - startbufferend - startbuffer - startcredit - start - startsAfter - startsBefore - status - statusnote - strict - subtitle - subtitleurl - supplement - table - taskattributes - taskid - taskprefix - taskreport - taskroot - text - timeformat - timezone - timingresolution - title - titleurl - total - tree - treeLevel - url - utilization - vacation - version - weekdays - weeklymax - weekstartsmonday - weekstartssunday - workinghours - xml - xmlreport - yearlyworkingdays - - - accountid - alap - all - asap - baseline - completeddown - completedup - containstask - criticalnessdown - criticalnessup - daily - day - days - enddown - endup - fri - fullnamedown - fullnameup - hasAssignments - hours - iddown - idup - indexdown - indexup - inprogressearly - inprogresslate - isAccount - isactualallocated - isAllocated - isAllocatedToProject - isAnAccount - isAResource - isatask - isATask - isChildOf - isDutyOf - isLeaf - isMilestone - isOnCriticalPath - isParentOf - isplanallocated - isResource - issubtaskof - isTask - isTaskOfProject - isTaskStatus - longauto - maxeffortdown - maxeffortup - maxloaded - minallocated - mineffortdown - mineffortup - minloaded - minslackrate - minutes - m - mon - month - monthly - months - namedown - nameup - off - pathcriticalnessdown - pathcriticalnessup - prioritydown - priorityup - properties - quarter - quarterly - random - ratedown - rateup - resourceid - responsibledown - responsibleup - sat - sequencedown - sequenceup - shifts - shortauto - startbufferend - startdown - startup - statusdown - statusup - sun - tasks - thu - tue - undefined - wed - week - weekly - weeks - year - yearly - years - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/tcl.xml ktexteditor-5.31.0/src/syntax/data/tcl.xml --- ktexteditor-5.28.0/src/syntax/data/tcl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/tcl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,565 +0,0 @@ - - - - - - - - - - - - after - append - AppleScript - argv - argc - array - auto_execk - auto_execok - auto_import - auto_load - auto_mkindex - auto_mkindex_old - auto_path - auto_qualify - auto_reset - beep - bell - binary - bind - bindtags - bgerror - break - button - canvas - case - catch - cd - chan - checkbutton - clipboard - clock - close - combobox - concat - console - continue - dde - destroy - dict - else - elseif - encoding - entry - env - eof - error - errorCode - errorInfo - eval - event - exec - exit - expr - fblocked - fconfigure - fcopy - file - fileevent - flush - focus - font - for - foreach - format - frame - gets - glob - global - grab - grid - history - if - image - incr - info - interp - join - label - labelframe - lappend - lassign - lindex - linsert - list - listbox - llength - load - lower - lrange - lremove - lrepeat - lreplace - lreverse - lsearch - lset - lsort - menu - menubutton - message - namespace - notebook - open - option - OptProc - pack - package - panedwindow - parray - pid - place - pkg_mkIndex - proc - progressbar - puts - pwd - radiobutton - raise - read - regexp - registry - regsub - rename - resource - return - scale - scan - scrollbar - seek - selection - send - separator - set - sizegrip - socket - source - spinbox - split - string - style - subst - switch - tclLog - tcl_endOfWord - tcl_findLibrary - tcl_library - tcl_patchLevel - tcl_platform - tcl_precision - tcl_rcFileName - tcl_rcRsrcName - tcl_startOfNextWord - tcl_startOfPreviousWord - tcl_traceCompile - tcl_traceExec - tcl_version - tcl_wordBreakAfter - tcl_wordBreakBefore - tell - text - time - tk - tkTabToWindow - tkwait - tk_chooseColor - tk_chooseDirectory - tk_focusFollowMouse - tk_focusNext - tk_focusPrev - tk_getOpenFile - tk_getSaveFile - tk_library - tk_menuSetFocus - tk_messageBox - tk_optionMenu - tk_patchLevel - tk_popup - tk_strictMotif - tk_textCopy - tk_textCut - tk_textPaste - tk_version - toplevel - trace - traverseTo - treeview - unknown - unload - unset - update - uplevel - upvar - variable - vwait - while - winfo - wm - - - - add - args - atime - attributes - body - bytelength - cancel - channels - clicks - cmdcount - commands - compare - complete - convertfrom - convertto - copy - default - delete - dirname - equal - executable - exists - extension - first - forget - format - functions - globals - hostname - idle - ifneeded - index - info - is - isdirectory - isfile - join - last - length - level - library - link - loaded - locals - lstat - map - match - mkdir - mtime - nameofexecutable - names - nativename - normalize - number - owned - patchlevel - pathtype - present - procs - provide - range - readable - readlink - remove - rename - repeat - replace - require - rootname - scan - script - seconds - separator - sharedlibextension - size - split - stat - system - tail - tclversion - tolower - totitle - toupper - trim - trimleft - trimright - type - unknown - variable - vars - vcompare - vdelete - versions - vinfo - volumes - vsatisfies - wordend - wordstart - writable - - activate - actual - addtag - append - appname - aspect - atom - atomname - bbox - bind - broadcast - canvasx - canvasy - caret - cells - cget - children - class - clear - client - clone - colormapfull - colormapwindows - command - configure - containing - coords - create - current - curselection - dchars - debug - deiconify - delta - depth - deselect - dlineinfo - dtag - dump - edit - entrycget - entryconfigure - families - find - flash - focus - focusmodel - fpixels - fraction - frame - generate - geometry - get - gettags - grid - group - handle - height - hide - iconbitmap - iconify - iconmask - iconname - iconposition - iconwindow - icursor - id - identify - image - insert - interps - inuse - invoke - ismapped - itemcget - itemconfigure - keys - lower - manager - mark - maxsize - measure - metrics - minsize - move - name - nearest - overrideredirect - own - panecget - paneconfigure - panes - parent - pathname - pixels - pointerx - pointerxy - pointery - positionfrom - post - postcascade - postscript - protocol - proxy - raise - release - reqheight - reqwidth - resizable - rgb - rootx - rooty - scale - scaling - screen - screencells - screendepth - screenheight - screenmmheight - screenmmwidth - screenvisual - screenwidth - search - see - select - selection - server - set - show - sizefrom - stackorder - state - status - tag - title - toplevel - transient - types - unpost - useinputmethods - validate - values - viewable - visual - visualid - visualsavailable - vrootheight - vrootwidth - vrootx - vrooty - width - window - windowingsystem - withdraw - x - xview - y - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/tcsh.xml ktexteditor-5.31.0/src/syntax/data/tcsh.xml --- ktexteditor-5.28.0/src/syntax/data/tcsh.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/tcsh.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,868 +0,0 @@ - - - - - - - -]> - - - - - - - else - for - function - in - select - until - while - . - then - - - - : - alias - alloc - bg - bindkey - break - builtins - bye - cd - chdir - complete - continue - dirs - echo - echotc - eval - exec - exit - fg - filetest - glob - hashstat - history - hup - inlib - jobs - kill - limit - log - login - logout - ls-F - migrate - newgrp - nice - nohup - notify - onintr - popd - printenv - pushd - rehash - repeat - sched - settc - setty - shift - source - stop - suspend - telltc - time - umask - unalias - uncomplete - unhash - unlimit - ver - wait - watchlog - where - which - - - - unset - unsetenv - - - - - arch - awk - bash - bunzip2 - bzcat - bzcmp - bzdiff - bzegrep - bzfgrep - bzgrep - bzip2 - bzip2recover - bzless - bzmore - cat - chattr - chgrp - chmod - chown - chvt - cp - date - dd - deallocvt - df - dir - dircolors - dmesg - dnsdomainname - domainname - du - dumpkeys - echo - ed - egrep - false - fgconsole - fgrep - fuser - gawk - getkeycodes - gocr - grep - groff - groups - gunzip - gzexe - gzip - hostname - igawk - install - kbd_mode - kbdrate - killall - last - lastb - link - ln - loadkeys - loadunimap - login - ls - lsattr - lsmod - lsmod.old - mapscrn - mesg - mkdir - mkfifo - mknod - mktemp - more - mount - mv - nano - netstat - nisdomainname - nroff - openvt - pgawk - pidof - ping - ps - pstree - pwd - rbash - readlink - red - resizecons - rm - rmdir - run-parts - sash - sed - setfont - setkeycodes - setleds - setmetamode - setserial - sh - showkey - shred - sleep - ssed - stat - stty - su - sync - tar - tempfile - touch - troff - true - umount - uname - unicode_start - unicode_stop - unlink - utmpdump - uuidgen - vdir - wall - wc - ypdomainname - zcat - zcmp - zdiff - zegrep - zfgrep - zforce - zgrep - zless - zmore - znew - zsh - - - aclocal - aconnect - aplay - apm - apmsleep - apropos - ar - arecord - as - as86 - autoconf - autoheader - automake - awk - basename - bc - bison - c++ - cal - cat - cc - cdda2wav - cdparanoia - cdrdao - cd-read - cdrecord - chfn - chgrp - chmod - chown - chroot - chsh - clear - cmp - co - col - comm - cp - cpio - cpp - cut - dc - dd - df - diff - diff3 - dir - dircolors - directomatic - dirname - du - env - expr - fbset - file - find - flex - flex++ - fmt - free - ftp - funzip - fuser - g++ - gawk - gc - gcc - gdb - getent - getopt - gettext - gettextize - gimp - gimp-remote - gimptool - gmake - gs - head - hexdump - id - install - join - kill - killall - ld - ld86 - ldd - less - lex - ln - locate - lockfile - logname - lp - lpr - ls - lynx - m4 - make - man - mkdir - mknod - msgfmt - mv - namei - nasm - nawk - nice - nl - nm - nm86 - nmap - nohup - nop - od - passwd - patch - pcregrep - pcretest - perl - perror - pidof - pr - printf - procmail - prune - ps2ascii - ps2epsi - ps2frag - ps2pdf - ps2ps - psbook - psmerge - psnup - psresize - psselect - pstops - rcs - rev - rm - scp - sed - seq - setterm - shred - size - size86 - skill - slogin - snice - sort - sox - split - ssh - ssh-add - ssh-agent - ssh-keygen - ssh-keyscan - stat - strings - strip - sudo - suidperl - sum - tac - tail - tee - test - tr - uniq - unlink - unzip - updatedb - updmap - uptime - users - vmstat - w - wc - wget - whatis - whereis - which - who - whoami - write - xargs - yacc - yes - zip - zsoelim - - - dcop - kdialog - kfile - xhost - xmodmap - xset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/template-toolkit.xml ktexteditor-5.31.0/src/syntax/data/template-toolkit.xml --- ktexteditor-5.28.0/src/syntax/data/template-toolkit.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/template-toolkit.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,331 +0,0 @@ - - - -]> - - - - - - - SET - GET - CALL - DEFAULT - IF - ELSIF - ELSE - UNLESS - LAST - NEXT - FOR - FOREACH - WHILE - SWITCH - CASE - PROCESS - INCLUDE - INSERT - WRAPPER - BLOCK - MACRO - END - USE - IN - FILTER - TRY - THROW - CATCH - FINAL - META - TAGS - DEBUG - PERL - - - - constants - - template - component - loop - error - content - - - - - defined - length - repeat - replace - match - search - split - chunk - list - hash - size - - keys - values - each - sort - nsort - import - defined - exists - item - - first - last - max - reverse - join - grep - - unshift - push - shift - pop - unique - merge - slice - splice - count - - format - upper - lower - ucfirst - lcfirst - trim - collapse - html - html_entity - html_para - html_break - html_para_break - html_line_break - uri - url - indent - truncate - repeat - remove - replace - redirect - eval - evaltt - perl - evalperl - stdout - stderr - null - latex - - - = - != - ~= - += - -= - *= - /= - **= - |= - ||= - &= - &&= - ?= - + - - - * - - % - || - && - | - & - < - << - > - >> - ^ - -> - => - . - , - ; - :: - \ - and - or - not - eq - ne - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/texinfo.xml ktexteditor-5.31.0/src/syntax/data/texinfo.xml --- ktexteditor-5.28.0/src/syntax/data/texinfo.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/texinfo.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/textile.xml ktexteditor-5.31.0/src/syntax/data/textile.xml --- ktexteditor-5.28.0/src/syntax/data/textile.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/textile.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,103 +0,0 @@ - - - - - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/tibasic.xml ktexteditor-5.31.0/src/syntax/data/tibasic.xml --- ktexteditor-5.28.0/src/syntax/data/tibasic.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/tibasic.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ - - - - - - If - Then - Else - For - While - Repeat - End - Pause - Lbl - Goto - IS> - DS< - Menu - prgm - Return - DelVar - GraphStyle - Input - Prompt - Disp - DispGraph - DispTable - Output - getKey - ClrHome - ClrTable - GetCalc - Get - Send - prgm - - - net - eogt - eolt - sqrt - %THETA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/toml.xml ktexteditor-5.31.0/src/syntax/data/toml.xml --- ktexteditor-5.28.0/src/syntax/data/toml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/toml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ - - - - - - - - - -]> - - - - - true - false - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff -Nru ktexteditor-5.28.0/src/syntax/data/txt2tags.xml ktexteditor-5.31.0/src/syntax/data/txt2tags.xml --- ktexteditor-5.28.0/src/syntax/data/txt2tags.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/txt2tags.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/uscript.xml ktexteditor-5.31.0/src/syntax/data/uscript.xml --- ktexteditor-5.28.0/src/syntax/data/uscript.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/uscript.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,186 +0,0 @@ - - - - - - break - continue - if - else - switch - while - for - do - foreach - true - false - null - new - instanceof - state - auto - exec - function - defaultproperties - native - noexport - var - out - local - event - return - static - Static - synchronized - transient - volatile - final - throws - extends - expands - public - protected - private - abstract - case - default - final - simulated - Dot - nativereplication - replication - unreliable - reliable - ignores - localized - latent - singular - Cross - config - enum - struct - operator - preoperator - postoperator - iterator - coerce - optional - const - editconst - array - export - editinline - editinlinenew - editinlineuse - cpptext - placeable - virtual - hidecategories - super - global - none - self - - - - boolean - char - byte - short - int - long - float - double - void - Pawn - sound - ipaddr - ELightType - actor - ammo - bool - vector - rotator - name - string - object - plane - staticmesh - package - color - coords - material - class - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/vala.xml ktexteditor-5.31.0/src/syntax/data/vala.xml --- ktexteditor-5.28.0/src/syntax/data/vala.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/vala.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,282 +0,0 @@ - - - - - - - abstract - as - async - base - break - case - catch - class - const - construct - continue - default - delegate - delete - do - dynamic - else - enum - ensures - errordomain - extern - false - finally - for - foreach - get - global - if - in - inline - interface - internal - is - lock - namespace - new - null - out - override - owned - private - protected - public - ref - requires - result - return - set - signal - sizeof - static - struct - switch - this - throw - throws - true - try - typeof - unowned - using - value - virtual - weak - while - yield - - - connect - connect_after - disconnect - emit - - - bool - char - double - float - int - int8 - int16 - int32 - int64 - long - short - size_t - ssize_t - string - uchar - uint - uint8 - uint16 - uint32 - uint64 - ulong - unichar - ushort - var - void - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/valgrind-suppression.xml ktexteditor-5.31.0/src/syntax/data/valgrind-suppression.xml --- ktexteditor-5.28.0/src/syntax/data/valgrind-suppression.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/valgrind-suppression.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/validatehl.sh ktexteditor-5.31.0/src/syntax/data/validatehl.sh --- ktexteditor-5.28.0/src/syntax/data/validatehl.sh 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/validatehl.sh 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -#!/bin/sh -xmllint --noout --schema language.xsd $@ diff -Nru ktexteditor-5.28.0/src/syntax/data/varnish4.xml ktexteditor-5.31.0/src/syntax/data/varnish4.xml --- ktexteditor-5.28.0/src/syntax/data/varnish4.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/varnish4.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,372 +0,0 @@ - - - - - - vcl_recv - vcl_pipe - vcl_pass - vcl_hash - vcl_purge - vcl_miss - vcl_hit - vcl_deliver - vcl_synth - vcl_backend_fetch - vcl_backend_response - vcl_backend_error - vcl_init - vcl_fini - - - if - else - elif - elsif - elseif - - - call - set - unset - new - rollback - synthetic - esi - include - panic - - - hash_data - regsub - regsuball - ban - - - abandon - deliver - error - fetch - hash - hit_for_pass - lookup - ok - pass - pipe - purge - restart - retry - synth - - - random - client - hash - round-robin - dns - fallback - - - - std - example - abtest - threescale - authentication - boltsort - crashhandler - curl - digest - dns - header - memcached - null - querystring - shield - softpurge - statsd - throttle - timeutils - urlcode - var - timers - directors - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/varnishcc4.xml ktexteditor-5.31.0/src/syntax/data/varnishcc4.xml --- ktexteditor-5.28.0/src/syntax/data/varnishcc4.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/varnishcc4.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,128 +0,0 @@ - - - - - - - BACKEND - BLOB - BOOL - BYTES - DURATION - HEADER - HTTP - INT - IP - PRIV_CALL - PRIV_VCL - REAL - STRING - STRING_LIST - TIME - VOID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/varnishcc.xml ktexteditor-5.31.0/src/syntax/data/varnishcc.xml --- ktexteditor-5.28.0/src/syntax/data/varnishcc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/varnishcc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,103 +0,0 @@ - - - - - - - BACKEND - BOOL - DURATION - HEADER - INT - IP - PRIV_CALL - PRIV_VCL - REAL - STRING - STRING_LIST - TIME - VOID - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/varnishtest4.xml ktexteditor-5.31.0/src/syntax/data/varnishtest4.xml --- ktexteditor-5.28.0/src/syntax/data/varnishtest4.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/varnishtest4.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,723 +0,0 @@ - - - - - - - raw - vxid - request - session - - - - Backend - BackendClose - BackendOpen - BackendReuse - Backend_health - Begin - BereqAcct - BereqHeader - BereqMethod - BereqProtocol - BereqURL - BerespHeader - BerespProtocol - BerespReason - BerespStatus - BogoHeader - CLI - Debug - ESI_BodyBytes - ESI_xmlerror - End - Error - ExpBan - ExpKill - FetchError - Fetch_Body - Gzip - Hash - Hit - HitPass - HttpGarbage - Length - Link - LostHeader - ObjHeader - ObjProtocol - ObjReason - ObjStatus - PipeAcct - ReqAcct - ReqHeader - ReqMethod - ReqProtocol - ReqStart - ReqURL - RespHeader - RespProtocol - RespReason - RespStatus - SessClose - SessOpen - Storage - TTL - Timestamp - VCL_Error - VCL_Log - VCL_acl - VCL_call - VCL_return - VCL_trace - VSL - WorkThread - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/varnishtest.xml ktexteditor-5.31.0/src/syntax/data/varnishtest.xml --- ktexteditor-5.28.0/src/syntax/data/varnishtest.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/varnishtest.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,567 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/varnish.xml ktexteditor-5.31.0/src/syntax/data/varnish.xml --- ktexteditor-5.28.0/src/syntax/data/varnish.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/varnish.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,349 +0,0 @@ - - - - - - vcl_recv - vcl_pipe - vcl_pass - vcl_hash - vcl_hit - vcl_miss - vcl_fetch - vcl_deliver - vcl_init - vcl_fini - vcl_error - - - if - else - elsif - elseif - - - set - call - error - esi - include - remove - unset - panic - rollback - purge - synthetic - - - hash_data - regsub - regsuball - ban - ban_url - - - deliver - error - fetch - hash - hit_for_pass - lookup - ok - pass - pipe - restart - - - random - client - hash - round-robin - dns - fallback - - - - std - example - abtest - threescale - authentication - boltsort - crashhandler - curl - digest - dns - header - memcached - null - querystring - shield - softpurge - statsd - throttle - timeutils - urlcode - var - timers - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/vcard.xml ktexteditor-5.31.0/src/syntax/data/vcard.xml --- ktexteditor-5.28.0/src/syntax/data/vcard.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/vcard.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/velocity.xml ktexteditor-5.31.0/src/syntax/data/velocity.xml --- ktexteditor-5.28.0/src/syntax/data/velocity.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/velocity.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ - - - - - - #set - #foreach - #end - #if - #else - #elseif - #parse - #macro - #stop - #include - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/vera.xml ktexteditor-5.31.0/src/syntax/data/vera.xml --- ktexteditor-5.28.0/src/syntax/data/vera.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/vera.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,648 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - after - all - any - around - assoc_index - assoc_size - async - bad_state - bad_trans - before - begin - big_endian - bind - bin_activation - bit_normal - bit_reverse - break - breakpoint - case - casex - casez - class - constraint - continue - coverage - coverage_block - coverage_def - coverage_depth - coverage_goal - coverage_group - coverage_option - coverage_val - cross_num_print_missing - cross_auto_bin_max - cov_comment - default - depth - dist - do - else - end - enum - exhaustive - export - extends - extern - for - foreach - fork - function - hdl_task - hdl_node - hide - if - illegal_self_transition - illegal_state - illegal_transition - in - interface - invisible - join - little_endian - local - m_bad_state - m_bad_trans - m_state - m_trans - negedge - new - newcov - non_rand - none - not - null - or - ordered - packed - port - posedge - proceed - prod - prodget - prodset - program - protected - public - rand - randc - randcase - randseq - repeat - return - rules - sample - sample_event - shadow - soft - state - static - super - task - terminate - this - trans - typedef - unpacked - var - vca - vector - verilog_node - verilog_task - vhdl_node - vhdl_task - virtual - virtuals - visible - void - while - wildcard - with - - - integer - bit - reg - string - bind_var - event - inout - input - output - ASYNC - CLOCK - NDRIVE - NHOLD - NRX - NRZ - NR0 - NR1 - NSAMPLE - PDRIVE - PHOLD - PRX - PRZ - PR0 - PR1 - PSAMPLE - - - gnr - grx - grz - gr0 - gr1 - nr - rx - rz - r0 - r1 - snr - srx - srz - sr0 - sr1 - - - - alloc - call_func - call_task - cast_assign - close_conn - cm_coverage - cm_get_coverage - cm_get_limit - coverage_backup_database_file - coverage_save_database - delay - error - error_mode - error_wait - exit - fclose - feof - ferror - fflush - flag - fopen - fprintf - freadb - freadb - freadh - freadstr - get_bind - get_bind_id - get_conn_err - get_cycle - get_env - get_memsize - get_plus_arg - get_systime - get_time - get_time_unit - getstate - initstate - lock_file - mailbox_get - mailbox_put - mailbox_receive - mailbox_send - make_client - make_server - os_command - printf - psprintf - query - query_str - query_x - rand48 - random - region_enter - region_exit - rewind - semaphore_get - semaphore_put - setstate - signal_connect - simwave_plot - srandom - sprintf - sscanf - stop - suspend_thread - sync - timeout - trace - trigger - unit_delay - unlock_file - up_connections - urand48 - urandom - urandom_range - vera_bit_reverse - vera_crc - vera_pack - vera_pack_big_endian - vera_plot - vera_report_profile - vera_unpack - vera_unpack_big_endian - vsv_call_func - vsv_call_task - vsv_close_conn - vsv_get_conn_err - vsv_make_client - vsv_make_server - vsv_up_connections - vsv_wait_for_done - vsv_wait_for_input - wait_child - wait_var - - Configure - DisableTrigger - DoAction - EnableCount - EnableTrigger - Event - GetAssert - GetCount - GetFirstAssert - GetName - GetNextAssert - Wait - atobin - atohex - atoi - atooct - backref - bittostr - capacity - compare - constraint_mode - delete - empty - find - find_index - first - first_index - get_at_least - get_auto_bin - get_cov_weight - get_coverage_goal - get_cross_bin_max - get_status - get_status_msg - getc - hash - icompare - insert - inst_get_at_least - inst_get_auto_bin_max - inst_get_collect - inst_get_cov_weight - inst_get_coverage_goal - inst_getcross_bin_max - inst_query - inst_set_at_least - inst_set_auto_bin_max - inst_set_bin_activiation - inst_set_collect - inst_set_cov_weight - inst_set_coverage_goal - inst_set_cross_bin_max - itoa - last - last_index - len - load - match - max - max_index - min - min_index - object_compare - object_copy - object_print - pack - pick_index - pop_back - pop_front - post_pack - post_randomize - post_unpack - postmatch - pre_pack - pre_randomize - prematch - push_back - push_front - putc - query - query_str - rand_mode - randomize - reserve - reverse - rsort - search - set_at_least - set_auto_bin_max - set_bin_activiation - set_cov_weight - set_coverage_goal - set_cross_bin_max - set_name - size - sort - substr - sum - thismatch - tolower - toupper - unique_index - unpack - - new - object_compare - post_boundary - post_pack - post_randomize - post_unpack - pre-randomize - pre_boundary - pre_pack - pre_unpack - - ALL - ANY - BAD_STATE - BAD_TRANS - CALL - CHECK - CHGEDGE - CLEAR - COPY_NO_WAIT - COPY_WAIT - CROSS - CROSS_TRANS - DEBUG - DELETE - EC_ARRAYX - EC_CODE_END - EC_CONFLICT - EC_EVNTIMOUT - EC_EXPECT - EC_FULLEXPECT - EC_MBXTMOUT - EC_NEXPECT - EC_RETURN - EC_RGNTMOUT - EC_SCONFLICT - EC_SEMTMOUT - EC_SEXPECT - EC_SFULLEXPECT - EC_SNEXTPECT - EC_USERSET - EQ - EVENT - FAIL - FIRST - FORK - GE - GOAL - GT - HAND_SHAKE - HI - HIGH - HNUM - LE - LIC_EXIT - LIC_PRERR - LIC_PRWARN - LIC_WAIT - LO - LOAD - LOW - LT - MAILBOX - MAX_COM - NAME - NE - NEGEDGE - NEXT - NO_OVERLAP - NO_OVERLAP_STATE - NO_OVERLAP_TRANS - NO_VARS - NO_WAIT - NUM - NUM_BIN - NUM_DET - OFF - OK - OK_LAST - ON - ONE_BLAST - ONE_SHOT - ORDER - PAST_IT - PERCENT - POSEDGE - PROGRAM - RAWIN - REGION - REPORT - SAMPLE - SAVE - SEMAPHORE - SET - SILENT - STATE - STR - STR_ERR_OUT_OF_RANGE - STR_ERR_REGEXP_SYNTAX - SUM - TRANS - VERBOSE - WAIT - stderr - stdin - stdout - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/verilog.xml ktexteditor-5.31.0/src/syntax/data/verilog.xml --- ktexteditor-5.28.0/src/syntax/data/verilog.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/verilog.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,257 +0,0 @@ - - - - - - macromodule - table - endtable - specify - specparam - endspecify - - defparam - default - if - ifnone - else - forever - while - for - wait - repeat - disable - - assign - deassign - force - release - - always - initial - edge - posedge - negedge - - - config - endconfig - library - design - liblist - cell - use - instance - - - - begin - fork - module - case - casex - casez - task - function - generate - - - - end - join - endmodule - endcase - endtask - endfunction - endgenerate - - - - - strong0 - strong1 - pull0 - pull1 - weak0 - weak1 - highz0 - highz1 - - small - medium - large - - - - pullup - pulldown - cmos - rcmos - nmos - pmos - rnmos - rpmos - and - nand - or - nor - xor - xnor - not - buf - tran - rtran - tranif0 - tranif1 - rtranif0 - rtranif1 - bufif0 - bufif1 - notif0 - notif1 - - - - - input - output - inout - - wire - tri - tri0 - tri1 - wand - wor - triand - trior - supply0 - supply1 - - reg - integer - real - realtime - time - - vectored - scalared - trireg - - parameter - event - - signed - automatic - genvar - localparam - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/vhdl.xml ktexteditor-5.31.0/src/syntax/data/vhdl.xml --- ktexteditor-5.28.0/src/syntax/data/vhdl.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/vhdl.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,666 +0,0 @@ - - - - - - - - -]> - - - - file - library - use - - - - access - after - alias - all - array - assert - assume - assume_guarantee - attribute - begin - block - body - bus - component - constant - context - cover - default - disconnect - downto - end - exit - fairness - falling_edge - file - for - force - function - generate - generic - group - guarded - impure - inertial - is - label - linkage - literal - map - new - next - null - of - on - open - others - parameter - port - postponed - procedure - process - property - protected - pure - range - record - register - reject - release - report - return - rising_edge - select - sequence - severity - signal - shared - strong - subtype - to - transport - type - unaffected - units - until - variable - vmode - vprop - vunit - wait - when - with - note - warning - error - failure - in - inout - out - buffer - and - abs - or - xor - xnor - not - mod - nand - nor - rem - rol - ror - sla - sra - sll - srl - - - - if - else - elsif - then - - - - loop - - - - in - inout - out - buffer - linkage - - - - signal - variable - constant - type - attribute - - - - to - downto - others - - - - case - when - - - - fs - ps - ns - us - ms - sec - min - hr - - - - - bit - bit_vector - character - boolean - boolean_vector - integer - integer_vector - real - real_vector - time - time_vector - delay_length - string - severity_level - positive - natural - file_open_kind - file_open_status - signed - unsigned - unresolved_unsigned - unresolved_signed - line - text - side - width - std_logic - std_logic_vector - std_ulogic - std_ulogic_vector - x01 - x01z - ux01 - ux01z - qsim_state - qsim_state_vector - qsim_12state - qsim_12state_vector - qsim_strength - mux_bit - mux_vector - reg_bit - reg_vector - wor_bit - wor_vector - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/vrml.xml ktexteditor-5.31.0/src/syntax/data/vrml.xml --- ktexteditor-5.28.0/src/syntax/data/vrml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/vrml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,139 +0,0 @@ - - - - - - DEF - EXTERNPROTO - FALSE - IS - NULL - PROTO - ROUTE - TO - TRUE - USE - eventIn - eventOut - exposedField - field - - - MFColor - MFFloat - MFInt32 - MFNode - MFRotation - MFString - MFTime - MFVec2f - MFVec3f - SFBool - SFColor - SFFloat - SFImage - SFInt32 - SFNode - SFRotation - SFString - SFTime - SFVec2f - SFVec3f - - - Anchor - AudioClip - Appearance - Background - Billboard - Box - Collision - Color - ColorInterpolator - Cone - Coordinate - CoordinateInterpolator - Cylinder - CylinderSensor - DirectionalLight - ElevationGrid - Extrusion - Fog - FontStyle - Group - ImageTexture - IndexedFaceSet - IndexedLineSet - Inline - LOD - Material - MovieTexture - NavigationInfo - Normal - NormalInterpolator - OrientationInterpolator - PixelTexture - Plane - PlaneSensor - PointLight - PointSet - PositionInterpolator - ProximitySensor - ScalarInterpolator - Script - Shape - Sensor - Sound - Sphere - SphereSensor - SpotLight - Switch - Text - TextureCoordinate - TextureTransform - TimeSensor - TouchSensor - Transform - Viewpoint - VisibilitySensor - WorldInfo - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/wavefront-obj.xml ktexteditor-5.31.0/src/syntax/data/wavefront-obj.xml --- ktexteditor-5.28.0/src/syntax/data/wavefront-obj.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/wavefront-obj.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ - - - - - - v - vt - vn - vp - cstype - deg - bmat - step - p - l - f - curv - curv2 - surf - parm - trim - hole - scrv - sp - end - con - g - s - mg - o - bevel - c_interp - d_interp - lod - usemtl - mtllib - usemap - maplib - shadow_obj - trace_obj - ctech - stech - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/winehq.xml ktexteditor-5.31.0/src/syntax/data/winehq.xml --- ktexteditor-5.28.0/src/syntax/data/winehq.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/winehq.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/wml.xml ktexteditor-5.31.0/src/syntax/data/wml.xml --- ktexteditor-5.28.0/src/syntax/data/wml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/wml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,210 +0,0 @@ - - - - - - - - wmllint - wmlindent - wmlscope - po - - - #textdomain - #else - #undef - #error - #warning - - - #define - #ifdef - #ifndef - #ifhave - #ifnhave - #ifver - #ifnver - - - #enddef - #endif - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/xharbour.xml ktexteditor-5.31.0/src/syntax/data/xharbour.xml --- ktexteditor-5.28.0/src/syntax/data/xharbour.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/xharbour.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,543 +0,0 @@ - - - - - - - local - global - extern - field - each - as - set - clear - screen - databases - all - close - color - date - else - elseif - in - to - do - loop - catch - exit - box - say - case - switch - self - super - say - get - read - use - select - otherwise - index - alias - like - has - return - static - on - off - nil - ? - class - external - - - - FOR - IF - SWITCH - WHILE - TRY - BEGIN - PROCEDURE - FUNCTION - METHOD - - - - NEXT - END - ENDIF - ENDDO - ENDCASE - - - - data - inline - method - classdata - init - from - hidden - - - - INVALID - EXACT - FIXED - DECIMALS - DATEFORMAT - EPOCH - PATH - DEFAULT - EXCLUSIVE - SOFTSEEK - UNIQUE - DELETED - CANCEL - DEBUG - TYPEAHEAD - COLOR - CURSOR - CONSOLE - ALTERNATE - ALTFILE - DEVICE - EXTRA - EXTRAFILE - PRINTER - PRINTFILE - MARGIN - BELL - CONFIRM - ESCAPE - INSERT - EXIT - INTENSITY - SCOREBOARD - DELIMITERS - DELIMCHARS - WRAP - MESSAGE - MCENTER - SCROLLBREAK - EVENTMASK - VIDEOMODE - MBLOCKSIZE - MFILEEXT - STRICTREAD - OPTIMIZE - AUTOPEN - AUTORDER - AUTOSHARE - LANGUAGE - IDLEREPEAT - TRACE - TRACEFILE - TRACESTACK - FILECASE - DIRCASE - DIRSEPARATOR - - - - aadd - adel - achoice - aclone - aeval - ains - ascan - asize - adir - afill - atail - asort - array - TAssociativeArray - - bin21 - bin2l - bin2u - bin2w - i2bin - l2bin - u2bin - w2bin - - eval - fieldblock - fieldwblock - - inkey - lastkey - mcol - mrow - nextkey - - empty - word - descend - __dbdelim - __dbsdf - - os - __run - - alert - browse - dbedit - outerr - outstd - readkey - readvar - __atprompt - __input - __menuto - __nonoallert - __typefile - __xrestscreen - __xsavescreen - - DBAPPEND - DBCLEARFILTER - DBCLOSEALL - DBCLOSEAREA - DBCOMMIT - DBCOMMITALL - DBCREATE - DBDELETE - DBEVAL - DBF - DBFILTER - DBGOBOTTOM - DBGOTO - DBGOTOP - DBRECALL - DBRLOCK - DBRLOCKLIST - DBRUNLOCK - DBSEEK - DBSELECTAREA - DBSETDRIVER - DBSETFILTER - DBSKIP - DBSTRUCT - DBUNLOCK - DBUNLOCKALL - DBUSEAREA - INDEXEXT - INDEXKEY - INDEXORD - ORDBAGEXT - ORDBAGNAME - ORDCONDSET - ORDCREATE - ORDDESTROY - ORDFOR - ORDKEY - ORDLISTADD - ORDLISTCLEAR - ORDLISTREBUILD - ORDNAME - ORDNUMBER - ORDSETFOCUS - RDDLIST - RDDNAME - RDDSETDEFAULT - __DBCONTINUE - __DBZAP - __FLEDIT - __RDDSETDEFAULT - __dbCopyStruct - __dbCopyXStruct - __dbCreate - __dbStructFilter - dbSkipper - CDOW - CMONTH - CTOD - DATE - DAY - DAYS - DOW - DTOC - DTOS - MONTH - YEAR - - GETENV - SET - SETMODE - SETTYPEAHEAD - VERSION - __SETCENTURY - __SetFunction - - break - errorsys - throw - errornew - - HB_SETKEYSAVE - HB_SetKeyCheck - HB_SetKeyGet - SETKEY - __QUIT - __WAIT - - file - frename - __dir - - col - maxcol - maxrow - row - hb_colorindex - - CURDIR - DIRCHANGE - DIRREMOVE - DISKSPACE - FCLOSE - FCREATE - FERASE - FERROR - FOPEN - FREAD - FREADSTR - FSEEK - FWRITE - HB_DISKSPACE - HB_FEOF - ISDISK - MAKEDIR - - ABS - EXP - INT - LOG - MAX - MIN - MOD - ROUND - SQRT - - HB_ISBYREF - PROCFILE - PROCLINE - PROCNAME - TYPE - VALTYPE - valtoprg - tone - - HB_LANGNAME - HB_LANGSELECT - ISAFFIRM - ISNEGATIVE - NATIONMSG - - pcount - HB_pvalue - - ALLTRIM - ASC - AT - CHR - HARDCR - HB_ANSITOOEM - HB_OEMTOANSI - HB_VALTOSTR - ISALPHA - ISDIGIT - ISLOWER - ISUPPER - LEFT - LEN - LOWER - LTRIM - MEMOTRAN - PADC - PADL - PADR - RAT - REPLICATE - RIGHT - RTRIM - SPACE - STR - STRTRAN - STRZERO - SUBSTR - TRANSFORM - TRIM - UPPER - VAL - - devoutpict - - elaptime - seconds - secs - time - - do - - ThreadStart - ThreadStop - ThreadSleep - ThreadKill - ThreadJoin - CreateMutex - DestroyMutex - MutexLock - MutexUnlock - Subscribe - SubscribeNow - Notify - NotifyAll - WaitForThreads - KillAllThreads - - InetInit - InetCleanup - InetCreate - InetDestroy - InetConnect - InetServer - InetAccept - InetSetTimeout - InetGetTimeout - InetClearTimeout - InetRecv - InetRecvAll - InetSend - InetSendAll - InetDGram - InetDGramRecv - InetDGramSend - InetAddress - InetPort - InetError - InetErrorDesc - InetGetHosts - InetConnectIP - - hb_regex - hb_regexmatch - hb_regexsplit - hb_regexcomp - hb_readini - hb_writeini - hb_random - hb_chechsum - hb_crypt - hb_decrypt - hb_hextonum - hb_numtohex - hb_exec - hb_execfromarray - - hb_class - hb_keyput - hb_osnewline - - - - - #include - #if - #ifdef - #ifndef - #endif - #else - #define - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/xmldebug.xml ktexteditor-5.31.0/src/syntax/data/xmldebug.xml --- ktexteditor-5.28.0/src/syntax/data/xmldebug.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/xmldebug.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,594 +0,0 @@ - - - - - - CDATA - ID - IDREF - IDREFS - ENTITY - ENTITIES - NMTOKEN - NMTOKENS - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/xml.xml ktexteditor-5.31.0/src/syntax/data/xml.xml --- ktexteditor-5.28.0/src/syntax/data/xml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/xml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,150 +0,0 @@ - - - - -]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/xonotic-console.xml ktexteditor-5.31.0/src/syntax/data/xonotic-console.xml --- ktexteditor-5.28.0/src/syntax/data/xonotic-console.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/xonotic-console.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,5659 +0,0 @@ - - - - - - - alias - apropos - begin - bestweapon - bf - bind - bindlist - bottomcolor - cd - centerview - changelevel - changing - cl_areastats - cl_begindownloads - cl_cmd - cl_downloadbegin - cl_downloadfinished - cl_modelindexlist - cl_particles_reloadeffects - cl_soundindexlist - clear - cmd - cmdlist - color - commandmode - condump - connect - cprint - curl - cvar_lockdefaults - cvar_resettodefaults_all - cvar_resettodefaults_nosaveonly - cvar_resettodefaults_saveonly - cvarlist - defer - demos - dir - disconnect - download - echo - entities - envmap - exec - fixtrans - fly - fog - fog_heighttexture - force_centerview - fs_rescan - fullinfo - fullserverinfo - gamedir - give - gl_texturemode - gl_vbostats - god - heartbeat - history - impulse - in_bind - in_bindlist - in_bindmap - in_unbind - infobar - iplog_list - kick - kill - kickban - load - loadconfig - loadfont - loadsky - locs_add - locs_clear - locs_reload - locs_removenearest - locs_save - ls - map - maps - maxplayers - memlist - memstats - menu_cmd - menu_restart - messagemode - messagemode2 - mod_generatelightmaps - modeldecompile - modellist - modelprecache - name - net_refresh - net_slist - net_slistqw - net_stats - nextul - noclip - notarget - packet - path - pause - pausedemo - ping - pingplreport - pings - play - play2 - playdemo - playermodel - playerskin - playvideo - playvol - pmodel - pointfile - pqrcon - prespawn - prvm_breakpoint - prvm_callprofile - prvm_childprofile - prvm_edict - prvm_edictcount - prvm_edictget - prvm_edicts - prvm_edictset - prvm_edictwatchpoint - prvm_fields - prvm_global - prvm_globalget - prvm_globals - prvm_globalset - prvm_globalwatchpoint - prvm_printfunction - prvm_profile - r_editlights_clear - r_editlights_copyinfo - r_editlights_edit - r_editlights_editall - r_editlights_help - r_editlights_importlightentitiesfrommap - r_editlights_importlightsfile - r_editlights_lock - r_editlights_pasteinfo - r_editlights_reload - r_editlights_remove - r_editlights_save - r_editlights_spawn - r_editlights_togglecorona - r_editlights_toggleshadow - r_glsl_dumpshader - r_glsl_restart - r_listmaptextures - r_replacemaptexture - r_restart - r_texturestats - rate - rcon - reconnect - record - register_bestweapon - restart - save - saveconfig - say - say_team - screenshot - sendcvar - set - seta - setinfo - sizedown - sizeup - skins - snd_restart - snd_unloadallsounds - soundinfo - soundlist - spawn - srcon - startdemos - status - stop - stopdemo - stopdownload - stopsound - stopul - stopvideo - stuffcmds - sv_areastats - sv_cmd - sv_saveentfile - sv_startdownload - tell - timedemo - timerefresh - toggle - toggleconsole - togglemenu - topcolor - unalias - unbind - unbindall - unset - user - users - v_cshift - version - vid_restart - viewframe - viewmodel - viewnext - viewprev - wait - which - - - - accuracy_color0 - accuracy_color1 - accuracy_color2 - accuracy_color_levels - ambient_fade - ambient_level - bgmvolume - bot_ai_aimskill_blendrate - bot_ai_aimskill_firetolerance_distdegrees - bot_ai_aimskill_firetolerance_maxdegrees - bot_ai_aimskill_firetolerance_mindegrees - bot_ai_aimskill_fixedrate - bot_ai_aimskill_mouse - bot_ai_aimskill_offset - bot_ai_aimskill_order_filter_1st - bot_ai_aimskill_order_filter_2nd - bot_ai_aimskill_order_filter_3th - bot_ai_aimskill_order_filter_4th - bot_ai_aimskill_order_filter_5th - bot_ai_aimskill_order_mix_1st - bot_ai_aimskill_order_mix_2nd - bot_ai_aimskill_order_mix_3th - bot_ai_aimskill_order_mix_4th - bot_ai_aimskill_order_mix_5th - bot_ai_aimskill_think - bot_ai_bunnyhop_firstjumpdelay - bot_ai_bunnyhop_skilloffset - bot_ai_bunnyhop_startdistance - bot_ai_bunnyhop_stopdistance - bot_ai_chooseweaponinterval - bot_ai_custom_weapon_priority_close - bot_ai_custom_weapon_priority_distances - bot_ai_custom_weapon_priority_far - bot_ai_custom_weapon_priority_mid - bot_ai_dangerdetectioninterval - bot_ai_dangerdetectionupdates - bot_ai_dodgeupdateinterval - bot_ai_enemydetectioninterval - bot_ai_enemydetectionradius - bot_ai_friends_aware_pickup_radius - bot_ai_ignoregoal_timeout - bot_ai_keyboard_distance - bot_ai_keyboard_threshold - bot_ai_navigation_jetpack - bot_ai_navigation_jetpack_mindistance - bot_ai_strategyinterval - bot_ai_thinkinterval - bot_ai_weapon_combo - bot_ai_weapon_combo_threshold - bot_config_file - bot_debug_goalstack - bot_debug_tracewalk - bot_god - bot_ignore_bots - bot_join_empty - bot_navigation_ignoreplayers - bot_nofire - bot_number - bot_prefix - bot_sound_monopoly - bot_suffix - bot_usemodelnames - bot_vs_human - bot_wander_enable - camera_chase_smoothly - camera_enable - camera_forward_follows - camera_free - camera_look_attenuation - camera_look_player - camera_mouse_threshold - camera_reset - camera_speed_attenuation - camera_speed_chase - camera_speed_free - camera_speed_roll - captureleadlimit_override - capturelimit_override - cdaudio - cdaudioinitialized - chase_active - chase_back - chase_overhead - chase_pitchangle - chase_stevie - chase_up - cl_accuracy_data_receive - cl_accuracy_data_share - cl_allow_uid2name - cl_allow_uidtracking - cl_anglespeedkey - cl_announcer - cl_announcer_antispam - cl_announcer_maptime - cl_autodemo - cl_autodemo_delete - cl_autodemo_delete_keeprecords - cl_autodemo_nameformat - cl_autoscreenshot - cl_autoswitch - cl_autotaunt - cl_backspeed - cl_beams_instantaimhack - cl_beams_lightatend - cl_beams_polygons - cl_beams_quakepositionhack - cl_bob - cl_bob2 - cl_bob2cycle - cl_bob2smooth - cl_bobcycle - cl_bobfall - cl_bobfallcycle - cl_bobfallminspeed - cl_bobmodel - cl_bobmodel_side - cl_bobmodel_speed - cl_bobmodel_up - cl_bobup - cl_capturevideo - cl_capturevideo_demo_stop - cl_capturevideo_fps - cl_capturevideo_framestep - cl_capturevideo_height - cl_capturevideo_nameformat - cl_capturevideo_number - cl_capturevideo_ogg - cl_capturevideo_ogg_theora_bitrate - cl_capturevideo_ogg_theora_keyframe_auto_threshold - cl_capturevideo_ogg_theora_keyframe_bitrate_multiplier - cl_capturevideo_ogg_theora_keyframe_maxinterval - cl_capturevideo_ogg_theora_keyframe_mininterval - cl_capturevideo_ogg_theora_noise_sensitivity - cl_capturevideo_ogg_theora_quality - cl_capturevideo_ogg_theora_vp3compat - cl_capturevideo_ogg_vorbis_quality - cl_capturevideo_printfps - cl_capturevideo_realtime - cl_capturevideo_width - cl_casings - cl_casings_bronze_time - cl_casings_maxcount - cl_casings_shell_time - cl_casings_sloppy - cl_casings_ticrate - cl_clippedspectating - cl_csqc_generatemousemoveevents - cl_curl_enabled - cl_curl_maxdownloads - cl_curl_maxspeed - cl_curl_useragent - cl_curl_useragent_append - cl_damageeffect - cl_damageeffect_bones - cl_damageeffect_distribute - cl_damageeffect_lifetime - cl_damageeffect_lifetime_max - cl_damageeffect_lifetime_min - cl_damageeffect_ticrate - cl_db_saveasdump - cl_deathfade - cl_deathglow - cl_deathnoviewmodel - cl_deathscoreboard - cl_decals - cl_decals_bias - cl_decals_fadetime - cl_decals_max - cl_decals_models - cl_decals_newsystem - cl_decals_newsystem_bloodsmears - cl_decals_newsystem_immediatebloodstain - cl_decals_newsystem_intensitymultiplier - cl_decals_time - cl_decals_visculling - cl_demo_mousegrab - cl_dlights_decaybrightness - cl_dlights_decayradius - cl_dodging_timeout - cl_effects_lightningarc_branchfactor_add - cl_effects_lightningarc_branchfactor_start - cl_effects_lightningarc_drift_end - cl_effects_lightningarc_drift_start - cl_effects_lightningarc_segmentlength - cl_effects_lightningarc_simple - cl_eventchase_death - cl_eventchase_distance - cl_eventchase_maxs - cl_eventchase_mins - cl_eventchase_speed - cl_eventchase_viewoffset - cl_explosions_alpha_end - cl_explosions_alpha_start - cl_explosions_lifetime - cl_explosions_size_end - cl_explosions_size_start - cl_firststart - cl_followmodel - cl_followmodel_side_highpass - cl_followmodel_side_highpass1 - cl_followmodel_side_limit - cl_followmodel_side_lowpass - cl_followmodel_side_speed - cl_followmodel_up_highpass - cl_followmodel_up_highpass1 - cl_followmodel_up_limit - cl_followmodel_up_lowpass - cl_followmodel_up_speed - cl_forcemyplayercolors - cl_forcemyplayermodel - cl_forcemyplayerskin - cl_forceplayercolors - cl_forceplayermodels - cl_forwardspeed - cl_fullbright_items - cl_gameplayfix_soundsmovewithentities - cl_gentle - cl_gentle_damage - cl_gentle_gibs - cl_gentle_messages - cl_ghost_items - cl_ghost_items_color - cl_gibs_avelocity_scale - cl_gibs_damageforcescale - cl_gibs_lifetime - cl_gibs_maxcount - cl_gibs_sloppy - cl_gibs_ticrate - cl_gibs_velocity_random - cl_gibs_velocity_scale - cl_gibs_velocity_up - cl_gravity - cl_gunalign - cl_handicap - cl_hidewaypoints - cl_hitsound - cl_hitsound_antispam_time - cl_iplog_name - cl_itembobheight - cl_itembobspeed - cl_joinbeforedownloadsfinish - cl_leanmodel - cl_leanmodel_side_highpass - cl_leanmodel_side_highpass1 - cl_leanmodel_side_limit - cl_leanmodel_side_lowpass - cl_leanmodel_side_speed - cl_leanmodel_up_highpass - cl_leanmodel_up_highpass1 - cl_leanmodel_up_limit - cl_leanmodel_up_lowpass - cl_leanmodel_up_speed - cl_lerpanim_maxdelta_framegroups - cl_lerpanim_maxdelta_server - cl_lerpexcess - cl_lockview - cl_loddistance1 - cl_loddistance2 - cl_maxfps - cl_maxfps_alwayssleep - cl_maxidlefps - cl_maxphysicsframesperserverframe - cl_minfps - cl_minfps_fade - cl_minfps_force - cl_minfps_qualityhysteresis - cl_minfps_qualitymax - cl_minfps_qualitymin - cl_minfps_qualitymultiply - cl_minfps_qualitystepmax - cl_modeldetailreduction - cl_movecliptokeyboard - cl_movement - cl_movement_accelerate - cl_movement_airaccel_qw - cl_movement_airaccel_sideways_friction - cl_movement_airaccelerate - cl_movement_edgefriction - cl_movement_errorcompensation - cl_movement_friction - cl_movement_jumpvelocity - cl_movement_maxairspeed - cl_movement_maxspeed - cl_movement_minping - cl_movement_nettimeout - cl_movement_replay - cl_movement_stepheight - cl_movement_stopspeed - cl_movement_track_canjump - cl_movement_wallfriction - cl_movement_wateraccelerate - cl_movement_waterfriction - cl_movespeedkey - cl_netfps - cl_netimmediatebuttons - cl_netlocalping - cl_netpacketloss_receive - cl_netpacketloss_send - cl_netrepeatinput - cl_nettimesyncboundmode - cl_nettimesyncboundtolerance - cl_nettimesyncfactor - cl_noantilag - cl_nodelta - cl_nogibs - cl_nolerp - cl_noplayershadow - cl_particlegibs - cl_particles - cl_particles_alpha - cl_particles_blood - cl_particles_blood_alpha - cl_particles_blood_bloodhack - cl_particles_blood_decal_alpha - cl_particles_blood_decal_scalemax - cl_particles_blood_decal_scalemin - cl_particles_bubbles - cl_particles_bulletimpacts - cl_particles_collisions - cl_particles_explosions_shell - cl_particles_explosions_sparks - cl_particles_oldnexbeam - cl_particles_quake - cl_particles_quality - cl_particles_rain - cl_particles_size - cl_particles_smoke - cl_particles_smoke_alpha - cl_particles_smoke_alphafade - cl_particles_snow - cl_particles_sparks - cl_particles_visculling - cl_pitchspeed - cl_playerdetailreduction - cl_port - cl_precacheplayermodels - cl_projectiles_sloppy - cl_prydoncursor - cl_prydoncursor_notrace - cl_readpicture_force - cl_reticle - cl_reticle_item_nex - cl_reticle_item_normal - cl_reticle_stretch - cl_rollangle - cl_rollspeed - cl_sandbox_clipboard - cl_serverextension_download - cl_shownet - cl_sidespeed - cl_simple_items - cl_simpleitems_postfix - cl_smoothviewheight - cl_sound_hknighthit - cl_sound_r_exp3 - cl_sound_ric1 - cl_sound_ric2 - cl_sound_ric3 - cl_sound_ric_gunshot - cl_sound_tink1 - cl_sound_wizardhit - cl_spawn_event_particles - cl_spawn_event_sound - cl_spawn_point_particles - cl_spawnzoom - cl_spawnzoom_factor - cl_spawnzoom_speed - cl_stainmaps - cl_stainmaps_clearonload - cl_stairsmoothspeed - cl_startcount - cl_stripcolorcodes - cl_unpress_attack_on_weapon_switch - cl_unpress_zoom_on_death - cl_unpress_zoom_on_spawn - cl_unpress_zoom_on_weapon_switch - cl_upspeed - cl_vehicle_spiderbot_cross_alpha - cl_vehicle_spiderbot_cross_size - cl_vehicles_hud_tactical - cl_vehicles_hudalpha - cl_vehicles_hudscale - cl_velocityzoom - cl_velocityzoom_speed - cl_velocityzoom_time - cl_velocityzoom_type - cl_video_brightness - cl_video_fadein - cl_video_fadeout - cl_video_keepaspectratio - cl_video_scale - cl_video_scale_vpos - cl_video_stipple - cl_video_subtitles - cl_video_subtitles_lines - cl_video_subtitles_textsize - cl_viewmodel_scale - cl_voice_directional - cl_voice_directional_taunt_attenuation - cl_warpzone_usetrace - cl_weapon_stay_alpha - cl_weapon_stay_color - cl_weaponimpulsemode - cl_weaponpriority - cl_weaponpriority0 - cl_weaponpriority1 - cl_weaponpriority2 - cl_weaponpriority3 - cl_weaponpriority4 - cl_weaponpriority5 - cl_weaponpriority6 - cl_weaponpriority7 - cl_weaponpriority8 - cl_weaponpriority9 - cl_weaponpriority_useforcycling - cl_worldbasename - cl_worldmessage - cl_worldname - cl_worldnamenoextension - cl_yawspeed - cl_zoomfactor - cl_zoomsensitivity - cl_zoomspeed - cmdline - collision_cache - collision_debug_tracelineasbox - collision_endnudge - collision_endposnudge - collision_enternudge - collision_impactnudge - collision_leavenudge - collision_prefernudgedfraction - collision_startnudge - collision_triangle_axialsides - collision_triangle_bevelsides - con_chat - con_chatpos - con_chatrect - con_chatrect_x - con_chatrect_y - con_chatsize - con_chatsound - con_chattime - con_chatwidth - con_closeontoggleconsole - con_completion_chmap - con_completion_devmap - con_completion_exec - con_completion_gotomap - con_completion_playdemo - con_completion_playermodel - con_completion_ply - con_completion_tdem - con_completion_timedemo - con_completion_vdomap - con_completion_vmap - con_completion_vnextmap - con_nickcompletion - con_nickcompletion_flags - con_notify - con_notifyalign - con_notifysize - con_notifytime - con_textsize - coop - crosshair - crosshair_alpha - crosshair_color - crosshair_color_alpha - crosshair_color_blue - crosshair_color_green - crosshair_color_red - crosshair_color_special - crosshair_color_special_rainbow_brightness - crosshair_color_special_rainbow_delay - crosshair_crylink - crosshair_crylink_alpha - crosshair_crylink_color - crosshair_crylink_size - crosshair_dot - crosshair_dot_alpha - crosshair_dot_color - crosshair_dot_color_custom - crosshair_dot_size - crosshair_effect_scalefade - crosshair_effect_time - crosshair_electro - crosshair_electro_alpha - crosshair_electro_color - crosshair_electro_size - crosshair_enabled - crosshair_fireball - crosshair_fireball_alpha - crosshair_fireball_color - crosshair_fireball_size - crosshair_grenadelauncher - crosshair_grenadelauncher_alpha - crosshair_grenadelauncher_color - crosshair_grenadelauncher_size - crosshair_hagar - crosshair_hagar_alpha - crosshair_hagar_color - crosshair_hagar_size - crosshair_hitindication - crosshair_hitindication_color - crosshair_hitindication_per_weapon_color - crosshair_hitindication_speed - crosshair_hittest - crosshair_hittest_blur - crosshair_hittest_showimpact - crosshair_hlac - crosshair_hlac_alpha - crosshair_hlac_color - crosshair_hlac_size - crosshair_hook - crosshair_hook_alpha - crosshair_hook_color - crosshair_hook_size - crosshair_laser - crosshair_laser_alpha - crosshair_laser_color - crosshair_laser_size - crosshair_minelayer - crosshair_minelayer_alpha - crosshair_minelayer_color - crosshair_minelayer_size - crosshair_minstanex - crosshair_minstanex_alpha - crosshair_minstanex_color - crosshair_minstanex_size - crosshair_nex - crosshair_nex_alpha - crosshair_nex_color - crosshair_nex_size - crosshair_per_weapon - crosshair_pickup - crosshair_pickup_speed - crosshair_porto - crosshair_porto_alpha - crosshair_porto_color - crosshair_porto_size - crosshair_rifle - crosshair_rifle_alpha - crosshair_rifle_color - crosshair_rifle_size - crosshair_ring - crosshair_ring_alpha - crosshair_ring_hagar - crosshair_ring_hagar_alpha - crosshair_ring_inner - crosshair_ring_minelayer - crosshair_ring_minelayer_alpha - crosshair_ring_nex - crosshair_ring_nex_alpha - crosshair_ring_nex_currentcharge_movingavg_rate - crosshair_ring_nex_currentcharge_scale - crosshair_ring_nex_inner_alpha - crosshair_ring_nex_inner_color_blue - crosshair_ring_nex_inner_color_green - crosshair_ring_nex_inner_color_red - crosshair_ring_reload - crosshair_ring_reload_alpha - crosshair_ring_reload_size - crosshair_ring_size - crosshair_rocketlauncher - crosshair_rocketlauncher_alpha - crosshair_rocketlauncher_color - crosshair_rocketlauncher_size - crosshair_seeker - crosshair_seeker_alpha - crosshair_seeker_color - crosshair_seeker_size - crosshair_shotgun - crosshair_shotgun_alpha - crosshair_shotgun_color - crosshair_shotgun_size - crosshair_size - crosshair_tuba - crosshair_tuba_alpha - crosshair_tuba_color - crosshair_tuba_size - crosshair_uzi - crosshair_uzi_alpha - crosshair_uzi_color - crosshair_uzi_size - csqc_progcrc - csqc_progname - csqc_progsize - csqc_usedemoprogs - cutscene - deathmatch - developer - developer_csqcentities - developer_entityparsing - developer_extra - developer_font - developer_fteqccbugs - developer_insane - developer_loadfile - developer_loading - developer_memory - developer_memorydebug - developer_networkentities - developer_networking - developer_texturelogging - edgefriction - ekg - forceqmenu - fov - fraglimit - fraglimit_override - freelook - fs_empty_files_in_pack_mark_deletions - fs_gamedir - find - g_allow_oldnexbeam - g_antilag - g_antilag_bullets - g_antilag_nudge - g_arena - g_arena_maxspawned - g_arena_point_leadlimit - g_arena_point_limit - g_arena_respawn_delay - g_arena_respawn_waves - g_arena_round_timelimit - g_arena_roundbased - g_arena_warmup - g_arena_weapon_stay - g_as_respawn_delay - g_as_respawn_waves - g_as_weapon_stay - g_assault - g_balance_armor_blockpercent - g_balance_armor_limit - g_balance_armor_regen - g_balance_armor_regenlinear - g_balance_armor_regenstable - g_balance_armor_rot - g_balance_armor_rotlinear - g_balance_armor_rotstable - g_balance_armor_start - g_balance_cloaked_alpha - g_balance_contents_damagerate - g_balance_contents_drowndelay - g_balance_contents_playerdamage_drowning - g_balance_contents_playerdamage_lava - g_balance_contents_playerdamage_slime - g_balance_contents_projectiledamage - g_balance_crylink_primary_ammo - g_balance_crylink_primary_animtime - g_balance_crylink_primary_bouncedamagefactor - g_balance_crylink_primary_bounces - g_balance_crylink_primary_damage - g_balance_crylink_primary_edgedamage - g_balance_crylink_primary_force - g_balance_crylink_primary_joindelay - g_balance_crylink_primary_joinexplode - g_balance_crylink_primary_joinexplode_damage - g_balance_crylink_primary_joinexplode_edgedamage - g_balance_crylink_primary_joinexplode_force - g_balance_crylink_primary_joinexplode_radius - g_balance_crylink_primary_joinspread - g_balance_crylink_primary_jointime - g_balance_crylink_primary_linkexplode - g_balance_crylink_primary_middle_fadetime - g_balance_crylink_primary_middle_lifetime - g_balance_crylink_primary_other_fadetime - g_balance_crylink_primary_other_lifetime - g_balance_crylink_primary_radius - g_balance_crylink_primary_refire - g_balance_crylink_primary_shots - g_balance_crylink_primary_speed - g_balance_crylink_primary_spread - g_balance_crylink_reload_ammo - g_balance_crylink_reload_time - g_balance_crylink_secondary - g_balance_crylink_secondary_ammo - g_balance_crylink_secondary_animtime - g_balance_crylink_secondary_bouncedamagefactor - g_balance_crylink_secondary_bounces - g_balance_crylink_secondary_damage - g_balance_crylink_secondary_edgedamage - g_balance_crylink_secondary_force - g_balance_crylink_secondary_joindelay - g_balance_crylink_secondary_joinexplode - g_balance_crylink_secondary_joinexplode_damage - g_balance_crylink_secondary_joinexplode_edgedamage - g_balance_crylink_secondary_joinexplode_force - g_balance_crylink_secondary_joinexplode_radius - g_balance_crylink_secondary_joinspread - g_balance_crylink_secondary_jointime - g_balance_crylink_secondary_line_fadetime - g_balance_crylink_secondary_line_lifetime - g_balance_crylink_secondary_linkexplode - g_balance_crylink_secondary_middle_fadetime - g_balance_crylink_secondary_middle_lifetime - g_balance_crylink_secondary_radius - g_balance_crylink_secondary_refire - g_balance_crylink_secondary_shots - g_balance_crylink_secondary_speed - g_balance_crylink_secondary_spread - g_balance_crylink_secondary_spreadtype - g_balance_crylink_switchdelay_drop - g_balance_crylink_switchdelay_raise - g_balance_damagepush_speedfactor - g_balance_electro_combo_comboradius - g_balance_electro_combo_damage - g_balance_electro_combo_edgedamage - g_balance_electro_combo_force - g_balance_electro_combo_radius - g_balance_electro_combo_safeammocheck - g_balance_electro_combo_speed - g_balance_electro_lightning - g_balance_electro_primary_ammo - g_balance_electro_primary_animtime - g_balance_electro_primary_comboradius - g_balance_electro_primary_damage - g_balance_electro_primary_edgedamage - g_balance_electro_primary_falloff_halflifedist - g_balance_electro_primary_falloff_maxdist - g_balance_electro_primary_falloff_mindist - g_balance_electro_primary_force - g_balance_electro_primary_force_up - g_balance_electro_primary_lifetime - g_balance_electro_primary_radius - g_balance_electro_primary_range - g_balance_electro_primary_refire - g_balance_electro_primary_speed - g_balance_electro_primary_spread - g_balance_electro_reload_ammo - g_balance_electro_reload_time - g_balance_electro_secondary_ammo - g_balance_electro_secondary_animtime - g_balance_electro_secondary_bouncefactor - g_balance_electro_secondary_bouncestop - g_balance_electro_secondary_count - g_balance_electro_secondary_damage - g_balance_electro_secondary_damagedbycontents - g_balance_electro_secondary_damageforcescale - g_balance_electro_secondary_edgedamage - g_balance_electro_secondary_force - g_balance_electro_secondary_health - g_balance_electro_secondary_lifetime - g_balance_electro_secondary_radius - g_balance_electro_secondary_refire - g_balance_electro_secondary_refire2 - g_balance_electro_secondary_speed - g_balance_electro_secondary_speed_up - g_balance_electro_secondary_speed_z - g_balance_electro_secondary_spread - g_balance_electro_switchdelay_drop - g_balance_electro_switchdelay_raise - g_balance_falldamage_deadminspeed - g_balance_falldamage_factor - g_balance_falldamage_maxdamage - g_balance_falldamage_minspeed - g_balance_fireball_primary_animtime - g_balance_fireball_primary_bfgdamage - g_balance_fireball_primary_bfgforce - g_balance_fireball_primary_bfgradius - g_balance_fireball_primary_damage - g_balance_fireball_primary_damageforcescale - g_balance_fireball_primary_edgedamage - g_balance_fireball_primary_force - g_balance_fireball_primary_health - g_balance_fireball_primary_laserburntime - g_balance_fireball_primary_laserdamage - g_balance_fireball_primary_laseredgedamage - g_balance_fireball_primary_laserradius - g_balance_fireball_primary_lifetime - g_balance_fireball_primary_radius - g_balance_fireball_primary_refire - g_balance_fireball_primary_refire2 - g_balance_fireball_primary_speed - g_balance_fireball_primary_spread - g_balance_fireball_secondary_animtime - g_balance_fireball_secondary_damage - g_balance_fireball_secondary_damageforcescale - g_balance_fireball_secondary_damagetime - g_balance_fireball_secondary_force - g_balance_fireball_secondary_laserburntime - g_balance_fireball_secondary_laserdamage - g_balance_fireball_secondary_laseredgedamage - g_balance_fireball_secondary_laserradius - g_balance_fireball_secondary_lifetime - g_balance_fireball_secondary_refire - g_balance_fireball_secondary_speed - g_balance_fireball_secondary_speed_up - g_balance_fireball_secondary_speed_z - g_balance_fireball_secondary_spread - g_balance_fireball_switchdelay_drop - g_balance_fireball_switchdelay_raise - g_balance_firetransfer_damage - g_balance_firetransfer_time - g_balance_fuel_limit - g_balance_fuel_regen - g_balance_fuel_regenlinear - g_balance_fuel_regenstable - g_balance_fuel_rot - g_balance_fuel_rotlinear - g_balance_fuel_rotstable - g_balance_grapplehook_airfriction - g_balance_grapplehook_damagedbycontents - g_balance_grapplehook_force_rubber - g_balance_grapplehook_force_rubber_overstretch - g_balance_grapplehook_health - g_balance_grapplehook_length_min - g_balance_grapplehook_speed_fly - g_balance_grapplehook_speed_pull - g_balance_grapplehook_stretch - g_balance_grenadelauncher_bouncefactor - g_balance_grenadelauncher_bouncestop - g_balance_grenadelauncher_primary_ammo - g_balance_grenadelauncher_primary_animtime - g_balance_grenadelauncher_primary_damage - g_balance_grenadelauncher_primary_damageforcescale - g_balance_grenadelauncher_primary_edgedamage - g_balance_grenadelauncher_primary_force - g_balance_grenadelauncher_primary_health - g_balance_grenadelauncher_primary_lifetime - g_balance_grenadelauncher_primary_lifetime2 - g_balance_grenadelauncher_primary_radius - g_balance_grenadelauncher_primary_refire - g_balance_grenadelauncher_primary_remote_minbouncecnt - g_balance_grenadelauncher_primary_speed - g_balance_grenadelauncher_primary_speed_up - g_balance_grenadelauncher_primary_speed_z - g_balance_grenadelauncher_primary_spread - g_balance_grenadelauncher_primary_type - g_balance_grenadelauncher_reload_ammo - g_balance_grenadelauncher_reload_time - g_balance_grenadelauncher_secondary_ammo - g_balance_grenadelauncher_secondary_animtime - g_balance_grenadelauncher_secondary_damage - g_balance_grenadelauncher_secondary_damageforcescale - g_balance_grenadelauncher_secondary_edgedamage - g_balance_grenadelauncher_secondary_force - g_balance_grenadelauncher_secondary_health - g_balance_grenadelauncher_secondary_lifetime - g_balance_grenadelauncher_secondary_lifetime_bounce - g_balance_grenadelauncher_secondary_lifetime_stick - g_balance_grenadelauncher_secondary_radius - g_balance_grenadelauncher_secondary_refire - g_balance_grenadelauncher_secondary_remote_detonateprimary - g_balance_grenadelauncher_secondary_speed - g_balance_grenadelauncher_secondary_speed_up - g_balance_grenadelauncher_secondary_speed_z - g_balance_grenadelauncher_secondary_spread - g_balance_grenadelauncher_secondary_type - g_balance_grenadelauncher_switchdelay_drop - g_balance_grenadelauncher_switchdelay_raise - g_balance_hagar_primary_ammo - g_balance_hagar_primary_damage - g_balance_hagar_primary_damageforcescale - g_balance_hagar_primary_edgedamage - g_balance_hagar_primary_force - g_balance_hagar_primary_health - g_balance_hagar_primary_lifetime - g_balance_hagar_primary_radius - g_balance_hagar_primary_refire - g_balance_hagar_primary_speed - g_balance_hagar_primary_spread - g_balance_hagar_reload_ammo - g_balance_hagar_reload_time - g_balance_hagar_secondary - g_balance_hagar_secondary_ammo - g_balance_hagar_secondary_damage - g_balance_hagar_secondary_damageforcescale - g_balance_hagar_secondary_edgedamage - g_balance_hagar_secondary_force - g_balance_hagar_secondary_health - g_balance_hagar_secondary_lifetime_min - g_balance_hagar_secondary_lifetime_rand - g_balance_hagar_secondary_load - g_balance_hagar_secondary_load_abort - g_balance_hagar_secondary_load_animtime - g_balance_hagar_secondary_load_hold - g_balance_hagar_secondary_load_linkexplode - g_balance_hagar_secondary_load_max - g_balance_hagar_secondary_load_releasedeath - g_balance_hagar_secondary_load_speed - g_balance_hagar_secondary_load_spread - g_balance_hagar_secondary_load_spread_bias - g_balance_hagar_secondary_radius - g_balance_hagar_secondary_refire - g_balance_hagar_secondary_speed - g_balance_hagar_secondary_spread - g_balance_hagar_switchdelay_drop - g_balance_hagar_switchdelay_raise - g_balance_health_limit - g_balance_health_regen - g_balance_health_regenlinear - g_balance_health_regenstable - g_balance_health_rot - g_balance_health_rotlinear - g_balance_health_rotstable - g_balance_health_start - g_balance_hlac_primary_ammo - g_balance_hlac_primary_animtime - g_balance_hlac_primary_damage - g_balance_hlac_primary_edgedamage - g_balance_hlac_primary_force - g_balance_hlac_primary_lifetime - g_balance_hlac_primary_radius - g_balance_hlac_primary_refire - g_balance_hlac_primary_speed - g_balance_hlac_primary_spread_add - g_balance_hlac_primary_spread_crouchmod - g_balance_hlac_primary_spread_max - g_balance_hlac_primary_spread_min - g_balance_hlac_reload_ammo - g_balance_hlac_reload_time - g_balance_hlac_secondary - g_balance_hlac_secondary_ammo - g_balance_hlac_secondary_animtime - g_balance_hlac_secondary_damage - g_balance_hlac_secondary_edgedamage - g_balance_hlac_secondary_force - g_balance_hlac_secondary_lifetime - g_balance_hlac_secondary_radius - g_balance_hlac_secondary_refire - g_balance_hlac_secondary_shots - g_balance_hlac_secondary_speed - g_balance_hlac_secondary_spread - g_balance_hlac_secondary_spread_crouchmod - g_balance_hlac_switchdelay_drop - g_balance_hlac_switchdelay_raise - g_balance_hook_primary_animtime - g_balance_hook_primary_fuel - g_balance_hook_primary_hooked_fuel - g_balance_hook_primary_hooked_time_free - g_balance_hook_primary_hooked_time_max - g_balance_hook_primary_refire - g_balance_hook_secondary_ammo - g_balance_hook_secondary_animtime - g_balance_hook_secondary_damage - g_balance_hook_secondary_damageforcescale - g_balance_hook_secondary_duration - g_balance_hook_secondary_edgedamage - g_balance_hook_secondary_force - g_balance_hook_secondary_gravity - g_balance_hook_secondary_health - g_balance_hook_secondary_lifetime - g_balance_hook_secondary_power - g_balance_hook_secondary_radius - g_balance_hook_secondary_refire - g_balance_hook_secondary_speed - g_balance_hook_switchdelay_drop - g_balance_hook_switchdelay_raise - g_balance_keyhunt_damageforcescale - g_balance_keyhunt_delay_collect - g_balance_keyhunt_delay_fadeout - g_balance_keyhunt_delay_return - g_balance_keyhunt_delay_round - g_balance_keyhunt_delay_tracking - g_balance_keyhunt_dropvelocity - g_balance_keyhunt_maxdist - g_balance_keyhunt_protecttime - g_balance_keyhunt_score_capture - g_balance_keyhunt_score_carrierfrag - g_balance_keyhunt_score_collect - g_balance_keyhunt_score_destroyed - g_balance_keyhunt_score_destroyed_ownfactor - g_balance_keyhunt_score_push - g_balance_keyhunt_throwvelocity - g_balance_kill_antispam - g_balance_kill_delay - g_balance_laser_primary_animtime - g_balance_laser_primary_damage - g_balance_laser_primary_delay - g_balance_laser_primary_edgedamage - g_balance_laser_primary_force - g_balance_laser_primary_force_other_scale - g_balance_laser_primary_force_velocitybias - g_balance_laser_primary_force_zscale - g_balance_laser_primary_gauntlet - g_balance_laser_primary_lifetime - g_balance_laser_primary_radius - g_balance_laser_primary_refire - g_balance_laser_primary_shotangle - g_balance_laser_primary_speed - g_balance_laser_primary_spread - g_balance_laser_reload_ammo - g_balance_laser_reload_time - g_balance_laser_secondary - g_balance_laser_secondary_animtime - g_balance_laser_secondary_damage - g_balance_laser_secondary_delay - g_balance_laser_secondary_edgedamage - g_balance_laser_secondary_force - g_balance_laser_secondary_force_other_scale - g_balance_laser_secondary_force_velocitybias - g_balance_laser_secondary_force_zscale - g_balance_laser_secondary_gauntlet - g_balance_laser_secondary_lifetime - g_balance_laser_secondary_radius - g_balance_laser_secondary_refire - g_balance_laser_secondary_shotangle - g_balance_laser_secondary_speed - g_balance_laser_secondary_spread - g_balance_laser_switchdelay_drop - g_balance_laser_switchdelay_raise - g_balance_minelayer_ammo - g_balance_minelayer_animtime - g_balance_minelayer_damage - g_balance_minelayer_damageforcescale - g_balance_minelayer_detonatedelay - g_balance_minelayer_edgedamage - g_balance_minelayer_force - g_balance_minelayer_health - g_balance_minelayer_lifetime - g_balance_minelayer_lifetime_countdown - g_balance_minelayer_limit - g_balance_minelayer_protection - g_balance_minelayer_proximityradius - g_balance_minelayer_radius - g_balance_minelayer_refire - g_balance_minelayer_reload_ammo - g_balance_minelayer_reload_time - g_balance_minelayer_remote_damage - g_balance_minelayer_remote_edgedamage - g_balance_minelayer_remote_force - g_balance_minelayer_remote_radius - g_balance_minelayer_speed - g_balance_minelayer_switchdelay_drop - g_balance_minelayer_switchdelay_raise - g_balance_minelayer_time - g_balance_minstanex_ammo - g_balance_minstanex_animtime - g_balance_minstanex_laser_ammo - g_balance_minstanex_laser_animtime - g_balance_minstanex_laser_refire - g_balance_minstanex_refire - g_balance_minstanex_reload_ammo - g_balance_minstanex_reload_time - g_balance_minstanex_switchdelay_drop - g_balance_minstanex_switchdelay_raise - g_balance_nex_charge - g_balance_nex_charge_animlimit - g_balance_nex_charge_limit - g_balance_nex_charge_maxspeed - g_balance_nex_charge_mindmg - g_balance_nex_charge_minspeed - g_balance_nex_charge_rate - g_balance_nex_charge_rot_pause - g_balance_nex_charge_rot_rate - g_balance_nex_charge_shot_multiplier - g_balance_nex_charge_start - g_balance_nex_charge_velocity_rate - g_balance_nex_primary_ammo - g_balance_nex_primary_animtime - g_balance_nex_primary_damage - g_balance_nex_primary_damagefalloff_forcehalflife - g_balance_nex_primary_damagefalloff_halflife - g_balance_nex_primary_damagefalloff_maxdist - g_balance_nex_primary_damagefalloff_mindist - g_balance_nex_primary_force - g_balance_nex_primary_refire - g_balance_nex_reload_ammo - g_balance_nex_reload_time - g_balance_nex_secondary - g_balance_nex_secondary_ammo - g_balance_nex_secondary_animtime - g_balance_nex_secondary_charge - g_balance_nex_secondary_charge_rate - g_balance_nex_secondary_chargepool - g_balance_nex_secondary_chargepool_pause_health_regen - g_balance_nex_secondary_chargepool_pause_regen - g_balance_nex_secondary_chargepool_regen - g_balance_nex_secondary_damage - g_balance_nex_secondary_damagefalloff_forcehalflife - g_balance_nex_secondary_damagefalloff_halflife - g_balance_nex_secondary_damagefalloff_maxdist - g_balance_nex_secondary_damagefalloff_mindist - g_balance_nex_secondary_force - g_balance_nex_secondary_refire - g_balance_nex_switchdelay_drop - g_balance_nex_switchdelay_raise - g_balance_nexball_primary_animtime - g_balance_nexball_primary_refire - g_balance_nexball_primary_speed - g_balance_nexball_secondary_animtime - g_balance_nexball_secondary_force - g_balance_nexball_secondary_lifetime - g_balance_nexball_secondary_refire - g_balance_nexball_secondary_speed - g_balance_nix_ammo_cells - g_balance_nix_ammo_fuel - g_balance_nix_ammo_nails - g_balance_nix_ammo_rockets - g_balance_nix_ammo_shells - g_balance_nix_ammoincr_cells - g_balance_nix_ammoincr_fuel - g_balance_nix_ammoincr_nails - g_balance_nix_ammoincr_rockets - g_balance_nix_ammoincr_shells - g_balance_nix_incrtime - g_balance_nix_roundtime - g_balance_pause_armor_rot - g_balance_pause_armor_rot_spawn - g_balance_pause_fuel_regen - g_balance_pause_fuel_rot - g_balance_pause_fuel_rot_spawn - g_balance_pause_health_regen - g_balance_pause_health_regen_spawn - g_balance_pause_health_rot - g_balance_pause_health_rot_spawn - g_balance_portal_health - g_balance_portal_lifetime - g_balance_porto_primary_animtime - g_balance_porto_primary_lifetime - g_balance_porto_primary_refire - g_balance_porto_primary_speed - g_balance_porto_secondary - g_balance_porto_secondary_animtime - g_balance_porto_secondary_lifetime - g_balance_porto_secondary_refire - g_balance_porto_secondary_speed - g_balance_porto_switchdelay_drop - g_balance_porto_switchdelay_raise - g_balance_powerup_invincible_takedamage - g_balance_powerup_invincible_time - g_balance_powerup_strength_damage - g_balance_powerup_strength_force - g_balance_powerup_strength_selfdamage - g_balance_powerup_strength_selfforce - g_balance_powerup_strength_time - g_balance_rifle_bursttime - g_balance_rifle_primary_ammo - g_balance_rifle_primary_animtime - g_balance_rifle_primary_bulletconstant - g_balance_rifle_primary_bullethail - g_balance_rifle_primary_burstcost - g_balance_rifle_primary_damage - g_balance_rifle_primary_force - g_balance_rifle_primary_lifetime - g_balance_rifle_primary_refire - g_balance_rifle_primary_shots - g_balance_rifle_primary_speed - g_balance_rifle_primary_spread - g_balance_rifle_primary_tracer - g_balance_rifle_reload_ammo - g_balance_rifle_reload_time - g_balance_rifle_secondary - g_balance_rifle_secondary_ammo - g_balance_rifle_secondary_animtime - g_balance_rifle_secondary_bulletconstant - g_balance_rifle_secondary_bullethail - g_balance_rifle_secondary_burstcost - g_balance_rifle_secondary_damage - g_balance_rifle_secondary_force - g_balance_rifle_secondary_lifetime - g_balance_rifle_secondary_refire - g_balance_rifle_secondary_reload - g_balance_rifle_secondary_shots - g_balance_rifle_secondary_speed - g_balance_rifle_secondary_spread - g_balance_rifle_secondary_tracer - g_balance_rifle_switchdelay_drop - g_balance_rifle_switchdelay_raise - g_balance_rocketlauncher_ammo - g_balance_rocketlauncher_animtime - g_balance_rocketlauncher_damage - g_balance_rocketlauncher_damageforcescale - g_balance_rocketlauncher_detonatedelay - g_balance_rocketlauncher_edgedamage - g_balance_rocketlauncher_force - g_balance_rocketlauncher_guidedelay - g_balance_rocketlauncher_guidegoal - g_balance_rocketlauncher_guiderate - g_balance_rocketlauncher_guideratedelay - g_balance_rocketlauncher_guidestop - g_balance_rocketlauncher_health - g_balance_rocketlauncher_lifetime - g_balance_rocketlauncher_radius - g_balance_rocketlauncher_refire - g_balance_rocketlauncher_reload_ammo - g_balance_rocketlauncher_reload_time - g_balance_rocketlauncher_remote_damage - g_balance_rocketlauncher_remote_edgedamage - g_balance_rocketlauncher_remote_force - g_balance_rocketlauncher_remote_radius - g_balance_rocketlauncher_speed - g_balance_rocketlauncher_speedaccel - g_balance_rocketlauncher_speedstart - g_balance_rocketlauncher_switchdelay_drop - g_balance_rocketlauncher_switchdelay_raise - g_balance_seeker_flac_ammo - g_balance_seeker_flac_animtime - g_balance_seeker_flac_damage - g_balance_seeker_flac_edgedamage - g_balance_seeker_flac_force - g_balance_seeker_flac_lifetime - g_balance_seeker_flac_lifetime_rand - g_balance_seeker_flac_radius - g_balance_seeker_flac_refire - g_balance_seeker_flac_speed - g_balance_seeker_flac_speed_up - g_balance_seeker_flac_speed_z - g_balance_seeker_flac_spread - g_balance_seeker_missile_accel - g_balance_seeker_missile_ammo - g_balance_seeker_missile_animtime - g_balance_seeker_missile_count - g_balance_seeker_missile_damage - g_balance_seeker_missile_damageforcescale - g_balance_seeker_missile_decel - g_balance_seeker_missile_delay - g_balance_seeker_missile_edgedamage - g_balance_seeker_missile_force - g_balance_seeker_missile_health - g_balance_seeker_missile_lifetime - g_balance_seeker_missile_proxy - g_balance_seeker_missile_proxy_delay - g_balance_seeker_missile_proxy_maxrange - g_balance_seeker_missile_radius - g_balance_seeker_missile_refire - g_balance_seeker_missile_smart - g_balance_seeker_missile_smart_mindist - g_balance_seeker_missile_smart_trace_max - g_balance_seeker_missile_smart_trace_min - g_balance_seeker_missile_speed - g_balance_seeker_missile_speed_max - g_balance_seeker_missile_speed_up - g_balance_seeker_missile_speed_z - g_balance_seeker_missile_spread - g_balance_seeker_missile_turnrate - g_balance_seeker_reload_ammo - g_balance_seeker_reload_time - g_balance_seeker_switchdelay_drop - g_balance_seeker_switchdelay_raise - g_balance_seeker_tag_ammo - g_balance_seeker_tag_animtime - g_balance_seeker_tag_damageforcescale - g_balance_seeker_tag_health - g_balance_seeker_tag_lifetime - g_balance_seeker_tag_refire - g_balance_seeker_tag_speed - g_balance_seeker_tag_spread - g_balance_seeker_tag_tracker_lifetime - g_balance_seeker_type - g_balance_selfdamagepercent - g_balance_shotgun_primary_ammo - g_balance_shotgun_primary_animtime - g_balance_shotgun_primary_bulletconstant - g_balance_shotgun_primary_bullets - g_balance_shotgun_primary_damage - g_balance_shotgun_primary_force - g_balance_shotgun_primary_refire - g_balance_shotgun_primary_speed - g_balance_shotgun_primary_spread - g_balance_shotgun_reload_ammo - g_balance_shotgun_reload_time - g_balance_shotgun_secondary - g_balance_shotgun_secondary_animtime - g_balance_shotgun_secondary_damage - g_balance_shotgun_secondary_force - g_balance_shotgun_secondary_melee_delay - g_balance_shotgun_secondary_melee_multihit - g_balance_shotgun_secondary_melee_no_doubleslap - g_balance_shotgun_secondary_melee_nonplayerdamage - g_balance_shotgun_secondary_melee_range - g_balance_shotgun_secondary_melee_swing_side - g_balance_shotgun_secondary_melee_swing_up - g_balance_shotgun_secondary_melee_time - g_balance_shotgun_secondary_melee_traces - g_balance_shotgun_secondary_refire - g_balance_shotgun_switchdelay_drop - g_balance_shotgun_switchdelay_raise - g_balance_superweapons_time - g_balance_teams - g_balance_teams_prevent_imbalance - g_balance_teams_scorefactor - g_balance_tuba_animtime - g_balance_tuba_attenuation - g_balance_tuba_damage - g_balance_tuba_edgedamage - g_balance_tuba_fadetime - g_balance_tuba_force - g_balance_tuba_pitchstep - g_balance_tuba_radius - g_balance_tuba_refire - g_balance_tuba_switchdelay_drop - g_balance_tuba_switchdelay_raise - g_balance_tuba_volume - g_balance_uzi_bulletconstant - g_balance_uzi_burst - g_balance_uzi_burst_ammo - g_balance_uzi_burst_animtime - g_balance_uzi_burst_damage - g_balance_uzi_burst_force - g_balance_uzi_burst_refire - g_balance_uzi_burst_refire2 - g_balance_uzi_burst_spread - g_balance_uzi_first - g_balance_uzi_first_ammo - g_balance_uzi_first_damage - g_balance_uzi_first_force - g_balance_uzi_first_refire - g_balance_uzi_first_spread - g_balance_uzi_mode - g_balance_uzi_reload_ammo - g_balance_uzi_reload_time - g_balance_uzi_speed - g_balance_uzi_spread_add - g_balance_uzi_spread_max - g_balance_uzi_spread_min - g_balance_uzi_sustained_ammo - g_balance_uzi_sustained_damage - g_balance_uzi_sustained_force - g_balance_uzi_sustained_refire - g_balance_uzi_sustained_spread - g_balance_uzi_switchdelay_drop - g_balance_uzi_switchdelay_raise - g_ballistics_density_corpse - g_ballistics_density_player - g_ballistics_materialconstant - g_ballistics_mindistance - g_ban_default_bantime - g_ban_default_masksize - g_ban_sync_interval - g_ban_sync_timeout - g_ban_sync_trusted_servers - g_ban_sync_trusted_servers_verify - g_ban_sync_uri - g_banned_list - g_banned_list_idmode - g_bastet - g_bloodloss - g_botclip_collisions - g_bugrigs - g_bugrigs_accel - g_bugrigs_air_steering - g_bugrigs_angle_smoothing - g_bugrigs_friction_air - g_bugrigs_friction_brake - g_bugrigs_friction_floor - g_bugrigs_planar_movement - g_bugrigs_planar_movement_car_jumping - g_bugrigs_reverse_speeding - g_bugrigs_reverse_spinning - g_bugrigs_reverse_stopping - g_bugrigs_speed_pow - g_bugrigs_speed_ref - g_bugrigs_steer - g_ca - g_ca_damage2score_multiplier - g_ca_point_leadlimit - g_ca_point_limit - g_ca_respawn_delay - g_ca_respawn_waves - g_ca_round_timelimit - g_ca_spectate_enemies - g_ca_teams - g_ca_teams_override - g_ca_warmup - g_ca_weapon_stay - g_campaign - g_campaign_forceteam - g_campaign_name - g_campaign_skill - g_campaignxonoticbeta_index - g_campaignxonoticbeta_won - g_casings - g_cdtracks_dontusebydefault - g_cdtracks_remaplist - g_changeteam_banned - g_changeteam_fragtransfer - g_chat_flood_burst - g_chat_flood_burst_team - g_chat_flood_burst_tell - g_chat_flood_lmax - g_chat_flood_lmax_team - g_chat_flood_lmax_tell - g_chat_flood_notify_flooder - g_chat_flood_spl - g_chat_flood_spl_team - g_chat_flood_spl_tell - g_chat_nospectators - g_chat_teamcolors - g_chat_tellprivacy - g_cloaked - g_configversion - g_ctf - g_ctf_allow_vehicle_carry - g_ctf_allow_vehicle_touch - g_ctf_captimerecord_always - g_ctf_drop_velocity_side - g_ctf_drop_velocity_up - g_ctf_dropped_capture_delay - g_ctf_dropped_capture_radius - g_ctf_dynamiclights - g_ctf_flag_blue_model - g_ctf_flag_blue_skin - g_ctf_flag_collect_delay - g_ctf_flag_damageforcescale - g_ctf_flag_dropped_floatinwater - g_ctf_flag_dropped_waypoint - g_ctf_flag_glowtrails - g_ctf_flag_health - g_ctf_flag_red_model - g_ctf_flag_red_skin - g_ctf_flag_return_damage - g_ctf_flag_return_dropped - g_ctf_flag_return_time - g_ctf_flag_return_when_unreachable - g_ctf_flagcarrier_auto_helpme_damage - g_ctf_flagcarrier_auto_helpme_time - g_ctf_flagcarrier_damagefactor - g_ctf_flagcarrier_forcefactor - g_ctf_flagcarrier_selfdamagefactor - g_ctf_flagcarrier_selfforcefactor - g_ctf_flagcarrier_waypointforenemy_spotting - g_ctf_fullbrightflags - g_ctf_ignore_frags - g_ctf_pass - g_ctf_pass_arc - g_ctf_pass_arc_max - g_ctf_pass_directional_max - g_ctf_pass_directional_min - g_ctf_pass_radius - g_ctf_pass_request - g_ctf_pass_timelimit - g_ctf_pass_turnrate - g_ctf_pass_velocity - g_ctf_pass_wait - g_ctf_portalteleport - g_ctf_respawn_delay - g_ctf_respawn_waves - g_ctf_reverse - g_ctf_score_capture - g_ctf_score_capture_assist - g_ctf_score_kill - g_ctf_score_penalty_drop - g_ctf_score_penalty_returned - g_ctf_score_penalty_suicidedrop - g_ctf_score_pickup_base - g_ctf_score_pickup_dropped_early - g_ctf_score_pickup_dropped_late - g_ctf_score_return - g_ctf_shield_force - g_ctf_shield_max_ratio - g_ctf_shield_min_negscore - g_ctf_stalemate - g_ctf_stalemate_endcondition - g_ctf_stalemate_time - g_ctf_throw - g_ctf_throw_angle_max - g_ctf_throw_angle_min - g_ctf_throw_punish_count - g_ctf_throw_punish_delay - g_ctf_throw_punish_time - g_ctf_throw_strengthmultiplier - g_ctf_throw_velocity_forward - g_ctf_throw_velocity_up - g_ctf_weapon_stay - g_cts - g_cts_finish_kill_delay - g_cts_respawn_delay - g_cts_respawn_waves - g_cts_selfdamage - g_cts_weapon_stay - g_deathglow - g_debug_bot_commands - g_debug_defaultsounds - g_dm - g_dm_respawn_delay - g_dm_respawn_waves - g_dm_weapon_stay - g_dodging - g_dom_respawn_delay - g_dom_respawn_waves - g_dom_weapon_stay - g_domination - g_domination_default_teams - g_domination_disable_frags - g_domination_point_amt - g_domination_point_capturetime - g_domination_point_fullbright - g_domination_point_glow - g_domination_point_leadlimit - g_domination_point_limit - g_domination_point_rate - g_domination_teams_override - g_footsteps - g_forced_respawn - g_forced_team_blue - g_forced_team_otherwise - g_forced_team_pink - g_forced_team_red - g_forced_team_yellow - g_freezetag - g_freezetag_frozen_force - g_freezetag_frozen_maxtime - g_freezetag_point_leadlimit - g_freezetag_point_limit - g_freezetag_revive_clearspeed - g_freezetag_revive_extra_size - g_freezetag_revive_speed - g_freezetag_round_timelimit - g_freezetag_teams - g_freezetag_teams_override - g_freezetag_warmup - g_friendlyfire - g_friendlyfire_virtual - g_friendlyfire_virtual_force - g_ft_respawn_delay - g_ft_respawn_waves - g_ft_weapon_stay - g_full_getstatus_responses - g_fullbrightitems - g_fullbrightplayers - g_grab_range - g_grappling_hook - g_grappling_hook_tarzan - g_hitplots - g_hitplots_individuals - g_invincible_projectiles - g_jetpack - g_jetpack_acceleration_side - g_jetpack_acceleration_up - g_jetpack_antigravity - g_jetpack_attenuation - g_jetpack_fuel - g_jetpack_maxspeed_side - g_jetpack_maxspeed_up - g_jump_grunt - g_ka_respawn_delay - g_ka_respawn_waves - g_ka_weapon_stay - g_keepaway - g_keepaway_ballcarrier_damage - g_keepaway_ballcarrier_effects - g_keepaway_ballcarrier_force - g_keepaway_ballcarrier_highspeed - g_keepaway_ballcarrier_selfdamage - g_keepaway_ballcarrier_selfforce - g_keepaway_noncarrier_damage - g_keepaway_noncarrier_force - g_keepaway_noncarrier_selfdamage - g_keepaway_noncarrier_selfforce - g_keepaway_noncarrier_warn - g_keepaway_score_bckill - g_keepaway_score_killac - g_keepaway_score_timeinterval - g_keepaway_score_timepoints - g_keepaway_teams - g_keepaway_teams_override - g_keepawayball_damageforcescale - g_keepawayball_effects - g_keepawayball_respawntime - g_keepawayball_trail_color - g_keyhunt - g_keyhunt_point_leadlimit - g_keyhunt_point_limit - g_keyhunt_teams - g_keyhunt_teams_override - g_kh_respawn_delay - g_kh_respawn_waves - g_kh_weapon_stay - g_lms - g_lms_campcheck_damage - g_lms_campcheck_distance - g_lms_campcheck_interval - g_lms_extra_lives - g_lms_join_anytime - g_lms_last_join - g_lms_lives_override - g_lms_regenerate - g_lms_respawn_delay - g_lms_respawn_waves - g_lms_start_ammo_cells - g_lms_start_ammo_fuel - g_lms_start_ammo_nails - g_lms_start_ammo_rockets - g_lms_start_ammo_shells - g_lms_start_armor - g_lms_start_health - g_lms_weapon_stay - g_mapinfo_allow_unsupported_modes_and_let_stuff_break - g_mapinfo_settemp_acl - g_maplist - g_maplist_allow_frustrating - g_maplist_allow_hidden - g_maplist_check_waypoints - g_maplist_index - g_maplist_mostrecent - g_maplist_mostrecent_count - g_maplist_selectrandom - g_maplist_shuffle - g_maplist_votable - g_maplist_votable_abstain - g_maplist_votable_keeptwotime - g_maplist_votable_nodetail - g_maplist_votable_screenshot_dir - g_maplist_votable_suggestions - g_maplist_votable_suggestions_override_mostrecent - g_maplist_votable_timeout - g_max_info_autoscreenshot - g_maxplayers - g_maxplayers_spectator_blocktime - g_maxpushtime - g_maxspeed - g_midair - g_midair_shieldtime - g_minstagib - g_minstagib_ammo_drop - g_minstagib_ammo_start - g_minstagib_extralives - g_minstagib_invis_alpha - g_minstagib_speed_highspeed - g_mirrordamage - g_mirrordamage_virtual - g_mod_balance - g_mod_config - g_mod_physics - g_movement_highspeed - g_multijump - g_multijump_add - g_multijump_speed - g_mutatormsg - g_nb_respawn_delay - g_nb_respawn_waves - g_nb_weapon_stay - g_new_toys - g_new_toys_autoreplace - g_nexball - g_nexball_basketball_bouncefactor - g_nexball_basketball_bouncestop - g_nexball_basketball_carrier_highspeed - g_nexball_basketball_delay_hold - g_nexball_basketball_delay_hold_forteam - g_nexball_basketball_effects_default - g_nexball_basketball_meter - g_nexball_basketball_meter_maxpower - g_nexball_basketball_meter_minpower - g_nexball_basketball_teamsteal - g_nexball_basketball_trail - g_nexball_delay_collect - g_nexball_delay_goal - g_nexball_delay_idle - g_nexball_delay_start - g_nexball_football_boost_forward - g_nexball_football_boost_up - g_nexball_football_bouncefactor - g_nexball_football_bouncestop - g_nexball_football_physics - g_nexball_football_trail - g_nexball_goalleadlimit - g_nexball_goallimit - g_nexball_meter_period - g_nexball_radar_showallplayers - g_nexball_safepass_holdtime - g_nexball_safepass_maxdist - g_nexball_safepass_turnrate - g_nexball_sound_bounce - g_nexball_tackling - g_nexball_trail_color - g_nexball_viewmodel_offset - g_nexball_viewmodel_scale - g_nick_flood_penalty - g_nick_flood_penalty_red - g_nick_flood_penalty_yellow - g_nick_flood_timeout - g_nix - g_nix_with_healtharmor - g_nix_with_laser - g_nix_with_powerups - g_nodepthtestitems - g_nodepthtestplayers - g_norecoil - g_ons_respawn_delay - g_ons_respawn_waves - g_ons_weapon_stay - g_onslaught - g_onslaught_cp_buildhealth - g_onslaught_cp_buildtime - g_onslaught_cp_health - g_onslaught_cp_proxydecap - g_onslaught_cp_proxydecap_distance - g_onslaught_cp_proxydecap_dps - g_onslaught_cp_regen - g_onslaught_gen_health - g_onslaught_spawn_at_controlpoints - g_onslaught_spawn_at_generator - g_physical_items - g_physical_items_damageforcescale - g_physical_items_reset - g_pickup_ammo_anyway - g_pickup_armorbig - g_pickup_armorbig_anyway - g_pickup_armorbig_max - g_pickup_armorlarge - g_pickup_armorlarge_anyway - g_pickup_armorlarge_max - g_pickup_armormedium - g_pickup_armormedium_anyway - g_pickup_armormedium_max - g_pickup_armorsmall - g_pickup_armorsmall_anyway - g_pickup_armorsmall_max - g_pickup_cells - g_pickup_cells_max - g_pickup_cells_weapon - g_pickup_fuel - g_pickup_fuel_jetpack - g_pickup_fuel_max - g_pickup_fuel_weapon - g_pickup_healthlarge - g_pickup_healthlarge_anyway - g_pickup_healthlarge_max - g_pickup_healthmedium - g_pickup_healthmedium_anyway - g_pickup_healthmedium_max - g_pickup_healthmega - g_pickup_healthmega_anyway - g_pickup_healthmega_max - g_pickup_healthsmall - g_pickup_healthsmall_anyway - g_pickup_healthsmall_max - g_pickup_items - g_pickup_nails - g_pickup_nails_max - g_pickup_nails_weapon - g_pickup_respawntime_ammo - g_pickup_respawntime_long - g_pickup_respawntime_medium - g_pickup_respawntime_powerup - g_pickup_respawntime_short - g_pickup_respawntime_superweapon - g_pickup_respawntime_weapon - g_pickup_respawntimejitter_ammo - g_pickup_respawntimejitter_long - g_pickup_respawntimejitter_medium - g_pickup_respawntimejitter_powerup - g_pickup_respawntimejitter_short - g_pickup_respawntimejitter_superweapon - g_pickup_respawntimejitter_weapon - g_pickup_rockets - g_pickup_rockets_max - g_pickup_rockets_weapon - g_pickup_shells - g_pickup_shells_max - g_pickup_shells_weapon - g_pickup_weapons_anyway - g_pinata - g_player_alpha - g_player_brightness - g_playerclip_collisions - g_playerstats_uri - g_powerups - g_projectiles_damage - g_projectiles_keep_owner - g_projectiles_newton_style - g_projectiles_newton_style_2_maxfactor - g_projectiles_newton_style_2_minfactor - g_projectiles_spread_style - g_race - g_race_laps_limit - g_race_qualifying_timelimit - g_race_qualifying_timelimit_override - g_race_teams - g_rc_respawn_delay - g_rc_respawn_waves - g_rc_weapon_stay - g_respawn_delay - g_respawn_ghosts - g_respawn_ghosts_maxtime - g_respawn_ghosts_speed - g_respawn_waves - g_rocket_flying - g_running_guns - g_sandbox - g_sandbox_editor_distance_edit - g_sandbox_editor_distance_spawn - g_sandbox_editor_flood - g_sandbox_editor_free - g_sandbox_editor_maxobjects - g_sandbox_info - g_sandbox_object_material_velocity_factor - g_sandbox_object_material_velocity_min - g_sandbox_object_scale_max - g_sandbox_object_scale_min - g_sandbox_readonly - g_sandbox_storage_autoload - g_sandbox_storage_autosave - g_sandbox_storage_name - g_shootfromcenter - g_shootfromclient - g_shootfromeye - g_shootfromfixedorigin - g_showweaponspawns - g_spawn_alloweffects - g_spawn_furthest - g_spawn_near_teammate - g_spawn_near_teammate_distance - g_spawn_useallspawns - g_spawnpoints_auto_move_out_of_solid - g_spawnshieldtime - g_start_ammo_cells - g_start_ammo_fuel - g_start_ammo_nails - g_start_ammo_rockets - g_start_ammo_shells - g_start_delay - g_start_weapon_crylink - g_start_weapon_electro - g_start_weapon_fireball - g_start_weapon_grenadelauncher - g_start_weapon_hagar - g_start_weapon_hlac - g_start_weapon_hook - g_start_weapon_laser - g_start_weapon_minelayer - g_start_weapon_minstanex - g_start_weapon_nex - g_start_weapon_porto - g_start_weapon_rifle - g_start_weapon_rocketlauncher - g_start_weapon_seeker - g_start_weapon_shotgun - g_start_weapon_tuba - g_start_weapon_uzi - g_superspectate - g_tdm - g_tdm_on_dm_maps - g_tdm_respawn_delay - g_tdm_respawn_waves - g_tdm_team_spawns - g_tdm_teams - g_tdm_teams_override - g_tdm_weapon_stay - g_teamdamage_resetspeed - g_teamdamage_threshold - g_telefrags - g_telefrags_avoid - g_telefrags_teamplay - g_teleport_maxspeed - g_throughfloor_damage - g_throughfloor_damage_max_stddev - g_throughfloor_debug - g_throughfloor_force - g_throughfloor_force_max_stddev - g_throughfloor_max_steps_other - g_throughfloor_max_steps_player - g_throughfloor_min_steps_other - g_throughfloor_min_steps_player - g_touchexplode - g_touchexplode_damage - g_touchexplode_edgedamage - g_touchexplode_force - g_touchexplode_radius - g_triggerimpulse_accel_multiplier - g_triggerimpulse_accel_power - g_triggerimpulse_directional_multiplier - g_triggerimpulse_radial_multiplier - g_trueaim_minrange - g_turrets - g_turrets_aimidle_delay - g_turrets_nofire - g_turrets_reloadcvars - g_turrets_targetscan_maxdelay - g_turrets_targetscan_mindelay - g_turrets_unit_ewheel_speed_fast - g_turrets_unit_ewheel_speed_slow - g_turrets_unit_ewheel_speed_slower - g_turrets_unit_ewheel_speed_stop - g_turrets_unit_ewheel_std_aim_firetolerance_dist - g_turrets_unit_ewheel_std_aim_maxpitch - g_turrets_unit_ewheel_std_aim_maxrot - g_turrets_unit_ewheel_std_aim_speed - g_turrets_unit_ewheel_std_ammo - g_turrets_unit_ewheel_std_ammo_max - g_turrets_unit_ewheel_std_ammo_recharge - g_turrets_unit_ewheel_std_health - g_turrets_unit_ewheel_std_respawntime - g_turrets_unit_ewheel_std_shot_dmg - g_turrets_unit_ewheel_std_shot_force - g_turrets_unit_ewheel_std_shot_radius - g_turrets_unit_ewheel_std_shot_refire - g_turrets_unit_ewheel_std_shot_speed - g_turrets_unit_ewheel_std_shot_spread - g_turrets_unit_ewheel_std_shot_volly - g_turrets_unit_ewheel_std_shot_volly_refire - g_turrets_unit_ewheel_std_target_range - g_turrets_unit_ewheel_std_target_range_min - g_turrets_unit_ewheel_std_target_range_optimal - g_turrets_unit_ewheel_std_target_select_anglebias - g_turrets_unit_ewheel_std_target_select_missilebias - g_turrets_unit_ewheel_std_target_select_playerbias - g_turrets_unit_ewheel_std_target_select_rangebias - g_turrets_unit_ewheel_std_target_select_samebias - g_turrets_unit_ewheel_std_track_accel_pitch - g_turrets_unit_ewheel_std_track_accel_rot - g_turrets_unit_ewheel_std_track_type - g_turrets_unit_ewheel_turnrate - g_turrets_unit_flac_std_aim_firetolerance_dist - g_turrets_unit_flac_std_aim_maxpitch - g_turrets_unit_flac_std_aim_maxrot - g_turrets_unit_flac_std_aim_speed - g_turrets_unit_flac_std_ammo - g_turrets_unit_flac_std_ammo_max - g_turrets_unit_flac_std_ammo_recharge - g_turrets_unit_flac_std_health - g_turrets_unit_flac_std_respawntime - g_turrets_unit_flac_std_shot_dmg - g_turrets_unit_flac_std_shot_force - g_turrets_unit_flac_std_shot_radius - g_turrets_unit_flac_std_shot_refire - g_turrets_unit_flac_std_shot_speed - g_turrets_unit_flac_std_shot_spread - g_turrets_unit_flac_std_shot_volly - g_turrets_unit_flac_std_shot_volly_refire - g_turrets_unit_flac_std_target_range - g_turrets_unit_flac_std_target_range_min - g_turrets_unit_flac_std_target_range_optimal - g_turrets_unit_flac_std_target_select_anglebias - g_turrets_unit_flac_std_target_select_missilebias - g_turrets_unit_flac_std_target_select_playerbias - g_turrets_unit_flac_std_target_select_rangebias - g_turrets_unit_flac_std_target_select_samebias - g_turrets_unit_flac_std_track_accel_pitch - g_turrets_unit_flac_std_track_accel_rot - g_turrets_unit_flac_std_track_blendrate - g_turrets_unit_flac_std_track_type - g_turrets_unit_fusreac_std_aim_firetolerance_dist - g_turrets_unit_fusreac_std_aim_maxpitch - g_turrets_unit_fusreac_std_aim_maxrot - g_turrets_unit_fusreac_std_aim_speed - g_turrets_unit_fusreac_std_ammo - g_turrets_unit_fusreac_std_ammo_max - g_turrets_unit_fusreac_std_ammo_recharge - g_turrets_unit_fusreac_std_health - g_turrets_unit_fusreac_std_respawntime - g_turrets_unit_fusreac_std_shot_dmg - g_turrets_unit_fusreac_std_shot_force - g_turrets_unit_fusreac_std_shot_radius - g_turrets_unit_fusreac_std_shot_refire - g_turrets_unit_fusreac_std_shot_speed - g_turrets_unit_fusreac_std_shot_spread - g_turrets_unit_fusreac_std_shot_volly - g_turrets_unit_fusreac_std_shot_volly_refire - g_turrets_unit_fusreac_std_target_range - g_turrets_unit_fusreac_std_target_range_min - g_turrets_unit_fusreac_std_target_range_optimal - g_turrets_unit_fusreac_std_target_select_anglebias - g_turrets_unit_fusreac_std_target_select_playerbias - g_turrets_unit_fusreac_std_target_select_rangebias - g_turrets_unit_fusreac_std_target_select_samebias - g_turrets_unit_fusreac_std_track_accel_pitch - g_turrets_unit_fusreac_std_track_accel_rot - g_turrets_unit_fusreac_std_track_blendrate - g_turrets_unit_fusreac_std_track_type - g_turrets_unit_hellion_std_aim_firetolerance_dist - g_turrets_unit_hellion_std_aim_maxpitch - g_turrets_unit_hellion_std_aim_maxrot - g_turrets_unit_hellion_std_aim_speed - g_turrets_unit_hellion_std_ammo - g_turrets_unit_hellion_std_ammo_max - g_turrets_unit_hellion_std_ammo_recharge - g_turrets_unit_hellion_std_health - g_turrets_unit_hellion_std_respawntime - g_turrets_unit_hellion_std_shot_dmg - g_turrets_unit_hellion_std_shot_force - g_turrets_unit_hellion_std_shot_radius - g_turrets_unit_hellion_std_shot_refire - g_turrets_unit_hellion_std_shot_speed - g_turrets_unit_hellion_std_shot_speed_gain - g_turrets_unit_hellion_std_shot_speed_max - g_turrets_unit_hellion_std_shot_spread - g_turrets_unit_hellion_std_shot_volly - g_turrets_unit_hellion_std_shot_volly_refire - g_turrets_unit_hellion_std_target_range - g_turrets_unit_hellion_std_target_range_min - g_turrets_unit_hellion_std_target_range_optimal - g_turrets_unit_hellion_std_target_select_anglebias - g_turrets_unit_hellion_std_target_select_missilebias - g_turrets_unit_hellion_std_target_select_playerbias - g_turrets_unit_hellion_std_target_select_rangebias - g_turrets_unit_hellion_std_target_select_samebias - g_turrets_unit_hellion_std_track_accel_pitch - g_turrets_unit_hellion_std_track_accel_rot - g_turrets_unit_hellion_std_track_blendrate - g_turrets_unit_hellion_std_track_type - g_turrets_unit_hk_std_aim_firetolerance_dist - g_turrets_unit_hk_std_aim_maxpitch - g_turrets_unit_hk_std_aim_maxrot - g_turrets_unit_hk_std_aim_speed - g_turrets_unit_hk_std_ammo - g_turrets_unit_hk_std_ammo_max - g_turrets_unit_hk_std_ammo_recharge - g_turrets_unit_hk_std_health - g_turrets_unit_hk_std_respawntime - g_turrets_unit_hk_std_shot_dmg - g_turrets_unit_hk_std_shot_force - g_turrets_unit_hk_std_shot_radius - g_turrets_unit_hk_std_shot_refire - g_turrets_unit_hk_std_shot_speed - g_turrets_unit_hk_std_shot_speed_accel - g_turrets_unit_hk_std_shot_speed_accel2 - g_turrets_unit_hk_std_shot_speed_decel - g_turrets_unit_hk_std_shot_speed_max - g_turrets_unit_hk_std_shot_speed_turnrate - g_turrets_unit_hk_std_shot_spread - g_turrets_unit_hk_std_shot_volly - g_turrets_unit_hk_std_shot_volly_refire - g_turrets_unit_hk_std_target_range - g_turrets_unit_hk_std_target_range_min - g_turrets_unit_hk_std_target_range_optimal - g_turrets_unit_hk_std_target_select_anglebias - g_turrets_unit_hk_std_target_select_missilebias - g_turrets_unit_hk_std_target_select_playerbias - g_turrets_unit_hk_std_target_select_rangebias - g_turrets_unit_hk_std_target_select_samebias - g_turrets_unit_hk_std_track_accel_pitch - g_turrets_unit_hk_std_track_accel_rot - g_turrets_unit_hk_std_track_blendrate - g_turrets_unit_hk_std_track_type - g_turrets_unit_machinegun_std_aim_firetolerance_dist - g_turrets_unit_machinegun_std_aim_maxpitch - g_turrets_unit_machinegun_std_aim_maxrot - g_turrets_unit_machinegun_std_aim_speed - g_turrets_unit_machinegun_std_ammo - g_turrets_unit_machinegun_std_ammo_max - g_turrets_unit_machinegun_std_ammo_recharge - g_turrets_unit_machinegun_std_health - g_turrets_unit_machinegun_std_respawntime - g_turrets_unit_machinegun_std_shot_dmg - g_turrets_unit_machinegun_std_shot_force - g_turrets_unit_machinegun_std_shot_radius - g_turrets_unit_machinegun_std_shot_refire - g_turrets_unit_machinegun_std_shot_speed - g_turrets_unit_machinegun_std_shot_spread - g_turrets_unit_machinegun_std_shot_volly - g_turrets_unit_machinegun_std_shot_volly_refire - g_turrets_unit_machinegun_std_target_range - g_turrets_unit_machinegun_std_target_range_min - g_turrets_unit_machinegun_std_target_range_optimal - g_turrets_unit_machinegun_std_target_select_anglebias - g_turrets_unit_machinegun_std_target_select_missilebias - g_turrets_unit_machinegun_std_target_select_playerbias - g_turrets_unit_machinegun_std_target_select_rangebias - g_turrets_unit_machinegun_std_target_select_samebias - g_turrets_unit_machinegun_std_track_accel_pitch - g_turrets_unit_machinegun_std_track_accel_rot - g_turrets_unit_machinegun_std_track_blendrate - g_turrets_unit_machinegun_std_track_type - g_turrets_unit_mlrs_std_aim_firetolerance_dist - g_turrets_unit_mlrs_std_aim_maxpitch - g_turrets_unit_mlrs_std_aim_maxrot - g_turrets_unit_mlrs_std_aim_speed - g_turrets_unit_mlrs_std_ammo - g_turrets_unit_mlrs_std_ammo_max - g_turrets_unit_mlrs_std_ammo_recharge - g_turrets_unit_mlrs_std_health - g_turrets_unit_mlrs_std_respawntime - g_turrets_unit_mlrs_std_shot_dmg - g_turrets_unit_mlrs_std_shot_force - g_turrets_unit_mlrs_std_shot_radius - g_turrets_unit_mlrs_std_shot_refire - g_turrets_unit_mlrs_std_shot_speed - g_turrets_unit_mlrs_std_shot_spread - g_turrets_unit_mlrs_std_shot_volly - g_turrets_unit_mlrs_std_shot_volly_refire - g_turrets_unit_mlrs_std_target_range - g_turrets_unit_mlrs_std_target_range_min - g_turrets_unit_mlrs_std_target_range_optimal - g_turrets_unit_mlrs_std_target_select_anglebias - g_turrets_unit_mlrs_std_target_select_missilebias - g_turrets_unit_mlrs_std_target_select_playerbias - g_turrets_unit_mlrs_std_target_select_rangebias - g_turrets_unit_mlrs_std_target_select_samebias - g_turrets_unit_mlrs_std_track_accel_pitch - g_turrets_unit_mlrs_std_track_accel_rot - g_turrets_unit_mlrs_std_track_blendrate - g_turrets_unit_mlrs_std_track_type - g_turrets_unit_phaser_std_aim_firetolerance_dist - g_turrets_unit_phaser_std_aim_maxpitch - g_turrets_unit_phaser_std_aim_maxrot - g_turrets_unit_phaser_std_aim_speed - g_turrets_unit_phaser_std_ammo - g_turrets_unit_phaser_std_ammo_max - g_turrets_unit_phaser_std_ammo_recharge - g_turrets_unit_phaser_std_health - g_turrets_unit_phaser_std_respawntime - g_turrets_unit_phaser_std_shot_dmg - g_turrets_unit_phaser_std_shot_force - g_turrets_unit_phaser_std_shot_radius - g_turrets_unit_phaser_std_shot_refire - g_turrets_unit_phaser_std_shot_speed - g_turrets_unit_phaser_std_shot_spread - g_turrets_unit_phaser_std_shot_volly - g_turrets_unit_phaser_std_shot_volly_refire - g_turrets_unit_phaser_std_target_range - g_turrets_unit_phaser_std_target_range_min - g_turrets_unit_phaser_std_target_range_optimal - g_turrets_unit_phaser_std_target_select_anglebias - g_turrets_unit_phaser_std_target_select_missilebias - g_turrets_unit_phaser_std_target_select_playerbias - g_turrets_unit_phaser_std_target_select_rangebias - g_turrets_unit_phaser_std_target_select_samebias - g_turrets_unit_phaser_std_track_accel_pitch - g_turrets_unit_phaser_std_track_accel_rot - g_turrets_unit_phaser_std_track_blendrate - g_turrets_unit_phaser_std_track_type - g_turrets_unit_plasma_dual_aim_firetolerance_dist - g_turrets_unit_plasma_dual_aim_maxpitch - g_turrets_unit_plasma_dual_aim_maxrot - g_turrets_unit_plasma_dual_aim_speed - g_turrets_unit_plasma_dual_ammo - g_turrets_unit_plasma_dual_ammo_max - g_turrets_unit_plasma_dual_ammo_recharge - g_turrets_unit_plasma_dual_health - g_turrets_unit_plasma_dual_respawntime - g_turrets_unit_plasma_dual_shot_dmg - g_turrets_unit_plasma_dual_shot_force - g_turrets_unit_plasma_dual_shot_radius - g_turrets_unit_plasma_dual_shot_refire - g_turrets_unit_plasma_dual_shot_speed - g_turrets_unit_plasma_dual_shot_spread - g_turrets_unit_plasma_dual_shot_volly - g_turrets_unit_plasma_dual_shot_volly_refire - g_turrets_unit_plasma_dual_target_range - g_turrets_unit_plasma_dual_target_range_min - g_turrets_unit_plasma_dual_target_range_optimal - g_turrets_unit_plasma_dual_target_select_anglebias - g_turrets_unit_plasma_dual_target_select_missilebias - g_turrets_unit_plasma_dual_target_select_playerbias - g_turrets_unit_plasma_dual_target_select_rangebias - g_turrets_unit_plasma_dual_target_select_samebias - g_turrets_unit_plasma_dual_track_accel_pitch - g_turrets_unit_plasma_dual_track_accel_rot - g_turrets_unit_plasma_dual_track_blendrate - g_turrets_unit_plasma_dual_track_type - g_turrets_unit_plasma_std_aim_firetolerance_dist - g_turrets_unit_plasma_std_aim_maxpitch - g_turrets_unit_plasma_std_aim_maxrot - g_turrets_unit_plasma_std_aim_speed - g_turrets_unit_plasma_std_ammo - g_turrets_unit_plasma_std_ammo_max - g_turrets_unit_plasma_std_ammo_recharge - g_turrets_unit_plasma_std_health - g_turrets_unit_plasma_std_respawntime - g_turrets_unit_plasma_std_shot_dmg - g_turrets_unit_plasma_std_shot_force - g_turrets_unit_plasma_std_shot_radius - g_turrets_unit_plasma_std_shot_refire - g_turrets_unit_plasma_std_shot_speed - g_turrets_unit_plasma_std_shot_spread - g_turrets_unit_plasma_std_shot_volly - g_turrets_unit_plasma_std_shot_volly_refire - g_turrets_unit_plasma_std_target_range - g_turrets_unit_plasma_std_target_range_min - g_turrets_unit_plasma_std_target_range_optimal - g_turrets_unit_plasma_std_target_select_anglebias - g_turrets_unit_plasma_std_target_select_missilebias - g_turrets_unit_plasma_std_target_select_playerbias - g_turrets_unit_plasma_std_target_select_rangebias - g_turrets_unit_plasma_std_target_select_samebias - g_turrets_unit_plasma_std_track_accel_pitch - g_turrets_unit_plasma_std_track_accel_rot - g_turrets_unit_plasma_std_track_blendrate - g_turrets_unit_plasma_std_track_type - g_turrets_unit_tesla_std_ammo - g_turrets_unit_tesla_std_ammo_max - g_turrets_unit_tesla_std_ammo_recharge - g_turrets_unit_tesla_std_health - g_turrets_unit_tesla_std_respawntime - g_turrets_unit_tesla_std_shot_dmg - g_turrets_unit_tesla_std_shot_force - g_turrets_unit_tesla_std_shot_refire - g_turrets_unit_tesla_std_shot_volly - g_turrets_unit_tesla_std_shot_volly_refire - g_turrets_unit_tesla_std_target_range - g_turrets_unit_tesla_std_target_range_min - g_turrets_unit_tesla_std_target_select_missilebias - g_turrets_unit_tesla_std_target_select_playerbias - g_turrets_unit_walker_speed_jump - g_turrets_unit_walker_speed_roam - g_turrets_unit_walker_speed_run - g_turrets_unit_walker_speed_stop - g_turrets_unit_walker_speed_swim - g_turrets_unit_walker_speed_walk - g_turrets_unit_walker_std_aim_firetolerance_dist - g_turrets_unit_walker_std_aim_maxpitch - g_turrets_unit_walker_std_aim_maxrot - g_turrets_unit_walker_std_aim_speed - g_turrets_unit_walker_std_ammo - g_turrets_unit_walker_std_ammo_max - g_turrets_unit_walker_std_ammo_recharge - g_turrets_unit_walker_std_health - g_turrets_unit_walker_std_meele_dmg - g_turrets_unit_walker_std_meele_force - g_turrets_unit_walker_std_meele_range - g_turrets_unit_walker_std_respawntime - g_turrets_unit_walker_std_rocket_dmg - g_turrets_unit_walker_std_rocket_force - g_turrets_unit_walker_std_rocket_radius - g_turrets_unit_walker_std_rocket_refire - g_turrets_unit_walker_std_rocket_speed - g_turrets_unit_walker_std_rocket_turnrate - g_turrets_unit_walker_std_rockets_range - g_turrets_unit_walker_std_rockets_range_min - g_turrets_unit_walker_std_shot_dmg - g_turrets_unit_walker_std_shot_force - g_turrets_unit_walker_std_shot_radius - g_turrets_unit_walker_std_shot_refire - g_turrets_unit_walker_std_shot_speed - g_turrets_unit_walker_std_shot_spread - g_turrets_unit_walker_std_shot_volly - g_turrets_unit_walker_std_shot_volly_refire - g_turrets_unit_walker_std_target_range - g_turrets_unit_walker_std_target_range_min - g_turrets_unit_walker_std_target_range_optimal - g_turrets_unit_walker_std_target_select_anglebias - g_turrets_unit_walker_std_target_select_missilebias - g_turrets_unit_walker_std_target_select_playerbias - g_turrets_unit_walker_std_target_select_rangebias - g_turrets_unit_walker_std_target_select_samebias - g_turrets_unit_walker_std_track_accel_pitch - g_turrets_unit_walker_std_track_accel_rot - g_turrets_unit_walker_std_track_blendrate - g_turrets_unit_walker_std_track_type - g_turrets_unit_walker_turn - g_turrets_unit_walker_turn_run - g_turrets_unit_walker_turn_strafe - g_turrets_unit_walker_turn_swim - g_turrets_unit_walker_turn_walk - g_use_ammunition - g_vampire - g_vehicle_bumblebee - g_vehicle_bumblebee_blowup_coredamage - g_vehicle_bumblebee_blowup_edgedamage - g_vehicle_bumblebee_blowup_forceintensity - g_vehicle_bumblebee_blowup_radius - g_vehicle_bumblebee_bouncepain - g_vehicle_bumblebee_cannon_ammo - g_vehicle_bumblebee_cannon_ammo_regen - g_vehicle_bumblebee_cannon_ammo_regen_pause - g_vehicle_bumblebee_cannon_cost - g_vehicle_bumblebee_cannon_damage - g_vehicle_bumblebee_cannon_force - g_vehicle_bumblebee_cannon_lock - g_vehicle_bumblebee_cannon_pitchlimit_down - g_vehicle_bumblebee_cannon_pitchlimit_up - g_vehicle_bumblebee_cannon_radius - g_vehicle_bumblebee_cannon_refire - g_vehicle_bumblebee_cannon_speed - g_vehicle_bumblebee_cannon_spread - g_vehicle_bumblebee_cannon_turnlimit_in - g_vehicle_bumblebee_cannon_turnlimit_out - g_vehicle_bumblebee_cannon_turnspeed - g_vehicle_bumblebee_energy - g_vehicle_bumblebee_energy_regen - g_vehicle_bumblebee_energy_regen_pause - g_vehicle_bumblebee_friction - g_vehicle_bumblebee_healgun_amax - g_vehicle_bumblebee_healgun_aps - g_vehicle_bumblebee_healgun_hmax - g_vehicle_bumblebee_healgun_hps - g_vehicle_bumblebee_healgun_locktime - g_vehicle_bumblebee_healgun_smax - g_vehicle_bumblebee_healgun_sps - g_vehicle_bumblebee_health - g_vehicle_bumblebee_health_regen - g_vehicle_bumblebee_health_regen_pause - g_vehicle_bumblebee_pitchlimit - g_vehicle_bumblebee_pitchspeed - g_vehicle_bumblebee_raygun - g_vehicle_bumblebee_raygun_aps - g_vehicle_bumblebee_raygun_dps - g_vehicle_bumblebee_raygun_fps - g_vehicle_bumblebee_raygun_pitchlimit_down - g_vehicle_bumblebee_raygun_pitchlimit_up - g_vehicle_bumblebee_raygun_range - g_vehicle_bumblebee_raygun_turnlimit_sides - g_vehicle_bumblebee_raygun_turnspeed - g_vehicle_bumblebee_respawntime - g_vehicle_bumblebee_shield - g_vehicle_bumblebee_shield_regen - g_vehicle_bumblebee_shield_regen_pause - g_vehicle_bumblebee_speed_down - g_vehicle_bumblebee_speed_forward - g_vehicle_bumblebee_speed_strafe - g_vehicle_bumblebee_speed_up - g_vehicle_bumblebee_turnspeed - g_vehicle_racer - g_vehicle_racer_afterburn_cost - g_vehicle_racer_anglestabilizer - g_vehicle_racer_blowup_coredamage - g_vehicle_racer_blowup_edgedamage - g_vehicle_racer_blowup_forceintensity - g_vehicle_racer_blowup_radius - g_vehicle_racer_bouncefactor - g_vehicle_racer_bouncepain - g_vehicle_racer_bouncestop - g_vehicle_racer_cannon_cost - g_vehicle_racer_cannon_damage - g_vehicle_racer_cannon_force - g_vehicle_racer_cannon_radius - g_vehicle_racer_cannon_refire - g_vehicle_racer_cannon_speed - g_vehicle_racer_cannon_spread - g_vehicle_racer_collision_multiplier - g_vehicle_racer_downforce - g_vehicle_racer_energy - g_vehicle_racer_energy_regen - g_vehicle_racer_energy_regen_pause - g_vehicle_racer_friction - g_vehicle_racer_health - g_vehicle_racer_health_regen - g_vehicle_racer_health_regen_pause - g_vehicle_racer_hoverpower - g_vehicle_racer_hovertype - g_vehicle_racer_mass - g_vehicle_racer_maxpitch - g_vehicle_racer_pitchspeed - g_vehicle_racer_respawntime - g_vehicle_racer_rocket_accel - g_vehicle_racer_rocket_climbspeed - g_vehicle_racer_rocket_cost - g_vehicle_racer_rocket_damage - g_vehicle_racer_rocket_force - g_vehicle_racer_rocket_locked_maxangle - g_vehicle_racer_rocket_locked_time - g_vehicle_racer_rocket_locking_releasetime - g_vehicle_racer_rocket_locking_time - g_vehicle_racer_rocket_locktarget - g_vehicle_racer_rocket_radius - g_vehicle_racer_rocket_refire - g_vehicle_racer_rocket_speed - g_vehicle_racer_rocket_turnrate - g_vehicle_racer_shield - g_vehicle_racer_shield_regen - g_vehicle_racer_shield_regen_pause - g_vehicle_racer_speed_afterburn - g_vehicle_racer_speed_forward - g_vehicle_racer_speed_stop - g_vehicle_racer_speed_strafe - g_vehicle_racer_springlength - g_vehicle_racer_turnroll - g_vehicle_racer_turnspeed - g_vehicle_racer_upforcedamper - g_vehicle_raptor - g_vehicle_raptor_bomblet_alt - g_vehicle_raptor_bomblet_damage - g_vehicle_raptor_bomblet_edgedamage - g_vehicle_raptor_bomblet_explode_delay - g_vehicle_raptor_bomblet_force - g_vehicle_raptor_bomblet_radius - g_vehicle_raptor_bomblet_spread - g_vehicle_raptor_bomblet_time - g_vehicle_raptor_bomblets - g_vehicle_raptor_bombs_refire - g_vehicle_raptor_bouncefactor - g_vehicle_raptor_bouncepain - g_vehicle_raptor_bouncestop - g_vehicle_raptor_cannon_cost - g_vehicle_raptor_cannon_damage - g_vehicle_raptor_cannon_force - g_vehicle_raptor_cannon_locked_time - g_vehicle_raptor_cannon_locking_releasetime - g_vehicle_raptor_cannon_locking_time - g_vehicle_raptor_cannon_locktarget - g_vehicle_raptor_cannon_pitchlimit_down - g_vehicle_raptor_cannon_pitchlimit_up - g_vehicle_raptor_cannon_predicttarget - g_vehicle_raptor_cannon_radius - g_vehicle_raptor_cannon_refire - g_vehicle_raptor_cannon_speed - g_vehicle_raptor_cannon_spread - g_vehicle_raptor_cannon_turnlimit - g_vehicle_raptor_cannon_turnspeed - g_vehicle_raptor_energy - g_vehicle_raptor_energy_regen - g_vehicle_raptor_energy_regen_pause - g_vehicle_raptor_flare_chase - g_vehicle_raptor_flare_lifetime - g_vehicle_raptor_flare_range - g_vehicle_raptor_flare_refire - g_vehicle_raptor_friction - g_vehicle_raptor_health - g_vehicle_raptor_health_regen - g_vehicle_raptor_health_regen_pause - g_vehicle_raptor_mass - g_vehicle_raptor_movestyle - g_vehicle_raptor_pitchlimit - g_vehicle_raptor_pitchspeed - g_vehicle_raptor_respawntime - g_vehicle_raptor_shield - g_vehicle_raptor_shield_regen - g_vehicle_raptor_shield_regen_pause - g_vehicle_raptor_speed_down - g_vehicle_raptor_speed_forward - g_vehicle_raptor_speed_strafe - g_vehicle_raptor_speed_up - g_vehicle_raptor_takeofftime - g_vehicle_raptor_turnroll - g_vehicle_raptor_turnspeed - g_vehicle_spiderbot - g_vehicle_spiderbot_bouncefactor - g_vehicle_spiderbot_bouncepain - g_vehicle_spiderbot_bouncestop - g_vehicle_spiderbot_energy - g_vehicle_spiderbot_energy_regen - g_vehicle_spiderbot_energy_regen_pause - g_vehicle_spiderbot_head_pitchlimit_down - g_vehicle_spiderbot_head_pitchlimit_up - g_vehicle_spiderbot_head_turnlimit - g_vehicle_spiderbot_head_turnspeed - g_vehicle_spiderbot_health - g_vehicle_spiderbot_health_regen - g_vehicle_spiderbot_health_regen_pause - g_vehicle_spiderbot_minigun_ammo_cost - g_vehicle_spiderbot_minigun_ammo_max - g_vehicle_spiderbot_minigun_ammo_regen - g_vehicle_spiderbot_minigun_ammo_regen_pause - g_vehicle_spiderbot_minigun_bulletconstant - g_vehicle_spiderbot_minigun_damage - g_vehicle_spiderbot_minigun_force - g_vehicle_spiderbot_minigun_refire - g_vehicle_spiderbot_minigun_speed - g_vehicle_spiderbot_minigun_spread - g_vehicle_spiderbot_movement_inertia - g_vehicle_spiderbot_respawntime - g_vehicle_spiderbot_rocket_damage - g_vehicle_spiderbot_rocket_edgedamage - g_vehicle_spiderbot_rocket_force - g_vehicle_spiderbot_rocket_health - g_vehicle_spiderbot_rocket_lifetime - g_vehicle_spiderbot_rocket_noise - g_vehicle_spiderbot_rocket_radius - g_vehicle_spiderbot_rocket_refire - g_vehicle_spiderbot_rocket_refire2 - g_vehicle_spiderbot_rocket_reload - g_vehicle_spiderbot_rocket_speed - g_vehicle_spiderbot_rocket_spread - g_vehicle_spiderbot_rocket_turnrate - g_vehicle_spiderbot_shield - g_vehicle_spiderbot_shield_block - g_vehicle_spiderbot_shield_regen - g_vehicle_spiderbot_shield_regen_pause - g_vehicle_spiderbot_speed_stop - g_vehicle_spiderbot_speed_strafe - g_vehicle_spiderbot_speed_walk - g_vehicle_spiderbot_springblend - g_vehicle_spiderbot_springlength - g_vehicle_spiderbot_springup - g_vehicle_spiderbot_tiltlimit - g_vehicle_spiderbot_turnspeed - g_vehicle_spiderbot_turnspeed_strafe - g_vehicles - g_vehicles_crush_dmg - g_vehicles_crush_force - g_vehicles_delayspawn - g_vehicles_delayspawn_jitter - g_vehicles_minstanex_damagerate - g_vehicles_nex_damagerate - g_vehicles_rifle_damagerate - g_vehicles_tag_damagerate - g_vehicles_uzi_damagerate - g_warmup - g_warmup_allguns - g_warmup_allow_timeout - g_warmup_limit - g_warmup_majority_factor - g_warmup_start_ammo_cells - g_warmup_start_ammo_fuel - g_warmup_start_ammo_nails - g_warmup_start_ammo_rockets - g_warmup_start_ammo_shells - g_warmup_start_armor - g_warmup_start_health - g_waypointeditor - g_waypointeditor_auto - g_waypoints_for_items - g_waypointsprite_alpha - g_waypointsprite_crosshairfadealpha - g_waypointsprite_crosshairfadedistance - g_waypointsprite_crosshairfadescale - g_waypointsprite_distancealphaexponent - g_waypointsprite_distancefadealpha - g_waypointsprite_distancefadedistancemultiplier - g_waypointsprite_distancefadescale - g_waypointsprite_edgefadealpha - g_waypointsprite_edgefadedistance - g_waypointsprite_edgefadescale - g_waypointsprite_edgeoffset_bottom - g_waypointsprite_edgeoffset_left - g_waypointsprite_edgeoffset_right - g_waypointsprite_edgeoffset_top - g_waypointsprite_fontsize - g_waypointsprite_minalpha - g_waypointsprite_minscale - g_waypointsprite_normdistance - g_waypointsprite_scale - g_waypointsprite_spam - g_waypointsprite_stuffbinds - g_waypointsprite_tactical - g_waypointsprite_timealphaexponent - g_waypointsprite_turrets - g_waypointsprite_turrets_maxdist - g_waypointsprite_uppercase - g_weapon_charge_colormod_blue_full - g_weapon_charge_colormod_blue_half - g_weapon_charge_colormod_green_full - g_weapon_charge_colormod_green_half - g_weapon_charge_colormod_hdrmultiplier - g_weapon_charge_colormod_red_full - g_weapon_charge_colormod_red_half - g_weapon_stay - g_weapon_throwable - g_weaponarena - g_weaponarena_random - g_weaponarena_random_with_laser - g_weapondamagefactor - g_weaponforcefactor - g_weaponratefactor - g_weaponreplace_crylink - g_weaponreplace_electro - g_weaponreplace_fireball - g_weaponreplace_grenadelauncher - g_weaponreplace_hagar - g_weaponreplace_hlac - g_weaponreplace_hook - g_weaponreplace_laser - g_weaponreplace_minelayer - g_weaponreplace_minstanex - g_weaponreplace_nex - g_weaponreplace_porto - g_weaponreplace_rifle - g_weaponreplace_rocketlauncher - g_weaponreplace_seeker - g_weaponreplace_shotgun - g_weaponreplace_tuba - g_weaponreplace_uzi - g_weaponspeedfactor - g_weaponspreadfactor - g_xonoticversion - gamecfg - gameversion - gameversion_max - gameversion_min - gl_combine - gl_dither - gl_ext_separatestencil - gl_ext_stenciltwoside - gl_finish - gl_flashblend - gl_info_driver - gl_info_extensions - gl_info_platform - gl_info_renderer - gl_info_vendor - gl_info_version - gl_lightmaps - gl_max_lightmapsize - gl_max_size - gl_mesh_drawrangeelements - gl_mesh_prefer_short_elements - gl_mesh_testmanualfeeding - gl_nopartialtextureupdates - gl_paranoid - gl_picmip - gl_picmip_other - gl_picmip_sprites - gl_picmip_world - gl_polyblend - gl_printcheckerror - gl_texture_anisotropy - gl_texturecompression - gl_texturecompression_2d - gl_texturecompression_color - gl_texturecompression_gloss - gl_texturecompression_glow - gl_texturecompression_lightcubemaps - gl_texturecompression_normal - gl_texturecompression_q3bspdeluxemaps - gl_texturecompression_q3bsplightmaps - gl_texturecompression_reflectmask - gl_texturecompression_sky - gl_texturecompression_sprites - gl_vbo - gl_vbo_dynamicindex - gl_vbo_dynamicvertex - halflifebsp - host_framerate - host_maxwait - host_speeds - hostname - hud_colorflash_alpha - hud_colorset_background - hud_colorset_foreground_1 - hud_colorset_foreground_2 - hud_colorset_foreground_3 - hud_colorset_foreground_4 - hud_colorset_kill_1 - hud_colorset_kill_2 - hud_colorset_kill_3 - hud_configure_bg_minalpha - hud_configure_checkcollisions - hud_configure_grid - hud_configure_grid_alpha - hud_configure_grid_xsize - hud_configure_grid_ysize - hud_configure_teamcolorforced - hud_contents - hud_contents_blur - hud_contents_blur_alpha - hud_contents_factor - hud_contents_fadeintime - hud_contents_fadeouttime - hud_contents_lava_alpha - hud_contents_lava_color - hud_contents_slime_alpha - hud_contents_slime_color - hud_contents_water_alpha - hud_contents_water_color - hud_cursormode - hud_damage - hud_damage_blur - hud_damage_blur_alpha - hud_damage_color - hud_damage_factor - hud_damage_fade_rate - hud_damage_gentle_alpha_multiplier - hud_damage_gentle_color - hud_damage_maxalpha - hud_damage_pain_threshold - hud_damage_pain_threshold_lower - hud_damage_pain_threshold_lower_health - hud_damage_pain_threshold_pulsating_min - hud_damage_pain_threshold_pulsating_period - hud_dock - hud_dock_alpha - hud_dock_color - hud_dock_color_team - hud_fontsize - hud_panel_ammo - hud_panel_ammo_bg - hud_panel_ammo_bg_alpha - hud_panel_ammo_bg_border - hud_panel_ammo_bg_color - hud_panel_ammo_bg_color_team - hud_panel_ammo_bg_padding - hud_panel_ammo_iconalign - hud_panel_ammo_maxammo - hud_panel_ammo_onlycurrent - hud_panel_ammo_pos - hud_panel_ammo_progressbar - hud_panel_ammo_progressbar_name - hud_panel_ammo_progressbar_xoffset - hud_panel_ammo_size - hud_panel_ammo_text - hud_panel_bg - hud_panel_bg_alpha - hud_panel_bg_border - hud_panel_bg_color - hud_panel_bg_color_team - hud_panel_bg_padding - hud_panel_centerprint - hud_panel_centerprint_align - hud_panel_centerprint_bg - hud_panel_centerprint_bg_alpha - hud_panel_centerprint_bg_border - hud_panel_centerprint_bg_color - hud_panel_centerprint_bg_color_team - hud_panel_centerprint_bg_padding - hud_panel_centerprint_fade_in - hud_panel_centerprint_fade_minfontsize - hud_panel_centerprint_fade_out - hud_panel_centerprint_fade_subsequent - hud_panel_centerprint_fade_subsequent_minfontsize - hud_panel_centerprint_fade_subsequent_passone - hud_panel_centerprint_fade_subsequent_passone_minalpha - hud_panel_centerprint_fade_subsequent_passtwo - hud_panel_centerprint_fade_subsequent_passtwo_minalpha - hud_panel_centerprint_flip - hud_panel_centerprint_fontscale - hud_panel_centerprint_pos - hud_panel_centerprint_size - hud_panel_centerprint_time - hud_panel_chat - hud_panel_chat_bg - hud_panel_chat_bg_alpha - hud_panel_chat_bg_border - hud_panel_chat_bg_color - hud_panel_chat_bg_color_team - hud_panel_chat_bg_padding - hud_panel_chat_pos - hud_panel_chat_size - hud_panel_engineinfo - hud_panel_engineinfo_bg - hud_panel_engineinfo_bg_alpha - hud_panel_engineinfo_bg_border - hud_panel_engineinfo_bg_color - hud_panel_engineinfo_bg_color_team - hud_panel_engineinfo_bg_padding - hud_panel_engineinfo_framecounter_decimals - hud_panel_engineinfo_framecounter_exponentialmovingaverage - hud_panel_engineinfo_framecounter_exponentialmovingaverage_instantupdate_change_threshold - hud_panel_engineinfo_framecounter_exponentialmovingaverage_new_weight - hud_panel_engineinfo_framecounter_time - hud_panel_engineinfo_pos - hud_panel_engineinfo_size - hud_panel_fg_alpha - hud_panel_healtharmor - hud_panel_healtharmor_baralign - hud_panel_healtharmor_bg - hud_panel_healtharmor_bg_alpha - hud_panel_healtharmor_bg_border - hud_panel_healtharmor_bg_color - hud_panel_healtharmor_bg_color_team - hud_panel_healtharmor_bg_padding - hud_panel_healtharmor_flip - hud_panel_healtharmor_iconalign - hud_panel_healtharmor_maxarmor - hud_panel_healtharmor_maxhealth - hud_panel_healtharmor_pos - hud_panel_healtharmor_progressbar - hud_panel_healtharmor_progressbar_armor - hud_panel_healtharmor_progressbar_gfx - hud_panel_healtharmor_progressbar_gfx_damage - hud_panel_healtharmor_progressbar_gfx_lowhealth - hud_panel_healtharmor_progressbar_gfx_smooth - hud_panel_healtharmor_progressbar_health - hud_panel_healtharmor_size - hud_panel_healtharmor_text - hud_panel_infomessages - hud_panel_infomessages_bg - hud_panel_infomessages_bg_alpha - hud_panel_infomessages_bg_border - hud_panel_infomessages_bg_color - hud_panel_infomessages_bg_color_team - hud_panel_infomessages_bg_padding - hud_panel_infomessages_flip - hud_panel_infomessages_pos - hud_panel_infomessages_size - hud_panel_modicons - hud_panel_modicons_bg - hud_panel_modicons_bg_alpha - hud_panel_modicons_bg_border - hud_panel_modicons_bg_color - hud_panel_modicons_bg_color_team - hud_panel_modicons_bg_padding - hud_panel_modicons_ca_layout - hud_panel_modicons_dom_layout - hud_panel_modicons_freezetag_layout - hud_panel_modicons_pos - hud_panel_modicons_size - hud_panel_notify - hud_panel_notify_bg - hud_panel_notify_bg_alpha - hud_panel_notify_bg_border - hud_panel_notify_bg_color - hud_panel_notify_bg_color_team - hud_panel_notify_bg_padding - hud_panel_notify_fadetime - hud_panel_notify_flip - hud_panel_notify_fontsize - hud_panel_notify_pos - hud_panel_notify_size - hud_panel_notify_time - hud_panel_physics - hud_panel_physics_acceleration_max - hud_panel_physics_acceleration_progressbar_mode - hud_panel_physics_acceleration_progressbar_nonlinear - hud_panel_physics_acceleration_progressbar_scale - hud_panel_physics_acceleration_vertical - hud_panel_physics_baralign - hud_panel_physics_bg - hud_panel_physics_bg_alpha - hud_panel_physics_bg_border - hud_panel_physics_bg_color - hud_panel_physics_bg_color_team - hud_panel_physics_bg_padding - hud_panel_physics_flip - hud_panel_physics_pos - hud_panel_physics_progressbar - hud_panel_physics_size - hud_panel_physics_speed_max - hud_panel_physics_speed_unit - hud_panel_physics_speed_unit_show - hud_panel_physics_speed_vertical - hud_panel_physics_text - hud_panel_physics_text_scale - hud_panel_physics_topspeed - hud_panel_physics_topspeed_time - hud_panel_powerups - hud_panel_powerups_baralign - hud_panel_powerups_bg - hud_panel_powerups_bg_alpha - hud_panel_powerups_bg_border - hud_panel_powerups_bg_color - hud_panel_powerups_bg_color_team - hud_panel_powerups_bg_padding - hud_panel_powerups_flip - hud_panel_powerups_iconalign - hud_panel_powerups_pos - hud_panel_powerups_progressbar - hud_panel_powerups_progressbar_shield - hud_panel_powerups_progressbar_strength - hud_panel_powerups_progressbar_superweapons - hud_panel_powerups_size - hud_panel_powerups_text - hud_panel_pressedkeys - hud_panel_pressedkeys_aspect - hud_panel_pressedkeys_attack - hud_panel_pressedkeys_bg - hud_panel_pressedkeys_bg_alpha - hud_panel_pressedkeys_bg_border - hud_panel_pressedkeys_bg_color - hud_panel_pressedkeys_bg_color_team - hud_panel_pressedkeys_bg_padding - hud_panel_pressedkeys_pos - hud_panel_pressedkeys_size - hud_panel_racetimer - hud_panel_racetimer_bg - hud_panel_racetimer_bg_alpha - hud_panel_racetimer_bg_border - hud_panel_racetimer_bg_color - hud_panel_racetimer_bg_color_team - hud_panel_racetimer_bg_padding - hud_panel_racetimer_pos - hud_panel_racetimer_size - hud_panel_radar - hud_panel_radar_bg - hud_panel_radar_bg_alpha - hud_panel_radar_bg_border - hud_panel_radar_bg_color - hud_panel_radar_bg_color_team - hud_panel_radar_bg_padding - hud_panel_radar_foreground_alpha - hud_panel_radar_maximized_rotation - hud_panel_radar_maximized_scale - hud_panel_radar_maximized_size - hud_panel_radar_maximized_zoommode - hud_panel_radar_pos - hud_panel_radar_rotation - hud_panel_radar_scale - hud_panel_radar_size - hud_panel_radar_zoommode - hud_panel_score - hud_panel_score_bg - hud_panel_score_bg_alpha - hud_panel_score_bg_border - hud_panel_score_bg_color - hud_panel_score_bg_color_team - hud_panel_score_bg_padding - hud_panel_score_pos - hud_panel_score_rankings - hud_panel_score_size - hud_panel_timer - hud_panel_timer_bg - hud_panel_timer_bg_alpha - hud_panel_timer_bg_border - hud_panel_timer_bg_color - hud_panel_timer_bg_color_team - hud_panel_timer_bg_padding - hud_panel_timer_increment - hud_panel_timer_pos - hud_panel_timer_size - hud_panel_update_interval - hud_panel_vote - hud_panel_vote_alreadyvoted_alpha - hud_panel_vote_bg - hud_panel_vote_bg_alpha - hud_panel_vote_bg_border - hud_panel_vote_bg_color - hud_panel_vote_bg_color_team - hud_panel_vote_bg_padding - hud_panel_vote_pos - hud_panel_vote_size - hud_panel_weapons - hud_panel_weapons_accuracy - hud_panel_weapons_ammo - hud_panel_weapons_ammo_alpha - hud_panel_weapons_ammo_color - hud_panel_weapons_ammo_full_cells - hud_panel_weapons_ammo_full_fuel - hud_panel_weapons_ammo_full_nails - hud_panel_weapons_ammo_full_rockets - hud_panel_weapons_ammo_full_shells - hud_panel_weapons_aspect - hud_panel_weapons_bg - hud_panel_weapons_bg_alpha - hud_panel_weapons_bg_border - hud_panel_weapons_bg_color - hud_panel_weapons_bg_color_team - hud_panel_weapons_bg_padding - hud_panel_weapons_complainbubble - hud_panel_weapons_complainbubble_color_donthave - hud_panel_weapons_complainbubble_color_outofammo - hud_panel_weapons_complainbubble_color_unavailable - hud_panel_weapons_complainbubble_fadetime - hud_panel_weapons_complainbubble_padding - hud_panel_weapons_complainbubble_time - hud_panel_weapons_label - hud_panel_weapons_onlyowned - hud_panel_weapons_pos - hud_panel_weapons_size - hud_panel_weapons_timeout - hud_panel_weapons_timeout_effect - hud_panel_weapons_timeout_fadebgmin - hud_panel_weapons_timeout_fadefgmin - hud_panel_weapons_timeout_speed_in - hud_panel_weapons_timeout_speed_out - hud_postprocessing - hud_postprocessing_maxbluralpha - hud_postprocessing_maxblurradius - hud_powerup - hud_progressbar_acceleration_color - hud_progressbar_acceleration_neg_color - hud_progressbar_alpha - hud_progressbar_armor_color - hud_progressbar_fuel_color - hud_progressbar_health_color - hud_progressbar_nexball_color - hud_progressbar_shield_color - hud_progressbar_speed_color - hud_progressbar_strength_color - hud_progressbar_superweapons_color - hud_showbinds - hud_showbinds_limit - hud_shownames - hud_shownames_alpha - hud_shownames_antioverlap - hud_shownames_antioverlap_distance - hud_shownames_aspect - hud_shownames_crosshairdistance - hud_shownames_crosshairdistance_antioverlap - hud_shownames_crosshairdistance_time - hud_shownames_decolorize - hud_shownames_enemies - hud_shownames_fontsize - hud_shownames_maxdistance - hud_shownames_mindistance - hud_shownames_offset - hud_shownames_resize - hud_shownames_self - hud_shownames_status - hud_shownames_statusbar_height - hud_skin - hud_width - in_pitch_max - in_pitch_min - is_dedicated - joy_active - joy_axisforward - joy_axiskeyevents - joy_axiskeyevents_deadzone - joy_axispitch - joy_axisside - joy_axisup - joy_axisyaw - joy_deadzoneforward - joy_deadzonepitch - joy_deadzoneside - joy_deadzoneup - joy_deadzoneyaw - joy_detected - joy_enable - joy_index - joy_sensitivityforward - joy_sensitivitypitch - joy_sensitivityside - joy_sensitivityup - joy_sensitivityyaw - joy_x360_axisforward - joy_x360_axispitch - joy_x360_axisside - joy_x360_axisup - joy_x360_axisyaw - joy_x360_deadzoneforward - joy_x360_deadzonepitch - joy_x360_deadzoneside - joy_x360_deadzoneup - joy_x360_deadzoneyaw - joy_x360_sensitivityforward - joy_x360_sensitivitypitch - joy_x360_sensitivityside - joy_x360_sensitivityup - joy_x360_sensitivityyaw - joyadvanced - joyadvaxisr - joyadvaxisx - joyadvaxisy - joyadvaxisz - joypitchsensitivity - joysidesensitivity - joyyawsensitivity - join - lastlevel - leadlimit - leadlimit_and_fraglimit - leadlimit_override - locksession - locs_enable - locs_show - loddebug - log_dest_udp - log_file - lookspring - lookstrafe - m_accelerate - m_accelerate_filter - m_accelerate_maxspeed - m_accelerate_minspeed - m_filter - m_forward - m_pitch - m_side - m_yaw - mastervolume - menu_cdtrack - menu_cl_gunalign - menu_maxplayers - menu_mouse_absolute - menu_mouse_speed - menu_options_colorcontrol_correctionvalue - menu_picmip_bypass - menu_progs - menu_sandbox_attach_bone - menu_sandbox_edit_alpha - menu_sandbox_edit_color_glow - menu_sandbox_edit_color_main - menu_sandbox_edit_force - menu_sandbox_edit_frame - menu_sandbox_edit_material - menu_sandbox_edit_physics - menu_sandbox_edit_scale - menu_sandbox_edit_skin - menu_sandbox_edit_solidity - menu_sandbox_spawn_model - menu_showboxes - menu_skin - menu_slist_modfilter - menu_slist_showempty - menu_slist_showfull - menu_slowmo - menu_snd_attenuation_method - menu_sounds - menu_tooltips - menu_updatecheck - menu_updatecheck_getpacks - menu_use_default_hostname - menu_vid_scale - menu_video_played - menu_watermark - menu_weaponarena - minplayers - mod_alias_force_animated - mod_alias_supporttagscale - mod_bsp_portalize - mod_collision_bih - mod_generatelightmaps_borderpixels - mod_generatelightmaps_gridradius - mod_generatelightmaps_gridsamples - mod_generatelightmaps_lightmapradius - mod_generatelightmaps_lightmapsamples - mod_generatelightmaps_texturesize - mod_generatelightmaps_unitspersample - mod_generatelightmaps_vertexradius - mod_generatelightmaps_vertexsamples - mod_noshader_default_offsetmapping - mod_obj_orientation - mod_q1bsp_polygoncollisions - mod_q3bsp_curves_collisions - mod_q3bsp_curves_collisions_stride - mod_q3bsp_curves_stride - mod_q3bsp_debugtracebrush - mod_q3bsp_lightmapmergepower - mod_q3bsp_nolightmaps - mod_q3bsp_optimizedtraceline - mod_q3bsp_sRGBlightmaps - mod_q3bsp_tracelineofsight_brushes - mod_q3shader_default_offsetmapping - mod_q3shader_default_offsetmapping_bias - mod_q3shader_default_offsetmapping_scale - mod_q3shader_default_polygonfactor - mod_q3shader_default_polygonoffset - mod_q3shader_force_addalpha - mod_q3shader_force_terrain_alphaflag - mod_recalculatenodeboxes - music_playlist_current0 - music_playlist_current1 - music_playlist_current2 - music_playlist_current3 - music_playlist_current4 - music_playlist_current5 - music_playlist_current6 - music_playlist_current7 - music_playlist_current8 - music_playlist_current9 - music_playlist_index - music_playlist_list0 - music_playlist_list1 - music_playlist_list2 - music_playlist_list3 - music_playlist_list4 - music_playlist_list5 - music_playlist_list6 - music_playlist_list7 - music_playlist_list8 - music_playlist_list9 - music_playlist_random0 - music_playlist_random1 - music_playlist_random2 - music_playlist_random3 - music_playlist_random4 - music_playlist_random5 - music_playlist_random6 - music_playlist_random7 - music_playlist_random8 - music_playlist_random9 - music_playlist_sampleposition0 - music_playlist_sampleposition1 - music_playlist_sampleposition2 - music_playlist_sampleposition3 - music_playlist_sampleposition4 - music_playlist_sampleposition5 - music_playlist_sampleposition6 - music_playlist_sampleposition7 - music_playlist_sampleposition8 - music_playlist_sampleposition9 - nehx00 - nehx01 - nehx02 - nehx03 - nehx04 - nehx05 - nehx06 - nehx07 - nehx08 - nehx09 - nehx10 - nehx11 - nehx12 - nehx13 - nehx14 - nehx15 - nehx16 - nehx17 - nehx18 - nehx19 - net_address - net_address_ipv6 - net_challengefloodblockingtimeout - net_connectfloodblockingtimeout - net_connecttimeout - net_getstatusfloodblockingtimeout - net_messagetimeout - net_slist_favorites - net_slist_maxtries - net_slist_pause - net_slist_queriesperframe - net_slist_queriespersecond - net_slist_timeout - net_tos_dscp - nextmap - noaim - noexit - nomonsters - nosound - notification_ANNCE_ACHIEVEMENT_AIRSHOT - notification_ANNCE_ACHIEVEMENT_AMAZING - notification_ANNCE_ACHIEVEMENT_AWESOME - notification_ANNCE_ACHIEVEMENT_BOTLIKE - notification_ANNCE_ACHIEVEMENT_ELECTROBITCH - notification_ANNCE_ACHIEVEMENT_IMPRESSIVE - notification_ANNCE_ACHIEVEMENT_YODA - notification_ANNCE_BEGIN - notification_ANNCE_KILLSTREAK_03 - notification_ANNCE_KILLSTREAK_05 - notification_ANNCE_KILLSTREAK_10 - notification_ANNCE_KILLSTREAK_15 - notification_ANNCE_KILLSTREAK_20 - notification_ANNCE_KILLSTREAK_25 - notification_ANNCE_KILLSTREAK_30 - notification_ANNCE_MINSTAGIB_LASTSECOND - notification_ANNCE_MINSTAGIB_NARROWLY - notification_ANNCE_MINSTAGIB_TERMINATED - notification_ANNCE_MULTIFRAG - notification_ANNCE_NUM_1 - notification_ANNCE_NUM_10 - notification_ANNCE_NUM_2 - notification_ANNCE_NUM_3 - notification_ANNCE_NUM_4 - notification_ANNCE_NUM_5 - notification_ANNCE_NUM_6 - notification_ANNCE_NUM_7 - notification_ANNCE_NUM_8 - notification_ANNCE_NUM_9 - notification_ANNCE_PREPARE - notification_ANNCE_REMAINING_FRAG_1 - notification_ANNCE_REMAINING_FRAG_2 - notification_ANNCE_REMAINING_FRAG_3 - notification_ANNCE_REMAINING_MIN_1 - notification_ANNCE_REMAINING_MIN_5 - notification_ANNCE_TIMEOUT - notification_ANNCE_VOTE_ACCEPT - notification_ANNCE_VOTE_CALL - notification_ANNCE_VOTE_FAIL - notification_CENTER_ARENA_BEGIN - notification_CENTER_ARENA_NEEDPLAYER - notification_CENTER_ARENA_ROUNDSTART - notification_CENTER_ASSAULT_ATTACKING - notification_CENTER_ASSAULT_DEFENDING - notification_CENTER_COUNTDOWN_BEGIN - notification_CENTER_COUNTDOWN_GAMESTART - notification_CENTER_CTF_CAPTURESHIELD_FREE - notification_CENTER_CTF_CAPTURESHIELD_SHIELDED - notification_CENTER_CTF_CAPTURE_BLUE - notification_CENTER_CTF_CAPTURE_RED - notification_CENTER_CTF_FLAG_THROW_PUNISH - notification_CENTER_CTF_PASS_OTHER_BLUE - notification_CENTER_CTF_PASS_OTHER_RED - notification_CENTER_CTF_PASS_RECEIVED_BLUE - notification_CENTER_CTF_PASS_RECEIVED_RED - notification_CENTER_CTF_PASS_REQUESTED - notification_CENTER_CTF_PASS_REQUESTING - notification_CENTER_CTF_PASS_SENT_BLUE - notification_CENTER_CTF_PASS_SENT_RED - notification_CENTER_CTF_PICKUP_BLUE - notification_CENTER_CTF_PICKUP_ENEMY - notification_CENTER_CTF_PICKUP_ENEMY_VERBOSE - notification_CENTER_CTF_PICKUP_RED - notification_CENTER_CTF_PICKUP_TEAM - notification_CENTER_CTF_PICKUP_TEAM_VERBOSE - notification_CENTER_CTF_RETURN_BLUE - notification_CENTER_CTF_RETURN_RED - notification_CENTER_CTF_STALEMATE_CARRIER - notification_CENTER_CTF_STALEMATE_OTHER - notification_CENTER_DEATH_MURDER_FRAG - notification_CENTER_DEATH_MURDER_FRAGGED - notification_CENTER_DEATH_MURDER_FRAGGED_VERBOSE - notification_CENTER_DEATH_MURDER_FRAG_VERBOSE - notification_CENTER_DEATH_MURDER_TYPEFRAG - notification_CENTER_DEATH_MURDER_TYPEFRAGGED - notification_CENTER_DEATH_MURDER_TYPEFRAGGED_VERBOSE - notification_CENTER_DEATH_MURDER_TYPEFRAG_VERBOSE - notification_CENTER_DEATH_SELF_AUTOTEAMCHANGE - notification_CENTER_DEATH_SELF_BETRAYAL - notification_CENTER_DEATH_SELF_CAMP - notification_CENTER_DEATH_SELF_CHEAT - notification_CENTER_DEATH_SELF_CUSTOM - notification_CENTER_DEATH_SELF_DROWN - notification_CENTER_DEATH_SELF_FALL - notification_CENTER_DEATH_SELF_FIRE - notification_CENTER_DEATH_SELF_GENERIC - notification_CENTER_DEATH_SELF_LAVA - notification_CENTER_DEATH_SELF_NOAMMO - notification_CENTER_DEATH_SELF_ROT - notification_CENTER_DEATH_SELF_SHOOTING_STAR - notification_CENTER_DEATH_SELF_SLIME - notification_CENTER_DEATH_SELF_SUICIDE - notification_CENTER_DEATH_SELF_SWAMP - notification_CENTER_DEATH_SELF_TEAMCHANGE - notification_CENTER_DEATH_SELF_TOUCHEXPLODE - notification_CENTER_DEATH_SELF_TURRET - notification_CENTER_DEATH_SELF_TURRET_EWHEEL - notification_CENTER_DEATH_SELF_TURRET_WALK - notification_CENTER_DEATH_SELF_VH_BUMB_DEATH - notification_CENTER_DEATH_SELF_VH_CRUSH - notification_CENTER_DEATH_SELF_VH_RAPT_BOMB - notification_CENTER_DEATH_SELF_VH_RAPT_DEATH - notification_CENTER_DEATH_SELF_VH_SPID_DEATH - notification_CENTER_DEATH_SELF_VH_SPID_ROCKET - notification_CENTER_DEATH_SELF_VH_WAKI_DEATH - notification_CENTER_DEATH_SELF_VH_WAKI_ROCKET - notification_CENTER_DEATH_SELF_VOID - notification_CENTER_DEATH_TEAMKILL_FRAG - notification_CENTER_DEATH_TEAMKILL_FRAGGED - notification_CENTER_DISCONNECT_IDLING - notification_CENTER_FREEZETAG_FREEZE - notification_CENTER_FREEZETAG_FROZEN - notification_CENTER_FREEZETAG_REVIVE - notification_CENTER_FREEZETAG_REVIVED - notification_CENTER_FREEZETAG_ROUND_WIN_BLUE - notification_CENTER_FREEZETAG_ROUND_WIN_PINK - notification_CENTER_FREEZETAG_ROUND_WIN_RED - notification_CENTER_FREEZETAG_ROUND_WIN_YELLOW - notification_CENTER_FREEZETAG_SELF - notification_CENTER_FREEZETAG_SPAWN_LATE - notification_CENTER_ITEM_WEAPON_DONTHAVE - notification_CENTER_ITEM_WEAPON_DROP - notification_CENTER_ITEM_WEAPON_GOT - notification_CENTER_ITEM_WEAPON_NOAMMO - notification_CENTER_ITEM_WEAPON_PRIMORSEC - notification_CENTER_ITEM_WEAPON_UNAVAILABLE - notification_CENTER_JOIN_NOSPAWNS - notification_CENTER_JOIN_PREVENT - notification_CENTER_KEEPAWAY_DROPPED - notification_CENTER_KEEPAWAY_PICKUP - notification_CENTER_KEEPAWAY_WARN - notification_CENTER_KEYHUNT_HELP - notification_CENTER_KEYHUNT_INTERFERE_BLUE - notification_CENTER_KEYHUNT_INTERFERE_PINK - notification_CENTER_KEYHUNT_INTERFERE_RED - notification_CENTER_KEYHUNT_INTERFERE_YELLOW - notification_CENTER_KEYHUNT_MEET - notification_CENTER_KEYHUNT_SCAN - notification_CENTER_KEYHUNT_START_BLUE - notification_CENTER_KEYHUNT_START_PINK - notification_CENTER_KEYHUNT_START_RED - notification_CENTER_KEYHUNT_START_YELLOW - notification_CENTER_KEYHUNT_WAIT - notification_CENTER_LMS_CAMPCHECK - notification_CENTER_MINSTA_FINDAMMO - notification_CENTER_MINSTA_FINDAMMO_FIRST - notification_CENTER_MOTD - notification_CENTER_NIX_COUNTDOWN - notification_CENTER_NIX_NEWWEAPON - notification_CENTER_OVERTIME_FRAG - notification_CENTER_OVERTIME_TIME - notification_CENTER_POWERDOWN_INVISIBILITY - notification_CENTER_POWERDOWN_SHIELD - notification_CENTER_POWERDOWN_SPEED - notification_CENTER_POWERDOWN_STRENGTH - notification_CENTER_POWERUP_INVISIBILITY - notification_CENTER_POWERUP_SHIELD - notification_CENTER_POWERUP_SPEED - notification_CENTER_POWERUP_STRENGTH - notification_CENTER_RACE_FINISHLAP - notification_CENTER_SUPERWEAPON_BROKEN - notification_CENTER_SUPERWEAPON_LOST - notification_CENTER_SUPERWEAPON_PICKUP - notification_CENTER_TEAMCHANGE_AUTO - notification_CENTER_TEAMCHANGE_BLUE - notification_CENTER_TEAMCHANGE_PINK - notification_CENTER_TEAMCHANGE_RED - notification_CENTER_TEAMCHANGE_SPECTATE - notification_CENTER_TEAMCHANGE_SUICIDE - notification_CENTER_TEAMCHANGE_YELLOW - notification_CENTER_TIMEOUT_BEGINNING - notification_CENTER_TIMEOUT_ENDING - notification_DEATH_MURDER_CHEAT - notification_DEATH_MURDER_DROWN - notification_DEATH_MURDER_FALL - notification_DEATH_MURDER_FIRE - notification_DEATH_MURDER_LAVA - notification_DEATH_MURDER_SHOOTING_STAR - notification_DEATH_MURDER_SLIME - notification_DEATH_MURDER_SWAMP - notification_DEATH_MURDER_TELEFRAG - notification_DEATH_MURDER_TOUCHEXPLODE - notification_DEATH_MURDER_VH_BUMB_DEATH - notification_DEATH_MURDER_VH_BUMB_GUN - notification_DEATH_MURDER_VH_CRUSH - notification_DEATH_MURDER_VH_RAPT_BOMB - notification_DEATH_MURDER_VH_RAPT_CANNON - notification_DEATH_MURDER_VH_RAPT_DEATH - notification_DEATH_MURDER_VH_SPID_DEATH - notification_DEATH_MURDER_VH_SPID_MINIGUN - notification_DEATH_MURDER_VH_SPID_ROCKET - notification_DEATH_MURDER_VH_WAKI_DEATH - notification_DEATH_MURDER_VH_WAKI_GUN - notification_DEATH_MURDER_VH_WAKI_ROCKET - notification_DEATH_MURDER_VOID - notification_DEATH_SELF_AUTOTEAMCHANGE - notification_DEATH_SELF_BETRAYAL - notification_DEATH_SELF_CAMP - notification_DEATH_SELF_CHEAT - notification_DEATH_SELF_CUSTOM - notification_DEATH_SELF_DROWN - notification_DEATH_SELF_FALL - notification_DEATH_SELF_FIRE - notification_DEATH_SELF_GENERIC - notification_DEATH_SELF_LAVA - notification_DEATH_SELF_NOAMMO - notification_DEATH_SELF_ROT - notification_DEATH_SELF_SHOOTING_STAR - notification_DEATH_SELF_SLIME - notification_DEATH_SELF_SUICIDE - notification_DEATH_SELF_SWAMP - notification_DEATH_SELF_TEAMCHANGE - notification_DEATH_SELF_TOUCHEXPLODE - notification_DEATH_SELF_TURRET - notification_DEATH_SELF_TURRET_EWHEEL - notification_DEATH_SELF_TURRET_FLAC - notification_DEATH_SELF_TURRET_HELLION - notification_DEATH_SELF_TURRET_HK - notification_DEATH_SELF_TURRET_MACHINEGUN - notification_DEATH_SELF_TURRET_MLRS - notification_DEATH_SELF_TURRET_PHASER - notification_DEATH_SELF_TURRET_PLASMA - notification_DEATH_SELF_TURRET_TESLA - notification_DEATH_SELF_TURRET_WALK_GUN - notification_DEATH_SELF_TURRET_WALK_MEELE - notification_DEATH_SELF_TURRET_WALK_ROCKET - notification_DEATH_SELF_VH_BUMB_DEATH - notification_DEATH_SELF_VH_CRUSH - notification_DEATH_SELF_VH_RAPT_BOMB - notification_DEATH_SELF_VH_RAPT_DEATH - notification_DEATH_SELF_VH_SPID_DEATH - notification_DEATH_SELF_VH_SPID_ROCKET - notification_DEATH_SELF_VH_WAKI_DEATH - notification_DEATH_SELF_VH_WAKI_ROCKET - notification_DEATH_SELF_VOID - notification_INFO_CTF_CAPTURE_BLUE - notification_INFO_CTF_CAPTURE_BROKEN_BLUE - notification_INFO_CTF_CAPTURE_BROKEN_RED - notification_INFO_CTF_CAPTURE_RED - notification_INFO_CTF_CAPTURE_TIME_BLUE - notification_INFO_CTF_CAPTURE_TIME_RED - notification_INFO_CTF_CAPTURE_UNBROKEN_BLUE - notification_INFO_CTF_CAPTURE_UNBROKEN_RED - notification_INFO_CTF_FLAGRETURN_ABORTRUN_BLUE - notification_INFO_CTF_FLAGRETURN_ABORTRUN_RED - notification_INFO_CTF_FLAGRETURN_DAMAGED_BLUE - notification_INFO_CTF_FLAGRETURN_DAMAGED_RED - notification_INFO_CTF_FLAGRETURN_DROPPED_BLUE - notification_INFO_CTF_FLAGRETURN_DROPPED_RED - notification_INFO_CTF_FLAGRETURN_NEEDKILL_BLUE - notification_INFO_CTF_FLAGRETURN_NEEDKILL_RED - notification_INFO_CTF_FLAGRETURN_SPEEDRUN_BLUE - notification_INFO_CTF_FLAGRETURN_SPEEDRUN_RED - notification_INFO_CTF_FLAGRETURN_TIMEOUT_BLUE - notification_INFO_CTF_FLAGRETURN_TIMEOUT_RED - notification_INFO_CTF_LOST_BLUE - notification_INFO_CTF_LOST_RED - notification_INFO_CTF_PICKUP_BLUE - notification_INFO_CTF_PICKUP_RED - notification_INFO_CTF_RETURN_BLUE - notification_INFO_CTF_RETURN_RED - notification_INFO_DEATH_MURDER_CHEAT - notification_INFO_DEATH_MURDER_DROWN - notification_INFO_DEATH_MURDER_FALL - notification_INFO_DEATH_MURDER_FIRE - notification_INFO_DEATH_MURDER_LAVA - notification_INFO_DEATH_MURDER_SHOOTING_STAR - notification_INFO_DEATH_MURDER_SLIME - notification_INFO_DEATH_MURDER_SWAMP - notification_INFO_DEATH_MURDER_TELEFRAG - notification_INFO_DEATH_MURDER_TOUCHEXPLODE - notification_INFO_DEATH_MURDER_VH_BUMB_DEATH - notification_INFO_DEATH_MURDER_VH_BUMB_GUN - notification_INFO_DEATH_MURDER_VH_CRUSH - notification_INFO_DEATH_MURDER_VH_RAPT_BOMB - notification_INFO_DEATH_MURDER_VH_RAPT_CANNON - notification_INFO_DEATH_MURDER_VH_RAPT_DEATH - notification_INFO_DEATH_MURDER_VH_SPID_DEATH - notification_INFO_DEATH_MURDER_VH_SPID_MINIGUN - notification_INFO_DEATH_MURDER_VH_SPID_ROCKET - notification_INFO_DEATH_MURDER_VH_WAKI_DEATH - notification_INFO_DEATH_MURDER_VH_WAKI_GUN - notification_INFO_DEATH_MURDER_VH_WAKI_ROCKET - notification_INFO_DEATH_MURDER_VOID - notification_INFO_DEATH_SELF_AUTOTEAMCHANGE - notification_INFO_DEATH_SELF_BETRAYAL - notification_INFO_DEATH_SELF_CAMP - notification_INFO_DEATH_SELF_CHEAT - notification_INFO_DEATH_SELF_CUSTOM - notification_INFO_DEATH_SELF_DROWN - notification_INFO_DEATH_SELF_FALL - notification_INFO_DEATH_SELF_FIRE - notification_INFO_DEATH_SELF_GENERIC - notification_INFO_DEATH_SELF_LAVA - notification_INFO_DEATH_SELF_NOAMMO - notification_INFO_DEATH_SELF_ROT - notification_INFO_DEATH_SELF_SHOOTING_STAR - notification_INFO_DEATH_SELF_SLIME - notification_INFO_DEATH_SELF_SUICIDE - notification_INFO_DEATH_SELF_SWAMP - notification_INFO_DEATH_SELF_TEAMCHANGE - notification_INFO_DEATH_SELF_TOUCHEXPLODE - notification_INFO_DEATH_SELF_TURRET - notification_INFO_DEATH_SELF_TURRET_EWHEEL - notification_INFO_DEATH_SELF_TURRET_FLAC - notification_INFO_DEATH_SELF_TURRET_HELLION - notification_INFO_DEATH_SELF_TURRET_HK - notification_INFO_DEATH_SELF_TURRET_MACHINEGUN - notification_INFO_DEATH_SELF_TURRET_MLRS - notification_INFO_DEATH_SELF_TURRET_PHASER - notification_INFO_DEATH_SELF_TURRET_PLASMA - notification_INFO_DEATH_SELF_TURRET_TESLA - notification_INFO_DEATH_SELF_TURRET_WALK_GUN - notification_INFO_DEATH_SELF_TURRET_WALK_MEELE - notification_INFO_DEATH_SELF_TURRET_WALK_ROCKET - notification_INFO_DEATH_SELF_VH_BUMB_DEATH - notification_INFO_DEATH_SELF_VH_CRUSH - notification_INFO_DEATH_SELF_VH_RAPT_BOMB - notification_INFO_DEATH_SELF_VH_RAPT_DEATH - notification_INFO_DEATH_SELF_VH_SPID_DEATH - notification_INFO_DEATH_SELF_VH_SPID_ROCKET - notification_INFO_DEATH_SELF_VH_WAKI_DEATH - notification_INFO_DEATH_SELF_VH_WAKI_ROCKET - notification_INFO_DEATH_SELF_VOID - notification_INFO_DEATH_TEAMKILL_BLUE - notification_INFO_DEATH_TEAMKILL_PINK - notification_INFO_DEATH_TEAMKILL_RED - notification_INFO_DEATH_TEAMKILL_YELLOW - notification_INFO_FREEZETAG_FREEZE - notification_INFO_FREEZETAG_REVIVE - notification_INFO_FREEZETAG_ROUND_WIN_BLUE - notification_INFO_FREEZETAG_ROUND_WIN_PINK - notification_INFO_FREEZETAG_ROUND_WIN_RED - notification_INFO_FREEZETAG_ROUND_WIN_YELLOW - notification_INFO_FREEZETAG_SELF - notification_INFO_GODMODE_OFF - notification_INFO_ITEM_WEAPON_DONTHAVE - notification_INFO_ITEM_WEAPON_DROP - notification_INFO_ITEM_WEAPON_GOT - notification_INFO_ITEM_WEAPON_NOAMMO - notification_INFO_ITEM_WEAPON_PRIMORSEC - notification_INFO_ITEM_WEAPON_UNAVAILABLE - notification_INFO_JOIN_CONNECT - notification_INFO_JOIN_CONNECT_TEAM_BLUE - notification_INFO_JOIN_CONNECT_TEAM_PINK - notification_INFO_JOIN_CONNECT_TEAM_RED - notification_INFO_JOIN_CONNECT_TEAM_YELLOW - notification_INFO_JOIN_PLAY - notification_INFO_KEEPAWAY_DROPPED - notification_INFO_KEEPAWAY_PICKUP - notification_INFO_KEYHUNT_CAPTURE_BLUE - notification_INFO_KEYHUNT_CAPTURE_PINK - notification_INFO_KEYHUNT_CAPTURE_RED - notification_INFO_KEYHUNT_CAPTURE_YELLOW - notification_INFO_KEYHUNT_DROP_BLUE - notification_INFO_KEYHUNT_DROP_PINK - notification_INFO_KEYHUNT_DROP_RED - notification_INFO_KEYHUNT_DROP_YELLOW - notification_INFO_KEYHUNT_LOST_BLUE - notification_INFO_KEYHUNT_LOST_PINK - notification_INFO_KEYHUNT_LOST_RED - notification_INFO_KEYHUNT_LOST_YELLOW - notification_INFO_KEYHUNT_PICKUP_BLUE - notification_INFO_KEYHUNT_PICKUP_PINK - notification_INFO_KEYHUNT_PICKUP_RED - notification_INFO_KEYHUNT_PICKUP_YELLOW - notification_INFO_LMS_FORFEIT - notification_INFO_LMS_NOLIVES - notification_INFO_POWERUP_INVISIBILITY - notification_INFO_POWERUP_SHIELD - notification_INFO_POWERUP_SPEED - notification_INFO_POWERUP_STRENGTH - notification_INFO_QUIT_DISCONNECT - notification_INFO_QUIT_KICK_IDLING - notification_INFO_QUIT_KICK_SPECTATING - notification_INFO_QUIT_SPECTATE - notification_INFO_RACE_ABANDONED - notification_INFO_RACE_FAIL_RANKED - notification_INFO_RACE_FAIL_UNRANKED - notification_INFO_RACE_FINISHED - notification_INFO_RACE_NEW_BROKEN - notification_INFO_RACE_NEW_IMPROVED - notification_INFO_RACE_NEW_MISSING_UID - notification_INFO_RACE_NEW_SET - notification_INFO_SCORES_BLUE - notification_INFO_SCORES_PINK - notification_INFO_SCORES_RED - notification_INFO_SCORES_YELLOW - notification_INFO_SPECTATE_WARNING - notification_INFO_SUPERWEAPON_PICKUP - notification_INFO_VERSION_BETA - notification_INFO_VERSION_OLD - notification_INFO_VERSION_OUTDATED - notification_INFO_WATERMARK - notification_INFO_WEAPON_ACCORDEON_MURDER - notification_INFO_WEAPON_ACCORDEON_SUICIDE - notification_INFO_WEAPON_CRYLINK_MURDER - notification_INFO_WEAPON_CRYLINK_SUICIDE - notification_INFO_WEAPON_ELECTRO_MURDER_BOLT - notification_INFO_WEAPON_ELECTRO_MURDER_COMBO - notification_INFO_WEAPON_ELECTRO_MURDER_ORBS - notification_INFO_WEAPON_ELECTRO_SUICIDE_BOLT - notification_INFO_WEAPON_ELECTRO_SUICIDE_ORBS - notification_INFO_WEAPON_FIREBALL_MURDER_BLAST - notification_INFO_WEAPON_FIREBALL_MURDER_FIREMINE - notification_INFO_WEAPON_FIREBALL_SUICIDE_BLAST - notification_INFO_WEAPON_FIREBALL_SUICIDE_FIREMINE - notification_INFO_WEAPON_HAGAR_MURDER_BURST - notification_INFO_WEAPON_HAGAR_MURDER_SPRAY - notification_INFO_WEAPON_HAGAR_SUICIDE - notification_INFO_WEAPON_HLAC_MURDER - notification_INFO_WEAPON_HLAC_SUICIDE - notification_INFO_WEAPON_HOOK_MURDER - notification_INFO_WEAPON_KLEINBOTTLE_MURDER - notification_INFO_WEAPON_KLEINBOTTLE_SUICIDE - notification_INFO_WEAPON_LASER_MURDER - notification_INFO_WEAPON_LASER_SUICIDE - notification_INFO_WEAPON_MINELAYER_MURDER - notification_INFO_WEAPON_MINELAYER_SUICIDE - notification_INFO_WEAPON_MINSTANEX_MURDER - notification_INFO_WEAPON_MORTAR_MURDER_BOUNCE - notification_INFO_WEAPON_MORTAR_MURDER_EXPLODE - notification_INFO_WEAPON_MORTAR_SUICIDE_BOUNCE - notification_INFO_WEAPON_MORTAR_SUICIDE_EXPLODE - notification_INFO_WEAPON_NEX_MURDER - notification_INFO_WEAPON_RIFLE_MURDER - notification_INFO_WEAPON_RIFLE_MURDER_HAIL - notification_INFO_WEAPON_RIFLE_MURDER_HAIL_PIERCING - notification_INFO_WEAPON_RIFLE_MURDER_PIERCING - notification_INFO_WEAPON_ROCKETLAUNCHER_MURDER_DIRECT - notification_INFO_WEAPON_ROCKETLAUNCHER_MURDER_SPLASH - notification_INFO_WEAPON_ROCKETLAUNCHER_SUICIDE - notification_INFO_WEAPON_SEEKER_MURDER_SPRAY - notification_INFO_WEAPON_SEEKER_MURDER_TAG - notification_INFO_WEAPON_SEEKER_SUICIDE - notification_INFO_WEAPON_SHOTGUN_MURDER - notification_INFO_WEAPON_SHOTGUN_MURDER_SLAP - notification_INFO_WEAPON_THINKING_WITH_PORTALS - notification_INFO_WEAPON_TUBA_MURDER - notification_INFO_WEAPON_TUBA_SUICIDE - notification_INFO_WEAPON_UZI_MURDER_SNIPE - notification_INFO_WEAPON_UZI_MURDER_SPRAY - notification_ITEM_WEAPON_DONTHAVE - notification_ITEM_WEAPON_DROP - notification_ITEM_WEAPON_GOT - notification_ITEM_WEAPON_NOAMMO - notification_ITEM_WEAPON_PRIMORSEC - notification_ITEM_WEAPON_UNAVAILABLE - notification_MULTI_ARENA_BEGIN - notification_MULTI_COUNTDOWN_BEGIN - notification_MULTI_MINSTA_FINDAMMO - notification_WEAPON_ACCORDEON_MURDER - notification_WEAPON_ACCORDEON_SUICIDE - notification_WEAPON_CRYLINK_MURDER - notification_WEAPON_CRYLINK_SUICIDE - notification_WEAPON_ELECTRO_MURDER_BOLT - notification_WEAPON_ELECTRO_MURDER_COMBO - notification_WEAPON_ELECTRO_MURDER_ORBS - notification_WEAPON_ELECTRO_SUICIDE_BOLT - notification_WEAPON_ELECTRO_SUICIDE_ORBS - notification_WEAPON_FIREBALL_MURDER_BLAST - notification_WEAPON_FIREBALL_MURDER_FIREMINE - notification_WEAPON_FIREBALL_SUICIDE_BLAST - notification_WEAPON_FIREBALL_SUICIDE_FIREMINE - notification_WEAPON_HAGAR_MURDER_BURST - notification_WEAPON_HAGAR_MURDER_SPRAY - notification_WEAPON_HAGAR_SUICIDE - notification_WEAPON_HLAC_MURDER - notification_WEAPON_HLAC_SUICIDE - notification_WEAPON_HOOK_MURDER - notification_WEAPON_KLEINBOTTLE_MURDER - notification_WEAPON_KLEINBOTTLE_SUICIDE - notification_WEAPON_LASER_MURDER - notification_WEAPON_LASER_SUICIDE - notification_WEAPON_MINELAYER_MURDER - notification_WEAPON_MINELAYER_SUICIDE - notification_WEAPON_MINSTANEX_MURDER - notification_WEAPON_MORTAR_MURDER_BOUNCE - notification_WEAPON_MORTAR_MURDER_EXPLODE - notification_WEAPON_MORTAR_SUICIDE_BOUNCE - notification_WEAPON_MORTAR_SUICIDE_EXPLODE - notification_WEAPON_NEX_MURDER - notification_WEAPON_RIFLE_MURDER - notification_WEAPON_RIFLE_MURDER_HAIL - notification_WEAPON_RIFLE_MURDER_HAIL_PIERCING - notification_WEAPON_RIFLE_MURDER_PIERCING - notification_WEAPON_ROCKETLAUNCHER_MURDER_DIRECT - notification_WEAPON_ROCKETLAUNCHER_MURDER_SPLASH - notification_WEAPON_ROCKETLAUNCHER_SUICIDE - notification_WEAPON_SEEKER_MURDER_SPRAY - notification_WEAPON_SEEKER_MURDER_TAG - notification_WEAPON_SEEKER_SUICIDE - notification_WEAPON_SHOTGUN_MURDER - notification_WEAPON_SHOTGUN_MURDER_SLAP - notification_WEAPON_THINKING_WITH_PORTALS - notification_WEAPON_TUBA_MURDER - notification_WEAPON_TUBA_SUICIDE - notification_WEAPON_UZI_MURDER_SNIPE - notification_WEAPON_UZI_MURDER_SPRAY - notification_allow_chatboxprint - notification_ctf_capture_verbose - notification_ctf_pickup_enemy_verbose - notification_ctf_pickup_team_verbose - notification_debug - notification_errors_are_fatal - notification_frag_verbose - notification_item_centerprinttime - notification_lifetime_mapload - notification_lifetime_runtime - notification_server_allows_frag_verbose - notification_server_allows_location - notification_show_location - notification_show_location_string - notification_show_sprees - notification_show_sprees_center - notification_show_sprees_center_specialonly - notification_show_sprees_info - notification_show_sprees_info_newline - notification_show_sprees_info_specialonly - pausable - physics_ode - physics_ode_allowconvex - physics_ode_autodisable - physics_ode_autodisable_steps - physics_ode_autodisable_threshold_angular - physics_ode_autodisable_threshold_linear - physics_ode_autodisable_threshold_samples - physics_ode_autodisable_time - physics_ode_constantstep - physics_ode_contact_cfm - physics_ode_contact_erp - physics_ode_contact_maxpoints - physics_ode_contact_mu - physics_ode_contactsurfacelayer - physics_ode_iterationsperframe - physics_ode_movelimit - physics_ode_printstats - physics_ode_quadtree_depth - physics_ode_spinlimit - physics_ode_trick_fixnan - physics_ode_world_cfm - physics_ode_world_damping - physics_ode_world_damping_angular - physics_ode_world_damping_angular_threshold - physics_ode_world_damping_linear - physics_ode_world_damping_linear_threshold - physics_ode_world_erp - physics_ode_world_gravitymod - physics_ode_worldstep_iterations - port - pr_checkextension - prvm_backtraceforwarnings - prvm_breakpointdump - prvm_errordump - prvm_language - prvm_leaktest - prvm_leaktest_ignore_classnames - prvm_reuseedicts_neverinsameframe - prvm_reuseedicts_startuptime - prvm_statementprofiling - prvm_timeprofiling - prvm_traceqc - qport - quit_and_redirect - quit_and_redirect_timer - quit_when_empty - r_ambient - r_batch_debugdynamicvertexpath - r_batch_dynamicbuffer - r_batch_multidraw - r_batch_multidraw_mintriangles - r_bloom - r_bloom_blur - r_bloom_brighten - r_bloom_colorexponent - r_bloom_colorscale - r_bloom_colorsubtract - r_bloom_resolution - r_bloom_scenebrightness - r_bufferdatasize_index16 - r_bufferdatasize_index32 - r_bufferdatasize_uniform - r_bufferdatasize_vertex - r_celoutlines - r_celshading - r_colormap_palette - r_coronas - r_coronas_occlusionquery - r_coronas_occlusionsizescale - r_cullentities_trace - r_cullentities_trace_delay - r_cullentities_trace_enlarge - r_cullentities_trace_samples - r_cullentities_trace_tempentitysamples - r_damageblur - r_deformvertexes - r_depthfirst - r_draw2d - r_drawdecals - r_drawdecals_drawdistance - r_draweffects - r_drawentities - r_drawexplosions - r_drawexteriormodel - r_drawfog - r_drawparticles - r_drawparticles_drawdistance - r_drawparticles_nearclip_max - r_drawparticles_nearclip_min - r_drawportals - r_drawviewmodel - r_drawworld - r_dynamic - r_editlights - r_editlights_current_ambient - r_editlights_current_angles - r_editlights_current_color - r_editlights_current_corona - r_editlights_current_coronasize - r_editlights_current_cubemap - r_editlights_current_diffuse - r_editlights_current_normalmode - r_editlights_current_origin - r_editlights_current_radius - r_editlights_current_realtimemode - r_editlights_current_shadows - r_editlights_current_specular - r_editlights_current_style - r_editlights_cursordistance - r_editlights_cursorgrid - r_editlights_cursorpushback - r_editlights_cursorpushoff - r_editlights_drawproperties - r_editlights_quakelightsizescale - r_enableshadowvolumes - r_equalize_entities_by - r_equalize_entities_fullbright - r_equalize_entities_minambient - r_equalize_entities_to - r_explosionclip - r_fakelight - r_fakelight_intensity - r_farclip_base - r_farclip_world - r_fixtrans_auto - r_fog_clear - r_fog_exp2 - r_font_antialias - r_font_compress - r_font_disable_freetype - r_font_diskcache - r_font_hinting - r_font_kerning - r_font_nonpoweroftwo - r_font_postprocess_blur - r_font_postprocess_outline - r_font_postprocess_shadow_x - r_font_postprocess_shadow_y - r_font_postprocess_shadow_z - r_font_size_snapping - r_font_use_alpha_textures - r_framedatasize - r_fullbright - r_fullbrights - r_glsl - r_glsl_deluxemapping - r_glsl_offsetmapping - r_glsl_offsetmapping_lod - r_glsl_offsetmapping_lod_distance - r_glsl_offsetmapping_reliefmapping - r_glsl_offsetmapping_reliefmapping_refinesteps - r_glsl_offsetmapping_reliefmapping_steps - r_glsl_offsetmapping_scale - r_glsl_offsetmapping_steps - r_glsl_postprocess - r_glsl_postprocess_uservec1 - r_glsl_postprocess_uservec1_enable - r_glsl_postprocess_uservec2 - r_glsl_postprocess_uservec2_enable - r_glsl_postprocess_uservec3 - r_glsl_postprocess_uservec3_enable - r_glsl_postprocess_uservec4 - r_glsl_postprocess_uservec4_enable - r_glsl_saturation - r_glsl_saturation_redcompensate - r_glsl_skeletal - r_glsl_vertextextureblend_usebothalphas - r_hdr_glowintensity - r_hdr_irisadaptation - r_hdr_irisadaptation_fade_down - r_hdr_irisadaptation_fade_up - r_hdr_irisadaptation_maxvalue - r_hdr_irisadaptation_minvalue - r_hdr_irisadaptation_multiplier - r_hdr_irisadaptation_radius - r_hdr_irisadaptation_value - r_hdr_scenebrightness - r_labelsprites_roundtopixels - r_labelsprites_scale - r_lerpimages - r_lerplightstyles - r_lerpmodels - r_lerpsprites - r_letterbox - r_lightningbeam_color_blue - r_lightningbeam_color_green - r_lightningbeam_color_red - r_lightningbeam_qmbtexture - r_lightningbeam_repeatdistance - r_lightningbeam_scroll - r_lightningbeam_thickness - r_lockpvs - r_lockvisibility - r_mipnormalmaps - r_mipskins - r_mipsprites - r_motionblur - r_motionblur_averaging - r_motionblur_maxblur - r_motionblur_minblur - r_motionblur_mousefactor - r_motionblur_mousefactor_maxspeed - r_motionblur_mousefactor_minspeed - r_motionblur_randomize - r_motionblur_velocityfactor - r_motionblur_velocityfactor_maxspeed - r_motionblur_velocityfactor_minspeed - r_nearclip - r_nearest_2d - r_nearest_conchars - r_nosurftextures - r_novis - r_overheadsprites_perspective - r_overheadsprites_pushback - r_overheadsprites_scalex - r_overheadsprites_scaley - r_picmipsprites - r_picmipworld - r_polygonoffset_decals_factor - r_polygonoffset_decals_offset - r_polygonoffset_submodel_factor - r_polygonoffset_submodel_offset - r_q1bsp_skymasking - r_q3bsp_renderskydepth - r_render - r_renderview - r_shadow_bouncegrid - r_shadow_bouncegrid_bounceanglediffuse - r_shadow_bouncegrid_directionalshading - r_shadow_bouncegrid_dlightparticlemultiplier - r_shadow_bouncegrid_hitmodels - r_shadow_bouncegrid_includedirectlighting - r_shadow_bouncegrid_intensity - r_shadow_bouncegrid_lightradiusscale - r_shadow_bouncegrid_maxbounce - r_shadow_bouncegrid_particlebounceintensity - r_shadow_bouncegrid_particleintensity - r_shadow_bouncegrid_photons - r_shadow_bouncegrid_spacing - r_shadow_bouncegrid_stablerandom - r_shadow_bouncegrid_static - r_shadow_bouncegrid_static_directionalshading - r_shadow_bouncegrid_static_lightradiusscale - r_shadow_bouncegrid_static_maxbounce - r_shadow_bouncegrid_static_photons - r_shadow_bouncegrid_updateinterval - r_shadow_bouncegrid_x - r_shadow_bouncegrid_y - r_shadow_bouncegrid_z - r_shadow_bumpscale_basetexture - r_shadow_bumpscale_bumpmap - r_shadow_debuglight - r_shadow_deferred - r_shadow_frontsidecasting - r_shadow_gloss - r_shadow_gloss2exponent - r_shadow_gloss2intensity - r_shadow_glossexact - r_shadow_glossexponent - r_shadow_glossintensity - r_shadow_lightattenuationdividebias - r_shadow_lightattenuationlinearscale - r_shadow_lightintensityscale - r_shadow_lightradiusscale - r_shadow_polygonfactor - r_shadow_polygonoffset - r_shadow_projectdistance - r_shadow_realtime_dlight - r_shadow_realtime_dlight_portalculling - r_shadow_realtime_dlight_shadows - r_shadow_realtime_dlight_svbspculling - r_shadow_realtime_world - r_shadow_realtime_world_compile - r_shadow_realtime_world_compileportalculling - r_shadow_realtime_world_compileshadow - r_shadow_realtime_world_compilesvbsp - r_shadow_realtime_world_lightmaps - r_shadow_realtime_world_shadows - r_shadow_scissor - r_shadow_shadowmapping - r_shadow_shadowmapping_bias - r_shadow_shadowmapping_bordersize - r_shadow_shadowmapping_depthbits - r_shadow_shadowmapping_filterquality - r_shadow_shadowmapping_maxsize - r_shadow_shadowmapping_minsize - r_shadow_shadowmapping_nearclip - r_shadow_shadowmapping_polygonfactor - r_shadow_shadowmapping_polygonoffset - r_shadow_shadowmapping_precision - r_shadow_shadowmapping_useshadowsampler - r_shadow_shadowmapping_vsdct - r_shadow_sortsurfaces - r_shadow_texture3d - r_shadow_usebihculling - r_shadow_usenormalmap - r_shadows - r_shadows_castfrombmodels - r_shadows_darken - r_shadows_drawafterrtlighting - r_shadows_focus - r_shadows_shadowmapbias - r_shadows_shadowmapscale - r_shadows_throwdirection - r_shadows_throwdistance - r_showbboxes - r_showcollisionbrushes - r_showcollisionbrushes_polygonfactor - r_showcollisionbrushes_polygonoffset - r_showdisabledepthtest - r_showlighting - r_shownormals - r_showoverdraw - r_showshadowvolumes - r_showsurfaces - r_showtris - r_skeletal_debugbone - r_skeletal_debugbonecomponent - r_skeletal_debugbonevalue - r_skeletal_debugtranslatex - r_skeletal_debugtranslatey - r_skeletal_debugtranslatez - r_skeletal_use_sse - r_sky - r_skyscroll1 - r_skyscroll2 - r_smoothnormals_areaweighting - r_sortentities - r_speeds - r_speeds_graph - r_speeds_graph_filter_b - r_speeds_graph_filter_c - r_speeds_graph_filter_g - r_speeds_graph_filter_m - r_speeds_graph_filter_o - r_speeds_graph_filter_r - r_speeds_graph_filter_w - r_speeds_graph_filter_y - r_speeds_graph_height - r_speeds_graph_length - r_speeds_graph_seconds - r_speeds_graph_width - r_speeds_graph_x - r_speeds_graph_y - r_stereo_angle - r_stereo_horizontal - r_stereo_redblue - r_stereo_redcyan - r_stereo_redgreen - r_stereo_separation - r_stereo_sidebyside - r_stereo_vertical - r_subdivisions_collision_maxtess - r_subdivisions_collision_maxvertices - r_subdivisions_collision_mintess - r_subdivisions_collision_tolerance - r_subdivisions_maxtess - r_subdivisions_maxvertices - r_subdivisions_mintess - r_subdivisions_tolerance - r_test - r_textbrightness - r_textcontrast - r_textshadow - r_texture_dds_load - r_texture_dds_load_alphamode - r_texture_dds_load_logfailure - r_texture_dds_save - r_texture_dds_swdecode - r_texture_jpeg_fastpicmip - r_textureunits - r_track_sprites - r_track_sprites_flags - r_track_sprites_scaleh - r_track_sprites_scalew - r_transparent - r_transparent_alphatocoverage - r_transparent_sortarraysize - r_transparent_sortmaxdist - r_transparent_sortmindist - r_transparent_sortsurfacesbynearest - r_transparent_useplanardistance - r_transparentdepthmasking - r_trippy - r_usedepthtextures - r_useinfinitefarclip - r_useportalculling - r_usesurfaceculling - r_viewfbo - r_viewscale - r_viewscale_fpsscaling - r_viewscale_fpsscaling_min - r_viewscale_fpsscaling_multiply - r_viewscale_fpsscaling_stepmax - r_viewscale_fpsscaling_stepsize - r_viewscale_fpsscaling_target - r_water - r_water_clippingplanebias - r_water_fbo - r_water_hideplayer - r_water_lowquality - r_water_reflectdistort - r_water_refractdistort - r_water_resolutionmultiplier - r_water_scissormode - r_wateralpha - r_waterscroll - r_waterwarp - rcon_address - rcon_password - rcon_restricted_commands - rcon_restricted_password - rcon_secure - rcon_secure_challengetimeout - rcon_secure_maxdiff - registered - rescan_pending - samelevel - saved1 - saved2 - saved3 - saved4 - savedgamecfg - sbar_alpha_bg - sbar_alpha_fg - sbar_flagstatus_pos - sbar_flagstatus_right - sbar_gametime - sbar_hudselector - sbar_info_pos - sbar_miniscoreboard_size - sbar_scorerank - scoreboard_accuracy - scoreboard_accuracy_border_thickness - scoreboard_accuracy_doublerows - scoreboard_accuracy_nocolors - scoreboard_alpha_bg - scoreboard_alpha_fg - scoreboard_alpha_name - scoreboard_alpha_name_self - scoreboard_bg_scale - scoreboard_border_thickness - scoreboard_color_bg_b - scoreboard_color_bg_g - scoreboard_color_bg_r - scoreboard_color_bg_team - scoreboard_columns - scoreboard_fadeinspeed - scoreboard_fadeoutspeed - scoreboard_highlight - scoreboard_highlight_alpha - scoreboard_highlight_alpha_self - scoreboard_offset_left - scoreboard_offset_right - scoreboard_offset_vertical - scoreboard_respawntime_decimals - scr_centertime - scr_conalpha - scr_conalpha2factor - scr_conalpha3factor - scr_conalphafactor - scr_conbrightness - scr_conforcewhiledisconnected - scr_conscroll2_x - scr_conscroll2_y - scr_conscroll3_x - scr_conscroll3_y - scr_conscroll_x - scr_conscroll_y - scr_infobar_height - scr_loadingscreen_background - scr_loadingscreen_barcolor - scr_loadingscreen_barheight - scr_loadingscreen_count - scr_loadingscreen_firstforstartup - scr_loadingscreen_maxfps - scr_loadingscreen_picture - scr_loadingscreen_scale - scr_loadingscreen_scale_base - scr_loadingscreen_scale_limit - scr_menuforcewhiledisconnected - scr_printspeed - scr_refresh - scr_screenshot_alpha - scr_screenshot_gammaboost - scr_screenshot_hwgamma - scr_screenshot_jpeg - scr_screenshot_jpeg_quality - scr_screenshot_name - scr_screenshot_name_in_mapdir - scr_screenshot_png - scr_screenshot_timestamp - scr_stipple - scratch1 - scratch2 - scratch3 - scratch4 - sensitivity - serverconfig - sessionid - showblur - showbrand - showdate - showdate_format - showfps - shownetgraph - showpause - showram - showsound - showspeed - showtex - showtime - showtime_format - showtopspeed - showturtle - skill - skill_auto - skin - slowmo - snd_attenuation_decibel - snd_attenuation_exponent - snd_channel0volume - snd_channel1volume - snd_channel2volume - snd_channel3volume - snd_channel4volume - snd_channel5volume - snd_channel6volume - snd_channel7volume - snd_channel8volume - snd_channel9volume - snd_channellayout - snd_channels - snd_csqcchannel0volume - snd_csqcchannel1volume - snd_csqcchannel2volume - snd_csqcchannel3volume - snd_csqcchannel4volume - snd_csqcchannel5volume - snd_csqcchannel6volume - snd_csqcchannel7volume - snd_entchannel0volume - snd_entchannel1volume - snd_entchannel2volume - snd_entchannel3volume - snd_entchannel4volume - snd_entchannel5volume - snd_entchannel6volume - snd_entchannel7volume - snd_identicalsoundrandomization_tics - snd_identicalsoundrandomization_time - snd_initialized - snd_maxchannelvolume - snd_mutewhenidle - snd_noextraupdate - snd_playerchannel0volume - snd_playerchannel1volume - snd_playerchannel2volume - snd_playerchannel3volume - snd_playerchannel4volume - snd_playerchannel5volume - snd_playerchannel6volume - snd_playerchannel7volume - snd_precache - snd_show - snd_softclip - snd_soundradius - snd_spatialization_control - snd_spatialization_max - snd_spatialization_max_radius - snd_spatialization_min - snd_spatialization_min_radius - snd_spatialization_occlusion - snd_spatialization_power - snd_spatialization_prologic - snd_spatialization_prologic_frontangle - snd_speed - snd_startloopingsounds - snd_startnonloopingsounds - snd_staticvolume - snd_streaming - snd_streaming_length - snd_swapstereo - snd_width - snd_worldchannel0volume - snd_worldchannel1volume - snd_worldchannel2volume - snd_worldchannel3volume - snd_worldchannel4volume - snd_worldchannel5volume - snd_worldchannel6volume - snd_worldchannel7volume - spawn_debug - spawn_debugview - speedmeter - sv_accelerate - sv_accuracy_data_send - sv_accuracy_data_share - sv_adminnick - sv_aim - sv_airaccel_qw - sv_airaccel_qw_stretchfactor - sv_airaccel_sideways_friction - sv_airaccelerate - sv_aircontrol - sv_aircontrol_penalty - sv_aircontrol_power - sv_airspeedlimit_nonqw - sv_airstopaccelerate - sv_airstrafeaccel_qw - sv_airstrafeaccelerate - sv_allow_fullbright - sv_allowdownloads - sv_allowdownloads_archive - sv_allowdownloads_config - sv_allowdownloads_dlcache - sv_allowdownloads_inarchive - sv_areadebug - sv_areagrid_mingridsize - sv_autodemo_perclient - sv_autodemo_perclient_discardable - sv_autodemo_perclient_nameformat - sv_autoscreenshot - sv_autotaunt - sv_cheats - sv_checkforpacketsduringsleep - sv_clientcommand_antispam_count - sv_clientcommand_antispam_time - sv_clmovement_enable - sv_clmovement_inputtimeout - sv_clmovement_minping - sv_clmovement_minping_disabletime - sv_clones - sv_cullentities_nevercullbmodels - sv_cullentities_pvs - sv_cullentities_stats - sv_cullentities_trace - sv_cullentities_trace_delay - sv_cullentities_trace_delay_players - sv_cullentities_trace_enlarge - sv_cullentities_trace_entityocclusion - sv_cullentities_trace_prediction - sv_cullentities_trace_prediction_time - sv_cullentities_trace_samples - sv_cullentities_trace_samples_extra - sv_cullentities_trace_samples_players - sv_curl_defaulturl - sv_curl_maxspeed - sv_curl_serverpackages - sv_curl_serverpackages_auto - sv_db_saveasdump - sv_debugmove - sv_defaultcharacter - sv_defaultplayercolors - sv_defaultplayermodel - sv_defaultplayermodel_blue - sv_defaultplayermodel_pink - sv_defaultplayermodel_red - sv_defaultplayermodel_yellow - sv_defaultplayerskin - sv_defaultplayerskin_blue - sv_defaultplayerskin_pink - sv_defaultplayerskin_red - sv_defaultplayerskin_yellow - sv_disablenotify - sv_dodging_delay - sv_dodging_height_threshold - sv_dodging_horiz_speed - sv_dodging_ramp_time - sv_dodging_sound - sv_dodging_up_speed - sv_dodging_wall_distance_threshold - sv_dodging_wall_dodging - sv_doublejump - sv_echobprint - sv_entpatch - sv_eventlog - sv_eventlog_console - sv_eventlog_files - sv_eventlog_files_counter - sv_eventlog_files_nameprefix - sv_eventlog_files_namesuffix - sv_eventlog_files_timestamps - sv_fixedframeratesingleplayer - sv_foginterval - sv_fraginfo - sv_fraginfo_handicap - sv_fraginfo_ping - sv_fraginfo_stats - sv_freezenonclients - sv_friction - sv_friction_on_land - sv_gameplayfix_blowupfallenzombies - sv_gameplayfix_consistentplayerprethink - sv_gameplayfix_delayprojectiles - sv_gameplayfix_downtracesupportsongroundflag - sv_gameplayfix_droptofloorstartsolid - sv_gameplayfix_droptofloorstartsolid_nudgetocorrect - sv_gameplayfix_easierwaterjump - sv_gameplayfix_findradiusdistancetobox - sv_gameplayfix_fixedcheckwatertransition - sv_gameplayfix_gravityunaffectedbyticrate - sv_gameplayfix_grenadebouncedownslopes - sv_gameplayfix_multiplethinksperframe - sv_gameplayfix_noairborncorpse - sv_gameplayfix_noairborncorpse_allowsuspendeditems - sv_gameplayfix_nogravityonground - sv_gameplayfix_nostepmoveonsteepslopes - sv_gameplayfix_nudgeoutofsolid - sv_gameplayfix_nudgeoutofsolid_separation - sv_gameplayfix_q1bsptracelinereportstexture - sv_gameplayfix_q2airaccelerate - sv_gameplayfix_setmodelrealbox - sv_gameplayfix_slidemoveprojectiles - sv_gameplayfix_stepdown - sv_gameplayfix_stepmultipletimes - sv_gameplayfix_swiminbmodels - sv_gameplayfix_unstickentities - sv_gameplayfix_unstickplayers - sv_gameplayfix_upwardvelocityclearsongroundflag - sv_gentle - sv_gibhealth - sv_gravity - sv_heartbeatperiod - sv_idealpitchscale - sv_intermission_cdtrack - sv_join_notices - sv_join_notices_time - sv_jumpspeedcap_max - sv_jumpspeedcap_max_disable_on_ramps - sv_jumpspeedcap_min - sv_jumpstep - sv_jumpvelocity - sv_logscores_bots - sv_logscores_console - sv_logscores_file - sv_logscores_filename - sv_mapchange_delay - sv_master1 - sv_master2 - sv_master3 - sv_master4 - sv_masterextra1 - sv_masterextra2 - sv_masterextra3 - sv_maxairspeed - sv_maxairstrafespeed - sv_maxidle - sv_maxidle_spectatorsareidle - sv_maxrate - sv_maxspeed - sv_maxvelocity - sv_motd - sv_namechangetimer - sv_nostep - sv_onlycsqcnetworking - sv_player_crouch_maxs - sv_player_crouch_mins - sv_player_crouch_viewoffset - sv_player_headsize - sv_player_maxs - sv_player_mins - sv_player_viewoffset - sv_playerphysicsqc - sv_precacheitems - sv_precacheplayermodels - sv_precacheweapons - sv_progs - sv_protocolname - sv_public - sv_public_rejectreason - sv_q3acompat_machineshotgunswap - sv_random_seed - sv_ratelimitlocalplayer - sv_ready_restart - sv_ready_restart_after_countdown - sv_ready_restart_repeatable - sv_servermodelsonly - sv_shownames_cull_distance - sv_simple_items - sv_sound_land - sv_sound_watersplash - sv_spectate - sv_spectator_speed_multiplier - sv_status_privacy - sv_status_show_qcstatus - sv_stepheight - sv_stopspeed - sv_strengthsound_antispam_refire_threshold - sv_strengthsound_antispam_time - sv_taunt - sv_teamnagger - sv_threaded - sv_timeout - sv_timeout_leadtime - sv_timeout_length - sv_timeout_number - sv_timeout_resumetime - sv_vote_call - sv_vote_change - sv_vote_command_restriction_allready - sv_vote_command_restriction_chmap - sv_vote_command_restriction_cointoss - sv_vote_command_restriction_endmatch - sv_vote_command_restriction_extendmatchtime - sv_vote_command_restriction_fraglimit - sv_vote_command_restriction_gotomap - sv_vote_command_restriction_kick - sv_vote_command_restriction_kickban - sv_vote_command_restriction_movetoauto - sv_vote_command_restriction_movetoblue - sv_vote_command_restriction_movetopink - sv_vote_command_restriction_movetored - sv_vote_command_restriction_movetoyellow - sv_vote_command_restriction_nextmap - sv_vote_command_restriction_reducematchtime - sv_vote_command_restriction_restart - sv_vote_commands - sv_vote_gamestart - sv_vote_limit - sv_vote_majority_factor - sv_vote_majority_factor_of_voted - sv_vote_master - sv_vote_master_callable - sv_vote_master_commands - sv_vote_master_password - sv_vote_master_playerlimit - sv_vote_no_stops_vote - sv_vote_nospectators - sv_vote_only_commands - sv_vote_override_mostrecent - sv_vote_singlecount - sv_vote_stop - sv_vote_timeout - sv_vote_wait - sv_wallfriction - sv_warsowbunny_accel - sv_warsowbunny_airforwardaccel - sv_warsowbunny_backtosideratio - sv_warsowbunny_topspeed - sv_warsowbunny_turnaccel - sv_wateraccelerate - sv_waterfriction - sv_waypointsprite_deadlifetime - sv_waypointsprite_deployed_lifetime - sv_waypointsprite_limitedrange - sv_weaponstats_file - sv_worldbasename - sv_worldmessage - sv_worldname - sv_worldnamenoextension - sv_writepicture_quality - sys_colortranslation - sys_debugsleep - sys_memsize_physical - sys_memsize_virtual - sys_specialcharactertranslation - sys_ticrate - sys_useclockgettime - sys_usenoclockbutbenchmark - team - teamplay - teamplay_lockonrestart - teamplay_mode - temp1 - the_goggles - timedemo_screenshotframelist - timeformat - timelimit - timelimit_decrement - timelimit_increment - timelimit_max - timelimit_min - timelimit_override - timelimit_overtime - timelimit_overtimes - timelimit_suddendeath - timestamps - userbind10_description - userbind10_press - userbind10_release - userbind11_description - userbind11_press - userbind11_release - userbind12_description - userbind12_press - userbind12_release - userbind13_description - userbind13_press - userbind13_release - userbind14_description - userbind14_press - userbind14_release - userbind15_description - userbind15_press - userbind15_release - userbind16_description - userbind16_press - userbind16_release - userbind17_description - userbind17_press - userbind17_release - userbind18_description - userbind18_press - userbind18_release - userbind19_description - userbind19_press - userbind19_release - userbind1_description - userbind1_press - userbind1_release - userbind20_description - userbind20_press - userbind20_release - userbind21_description - userbind21_press - userbind21_release - userbind22_description - userbind22_press - userbind22_release - userbind23_description - userbind23_press - userbind23_release - userbind24_description - userbind24_press - userbind24_release - userbind25_description - userbind25_press - userbind25_release - userbind26_description - userbind26_press - userbind26_release - userbind27_description - userbind27_press - userbind27_release - userbind28_description - userbind28_press - userbind28_release - userbind29_description - userbind29_press - userbind29_release - userbind2_description - userbind2_press - userbind2_release - userbind30_description - userbind30_press - userbind30_release - userbind31_description - userbind31_press - userbind31_release - userbind32_description - userbind32_press - userbind32_release - userbind3_description - userbind3_press - userbind3_release - userbind4_description - userbind4_press - userbind4_release - userbind5_description - userbind5_press - userbind5_release - userbind6_description - userbind6_press - userbind6_release - userbind7_description - userbind7_press - userbind7_release - userbind8_description - userbind8_press - userbind8_release - userbind9_description - userbind9_press - userbind9_release - utf8_enable - v_brightness - v_centermove - v_centerspeed - v_color_black_b - v_color_black_g - v_color_black_r - v_color_enable - v_color_grey_b - v_color_grey_g - v_color_grey_r - v_color_white_b - v_color_white_g - v_color_white_r - v_contrast - v_contrastboost - v_deathtilt - v_deathtiltangle - v_flipped - v_gamma - v_glslgamma - v_glslgamma_2d - v_glslgamma_video - v_hwgamma - v_idlescale - v_ipitch_cycle - v_ipitch_level - v_iroll_cycle - v_iroll_level - v_iyaw_cycle - v_iyaw_level - v_kickpitch - v_kickroll - v_kicktime - v_psycho - vid_bitsperpixel - vid_conheight - vid_conwidth - vid_fullscreen - vid_gl13 - vid_gl20 - vid_grabkeyboard - vid_hardwaregammasupported - vid_height - vid_minheight - vid_minwidth - vid_mouse - vid_netwmfullscreen - vid_pixelheight - vid_refreshrate - vid_resizable - vid_sRGB - vid_sRGB_fallback - vid_samples - vid_soft - vid_soft_interlace - vid_soft_threads - vid_stereobuffer - vid_stick_mouse - vid_touchscreen - vid_touchscreen_outlinealpha - vid_touchscreen_overlayalpha - vid_userefreshrate - vid_vsync - vid_width - vid_x11_display - viewsize - volume - waypoint_benchmark - welcome_message_time - _allow_unacceptable_compiler_bugs - _angles - _backup_con_chatvars_set - _campaign_index - _campaign_name - _campaign_testrun - _cl_color - _cl_name - _cl_playermodel - _cl_playerskin - _cl_pmodel - _cl_rate - _con_chat_maximized - _hud_configure - _hud_panelorder - _hud_showbinds_reload - _independent_players - _isalnum - _isalpha - _isascii - _isblank - _iscntrl - _isdigit - _isgraph - _islower - _isprint - _ispunct - _isspace - _isupper - _isxdigit - _menu_alpha - _menu_initialized - _menu_prvm_language - _menu_vid_height - _menu_vid_pixelheight - _menu_vid_width - _notarget - _origin - _snd_mixahead - _sv_init - _togglezoom - _urllib_nextslot - - - - +attack2 - +con_chat_maximize - +crouch - +fire - +fire2 - +hook - +hud_panel_radar_maximized - +show_info - +userbind - +zoom - -attack2 - -con_chat_maximize - -crouch - -fire - -fire2 - -hook - -hud_panel_radar_maximized - -show_info - -userbind - -zoom - addfav - addtolist - addvote - adminmsg - allready - allspec - anticheat - asay_ctf_flagcarrier - asay_ctf_haveflag - asay_drop - asay_killed - asay_noammo - asay_support - asay_willgo - autoswitch - ban - banlist - bans - bbox - blurtest - bot_cmd - bsp - checkfail - chmap - cl_hook_activeweapon - cl_hook_gameend - cl_hook_gamestart_all - cl_hook_gamestart_arena - cl_hook_gamestart_as - cl_hook_gamestart_ca - cl_hook_gamestart_ctf - cl_hook_gamestart_cts - cl_hook_gamestart_dm - cl_hook_gamestart_dom - cl_hook_gamestart_ft - cl_hook_gamestart_ka - cl_hook_gamestart_kh - cl_hook_gamestart_lms - cl_hook_gamestart_nb - cl_hook_gamestart_nop - cl_hook_gamestart_ons - cl_hook_gamestart_rc - cl_hook_gamestart_tdm - clearmap - clientversion - cointoss - create_scrshot_ent - cvar_changes - cvar_purechanges - database - debugmodel - defer_clear - defer_clear_all - delrec - devmap - dropweapon - dumpcommands - dumpdb - dumpnotifs - effectindexdump - endmatch - extendmatchtime - g_forced_team_matchsetup - g_hitplots_add - g_hitplots_remove - g_maplist_add - g_maplist_cleanup - g_maplist_putfirst - g_maplist_remove - g_maplist_shufflenow - g_tourney - g_tourney_0 - g_tourney_1 - g_turrets_reload - g_waypointeditor_relinkall - g_waypointeditor_remove - g_waypointeditor_saveall - g_waypointeditor_spawn - g_waypointeditor_unreachable - g_waypointsprite_clear - g_waypointsprite_clear_personal - g_waypointsprite_personal - g_waypointsprite_personal_d - g_waypointsprite_personal_p - g_waypointsprite_team_danger - g_waypointsprite_team_danger_d - g_waypointsprite_team_danger_p - g_waypointsprite_team_helpme - g_waypointsprite_team_here - g_waypointsprite_team_here_d - g_waypointsprite_team_here_p - g_waypointsprite_toggle - gametype - gettaginfo - gl_flashblend_update - gotomap - help - hud - hud_configure - hud_panel_radar_maximized - hud_panel_radar_rotate - hud_save - if_client - if_dedicated - info - ladder - loadconfig - loaddb - localprint - lockteams - lsmaps - lsnewmaps - make_mapinfo - maplist - menu_loadmap_prepare - menu_showhudexit - menu_showhudoptions - menu_showquitdialog - menu_showsandboxtools - menu_showteamselect - menu_sync - moveplayer - movetoauto - movetoblue - movetopink - movetored - movetoyellow - mute - nextframe - nospectators - playerdemo - ply - printmaplist - printstats - qc_cmd_cl - qc_cmd_cmd - qc_cmd_sv - qc_cmd_svcl - qc_cmd_svcmd - qc_cmd_svmenu - qc_curl - radar - radarmap - rankings - ready - rec - records - reducematchtime - reload - removefromlist - reportcvar - restartnotifs - rpn - sandbox - savedb - scoreboard_columns_help - scoreboard_columns_set - search - selectteam - selfstuff - sendcvar - sentcvar - setbots - sethostname - setreport - settemp - settemp_restore - shuffleteams - singleplayer_continue - singleplayer_levellist - singleplayer_start - snd_attenuation_method_0 - snd_attenuation_method_1 - snd_attenuation_method_2 - spec - spectate - startmap_dm - startmap_sp - stuffto - suggestmap - sv_fbskin_green - sv_fbskin_off - sv_fbskin_orange - sv_fbskin_rainbow - sv_fbskin_red - sv_fbskin_unique - sv_hook_gameend - sv_hook_gamerestart - sv_hook_gamestart_all - sv_hook_gamestart_arena - sv_hook_gamestart_as - sv_hook_gamestart_ca - sv_hook_gamestart_ctf - sv_hook_gamestart_cts - sv_hook_gamestart_dm - sv_hook_gamestart_dom - sv_hook_gamestart_ft - sv_hook_gamestart_ka - sv_hook_gamestart_kh - sv_hook_gamestart_lms - sv_hook_gamestart_nb - sv_hook_gamestart_ons - sv_hook_gamestart_rc - sv_hook_gamestart_tdm - sv_loadconfig - sv_restart - tdem - team_auto - team_blue - team_pink - team_red - team_yellow - teamstatus - time - timein - timeout - togglezoom - trace - unban - unlockteams - unmute - use - vabstain - vcall - vdo - vdoend - vdokick - vdokickban - vdomap - vdontcare - vend - vhelp - vkick - vkickban - vlogin - vmap - vmaster - vnextmap - vno - voice - vote - vstatus - vstop - vyes - warp - weapbest - weaplast - weapnext - weapon_crylink - weapon_electro - weapon_fireball - weapon_grenadelauncher - weapon_group_0 - weapon_group_1 - weapon_group_2 - weapon_group_3 - weapon_group_4 - weapon_group_5 - weapon_group_6 - weapon_group_7 - weapon_group_8 - weapon_group_9 - weapon_hagar - weapon_hlac - weapon_hook - weapon_laser - weapon_minelayer - weapon_minstanex - weapon_nex - weapon_porto - weapon_rifle - weapon_rocketlauncher - weapon_seeker - weapon_shotgun - weapon_tuba - weapon_uzi - weapprev - who - _backup_con_chatvars - _backup_con_chatvars_0 - _backup_con_chatvars_1 - _cl_hook_gamestart - _cl_hook_gamestart_stage2 - _detect_dedicated_$qport - _detect_dedicated_0 - _gl_flashblend_update_00 - _gl_flashblend_update_01 - _gl_flashblend_update_10 - _gl_flashblend_update_11 - _gunalign_01 - _gunalign_02 - _gunalign_03 - _gunalign_04 - _gunalign_11 - _gunalign_12 - _gunalign_13 - _gunalign_14 - _gunalign_update - _if_dedicated - _menu_loadmap_prepare_maxpl - _restore_con_chatvars - _restore_con_chatvars_0 - _restore_con_chatvars_1 - _sv_hook_gamestart - _sv_hook_gamestart_stage2 - _update_configversion_0 - _update_configversion_1 - _update_configversion_2 - _update_configversion_3 - _update_configversion_4 - _update_configversion_5 - _update_configversion_6 - _update_configversion_7 - _userbind_call - _weapnext_0 - _weapnext_1 - _weapnext_2 - _weapprev_0 - _weapprev_1 - _weapprev_2 - - - - +attack - +back - +button10 - +button11 - +button12 - +button13 - +button14 - +button15 - +button16 - +button3 - +button4 - +button5 - +button6 - +button7 - +button8 - +button9 - +forward - +jump - +klook - +left - +lookdown - +lookup - +mlook - +movedown - +moveleft - +moveright - +moveup - +right - +showscores - +speed - +strafe - +use - -attack - -back - -button10 - -button11 - -button12 - -button13 - -button14 - -button15 - -button16 - -button3 - -button4 - -button5 - -button6 - -button7 - -button8 - -button9 - -forward - -jump - -klook - -left - -lookdown - -lookup - -mlook - -movedown - -moveleft - -moveright - -moveup - -right - -showscores - -speed - -strafe - -use - - - - * - [ - ] - \ - / - ' - = - - - + - , - . - ` - ~ - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 0 - a - b - c - d - e - f - g - h - i - j - k - l - m - n - o - p - q - r - s - t - u - v - x - w - y - z - ALT - AUX1 - AUX10 - AUX11 - AUX12 - AUX13 - AUX14 - AUX15 - AUX16 - AUX17 - AUX18 - AUX2 - AUX20 - AUX21 - AUX22 - AUX23 - AUX24 - AUX25 - AUX26 - AUX27 - AUX28 - AUX29 - AUX3 - AUX30 - AUX31 - AUX32 - AUX4 - AUX5 - AUX6 - AUX7 - AUX8 - AUX9 - BACKSPACE - CTRL - DEL - DOWNARROW - END - ENTER - ESCAPE - F1 - F10 - F11 - F12 - F2 - F3 - F4 - F5 - F6 - F7 - F8 - F9 - HOME - INS - JOY1 - JOY2 - JOY3 - JOY4 - KP_SLASH - KP_5 - KP_UPARROW - KP_LEFTARROW - KP_RIGHTARROW - KP_DOWNARROW - KP_HOME - KP_END - KP_PGUP - KP_PGDN - KP_INS - KP_DEL - LEFTARROW - MOUSE1 - MOUSE2 - MOUSE3 - MWHEELDOWN - MWHEELUP - PAUSE - PGDN - PGUP - RIGHTARROW - SEMICOLON - CAPSLOCK - SHIFT - SPACE - TAB - UPARROW - - - - ; - $ - - - - bind - unbind - - - - set - seta - setu - sets - - - - echo - say_team - say - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/xorg.xml ktexteditor-5.31.0/src/syntax/data/xorg.xml --- ktexteditor-5.28.0/src/syntax/data/xorg.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/xorg.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/xslt.xml ktexteditor-5.31.0/src/syntax/data/xslt.xml --- ktexteditor-5.28.0/src/syntax/data/xslt.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/xslt.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,439 +0,0 @@ - - - - -]> - - - - - - - xsl:value-of - xsl:output - xsl:decimal-format - xsl:apply-templates - xsl:param - xsl:transform - xsl:namespace-alias - xsl:comment - xsl:element - xsl:attribute - xsl:apply-imports - xsl:text - xsl:when - xsl:template - xsl:processing-instruction - xsl:include - xsl:copy-of - xsl:copy - xsl:with-param - xsl:stylesheet - xsl:for-each - xsl:choose - xsl:sort - xsl:otherwise - xsl:key - xsl:variable - xsl:number - xsl:message - xsl:fallback - xsl:strip-space - xsl:import - xsl:preserve-space - xsl:if - xsl:call-template - xsl:attribute-set - - - - xsl:perform-sort - xsl:import-schema - xsl:for-each-group - xsl:sequence - xsl:non-matching-substring - xsl:namespace - xsl:next-match - xsl:function - xsl:analyze-string - xsl:output-character - xsl:matching-substring - xsl:result-document - xsl:character-map - xsl:document - - - - format-number - position - lang - substring-before - substring - normalize-space - round - translate - starts-with - concat - local-name - key - count - document - system-property - current - boolean - number - contains - name - last - unparsed-entity-uri - sum - generate-id - function-available - element-available - false - substring-after - not - string-length - id - floor - ceiling - namespace-uri - true - string - text - - - - zero-or-one - replace - namespace-uri-for-prefix - current-grouping-key - seconds-from-duration - resolve-uri - node-kind - minutes-from-dateTime - implicit-timezone - exactly-one - current-time - current-dateTime - unordered - subtract-dates-yielding-dayTimeDuration - string-join - static-base-uri - months-from-duration - input - exists - default-collation - dateTime - current-group - current-date - collection - timezone-from-time - matches - local-name-from-QName - day-from-date - timezone-from-date - round-half-to-even - month-from-dateTime - month-from-date - hours-from-duration - escape-uri - distinct-values - avg - years-from-duration - unparsed-text - unparsed-entity-public-id - subtract-dateTimes-yielding-dayTimeDuration - subtract-dates-yielding-yearMonthDuration - string-to-codepoints - sequence-node-identical - hours-from-time - hours-from-dateTime - format-time - codepoints-to-string - trace - tokenize - subtract-dateTimes-yielding-yearMonthDuration - subsequence - seconds-from-dateTime - regex-group - one-or-more - node-name - namespace-uri-from-QName - min - idref - format-dateTime - format-date - days-from-duration - compare - base-uri - seconds-from-time - in-scope-prefixes - expanded-QName - adjust-date-to-timezone - year-from-date - resolve-QName - remove - QName - minutes-from-time - max - lower-case - index-of - doc - deep-equal - data - minutes-from-duration - adjust-dateTime-to-timezone - abs - timezone-from-dateTime - reverse - error - ends-with - day-from-dateTime - year-from-dateTime - upper-case - root - normalize-unicode - empty - insert-before - document-uri - adjust-time-to-timezone - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/xul.xml ktexteditor-5.31.0/src/syntax/data/xul.xml --- ktexteditor-5.28.0/src/syntax/data/xul.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/xul.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,627 +0,0 @@ - - - -]> - - - - - if - else - for - in - while - do - continue - break - with - try - catch - finally - switch - case - new - var - function - return - delete - true - false - void - throw - typeof - const - default - - - escape - isFinite - isNaN - Number - parseFloat - parseInt - reload - taint - unescape - untaint - write - - - Anchor - Applet - Area - Array - Boolean - Button - Checkbox - Date - document - window - Image - FileUpload - Form - Frame - Function - Hidden - Link - MimeType - Math - Max - Min - Layer - navigator - Object - Password - Plugin - Radio - RegExp - Reset - Screen - Select - String - Text - Textarea - this - Window - - - abs - acos - asin - atan - atan2 - ceil - cos - ctg - E - exp - floor - LN2 - LN10 - log - LOG2E - LOG10E - PI - pow - round - sin - sqrt - SQRT1_2 - SQRT2 - tan - - - onAbort - onBlur - onChange - onClick - onError - onFocus - onLoad - onMouseOut - onMouseOver - onReset - onSelect - onSubmit - onUnload - - - above - action - alinkColor - alert - anchor - anchors - appCodeName - applets - apply - appName - appVersion - argument - arguments - arity - availHeight - availWidth - back - background - below - bgColor - border - big - blink - blur - bold - border - call - caller - charAt - charCodeAt - checked - clearInterval - clearTimeout - click - clip - close - closed - colorDepth - complete - compile - constructor - confirm - cookie - current - cursor - data - defaultChecked - defaultSelected - defaultStatus - defaultValue - description - disableExternalCapture - domain - elements - embeds - enabledPlugin - enableExternalCapture - encoding - eval - exec - fgColor - filename - find - fixed - focus - fontcolor - fontsize - form - forms - formName - forward - frames - fromCharCode - getDate - getDay - getHours - getMiliseconds - getMinutes - getMonth - getSeconds - getSelection - getTime - getTimezoneOffset - getUTCDate - getUTCDay - getUTCFullYear - getUTCHours - getUTCMilliseconds - getUTCMinutes - getUTCMonth - getUTCSeconds - getYear - global - go - hash - height - history - home - host - hostname - href - hspace - ignoreCase - images - index - indexOf - innerHeight - innerWidth - input - italics - javaEnabled - join - language - lastIndex - lastIndexOf - lastModified - lastParen - layers - layerX - layerY - left - leftContext - length - link - linkColor - links - location - locationbar - load - lowsrc - match - MAX_VALUE - menubar - method - mimeTypes - MIN_VALUE - modifiers - moveAbove - moveBelow - moveBy - moveTo - moveToAbsolute - multiline - name - NaN - NEGATIVE_INFINITY - negative_infinity - next - open - opener - options - outerHeight - outerWidth - pageX - pageY - pageXoffset - pageYoffset - parent - parse - pathname - personalbar - pixelDepth - platform - plugins - pop - port - POSITIVE_INFINITY - positive_infinity - preference - previous - print - prompt - protocol - prototype - push - referrer - refresh - releaseEvents - reload - replace - reset - resizeBy - resizeTo - reverse - rightContext - screenX - screenY - scroll - scrollbar - scrollBy - scrollTo - search - select - selected - selectedIndex - self - setDate - setHours - setMinutes - setMonth - setSeconds - setTime - setTimeout - setUTCDate - setUTCDay - setUTCFullYear - setUTCHours - setUTCMilliseconds - setUTCMinutes - setUTCMonth - setUTCSeconds - setYear - shift - siblingAbove - siblingBelow - small - sort - source - splice - split - src - status - statusbar - strike - sub - submit - substr - substring - suffixes - sup - taintEnabled - target - test - text - title - toGMTString - toLocaleString - toLowerCase - toolbar - toSource - toString - top - toUpperCase - toUTCString - type - URL - unshift - unwatch - userAgent - UTC - value - valueOf - visibility - vlinkColor - vspace - width - watch - which - width - write - writeln - x - y - zIndex - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/yacas.xml ktexteditor-5.31.0/src/syntax/data/yacas.xml --- ktexteditor-5.28.0/src/syntax/data/yacas.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/yacas.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,237 +0,0 @@ - - - - - - And - ApplyPure - ArrayCreate - ArrayGet - ArraySet - ArraySize - Atom - Berlekamp - BitAnd - BitOr - BitXor - Bodied - CTokenizer - Check - Clear - CommonLispTokenizer - Concat - ConcatStrings - CurrentFile - CurrentLine - CustomEval - CustomEval'Expression - CustomEval'Locals - CustomEval'Result - CustomEval'Stop - DefLoad - DefLoadFunction - DefMacroRuleBase - DefMacroRuleBaseListed - DefaultDirectory - DefaultTokenizer - Delete - DestructiveDelete - DestructiveInsert - DestructiveReplace - DestructiveReverse - DllEnumerate - DllLoad - DllUnload - Equals - Eval - FastArcCos - FastArcSin - FastArcTan - FastAssoc - FastCos - FastExp - FastIsPrime - FastLog - FastPower - FastSin - FastTan - FindFile - FindFunction - FlatCopy - FromBase - FromFile - FromString - FullForm - GarbageCollect - GenericTypeName - GetExtraInfo - GetPrecision - GreaterThan - Head - Hold - HoldArg - If - Infix - Insert - IsAtom - IsBodied - IsBound - IsFunction - IsGeneric - IsInfix - IsInteger - IsList - IsNumber - IsPostfix - IsPrefix - IsString - LazyGlobal - LeftPrecedence - Length - LessThan - LispRead - LispReadListed - List - Listify - Load - Local - LocalSymbols - MacroClear - MacroLocal - MacroRule - MacroRuleBase - MacroRuleBaseListed - MacroRulePattern - MacroSet - MathAbs - MathAdd - MathAnd - MathArcCos - MathArcSin - MathArcTan - MathCeil - MathCos - MathDiv - MathDivide - MathExp - MathFac - MathFloor - MathGcd - MathGetExactBits - MathLibrary - MathLog - MathMod - MathMultiply - MathNot - MathNth - MathOr - MathPi - MathPower - MathSetExactBits - MathSin - MathSqrt - MathSubtract - MathTan - MaxEvalDepth - Not - OpLeftPrecedence - OpPrecedence - OpRightPrecedence - Or - PatchLoad - PatchString - PatternCreate - PatternMatches - Postfix - Precision - Prefix - PrettyPrinter - Prog - Read - ReadToken - Replace - Retract - RightAssociative - RightPrecedence - Rule - RuleBase - RuleBaseArgList - RuleBaseDefined - RuleBaseListed - RulePattern - Secure - Set - SetExtraInfo - SetStringMid - ShiftLeft - ShiftRight - String - StringMid - Subst - SystemCall - Tail - ToBase - ToFile - ToString - TraceRule - TraceStack - Type - UnFence - UnList - Use - Version - While - Write - WriteString - XmlExplodeTag - XmlTokenizer - ` - = - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/yacc.xml ktexteditor-5.31.0/src/syntax/data/yacc.xml --- ktexteditor-5.28.0/src/syntax/data/yacc.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/yacc.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/yaml.xml ktexteditor-5.31.0/src/syntax/data/yaml.xml --- ktexteditor-5.28.0/src/syntax/data/yaml.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/yaml.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,199 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/zonnon.xml ktexteditor-5.31.0/src/syntax/data/zonnon.xml --- ktexteditor-5.28.0/src/syntax/data/zonnon.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/zonnon.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,144 +0,0 @@ - - - - - - accept - activity - array - as - await - begin - by - case - const - definition - div - do - else - elsif - end - exception - exit - for - if - implementation - implements - import - in - is - loop - mod - module - new - nil - object - of - on - operator - or - procedure - protocol - record - refines - repeat - return - self - termination - then - to - type - until - var - while - - - barrier - immutable - locked - private - protected - public - ref - sealed - shared - value - - - abs - assert - cap - copy - copyvalue - dec - excl - false - halt - inc - len - low - max - min - odd - pred - read - readln - reason - size - succ - true - write - writeln - - - boolean - cardinal - char - fixed - integer - real - set - string - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/data/zsh.xml ktexteditor-5.31.0/src/syntax/data/zsh.xml --- ktexteditor-5.28.0/src/syntax/data/zsh.xml 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/data/zsh.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1,959 +0,0 @@ - - - - - - - -]> - - - - - - - - else - for - function - in - select - until - while - elif - then - set - - - - - - . - : - alias - autoload - bg - bindkey - break - builtin - bye - cap - cd - chdir - clone - command - comparguments - compcall - compctl - compdescribe - compfiles - compgroups - compquote - comptags - comptry - compvalues - continue - dirs - disable - disown - echo - echotc - echoti - emulate - enable - eval - exec - exit - false - fc - fg - functions - getcap - getopts - hash - history - jobs - kill - let - limit - log - logout - noglob - popd - print - printf - pushd - pushln - pwd - r - rehash - return - sched - set - setcap - setopt - shift - source - stat - suspend - test - times - trap - true - ttyctl - type - ulimit - umask - unalias - unfunction - unhash - unlimit - unset - unsetopt - vared - wait - whence - where - which - zcompile - zformat - zftp - zle - zmodload - zparseopts - zprof - zpty - zregexparse - zsocket - zstyle - ztcp - - - - declare - export - float - getln - integer - unset - declare - typeset - local - read - readonly - - - - - arch - awk - bash - bunzip2 - bzcat - bzcmp - bzdiff - bzegrep - bzfgrep - bzgrep - bzip2 - bzip2recover - bzless - bzmore - cat - chattr - chgrp - chmod - chown - chvt - cp - date - dd - deallocvt - df - dir - dircolors - dmesg - dnsdomainname - domainname - du - dumpkeys - echo - ed - egrep - false - fgconsole - fgrep - fuser - gawk - getkeycodes - gocr - grep - groff - groups - gunzip - gzexe - gzip - hostname - igawk - install - kbd_mode - kbdrate - killall - last - lastb - link - ln - loadkeys - loadunimap - login - ls - lsattr - lsmod - lsmod.old - lzcat - lzcmp - lzdiff - lzegrep - lzfgrep - lzgrep - lzless - lzcat - lzma - lzmainfo - lzmore - mapscrn - mesg - mkdir - mkfifo - mknod - mktemp - more - mount - mv - nano - netstat - nisdomainname - nroff - openvt - pgawk - pidof - ping - ps - pstree - pwd - rbash - readlink - red - resizecons - rm - rmdir - run-parts - sash - sed - setfont - setkeycodes - setleds - setmetamode - setserial - sh - showkey - shred - sleep - ssed - stat - stty - su - sync - tar - tempfile - touch - troff - true - umount - uname - unicode_start - unicode_stop - unlink - unlzma - unxz - utmpdump - uuidgen - vdir - wall - wc - xz - xzcat - ypdomainname - zcat - zcmp - zdiff - zegrep - zfgrep - zforce - zgrep - zless - zmore - znew - zsh - - - aclocal - aconnect - aplay - apm - apmsleep - apropos - ar - arecord - as - as86 - autoconf - autoheader - automake - awk - basename - bc - bison - c++ - cal - cat - cc - cdda2wav - cdparanoia - cdrdao - cd-read - cdrecord - chfn - chgrp - chmod - chown - chroot - chsh - clear - cmp - co - col - comm - cp - cpio - cpp - cut - dc - dd - df - diff - diff3 - dir - dircolors - directomatic - dirname - du - env - expr - fbset - file - find - flex - flex++ - fmt - free - ftp - funzip - fuser - g++ - gawk - gc - gcc - gdb - getent - getopt - gettext - gettextize - gimp - gimp-remote - gimptool - gmake - gs - head - hexdump - id - install - join - kill - killall - ld - ld86 - ldd - less - lex - ln - locate - lockfile - logname - lp - lpr - ls - lynx - m4 - make - man - mkdir - mknod - msgfmt - mv - namei - nasm - nawk - nice - nl - nm - nm86 - nmap - nohup - nop - od - passwd - patch - pcregrep - pcretest - perl - perror - pidof - pr - printf - procmail - prune - ps2ascii - ps2epsi - ps2frag - ps2pdf - ps2ps - psbook - psmerge - psnup - psresize - psselect - pstops - rcs - rev - rm - scp - sed - seq - setterm - shred - size - size86 - skill - slogin - snice - sort - sox - split - ssh - ssh-add - ssh-agent - ssh-keygen - ssh-keyscan - stat - strings - strip - sudo - suidperl - sum - tac - tail - tee - test - tr - uniq - unlink - unzip - updatedb - updmap - uptime - users - vmstat - w - wc - wget - whatis - whereis - which - who - whoami - write - xargs - yacc - yes - zip - zsoelim - - - dcop - kdialog - kfile - xhost - xmodmap - xset - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -Nru ktexteditor-5.28.0/src/syntax/katehighlight.cpp ktexteditor-5.31.0/src/syntax/katehighlight.cpp --- ktexteditor-5.28.0/src/syntax/katehighlight.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katehighlight.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -65,7 +65,7 @@ //END //BEGIN KateHighlighting -KateHighlighting::KateHighlighting(const KateSyntaxModeListItem *def) +KateHighlighting::KateHighlighting(const KSyntaxHighlighting::Definition &def) : refCount(0) , startctx(0) , base_startctx(0) @@ -76,21 +76,21 @@ m_foldingIndentationSensitive = false; folding = false; - if (def == 0) { + if (!def.isValid()) { noHl = true; iName = QStringLiteral("None"); // not translated internal name (for config and more) iNameTranslated = i18nc("Syntax highlighting", "None"); // user visible name iSection = QString(); } else { - iName = def->name; - iNameTranslated = def->nameTranslated; - iSection = def->section; - iHidden = def->hidden; - identifier = def->identifier; - iVersion = def->version; - iStyle = def->style; - iAuthor = def->author; - iLicense = def->license; + iName = def.name(); + iNameTranslated = def.translatedName(); + iSection = def.translatedSection(); + iHidden = def.isHidden(); + identifier = def.filePath(); + iVersion = QString::number(def.version()); + iStyle = def.style(); + iAuthor = def.author(); + iLicense = def.license(); } deliminator = stdDeliminator(); @@ -261,7 +261,7 @@ return; } - const bool firstLine = (_prevLine == 0); + const bool firstLine = (_prevLine == nullptr); const Kate::TextLine dummy = Kate::TextLine(new Kate::TextLineData()); const Kate::TextLineData *prevLine = firstLine ? dummy.data() : _prevLine; @@ -310,7 +310,7 @@ const int startNonSpace = (firstChar == -1) ? len : firstChar; // last found item - KateHlItem *item = 0; + KateHlItem *item = nullptr; // loop over the line, offset gives current offset int offset = 0; @@ -332,7 +332,7 @@ * check if the folding begin/ends are balanced! * constructed on demand! */ - QHash *foldingStartToCount = 0; + QHash *foldingStartToCount = nullptr; /** * loop over line content! @@ -509,7 +509,7 @@ continue; } - item = 0; + item = nullptr; // nothing found: set attribute of one char // anders: unless this context does not want that! @@ -553,7 +553,7 @@ * kill hash */ delete foldingStartToCount; - foldingStartToCount = 0; + foldingStartToCount = nullptr; } } @@ -646,11 +646,11 @@ QRgb col; tmp = s[1]; if (!tmp.isEmpty()) { - col = tmp.toUInt(0, 16); p->setForeground(QColor(col)); + col = tmp.toUInt(nullptr, 16); p->setForeground(QColor(col)); } tmp = s[2]; if (!tmp.isEmpty()) { - col = tmp.toUInt(0, 16); p->setSelectedForeground(QColor(col)); + col = tmp.toUInt(nullptr, 16); p->setSelectedForeground(QColor(col)); } tmp = s[3]; if (!tmp.isEmpty()) { @@ -670,11 +670,11 @@ } tmp = s[7]; if (!tmp.isEmpty()) { - col = tmp.toUInt(0, 16); p->setBackground(QColor(col)); + col = tmp.toUInt(nullptr, 16); p->setBackground(QColor(col)); } tmp = s[8]; if (!tmp.isEmpty()) { - col = tmp.toUInt(0, 16); p->setSelectedBackground(QColor(col)); + col = tmp.toUInt(nullptr, 16); p->setSelectedBackground(QColor(col)); } tmp = s[9]; if (!tmp.isEmpty() && tmp != QLatin1String("---")) { @@ -956,7 +956,7 @@ { // No highlighting -> exit if (noHl) { - return 0; + return nullptr; } // get the (tagname) itemd type @@ -1105,7 +1105,7 @@ tmpItem = (new KateHlDetectIdentifier(attr, context, regionId, regionId2)); } else { // oops, unknown type. Perhaps a spelling error in the xml file - return 0; + return nullptr; } // set lookAhead & dynamic properties @@ -1367,8 +1367,6 @@ * standard denominators. In case a keyword tag is defined, but no * wordWrapDeliminator attribute is specified, the deliminator list as computed * in readGlobalKeywordConfig is used. - * - * @return the computed delimiter string. */ void KateHighlighting::readWordWrapConfig() { @@ -2230,7 +2228,7 @@ } Q_ASSERT(false); - return 0; + return nullptr; } QStringList KateHighlighting::getEmbeddedHighlightingModes() const diff -Nru ktexteditor-5.28.0/src/syntax/katehighlight.h ktexteditor-5.31.0/src/syntax/katehighlight.h --- ktexteditor-5.28.0/src/syntax/katehighlight.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katehighlight.h 2017-02-05 11:12:49.000000000 +0000 @@ -134,7 +134,7 @@ class KateHighlighting { public: - KateHighlighting(const KateSyntaxModeListItem *def); + KateHighlighting(const KSyntaxHighlighting::Definition &def); ~KateHighlighting(); private: @@ -166,7 +166,7 @@ const Kate::TextLineData *nextLine, bool &ctxChanged, int tabWidth = 0, - QVector* contextChanges = 0); + QVector* contextChanges = nullptr); /** * Saves the attribute definitions to the config file. * @@ -174,7 +174,7 @@ * @param list QList containing the data to be used */ void setKateExtendedAttributeList(const QString &schema, QList &list, - KConfig *cfg = 0 /*if 0 standard kate config*/, bool writeDefaultsToo = false); + KConfig *cfg = nullptr /*if 0 standard kate config*/, bool writeDefaultsToo = false); const QString &name() const { @@ -311,8 +311,8 @@ return m_indentation; } - void getKateExtendedAttributeList(const QString &schema, QList &, KConfig *cfg = 0); - void getKateExtendedAttributeListCopy(const QString &schema, QList &, KConfig *cfg = 0); + void getKateExtendedAttributeList(const QString &schema, QList &, KConfig *cfg = nullptr); + void getKateExtendedAttributeListCopy(const QString &schema, QList &, KConfig *cfg = nullptr); const QHash &getCharacterEncodings(int attrib) const; const KatePrefixStore &getCharacterEncodingsPrefixStore(int attrib) const; diff -Nru ktexteditor-5.28.0/src/syntax/katehighlighthelpers.cpp ktexteditor-5.31.0/src/syntax/katehighlighthelpers.cpp --- ktexteditor-5.28.0/src/syntax/katehighlighthelpers.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katehighlighthelpers.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -318,7 +318,7 @@ dict.resize(len + 1); for (int m = oldSize; m < dict.size(); ++m) { - dict[m] = 0; + dict[m] = nullptr; } } diff -Nru ktexteditor-5.28.0/src/syntax/katehighlightingcmds.cpp ktexteditor-5.31.0/src/syntax/katehighlightingcmds.cpp --- ktexteditor-5.28.0/src/syntax/katehighlightingcmds.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katehighlightingcmds.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -28,7 +28,7 @@ #include -KateCommands::Highlighting *KateCommands::Highlighting::m_instance = 0; +KateCommands::Highlighting *KateCommands::Highlighting::m_instance = nullptr; bool KateCommands::Highlighting::exec(KTextEditor::View *view, const QString &cmd, QString &, const KTextEditor::Range &) { diff -Nru ktexteditor-5.28.0/src/syntax/katehighlightingcmds.h ktexteditor-5.31.0/src/syntax/katehighlightingcmds.h --- ktexteditor-5.28.0/src/syntax/katehighlightingcmds.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katehighlightingcmds.h 2017-02-05 11:12:49.000000000 +0000 @@ -38,12 +38,12 @@ public: ~Highlighting() { - m_instance = 0; + m_instance = nullptr; } static Highlighting *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new Highlighting(); } return m_instance; diff -Nru ktexteditor-5.28.0/src/syntax/katehighlightmenu.cpp ktexteditor-5.31.0/src/syntax/katehighlightmenu.cpp --- ktexteditor-5.28.0/src/syntax/katehighlightmenu.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katehighlightmenu.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -36,7 +36,7 @@ void KateHighlightingMenu::init() { - m_doc = 0; + m_doc = nullptr; connect(menu(), SIGNAL(aboutToShow()), this, SLOT(slotAboutToShow())); m_actionGroup = new QActionGroup(menu()); diff -Nru ktexteditor-5.28.0/src/syntax/katesyntaxdocument.cpp ktexteditor-5.31.0/src/syntax/katesyntaxdocument.cpp --- ktexteditor-5.28.0/src/syntax/katesyntaxdocument.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katesyntaxdocument.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -195,7 +195,7 @@ { KateSyntaxContextData *retval = new KateSyntaxContextData; - if (data != 0) { + if (data != nullptr) { retval->parent = data->currentGroup; retval->currentGroup = data->item; } @@ -257,7 +257,7 @@ data->item = element; return data; } - return 0; + return nullptr; } /** @@ -272,7 +272,7 @@ data->parent = element; return data; } - return 0; + return nullptr; } /** diff -Nru ktexteditor-5.28.0/src/syntax/katesyntaxmanager.cpp ktexteditor-5.31.0/src/syntax/katesyntaxmanager.cpp --- ktexteditor-5.28.0/src/syntax/katesyntaxmanager.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katesyntaxmanager.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -54,15 +54,6 @@ using namespace KTextEditor; -bool compareKateHighlighting(const KateHighlighting *const left, const KateHighlighting *const right) -{ - int comparison = left->section().compare(right->section(), Qt::CaseInsensitive); - if (comparison == 0) { - comparison = left->nameTranslated().compare(right->nameTranslated(), Qt::CaseInsensitive); - } - return comparison < 0; -} - //BEGIN KateHlManager KateHlManager::KateHlManager() : QObject() @@ -81,150 +72,21 @@ KateHlManager::~KateHlManager() { qDeleteAll(hlList); - qDeleteAll(myModeList); } void KateHlManager::setupModeList() { - // only allow each name once! - QHash hlNames; - - /** - * first: use the index file in the resource - */ - QFile indexJson (QStringLiteral(":/ktexteditor/syntax/index.json")); - if (indexJson.open(QFile::ReadOnly)) { - /** - * parse the whole file - */ - const QJsonDocument indexDoc (QJsonDocument::fromBinaryData(indexJson.readAll())); - - /** - * iterate over all hls in the index - */ - const QJsonObject index = indexDoc.object(); - for (auto it = index.begin(); it != index.end(); ++it) { - if (!it.value().isObject()) { - continue; - } - // get map - const QJsonObject map = it.value().toObject(); - - // get name, only allow hls once! - const QString name = map[QStringLiteral("name")].toString(); - - // let's make the mode list item. - KateSyntaxModeListItem *mli = new KateSyntaxModeListItem; - - mli->name = name; - mli->section = map[QStringLiteral("section")].toString(); - mli->mimetype = map[QStringLiteral("mimetype")].toString(); - mli->extension = map[QStringLiteral("extensions")].toString(); - mli->version = map[QStringLiteral("version")].toString(); - mli->priority = map[QStringLiteral("priority")].toString(); - mli->style = map[QStringLiteral("style")].toString(); - mli->author = map[QStringLiteral("author")].toString(); - mli->license = map[QStringLiteral("license")].toString(); - mli->indenter = map[QStringLiteral("indenter")].toString(); - mli->hidden = map[QStringLiteral("hidden")].toBool(); - - mli->identifier = QLatin1String(":/ktexteditor/syntax/") + it.key(); - - // translate section + name - mli->section = i18nc("Language Section", mli->section.toUtf8().data()); - mli->nameTranslated = i18nc("Language", mli->name.toUtf8().data()); - - // check for existance - if (hlNames.contains(name)) { - // replace old with new version - if (hlNames[name]->version.toDouble() < mli->version.toDouble()) { - *hlNames[name] = *mli; - } - delete mli; - continue; - } - - // Append the new item to the list. - myModeList.append(mli); - hlNames[name] = mli; - } - } - - /** - * now: process all xml files on the filesystem! - * e.g. stuff downloaded in the $HOME or additional hl files from 3rdparty apps/plugins - */ - QSet xmlFiles; - const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, QStringLiteral("katepart5/syntax"), QStandardPaths::LocateDirectory); - foreach (const QString &dir, dirs) { - const QStringList fileNames = QDir(dir).entryList(QStringList() << QStringLiteral("*.xml")); - foreach (const QString &file, fileNames) { - xmlFiles.insert(dir + QLatin1Char('/') + file); - } - } - Q_FOREACH (const QString &xmlFile, xmlFiles) { - // We're forced to read the xml files or the mode doesn't exist in the katesyntax...rc - QFile f(xmlFile); - if (!f.open(QIODevice::ReadOnly)) - continue; - - // read file as stream - QXmlStreamReader xml(&f); - if (!xml.readNextStartElement() || (xml.name() != QLatin1String("language"))) - continue; - - // get name, only allow hls once! - const QString name = xml.attributes().value(QStringLiteral("name")).toString(); - - // let's make the mode list item. - KateSyntaxModeListItem *mli = new KateSyntaxModeListItem; - - mli->name = name; - mli->section = xml.attributes().value(QStringLiteral("section")).toString(); - mli->mimetype = xml.attributes().value(QStringLiteral("mimetype")).toString(); - mli->extension = xml.attributes().value(QStringLiteral("extensions")).toString(); - mli->version = xml.attributes().value(QStringLiteral("version")).toString(); - mli->priority = xml.attributes().value(QStringLiteral("priority")).toString(); - mli->style = xml.attributes().value(QStringLiteral("style")).toString(); - mli->author = xml.attributes().value(QStringLiteral("author")).toString(); - mli->license = xml.attributes().value(QStringLiteral("license")).toString(); - mli->indenter = xml.attributes().value(QStringLiteral("indenter")).toString(); - - QString hidden = xml.attributes().value(QStringLiteral("hidden")).toString(); - mli->hidden = (hidden == QLatin1String("true") || hidden == QLatin1String("1")); - - mli->identifier = xmlFile; - - // translate section + name - mli->section = i18nc("Language Section", mli->section.toUtf8().data()); - mli->nameTranslated = i18nc("Language", mli->name.toUtf8().data()); - - // check for existance - if (hlNames.contains(name)) { - // replace old with new version - if (hlNames[name]->version.toDouble() < mli->version.toDouble()) { - *hlNames[name] = *mli; - } - delete mli; - continue; - } - - // Append the new item to the list. - myModeList.append(mli); - hlNames[name] = mli; - } - - hlList.reserve(myModeList.size() + 1); - hlDict.reserve(myModeList.size() + 1); - for (int i = 0; i < myModeList.count(); i++) { - KateHighlighting *hl = new KateHighlighting(myModeList[i]); - - hlList.insert(qLowerBound(hlList.begin(), hlList.end(), hl, compareKateHighlighting), hl); + const auto defs = m_repository.definitions(); + hlList.reserve(defs.size() + 1); + hlDict.reserve(defs.size() + 1); + for (int i = 0; i < defs.count(); i++) { + KateHighlighting *hl = new KateHighlighting(defs.at(i)); + hlList.push_back(hl); hlDict.insert(hl->name(), hl); } // Normal HL - KateHighlighting *hl = new KateHighlighting(0); + KateHighlighting *hl = new KateHighlighting(KSyntaxHighlighting::Definition()); hlList.prepend(hl); hlDict.insert(hl->name(), hl); } @@ -694,11 +556,11 @@ QRgb col; tmp = s[0]; if (!tmp.isEmpty()) { - col = tmp.toUInt(0, 16); i->setForeground(QColor(col)); + col = tmp.toUInt(nullptr, 16); i->setForeground(QColor(col)); } tmp = s[1]; if (!tmp.isEmpty()) { - col = tmp.toUInt(0, 16); i->setSelectedForeground(QColor(col)); + col = tmp.toUInt(nullptr, 16); i->setSelectedForeground(QColor(col)); } tmp = s[2]; if (!tmp.isEmpty()) { @@ -719,7 +581,7 @@ tmp = s[6]; if (!tmp.isEmpty()) { if (tmp != QLatin1String("-")) { - col = tmp.toUInt(0, 16); + col = tmp.toUInt(nullptr, 16); i->setBackground(QColor(col)); } else { i->clearBackground(); @@ -727,7 +589,7 @@ } tmp = s[7]; if (!tmp.isEmpty()) { if (tmp != QLatin1String("-")) { - col = tmp.toUInt(0, 16); + col = tmp.toUInt(nullptr, 16); i->setSelectedBackground(QColor(col)); } else { i->clearProperty(SelectedBackground); diff -Nru ktexteditor-5.28.0/src/syntax/katesyntaxmanager.h ktexteditor-5.31.0/src/syntax/katesyntaxmanager.h --- ktexteditor-5.28.0/src/syntax/katesyntaxmanager.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/syntax/katesyntaxmanager.h 2017-02-05 11:12:49.000000000 +0000 @@ -26,6 +26,8 @@ #include "kateextendedattribute.h" #include "katesyntaxdocument.h" +#include +#include #include #include @@ -42,36 +44,6 @@ class KateHighlighting; -/** - * Information about each syntax hl Mode. This is documented in Kate's - * user guide - * and repeated briefly here. - */ -class KateSyntaxModeListItem -{ -public: - QString name; ///< Name of the mode (eg. Asm6502) - QString nameTranslated; ///< i18n of same, for display purposes - QString section; ///< Submenu section (eg. Assembly) - QString mimetype; ///< Mimetypes this mode applies to - QString extension; ///< Semicolon-separated list of file extensions - QString identifier; - QString version; - QString priority; /**< Priority (mapped to an integer?) for conflict- - resolution when the same file extension has - multiple highlihgting definitions. */ - QString style; ///< Default styles provided by the highlighter - QString author; ///< Author's name - QString license; ///< License; for example: "LGPL" - QString indenter; ///< Indenter to use for this highlighting - bool hidden; ///< Hides the mode from Kate's menus -}; - -/** - * List of the KateSyntaxModeListItems holding all the syntax mode list items - */ -typedef QList KateSyntaxModeList; - class KateHlManager : public QObject { Q_OBJECT @@ -102,8 +74,8 @@ */ QString nameForIdentifier(const QString &); - void getDefaults(const QString &schema, KateAttributeList &, KConfig *cfg = 0); - void setDefaults(const QString &schema, KateAttributeList &, KConfig *cfg = 0); + void getDefaults(const QString &schema, KateAttributeList &, KConfig *cfg = nullptr); + void setDefaults(const QString &schema, KateAttributeList &, KConfig *cfg = nullptr); int highlights(); QString hlName(int n); @@ -158,9 +130,9 @@ * Get the mode list * @return mode list */ - const KateSyntaxModeList &modeList() + QVector modeList() const { - return myModeList; + return m_repository.definitions(); } private: @@ -172,9 +144,9 @@ void setupModeList(); /** - * List of mode items + * Syntax highlighting definitions. */ - KateSyntaxModeList myModeList; + KSyntaxHighlighting::Repository m_repository; // This list owns objects it holds, thus they should be deleted when the object is removed QList hlList; diff -Nru ktexteditor-5.28.0/src/undo/kateundo.cpp ktexteditor-5.31.0/src/undo/kateundo.cpp --- ktexteditor-5.28.0/src/undo/kateundo.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/undo/kateundo.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -110,7 +110,7 @@ bool KateEditInsertTextUndo::mergeWith(const KateUndo *undo) { const KateEditInsertTextUndo *u = dynamic_cast(undo); - if (u != 0 + if (u != nullptr && m_line == u->m_line && (m_col + len()) == u->m_col) { m_text += u->m_text; @@ -124,7 +124,7 @@ { const KateEditRemoveTextUndo *u = dynamic_cast(undo); - if (u != 0 + if (u != nullptr && m_line == u->m_line && m_col == (u->m_col + u->len())) { m_text.prepend(u->m_text); @@ -260,7 +260,7 @@ m_items[i]->undo(); } - if (view != 0) { + if (view != nullptr) { if (m_undoSelection.isValid()) { view->setSelection(m_undoSelection); } else { @@ -287,7 +287,7 @@ m_items[i]->redo(); } - if (view != 0) { + if (view != nullptr) { if (m_redoSelection.isValid()) { view->setSelection(m_redoSelection); } else { @@ -327,10 +327,10 @@ if (newGroup->isOnlyType(singleType()) || complex) { // Take all of its items first -> last - KateUndo *u = newGroup->m_items.isEmpty() ? 0 : newGroup->m_items.takeFirst(); + KateUndo *u = newGroup->m_items.isEmpty() ? nullptr : newGroup->m_items.takeFirst(); while (u) { addItem(u); - u = newGroup->m_items.isEmpty() ? 0 : newGroup->m_items.takeFirst(); + u = newGroup->m_items.isEmpty() ? nullptr : newGroup->m_items.takeFirst(); } if (newGroup->m_safePoint) { diff -Nru ktexteditor-5.28.0/src/undo/kateundomanager.cpp ktexteditor-5.31.0/src/undo/kateundomanager.cpp --- ktexteditor-5.28.0/src/undo/kateundomanager.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/undo/kateundomanager.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -32,9 +32,9 @@ , m_document(doc) , m_undoComplexMerge(false) , m_isActive(true) - , m_editCurrentUndo(0) - , lastUndoGroupWhenSaved(0) - , lastRedoGroupWhenSaved(0) + , m_editCurrentUndo(nullptr) + , lastUndoGroupWhenSaved(nullptr) + , lastRedoGroupWhenSaved(nullptr) , docWasSavedWhenUndoWasEmpty(true) , docWasSavedWhenRedoWasEmpty(true) { @@ -72,7 +72,7 @@ } // editStart() and editEnd() must be called in alternating fashion - Q_ASSERT(m_editCurrentUndo == 0); // make sure to enter a clean state + Q_ASSERT(m_editCurrentUndo == nullptr); // make sure to enter a clean state const KTextEditor::Cursor cursorPosition = activeView() ? activeView()->cursorPosition() : KTextEditor::Cursor::invalid(); const KTextEditor::Range selectionRange = activeView() ? activeView()->selectionRange() : KTextEditor::Range::invalid(); @@ -80,7 +80,7 @@ // new current undo item m_editCurrentUndo = new KateUndoGroup(this, cursorPosition, selectionRange); - Q_ASSERT(m_editCurrentUndo != 0); // a new undo group must be created by this method + Q_ASSERT(m_editCurrentUndo != nullptr); // a new undo group must be created by this method } void KateUndoManager::editEnd() @@ -90,7 +90,7 @@ } // editStart() and editEnd() must be called in alternating fashion - Q_ASSERT(m_editCurrentUndo != 0); // an undo group must have been created by editStart() + Q_ASSERT(m_editCurrentUndo != nullptr); // an undo group must have been created by editStart() const KTextEditor::Cursor cursorPosition = activeView() ? activeView()->cursorPosition() : KTextEditor::Cursor::invalid(); const KTextEditor::Range selectionRange = activeView() ? activeView()->selectionRange() : KTextEditor::Range::invalid(); @@ -109,13 +109,13 @@ changedUndo = true; } - m_editCurrentUndo = 0L; + m_editCurrentUndo = nullptr; if (changedUndo) { emit undoChanged(); } - Q_ASSERT(m_editCurrentUndo == 0); // must be 0 after calling this method + Q_ASSERT(m_editCurrentUndo == nullptr); // must be 0 after calling this method } void KateUndoManager::inputMethodStart() @@ -144,49 +144,49 @@ void KateUndoManager::slotTextInserted(int line, int col, const QString &s) { - if (m_editCurrentUndo != 0) { // do we care about notifications? + if (m_editCurrentUndo != nullptr) { // do we care about notifications? addUndoItem(new KateModifiedInsertText(m_document, line, col, s)); } } void KateUndoManager::slotTextRemoved(int line, int col, const QString &s) { - if (m_editCurrentUndo != 0) { // do we care about notifications? + if (m_editCurrentUndo != nullptr) { // do we care about notifications? addUndoItem(new KateModifiedRemoveText(m_document, line, col, s)); } } void KateUndoManager::slotMarkLineAutoWrapped(int line, bool autowrapped) { - if (m_editCurrentUndo != 0) { // do we care about notifications? + if (m_editCurrentUndo != nullptr) { // do we care about notifications? addUndoItem(new KateEditMarkLineAutoWrappedUndo(m_document, line, autowrapped)); } } void KateUndoManager::slotLineWrapped(int line, int col, int length, bool newLine) { - if (m_editCurrentUndo != 0) { // do we care about notifications? + if (m_editCurrentUndo != nullptr) { // do we care about notifications? addUndoItem(new KateModifiedWrapLine(m_document, line, col, length, newLine)); } } void KateUndoManager::slotLineUnWrapped(int line, int col, int length, bool lineRemoved) { - if (m_editCurrentUndo != 0) { // do we care about notifications? + if (m_editCurrentUndo != nullptr) { // do we care about notifications? addUndoItem(new KateModifiedUnWrapLine(m_document, line, col, length, lineRemoved)); } } void KateUndoManager::slotLineInserted(int line, const QString &s) { - if (m_editCurrentUndo != 0) { // do we care about notifications? + if (m_editCurrentUndo != nullptr) { // do we care about notifications? addUndoItem(new KateModifiedInsertLine(m_document, line, s)); } } void KateUndoManager::slotLineRemoved(int line, const QString &s) { - if (m_editCurrentUndo != 0) { // do we care about notifications? + if (m_editCurrentUndo != nullptr) { // do we care about notifications? addUndoItem(new KateModifiedRemoveLine(m_document, line, s)); } } @@ -205,11 +205,11 @@ { KateUndoGroup *undoGroup = m_editCurrentUndo; - if (undoGroup == 0 && !undoItems.isEmpty()) { + if (undoGroup == nullptr && !undoItems.isEmpty()) { undoGroup = undoItems.last(); } - if (undoGroup == 0) { + if (undoGroup == nullptr) { return; } @@ -218,8 +218,8 @@ void KateUndoManager::addUndoItem(KateUndo *undo) { - Q_ASSERT(undo != 0); // don't add null pointers to our history - Q_ASSERT(m_editCurrentUndo != 0); // make sure there is an undo group for our item + Q_ASSERT(undo != nullptr); // don't add null pointers to our history + Q_ASSERT(m_editCurrentUndo != nullptr); // make sure there is an undo group for our item m_editCurrentUndo->addItem(undo); @@ -230,7 +230,7 @@ void KateUndoManager::setActive(bool enabled) { - Q_ASSERT(m_editCurrentUndo == 0); // must not already be in edit mode + Q_ASSERT(m_editCurrentUndo == nullptr); // must not already be in edit mode Q_ASSERT(m_isActive != enabled); m_isActive = enabled; @@ -250,7 +250,7 @@ void KateUndoManager::undo() { - Q_ASSERT(m_editCurrentUndo == 0); // undo is not supported while we care about notifications (call editEnd() first) + Q_ASSERT(m_editCurrentUndo == nullptr); // undo is not supported while we care about notifications (call editEnd() first) if (undoItems.count() > 0) { emit undoStart(document()); @@ -266,7 +266,7 @@ void KateUndoManager::redo() { - Q_ASSERT(m_editCurrentUndo == 0); // redo is not supported while we care about notifications (call editEnd() first) + Q_ASSERT(m_editCurrentUndo == nullptr); // redo is not supported while we care about notifications (call editEnd() first) if (redoItems.count() > 0) { emit redoStart(document()); @@ -308,8 +308,8 @@ unsigned char currentPattern = 0; const unsigned char patterns[] = {5, 16, 21, 24, 26, 88, 90, 93, 133, 144, 149, 154, 165}; const unsigned char patternCount = sizeof(patterns); - KateUndoGroup *undoLast = 0; - KateUndoGroup *redoLast = 0; + KateUndoGroup *undoLast = nullptr; + KateUndoGroup *redoLast = nullptr; if (undoItems.isEmpty()) { currentPattern |= 1; @@ -364,7 +364,7 @@ qDeleteAll(undoItems); undoItems.clear(); - lastUndoGroupWhenSaved = 0; + lastUndoGroupWhenSaved = nullptr; docWasSavedWhenUndoWasEmpty = false; emit undoChanged(); @@ -375,7 +375,7 @@ qDeleteAll(redoItems); redoItems.clear(); - lastRedoGroupWhenSaved = 0; + lastRedoGroupWhenSaved = nullptr; docWasSavedWhenRedoWasEmpty = false; emit undoChanged(); @@ -423,7 +423,7 @@ void KateUndoManager::setUndoRedoCursorsOfLastGroup(const KTextEditor::Cursor &undoCursor, const KTextEditor::Cursor &redoCursor) { - Q_ASSERT(m_editCurrentUndo == 0); + Q_ASSERT(m_editCurrentUndo == nullptr); if (!undoItems.isEmpty()) { KateUndoGroup *last = undoItems.last(); last->setUndoCursor(undoCursor); @@ -433,7 +433,7 @@ KTextEditor::Cursor KateUndoManager::lastRedoCursor() const { - Q_ASSERT(m_editCurrentUndo == 0); + Q_ASSERT(m_editCurrentUndo == nullptr); if (!undoItems.isEmpty()) { KateUndoGroup *last = undoItems.last(); return last->redoCursor(); diff -Nru ktexteditor-5.28.0/src/utils/application.cpp ktexteditor-5.31.0/src/utils/application.cpp --- ktexteditor-5.28.0/src/utils/application.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/application.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -30,7 +30,7 @@ Application::Application(QObject *parent) : QObject(parent) - , d(Q_NULLPTR) + , d(nullptr) { } @@ -70,7 +70,7 @@ /** * dispatch to parent */ - KTextEditor::MainWindow *window = Q_NULLPTR; + KTextEditor::MainWindow *window = nullptr; QMetaObject::invokeMethod(parent() , "activeMainWindow" , Qt::DirectConnection @@ -100,7 +100,7 @@ /** * dispatch to parent */ - KTextEditor::Document *document = Q_NULLPTR; + KTextEditor::Document *document = nullptr; QMetaObject::invokeMethod(parent() , "findUrl" , Qt::DirectConnection @@ -114,7 +114,7 @@ /** * dispatch to parent */ - KTextEditor::Document *document = Q_NULLPTR; + KTextEditor::Document *document = nullptr; QMetaObject::invokeMethod(parent() , "openUrl" , Qt::DirectConnection @@ -157,7 +157,7 @@ /** * dispatch to parent */ - Plugin *plugin = Q_NULLPTR; + Plugin *plugin = nullptr; QMetaObject::invokeMethod(parent() , "plugin" , Qt::DirectConnection diff -Nru ktexteditor-5.28.0/src/utils/codecompletionmodel.cpp ktexteditor-5.31.0/src/utils/codecompletionmodel.cpp --- ktexteditor-5.28.0/src/utils/codecompletionmodel.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/codecompletionmodel.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -57,7 +57,7 @@ return QModelIndex(); } - return createIndex(row, column, (void *)0); + return createIndex(row, column, (void *)nullptr); } QMap< int, QVariant > CodeCompletionModel::itemData(const QModelIndex &index) const diff -Nru ktexteditor-5.28.0/src/utils/configinterface.cpp ktexteditor-5.31.0/src/utils/configinterface.cpp --- ktexteditor-5.28.0/src/utils/configinterface.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/configinterface.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -22,7 +22,7 @@ using namespace KTextEditor; ConfigInterface::ConfigInterface() - : d(0) + : d(nullptr) { } diff -Nru ktexteditor-5.28.0/src/utils/document.cpp ktexteditor-5.31.0/src/utils/document.cpp --- ktexteditor-5.28.0/src/utils/document.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/document.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -57,7 +57,7 @@ : d (new EditingTransactionPrivate()) { // Alghouth it works in release-mode, we usually want a valid document - Q_ASSERT(document != Q_NULLPTR); + Q_ASSERT(document != nullptr); // initialize d-pointer d->document = qobject_cast (document); diff -Nru ktexteditor-5.28.0/src/utils/kateautoindent.cpp ktexteditor-5.31.0/src/utils/kateautoindent.cpp --- ktexteditor-5.28.0/src/utils/kateautoindent.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/kateautoindent.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -122,7 +122,7 @@ } KateAutoIndent::KateAutoIndent(KTextEditor::DocumentPrivate *_doc) - : QObject(_doc), doc(_doc), m_script(0) + : QObject(_doc), doc(_doc), m_script(nullptr) { // don't call updateConfig() here, document might is not ready for that.... @@ -263,7 +263,7 @@ void KateAutoIndent::reloadScript() { // small trick to force reload - m_script = 0; // prevent dangling pointer + m_script = nullptr; // prevent dangling pointer QString currentMode = m_mode; m_mode = QString(); setMode(currentMode); @@ -314,7 +314,7 @@ } // cleanup - m_script = 0; + m_script = nullptr; // first, catch easy stuff... normal mode and none, easy... if (name.isEmpty() || name == MODE_NONE()) { diff -Nru ktexteditor-5.28.0/src/utils/kateautoindent.h ktexteditor-5.31.0/src/utils/kateautoindent.h --- ktexteditor-5.28.0/src/utils/kateautoindent.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/kateautoindent.h 2017-02-05 11:12:49.000000000 +0000 @@ -121,7 +121,7 @@ /** * Set the indent level of the line. * \param line line to change indent for - * \param change set indentation to given number of spaces + * \param indentDepth set indentation to given number of spaces * \param align if align is higher than indentDepth, the difference * represents a number of spaces to be added after the indent */ diff -Nru ktexteditor-5.28.0/src/utils/katebookmarks.cpp ktexteditor-5.31.0/src/utils/katebookmarks.cpp --- ktexteditor-5.28.0/src/utils/katebookmarks.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/katebookmarks.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -44,13 +44,13 @@ KateBookmarks::KateBookmarks(KTextEditor::ViewPrivate *view, Sorting sort) : QObject(view) , m_view(view) - , m_bookmarkClear(0) + , m_bookmarkClear(nullptr) , m_sorting(sort) { setObjectName(QStringLiteral("kate bookmarks")); connect(view->doc(), SIGNAL(marksChanged(KTextEditor::Document*)), this, SLOT(marksChanged())); _tries = 0; - m_bookmarksMenu = 0L; + m_bookmarksMenu = nullptr; } KateBookmarks::~KateBookmarks() @@ -159,11 +159,11 @@ bText.replace(re, QStringLiteral("&&")); // kill undesired accellerators! bText.replace(QLatin1Char('\t'), QLatin1Char(' ')); // kill tabs, as they are interpreted as shortcuts - QAction *before = 0; + QAction *before = nullptr; if (m_sorting == Position) { // 3 actions already present if (menu.actions().size() <= i + 3) { - before = 0; + before = nullptr; } else { before = menu.actions().at(i + 3); } diff -Nru ktexteditor-5.28.0/src/utils/katecmds.cpp ktexteditor-5.31.0/src/utils/katecmds.cpp --- ktexteditor-5.28.0/src/utils/katecmds.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/katecmds.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -36,7 +36,7 @@ #include //BEGIN CoreCommands -KateCommands::CoreCommands *KateCommands::CoreCommands::m_instance = 0; +KateCommands::CoreCommands *KateCommands::CoreCommands::m_instance = nullptr; // this returns wheather the string s could be converted to // a bool value, one of on|off|1|0|true|false. the argument val is @@ -473,12 +473,12 @@ return co; } - return 0L; + return nullptr; } //END CoreCommands //BEGIN Character -KateCommands::Character *KateCommands::Character::m_instance = 0; +KateCommands::Character *KateCommands::Character::m_instance = nullptr; bool KateCommands::Character::help(class KTextEditor::View *, const QString &cmd, QString &msg) { @@ -540,7 +540,7 @@ //END Character //BEGIN Date -KateCommands::Date *KateCommands::Date::m_instance = 0; +KateCommands::Date *KateCommands::Date::m_instance = nullptr; bool KateCommands::Date::help(class KTextEditor::View *, const QString &cmd, QString &msg) { diff -Nru ktexteditor-5.28.0/src/utils/katecmds.h ktexteditor-5.31.0/src/utils/katecmds.h --- ktexteditor-5.28.0/src/utils/katecmds.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/katecmds.h 2017-02-05 11:12:49.000000000 +0000 @@ -63,7 +63,7 @@ public: ~CoreCommands() { - m_instance = 0; + m_instance = nullptr; } /** @@ -80,8 +80,7 @@ * @param view view to use for execution * @param cmd cmd string * @param errorMsg error to return if no success - * @param rangeStart first line in range - * @param rangeEnd last line in range + * @param range range to execute command on * @return success */ bool exec(class KTextEditor::View *view, const QString &cmd, QString &errorMsg, @@ -97,7 +96,7 @@ static CoreCommands *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new CoreCommands(); } return m_instance; @@ -124,7 +123,7 @@ public: ~Character() { - m_instance = 0; + m_instance = nullptr; } /** @@ -142,7 +141,7 @@ static Character *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new Character(); } return m_instance; @@ -164,7 +163,7 @@ public: ~Date() { - m_instance = 0; + m_instance = nullptr; } /** @@ -182,7 +181,7 @@ static Date *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new Date(); } return m_instance; diff -Nru ktexteditor-5.28.0/src/utils/kateconfig.cpp ktexteditor-5.31.0/src/utils/kateconfig.cpp --- ktexteditor-5.28.0/src/utils/kateconfig.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/kateconfig.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -76,10 +76,10 @@ //END //BEGIN KateDocumentConfig -KateGlobalConfig *KateGlobalConfig::s_global = 0; -KateDocumentConfig *KateDocumentConfig::s_global = 0; -KateViewConfig *KateViewConfig::s_global = 0; -KateRendererConfig *KateRendererConfig::s_global = 0; +KateGlobalConfig *KateGlobalConfig::s_global = nullptr; +KateDocumentConfig *KateDocumentConfig::s_global = nullptr; +KateViewConfig *KateViewConfig::s_global = nullptr; +KateRendererConfig *KateRendererConfig::s_global = nullptr; KateGlobalConfig::KateGlobalConfig() { @@ -201,7 +201,7 @@ m_swapSyncIntervalSet(false), m_onTheFlySpellCheckSet(false), m_lineLengthLimitSet(false), - m_doc(0) + m_doc(nullptr) { s_global = this; @@ -245,7 +245,7 @@ m_swapSyncIntervalSet(false), m_onTheFlySpellCheckSet(false), m_lineLengthLimitSet(false), - m_doc(0) + m_doc(nullptr) { // init with defaults from config or really hardcoded ones readConfig(cg); @@ -1238,7 +1238,7 @@ m_wordCompletionRemoveTailSet(false), m_foldFirstLineSet (false), m_autoBracketsSet(false), - m_view(0) + m_view(nullptr) { s_global = this; @@ -2243,7 +2243,7 @@ m_searchHighlightColorSet(false), m_replaceHighlightColorSet(false), m_lineMarkerColorSet(m_lineMarkerColor.size()), - m_renderer(0) + m_renderer(nullptr) { // init bitarray m_lineMarkerColorSet.fill(true); diff -Nru ktexteditor-5.28.0/src/utils/kateglobal.cpp ktexteditor-5.31.0/src/utils/kateglobal.cpp --- ktexteditor-5.28.0/src/utils/kateglobal.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/kateglobal.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -88,13 +88,13 @@ : KTextEditor::Editor (this) , m_aboutData(QStringLiteral("katepart"), i18n("Kate Part"), QStringLiteral(KTEXTEDITOR_VERSION_STRING), i18n("Embeddable editor component"), KAboutLicense::LGPL_V2, - i18n("(c) 2000-2016 The Kate Authors"), QString(), QStringLiteral("http://kate-editor.org")) - , m_dummyApplication(Q_NULLPTR) + i18n("(c) 2000-2017 The Kate Authors"), QString(), QStringLiteral("http://kate-editor.org")) + , m_dummyApplication(nullptr) , m_application(&m_dummyApplication) - , m_dummyMainWindow(Q_NULLPTR) + , m_dummyMainWindow(nullptr) , m_defaultColors(new KateDefaultColors()) - , m_searchHistoryModel(Q_NULLPTR) - , m_replaceHistoryModel(Q_NULLPTR) + , m_searchHistoryModel(nullptr) + , m_replaceHistoryModel(nullptr) { // remember this staticInstance = this; @@ -270,7 +270,7 @@ KTextEditor::Document *KTextEditor::EditorPrivate::createDocument(QObject *parent) { - KTextEditor::DocumentPrivate *doc = new KTextEditor::DocumentPrivate(false, false, 0, parent); + KTextEditor::DocumentPrivate *doc = new KTextEditor::DocumentPrivate(false, false, nullptr, parent); emit documentCreated(this, doc); @@ -348,7 +348,7 @@ break; } - return 0; + return nullptr; } /** diff -Nru ktexteditor-5.28.0/src/utils/katesedcmd.cpp ktexteditor-5.31.0/src/utils/katesedcmd.cpp --- ktexteditor-5.28.0/src/utils/katesedcmd.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/katesedcmd.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -34,7 +34,7 @@ #include #include -KateCommands::SedReplace *KateCommands::SedReplace::m_instance = 0; +KateCommands::SedReplace *KateCommands::SedReplace::m_instance = nullptr; static int backslashString(const QString &haystack, const QString &needle, int index) { diff -Nru ktexteditor-5.28.0/src/utils/katesedcmd.h ktexteditor-5.31.0/src/utils/katesedcmd.h --- ktexteditor-5.28.0/src/utils/katesedcmd.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/katesedcmd.h 2017-02-05 11:12:49.000000000 +0000 @@ -57,7 +57,7 @@ public: ~SedReplace() { - m_instance = 0; + m_instance = nullptr; } /** @@ -91,7 +91,7 @@ static SedReplace *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new SedReplace(); } return m_instance; diff -Nru ktexteditor-5.28.0/src/utils/katetemplatehandler.h ktexteditor-5.31.0/src/utils/katetemplatehandler.h --- ktexteditor-5.28.0/src/utils/katetemplatehandler.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/katetemplatehandler.h 2017-02-05 11:12:49.000000000 +0000 @@ -122,8 +122,10 @@ /** * Evaluate default values for all fields in m_fields and * store them in the fields. This updates the @property defaultValue property - * of the @class TemplateField instances in m_fields from the raw, user-entered + * of the TemplateField instances in m_fields from the raw, user-entered * default value to its evaluated equivalent (e.g. "func()" -> result of function call) + * + * @sa TemplateField */ void setupDefaultValues(); diff -Nru ktexteditor-5.28.0/src/utils/ktexteditor.cpp ktexteditor-5.31.0/src/utils/ktexteditor.cpp --- ktexteditor-5.28.0/src/utils/ktexteditor.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/ktexteditor.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -138,7 +138,7 @@ ConfigPage::ConfigPage(QWidget *parent) : QWidget(parent) - , d(Q_NULLPTR) + , d(nullptr) {} ConfigPage::~ConfigPage() @@ -164,7 +164,7 @@ Plugin::Plugin(QObject *parent) : QObject(parent) - , d(Q_NULLPTR) + , d(nullptr) {} Plugin::~Plugin() @@ -177,39 +177,39 @@ ConfigPage *Plugin::configPage(int, QWidget *) { - return Q_NULLPTR; + return nullptr; } MarkInterface::MarkInterface() - : d(Q_NULLPTR) + : d(nullptr) {} MarkInterface::~MarkInterface() {} ModificationInterface::ModificationInterface() - : d(Q_NULLPTR) + : d(nullptr) {} ModificationInterface::~ModificationInterface() {} SessionConfigInterface::SessionConfigInterface() - : d(Q_NULLPTR) + : d(nullptr) {} SessionConfigInterface::~SessionConfigInterface() {} TextHintInterface::TextHintInterface() - : d(Q_NULLPTR) + : d(nullptr) {} TextHintInterface::~TextHintInterface() {} TextHintProvider::TextHintProvider() - : d(Q_NULLPTR) + : d(nullptr) {} TextHintProvider::~TextHintProvider() @@ -218,7 +218,7 @@ Command::Command(const QStringList &cmds, QObject *parent) : QObject(parent) , m_cmds (cmds) - , d(Q_NULLPTR) + , d(nullptr) { // register this command static_cast (KTextEditor::Editor::instance())->cmdManager()->registerCommand (this); @@ -238,7 +238,7 @@ KCompletion *Command::completionObject(KTextEditor::View *, const QString &) { - return Q_NULLPTR; + return nullptr; } bool Command::wantsToProcessText(const QString &) diff -Nru ktexteditor-5.28.0/src/utils/mainwindow.cpp ktexteditor-5.31.0/src/utils/mainwindow.cpp --- ktexteditor-5.28.0/src/utils/mainwindow.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/mainwindow.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -29,7 +29,7 @@ MainWindow::MainWindow(QObject *parent) : QObject(parent) - , d(Q_NULLPTR) + , d(nullptr) { } @@ -42,7 +42,7 @@ /** * dispatch to parent */ - QWidget *window = Q_NULLPTR; + QWidget *window = nullptr; QMetaObject::invokeMethod(parent() , "window" , Qt::DirectConnection @@ -55,7 +55,7 @@ /** * dispatch to parent */ - KXMLGUIFactory *guiFactory = Q_NULLPTR; + KXMLGUIFactory *guiFactory = nullptr; QMetaObject::invokeMethod(parent() , "guiFactory" , Qt::DirectConnection @@ -81,7 +81,7 @@ /** * dispatch to parent */ - KTextEditor::View *view = Q_NULLPTR; + KTextEditor::View *view = nullptr; QMetaObject::invokeMethod(parent() , "activeView" , Qt::DirectConnection @@ -94,7 +94,7 @@ /** * dispatch to parent */ - KTextEditor::View *view = Q_NULLPTR; + KTextEditor::View *view = nullptr; QMetaObject::invokeMethod(parent() , "activateView" , Qt::DirectConnection @@ -108,7 +108,7 @@ /** * dispatch to parent */ - KTextEditor::View *view = Q_NULLPTR; + KTextEditor::View *view = nullptr; QMetaObject::invokeMethod(parent() , "openUrl" , Qt::DirectConnection @@ -178,7 +178,7 @@ /** * dispatch to parent */ - QWidget *viewBar = Q_NULLPTR; + QWidget *viewBar = nullptr; QMetaObject::invokeMethod(parent() , "createViewBar" , Qt::DirectConnection @@ -237,7 +237,7 @@ /** * dispatch to parent */ - QWidget *toolView = Q_NULLPTR; + QWidget *toolView = nullptr; QMetaObject::invokeMethod(parent() , "createToolView" , Qt::DirectConnection @@ -298,7 +298,7 @@ /** * dispatch to parent */ - QObject *pluginView = Q_NULLPTR; + QObject *pluginView = nullptr; QMetaObject::invokeMethod(parent() , "pluginView" , Qt::DirectConnection diff -Nru ktexteditor-5.28.0/src/utils/messageinterface.cpp ktexteditor-5.31.0/src/utils/messageinterface.cpp --- ktexteditor-5.28.0/src/utils/messageinterface.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/messageinterface.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -49,8 +49,8 @@ d->autoHide = -1; d->autoHideMode = KTextEditor::Message::AfterUserInteraction; d->priority = 0; - d->view = 0; - d->document = 0; + d->view = nullptr; + d->document = nullptr; } Message::~Message() diff -Nru ktexteditor-5.28.0/src/utils/movinginterface.cpp ktexteditor-5.31.0/src/utils/movinginterface.cpp --- ktexteditor-5.28.0/src/utils/movinginterface.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/movinginterface.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -26,7 +26,7 @@ using namespace KTextEditor; MovingInterface::MovingInterface() - : d(0) + : d(nullptr) { } diff -Nru ktexteditor-5.28.0/src/utils/movingrangefeedback.cpp ktexteditor-5.31.0/src/utils/movingrangefeedback.cpp --- ktexteditor-5.28.0/src/utils/movingrangefeedback.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/utils/movingrangefeedback.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -26,7 +26,7 @@ using namespace KTextEditor; MovingRangeFeedback::MovingRangeFeedback() - : d(0) + : d(nullptr) { } diff -Nru ktexteditor-5.28.0/src/variableeditor/katehelpbutton.h ktexteditor-5.31.0/src/variableeditor/katehelpbutton.h --- ktexteditor-5.28.0/src/variableeditor/katehelpbutton.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/variableeditor/katehelpbutton.h 2017-02-05 11:12:49.000000000 +0000 @@ -37,7 +37,7 @@ void setSection(const QString §ion); public: - KateHelpButton(QWidget *parent = 0); + KateHelpButton(QWidget *parent = nullptr); virtual ~KateHelpButton(); public Q_SLOTS: diff -Nru ktexteditor-5.28.0/src/variableeditor/variableeditor.h ktexteditor-5.31.0/src/variableeditor/variableeditor.h --- ktexteditor-5.28.0/src/variableeditor/variableeditor.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/variableeditor/variableeditor.h 2017-02-05 11:12:49.000000000 +0000 @@ -53,7 +53,7 @@ Q_OBJECT public: - VariableEditor(VariableItem *item, QWidget *parent = 0); + VariableEditor(VariableItem *item, QWidget *parent = nullptr); virtual ~VariableEditor(); VariableItem *item() const; diff -Nru ktexteditor-5.28.0/src/variableeditor/variablelineedit.cpp ktexteditor-5.31.0/src/variableeditor/variablelineedit.cpp --- ktexteditor-5.28.0/src/variableeditor/variablelineedit.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/variableeditor/variablelineedit.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -46,7 +46,7 @@ VariableLineEdit::VariableLineEdit(QWidget *parent) : QWidget(parent) { - m_listview = 0; + m_listview = nullptr; QHBoxLayout *hl = new QHBoxLayout(); hl->setMargin(0); @@ -61,7 +61,7 @@ hl->addWidget(m_lineedit); hl->addWidget(m_button); - m_popup = new QFrame(0, Qt::Popup); + m_popup = new QFrame(nullptr, Qt::Popup); m_popup->setFrameStyle(QFrame::StyledPanel | QFrame::Raised); QVBoxLayout *l = new QVBoxLayout(m_popup); l->setSpacing(0); @@ -108,16 +108,16 @@ m_popup->layout()->removeWidget(m_listview); m_listview->deleteLater(); - m_listview = 0; + m_listview = nullptr; } void VariableLineEdit::addKateItems(VariableListView *listview) { - VariableItem *item = 0; + VariableItem *item = nullptr; // If a current active doc is available - KTextEditor::ViewPrivate *activeView = 0; - KTextEditor::DocumentPrivate *activeDoc = 0; + KTextEditor::ViewPrivate *activeView = nullptr; + KTextEditor::DocumentPrivate *activeDoc = nullptr; KateDocumentConfig *docConfig = KateDocumentConfig::global(); KateViewConfig *viewConfig = KateViewConfig::global(); @@ -159,9 +159,9 @@ item->setHelpText(i18nc("short translation please", "Enable block selection mode.")); listview->addItem(item); - // Add 'byte-order-marker' (bom) to list - item = new VariableBoolItem(QStringLiteral("byte-order-marker"), docConfig->bom()); - item->setHelpText(i18nc("short translation please", "Enable the byte order marker when saving unicode files.")); + // Add 'byte-order-mark' (bom) to list + item = new VariableBoolItem(QStringLiteral("byte-order-mark"), docConfig->bom()); + item->setHelpText(i18nc("short translation please", "Enable the byte order mark (BOM) when saving Unicode files.")); listview->addItem(item); // Add 'bracket-highlight-color' to list diff -Nru ktexteditor-5.28.0/src/variableeditor/variablelineedit.h ktexteditor-5.31.0/src/variableeditor/variablelineedit.h --- ktexteditor-5.28.0/src/variableeditor/variablelineedit.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/variableeditor/variablelineedit.h 2017-02-05 11:12:49.000000000 +0000 @@ -33,7 +33,7 @@ Q_OBJECT public: - VariableLineEdit(QWidget *parent = 0); + VariableLineEdit(QWidget *parent = nullptr); virtual ~VariableLineEdit(); void addKateItems(VariableListView *listview); diff -Nru ktexteditor-5.28.0/src/variableeditor/variablelistview.h ktexteditor-5.31.0/src/variableeditor/variablelistview.h --- ktexteditor-5.28.0/src/variableeditor/variablelistview.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/variableeditor/variablelistview.h 2017-02-05 11:12:49.000000000 +0000 @@ -32,7 +32,7 @@ Q_OBJECT public: - VariableListView(const QString &variableLine, QWidget *parent = 0); + VariableListView(const QString &variableLine, QWidget *parent = nullptr); virtual ~VariableListView(); void addItem(VariableItem *item); diff -Nru ktexteditor-5.28.0/src/view/kateanimation.cpp ktexteditor-5.31.0/src/view/kateanimation.cpp --- ktexteditor-5.28.0/src/view/kateanimation.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/kateanimation.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -31,9 +31,9 @@ KateAnimation::KateAnimation(KMessageWidget *widget, EffectType effect) : QObject(widget) , m_widget(widget) - , m_fadeEffect(0) + , m_fadeEffect(nullptr) { - Q_ASSERT(m_widget != 0); + Q_ASSERT(m_widget != nullptr); // create wanted effect if (effect == FadeEffect) { @@ -61,10 +61,10 @@ void KateAnimation::show() { - Q_ASSERT(m_widget != 0); + Q_ASSERT(m_widget != nullptr); // show according to effects config - if (m_widget->style()->styleHint(QStyle::SH_Widget_Animate, 0, m_widget)) { + if (m_widget->style()->styleHint(QStyle::SH_Widget_Animate, nullptr, m_widget)) { // launch show effect // NOTE: use a singleShot timer to avoid resizing issues when showing the message widget the first time (bug #316666) if (m_fadeEffect) { @@ -80,10 +80,10 @@ void KateAnimation::hide() { - Q_ASSERT(m_widget != 0); + Q_ASSERT(m_widget != nullptr); // hide according to effects config - if (m_widget->style()->styleHint(QStyle::SH_Widget_Animate, 0, m_widget) + if (m_widget->style()->styleHint(QStyle::SH_Widget_Animate, nullptr, m_widget) || KTextEditor::EditorPrivate::unitTestMode() // due to timing issues in the unit test ) { // hide depending on effect diff -Nru ktexteditor-5.28.0/src/view/katefadeeffect.cpp ktexteditor-5.31.0/src/view/katefadeeffect.cpp --- ktexteditor-5.28.0/src/view/katefadeeffect.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/katefadeeffect.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -27,7 +27,7 @@ KateFadeEffect::KateFadeEffect(QWidget *widget) : QObject(widget) , m_widget(widget) - , m_effect(0) // effect only exists during fading animation + , m_effect(nullptr) // effect only exists during fading animation { m_timeLine = new QTimeLine(500, this); m_timeLine->setUpdateInterval(40); @@ -92,7 +92,7 @@ void KateFadeEffect::animationFinished() { // fading finished: remove graphics effect, deletes the effect as well - m_widget->setGraphicsEffect(0); + m_widget->setGraphicsEffect(nullptr); Q_ASSERT(!m_effect); if (m_timeLine->direction() == QTimeLine::Backward) { diff -Nru ktexteditor-5.28.0/src/view/katefadeeffect.h ktexteditor-5.31.0/src/view/katefadeeffect.h --- ktexteditor-5.28.0/src/view/katefadeeffect.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/katefadeeffect.h 2017-02-05 11:12:49.000000000 +0000 @@ -46,7 +46,7 @@ * Constructor. * By default, the widget is fully opaque (opacity = 1.0). */ - KateFadeEffect(QWidget *widget = 0); + KateFadeEffect(QWidget *widget = nullptr); /** * Check whether the hide animation started by calling fadeOut() diff -Nru ktexteditor-5.28.0/src/view/katemessagewidget.cpp ktexteditor-5.31.0/src/view/katemessagewidget.cpp --- ktexteditor-5.28.0/src/view/katemessagewidget.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/katemessagewidget.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -37,7 +37,7 @@ KateMessageWidget::KateMessageWidget(QWidget *parent, bool applyFadeEffect) : QWidget(parent) - , m_animation(0) + , m_animation(nullptr) , m_autoHideTimer(new QTimer(this)) , m_autoHideTime(-1) { @@ -73,7 +73,7 @@ void KateMessageWidget::showNextMessage() { // at this point, we should not have a currently shown message - Q_ASSERT(m_currentMessage == 0); + Q_ASSERT(m_currentMessage == nullptr); // if not message to show, just stop if (m_messageQueue.size() == 0) { @@ -160,7 +160,7 @@ if (parentWidget()->layout()) { // get left/right margin of the layout, since we need to subtract these int leftMargin = 0, rightMargin = 0; - parentWidget()->layout()->getContentsMargins(&leftMargin, 0, &rightMargin, 0); + parentWidget()->layout()->getContentsMargins(&leftMargin, nullptr, &rightMargin, nullptr); margin = leftMargin + rightMargin; } @@ -208,7 +208,7 @@ // autoHide timer may be running for currently shown message, therefore // simply disconnect autoHide timer to all timeout() receivers - disconnect(m_autoHideTimer, SIGNAL(timeout()), 0, 0); + disconnect(m_autoHideTimer, SIGNAL(timeout()), nullptr, nullptr); m_autoHideTimer->stop(); // if there is a current message, the message queue must contain 2 messages @@ -221,7 +221,7 @@ disconnect(m_currentMessage, SIGNAL(iconChanged(QIcon)), m_messageWidget, SLOT(setIcon(QIcon))); - m_currentMessage = 0; + m_currentMessage = nullptr; m_animation->hide(); } else { showNextMessage(); @@ -256,7 +256,7 @@ // if deleted message is the current message, launch hide animation if (message == m_currentMessage) { - m_currentMessage = 0; + m_currentMessage = nullptr; m_animation->hide(); } } diff -Nru ktexteditor-5.28.0/src/view/katestatusbar.cpp ktexteditor-5.31.0/src/view/katestatusbar.cpp --- ktexteditor-5.28.0/src/view/katestatusbar.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/katestatusbar.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -55,10 +55,10 @@ KateStatusBar::KateStatusBar(KTextEditor::ViewPrivate *view) : KateViewBarWidget(false) , m_view(view) - , m_insertModeLabel(Q_NULLPTR) + , m_insertModeLabel(nullptr) , m_modifiedStatus (-1) , m_selectionMode (-1) - , m_wordCounter(Q_NULLPTR) + , m_wordCounter(nullptr) { KAcceleratorManager::setNoAccel(this); setFocusProxy(m_view); @@ -355,7 +355,7 @@ } void KateStatusBar::updateGroup(QActionGroup *group, int w) { - QAction *m1=0; + QAction *m1=nullptr; bool found=false; //linear search should be fast enough here, no additional hash Q_FOREACH(QAction *action, group->actions()) { @@ -422,7 +422,7 @@ void KateStatusBar::toggleWordCount(bool on) { - if ((m_wordCounter != Q_NULLPTR) == on) { + if ((m_wordCounter != nullptr) == on) { return; } @@ -431,7 +431,7 @@ connect(m_wordCounter, &WordCounter::changed, this, &KateStatusBar::wordCountChanged); } else { delete m_wordCounter; - m_wordCounter = Q_NULLPTR; + m_wordCounter = nullptr; wordCountChanged(0, 0, 0, 0); } diff -Nru ktexteditor-5.28.0/src/view/kateviewaccessible.h ktexteditor-5.31.0/src/view/kateviewaccessible.h --- ktexteditor-5.28.0/src/view/kateviewaccessible.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/kateviewaccessible.h 2017-02-05 11:12:49.000000000 +0000 @@ -48,7 +48,7 @@ { if (t == QAccessible::TextInterface) return static_cast(this); - return 0; + return nullptr; } virtual ~KateViewAccessible() @@ -59,7 +59,7 @@ { Q_UNUSED(x); Q_UNUSED(y); - return 0; + return nullptr; } void setText(QAccessible::Text t, const QString &text) Q_DECL_OVERRIDE @@ -240,7 +240,7 @@ if (KateViewInternal *view = qobject_cast(object)) { return new KateViewAccessible(view); } - return 0; + return nullptr; } #endif diff -Nru ktexteditor-5.28.0/src/view/kateview.cpp ktexteditor-5.31.0/src/view/kateview.cpp --- ktexteditor-5.28.0/src/view/kateview.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/kateview.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -111,8 +111,8 @@ KTextEditor::ViewPrivate::ViewPrivate(KTextEditor::DocumentPrivate *doc, QWidget *parent, KTextEditor::MainWindow *mainWindow) : KTextEditor::View (this, parent) - , m_completionWidget(0) - , m_annotationModel(0) + , m_completionWidget(nullptr) + , m_annotationModel(nullptr) , m_hasWrap(false) , m_doc(doc) , m_textFolding(doc->buffer()) @@ -129,18 +129,18 @@ , m_updatingDocumentConfig(false) , m_selection(m_doc->buffer(), KTextEditor::Range::invalid(), Kate::TextRange::ExpandLeft, Kate::TextRange::AllowEmpty) , blockSelect(false) - , m_bottomViewBar(0) - , m_gotoBar(0) - , m_dictionaryBar(NULL) + , m_bottomViewBar(nullptr) + , m_gotoBar(nullptr) + , m_dictionaryBar(nullptr) , m_spellingMenu(new KateSpellingMenu(this)) , m_userContextMenuSet(false) , m_delayedUpdateTriggered(false) , m_lineToUpdateMin(-1) , m_lineToUpdateMax(-1) - , m_floatTopMessageWidget(0) - , m_floatBottomMessageWidget(0) + , m_floatTopMessageWidget(nullptr) + , m_floatBottomMessageWidget(nullptr) , m_mainWindow(mainWindow ? mainWindow : KTextEditor::EditorPrivate::self()->dummyMainWindow()) // use dummy window if no window there! - , m_statusBar(Q_NULLPTR) + , m_statusBar(nullptr) , m_temporaryAutomaticInvocationDisabled(false) , m_autoFoldedFirstLine(false) { @@ -162,7 +162,7 @@ */ QWidget *bottomBarParent = m_mainWindow->createViewBar(this); - m_bottomViewBar = new KateViewBar(bottomBarParent != 0, bottomBarParent ? bottomBarParent : this, this); + m_bottomViewBar = new KateViewBar(bottomBarParent != nullptr, bottomBarParent ? bottomBarParent : this, this); // ugly workaround: // Force the layout to be left-to-right even on RTL deskstop, as discussed @@ -260,7 +260,7 @@ * remove view bar again, if needed */ m_mainWindow->deleteViewBar(this); - m_bottomViewBar = 0; + m_bottomViewBar = nullptr; m_doc->removeView(this); @@ -279,7 +279,7 @@ if (m_statusBar) { bottomViewBar()->removePermanentBarWidget(m_statusBar); delete m_statusBar; - m_statusBar = Q_NULLPTR; + m_statusBar = nullptr; emit statusBarEnabledChanged(this, false); return; } @@ -466,7 +466,7 @@ KActionCollection *ac = actionCollection(); QAction *a; - m_toggleWriteLock = 0; + m_toggleWriteLock = nullptr; m_cut = a = ac->addAction(KStandardAction::Cut, this, SLOT(cut())); a->setWhatsThis(i18n("Cut the selected text and move it to the clipboard")); @@ -581,8 +581,8 @@ m_cut->setEnabled(false); m_paste->setEnabled(false); m_pasteMenu->setEnabled(false); - m_editUndo = 0; - m_editRedo = 0; + m_editUndo = nullptr; + m_editRedo = nullptr; } a = ac->addAction(KStandardAction::Print, this, SLOT(print())); @@ -789,7 +789,7 @@ a = m_addBom = new KToggleAction(i18n("Add &Byte Order Mark (BOM)"), this); m_addBom->setChecked(m_doc->config()->bom()); ac->addAction(QStringLiteral("add_bom"), a); - a->setWhatsThis(i18n("Enable/disable adding of byte order markers for UTF-8/UTF-16 encoded files while saving")); + a->setWhatsThis(i18n("Enable/disable adding of byte order marks for UTF-8/UTF-16 encoded files while saving")); connect(m_addBom, SIGNAL(triggered(bool)), this, SLOT(setAddBom(bool))); // encoding menu @@ -2962,7 +2962,7 @@ } } } - return 0; + return nullptr; } QMenu *KTextEditor::ViewPrivate::defaultContextMenu(QMenu *menu) const diff -Nru ktexteditor-5.28.0/src/view/kateview.h ktexteditor-5.31.0/src/view/kateview.h --- ktexteditor-5.28.0/src/view/kateview.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/kateview.h 2017-02-05 11:12:49.000000000 +0000 @@ -95,7 +95,7 @@ friend class ::KateTextPreview; public: - ViewPrivate (KTextEditor::DocumentPrivate *doc, QWidget *parent, KTextEditor::MainWindow *mainWindow = Q_NULLPTR); + ViewPrivate (KTextEditor::DocumentPrivate *doc, QWidget *parent, KTextEditor::MainWindow *mainWindow = nullptr); ~ViewPrivate (); /** @@ -120,7 +120,7 @@ // KTextEditor::ClipboardInterface // public Q_SLOTS: - void paste(const QString *textToPaste = 0); + void paste(const QString *textToPaste = nullptr); void cut(); void copy() const; @@ -136,7 +136,7 @@ public: void setContextMenu(QMenu *menu) Q_DECL_OVERRIDE; QMenu *contextMenu() const Q_DECL_OVERRIDE; - QMenu *defaultContextMenu(QMenu *menu = 0L) const Q_DECL_OVERRIDE; + QMenu *defaultContextMenu(QMenu *menu = nullptr) const Q_DECL_OVERRIDE; private Q_SLOTS: void aboutToShowContextMenu(); diff -Nru ktexteditor-5.28.0/src/view/kateviewhelpers.cpp ktexteditor-5.31.0/src/view/kateviewhelpers.cpp --- ktexteditor-5.28.0/src/view/kateviewhelpers.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/kateviewhelpers.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -476,7 +476,8 @@ modifiedLineColor.setHsv(modifiedLineColor.hue(), 255, 255 - backgroundColor.value() / 3); savedLineColor.setHsv(savedLineColor.hue(), 100, 255 - backgroundColor.value() / 3); - m_pixmap = QPixmap(pixmapLineWidth, pixmapLineCount); + // increase dimensions by ratio + m_pixmap = QPixmap(pixmapLineWidth * m_view->devicePixelRatio(), pixmapLineCount * m_view->devicePixelRatio()); m_pixmap.fill(QColor("transparent")); // The text currently selected in the document, to be drawn later. @@ -583,6 +584,10 @@ } } } + + // set right ratio + m_pixmap.setDevicePixelRatio(m_view->devicePixelRatio()); + //qCDebug(LOG_KTE) << time.elapsed(); // Redraw the scrollbar widget with the updated pixmap. update(); @@ -627,7 +632,7 @@ //style()->drawControl(QStyle::CE_ScrollBarSubLine, &opt, &painter, this); // calculate the document size and position - const int docHeight = qMin(grooveRect.height(), m_pixmap.height() * 2) - 2 * docXMargin; + const int docHeight = qMin(grooveRect.height(), int(m_pixmap.height() / m_pixmap.devicePixelRatio() * 2)) - 2 * docXMargin; const int yoffset = 1; // top-aligned in stead of center-aligned (grooveRect.height() - docHeight) / 2; const QRect docRect(QPoint(grooveRect.left() + docXMargin, yoffset + grooveRect.top()), QSize(grooveRect.width() - docXMargin, docHeight)); m_mapGroveRect = docRect; @@ -683,17 +688,17 @@ } // Smooth transform only when squeezing - if (grooveRect.height() < m_pixmap.height()) { + if (grooveRect.height() < m_pixmap.height() / m_pixmap.devicePixelRatio()) { painter.setRenderHint(QPainter::SmoothPixmapTransform); } // draw the modified lines margin - QRect pixmapMarginRect(QPoint(0, 0), QSize(s_pixelMargin, m_pixmap.height())); + QRect pixmapMarginRect(QPoint(0, 0), QSize(s_pixelMargin, m_pixmap.height() / m_pixmap.devicePixelRatio())); QRect docPixmapMarginRect(QPoint(0, docRect.top()), QSize(s_pixelMargin, docRect.height())); painter.drawPixmap(docPixmapMarginRect, m_pixmap, pixmapMarginRect); // calculate the stretch and draw the stretched lines (scrollbar marks) - QRect pixmapRect(QPoint(s_pixelMargin, 0), QSize(m_pixmap.width() - s_pixelMargin, m_pixmap.height())); + QRect pixmapRect(QPoint(s_pixelMargin, 0), QSize(m_pixmap.width() / m_pixmap.devicePixelRatio() - s_pixelMargin, m_pixmap.height() / m_pixmap.devicePixelRatio())); QRect docPixmapRect(QPoint(s_pixelMargin, docRect.top()), QSize(docRect.width() - s_pixelMargin, docRect.height())); painter.drawPixmap(docPixmapRect, m_pixmap, pixmapRect); @@ -970,7 +975,7 @@ , m_msgMode(false) , m_histpos(0) , m_cmdend(0) - , m_command(0L) + , m_command(nullptr) { connect(this, SIGNAL(returnPressed(QString)), this, SLOT(slotReturnPressed(QString))); @@ -1153,7 +1158,7 @@ setCompletionObject(KateCmd::self()->commandCompletionObject()); delete c; } - m_command = 0; + m_command = nullptr; m_cmdend = 0; // the following commands change the focus themselves @@ -1974,7 +1979,7 @@ return; } else { // the ranges differ, delete the old, if it exists delete m_foldingRange; - m_foldingRange = 0; + m_foldingRange = nullptr; } if (newRange.isValid()) { @@ -2054,7 +2059,7 @@ m_nextHighlightBlock = -2; m_currentBlockLine = -1; delete m_foldingRange; - m_foldingRange = 0; + m_foldingRange = nullptr; delete m_foldingPreview; } @@ -2160,7 +2165,7 @@ } if (area == AnnotationBorder) { - const bool singleClick = style()->styleHint(QStyle::SH_ItemView_ActivateItemOnSingleClick, 0, this); + const bool singleClick = style()->styleHint(QStyle::SH_ItemView_ActivateItemOnSingleClick, nullptr, this); if (e->button() == Qt::LeftButton && singleClick) { emit m_view->annotationActivated(m_view, cursorOnLine); } else if (e->button() == Qt::RightButton) { @@ -2181,7 +2186,7 @@ if (cursorOnLine == m_lastClickedLine && cursorOnLine <= m_doc->lastLine()) { BorderArea area = positionToArea(e->pos()); - const bool singleClick = style()->styleHint(QStyle::SH_ItemView_ActivateItemOnSingleClick, 0, this); + const bool singleClick = style()->styleHint(QStyle::SH_ItemView_ActivateItemOnSingleClick, nullptr, this); if (area == AnnotationBorder && !singleClick) { emit m_view->annotationActivated(m_view, cursorOnLine); } @@ -2544,7 +2549,7 @@ KateViewBarWidget::KateViewBarWidget(bool addCloseButton, QWidget *parent) : QWidget(parent) - , m_viewBar(0) + , m_viewBar(nullptr) { QHBoxLayout *layout = new QHBoxLayout(this); @@ -2570,7 +2575,7 @@ } KateViewBar::KateViewBar(bool external, QWidget *parent, KTextEditor::ViewPrivate *view) - : QWidget(parent), m_external(external), m_view(view), m_permanentBarWidget(0) + : QWidget(parent), m_external(external), m_view(view), m_permanentBarWidget(nullptr) { m_layout = new QVBoxLayout(this); @@ -2604,9 +2609,9 @@ } m_stack->removeWidget(barWidget); - barWidget->setAssociatedViewBar(0); + barWidget->setAssociatedViewBar(nullptr); barWidget->hide(); - disconnect(barWidget, 0, this, 0); + disconnect(barWidget, nullptr, this, nullptr); } void KateViewBar::addPermanentBarWidget(KateViewBarWidget *barWidget) @@ -2632,7 +2637,7 @@ m_permanentBarWidget->hide(); m_stack->removeWidget(m_permanentBarWidget); - m_permanentBarWidget = 0; + m_permanentBarWidget = nullptr; if (hideBar) { m_stack->hide(); @@ -2647,7 +2652,7 @@ void KateViewBar::showBarWidget(KateViewBarWidget *barWidget) { - Q_ASSERT(barWidget != 0); + Q_ASSERT(barWidget != nullptr); if (barWidget != qobject_cast(m_stack->currentWidget())) { hideCurrentBarWidget(); diff -Nru ktexteditor-5.28.0/src/view/kateviewhelpers.h ktexteditor-5.31.0/src/view/kateviewhelpers.h --- ktexteditor-5.28.0/src/view/kateviewhelpers.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/kateviewhelpers.h 2017-02-05 11:12:49.000000000 +0000 @@ -329,7 +329,7 @@ ~KateViewEncodingAction(); - int mibForName(const QString &codecName, bool *ok = 0) const; + int mibForName(const QString &codecName, bool *ok = nullptr) const; QTextCodec *codecForMib(int mib) const; QTextCodec *currentCodec() const; @@ -356,7 +356,7 @@ public: Private(KateViewEncodingAction *parent) : q(parent), - currentSubAction(0) + currentSubAction(nullptr) { } @@ -386,7 +386,7 @@ friend class KateViewBar; public: - explicit KateViewBarWidget(bool addCloseButton, QWidget *parent = 0); + explicit KateViewBarWidget(bool addCloseButton, QWidget *parent = nullptr); virtual void closed() {} @@ -514,7 +514,7 @@ Q_OBJECT public: - explicit KateCommandLineBar(KTextEditor::ViewPrivate *view, QWidget *parent = 0); + explicit KateCommandLineBar(KTextEditor::ViewPrivate *view, QWidget *parent = nullptr); ~KateCommandLineBar(); void setText(const QString &text, bool selected = true); diff -Nru ktexteditor-5.28.0/src/view/kateviewinternal.cpp ktexteditor-5.31.0/src/view/kateviewinternal.cpp --- ktexteditor-5.28.0/src/view/kateviewinternal.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/view/kateviewinternal.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -76,7 +76,7 @@ , m_bmStart(doc()->newMovingRange(KTextEditor::Range::invalid(), KTextEditor::MovingRange::DoNotExpand)) , m_bmEnd(doc()->newMovingRange(KTextEditor::Range::invalid(), KTextEditor::MovingRange::DoNotExpand)) , m_bmLastFlashPos(doc()->newMovingCursor(KTextEditor::Cursor::invalid())) - , m_dummy(0) + , m_dummy(nullptr) // stay on cursor will avoid that the view scroll around on press return at beginning , m_startPos(doc()->buffer(), KTextEditor::Cursor(0, 0), Kate::TextCursor::StayOnInsert) @@ -99,7 +99,7 @@ , m_textHintTimer(this) , m_textHintDelay(500) , m_textHintPos(-1, -1) - , m_imPreeditRange(0) + , m_imPreeditRange(nullptr) { QList factories = KTextEditor::EditorPrivate::self()->inputModeFactories(); Q_FOREACH(KateAbstractInputModeFactory *factory, factories) { @@ -2690,7 +2690,9 @@ // Move cursor to end (or beginning) of selected word if (m_view->selection()) { +#if !defined(Q_OS_OSX) QApplication::clipboard()->setText(m_view->selectionText(), QClipboard::Selection); +#endif } moveCursorToSelectionEdge(); @@ -3241,22 +3243,26 @@ doc()->insertText(targetCursor, text, m_view->blockSelection()); KTextEditor::DocumentCursor startCursor(doc(), targetCursor); + KTextEditor::DocumentCursor endCursor1(doc(), targetCursor); + const int textLength = text.length(); if (event->dropAction() != Qt::CopyAction) { m_view->removeSelectedText(); + if (m_cursor.toCursor() < startCursor.toCursor()) { + startCursor.move(-textLength); + endCursor1.move(-textLength); + } } - KTextEditor::DocumentCursor endCursor1(doc(), startCursor); - if (!m_view->blockSelection()) { - endCursor1.move(text.length()); + endCursor1.move(textLength); } else { endCursor1.setColumn(startCursor.column() + selectionWidth); endCursor1.setLine(startCursor.line() + selectionHeight); } KTextEditor::Cursor endCursor(endCursor1); - qCDebug(LOG_KTE) << startCursor << "---(" << text.length() << ")---" << endCursor; + qCDebug(LOG_KTE) << startCursor << "---(" << textLength << ")---" << endCursor; setSelection(KTextEditor::Range(startCursor, endCursor)); editSetCursor(endCursor); @@ -3668,7 +3674,7 @@ if (m_imPreeditRange && e->preeditString().isEmpty()) { // delete the range and reset the pointer delete m_imPreeditRange; - m_imPreeditRange = 0L; + m_imPreeditRange = nullptr; qDeleteAll(m_imPreeditRangeChildren); m_imPreeditRangeChildren.clear(); diff -Nru ktexteditor-5.28.0/src/vimode/appcommands.cpp ktexteditor-5.31.0/src/vimode/appcommands.cpp --- ktexteditor-5.28.0/src/vimode/appcommands.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/appcommands.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -33,7 +33,7 @@ using namespace KateVi; //BEGIN AppCommands -AppCommands *AppCommands::m_instance = 0; +AppCommands *AppCommands::m_instance = nullptr; AppCommands::AppCommands() : KTextEditor::Command(QStringList() << QStringLiteral("q") << QStringLiteral("qa") << QStringLiteral("qall") << QStringLiteral("q!") << QStringLiteral("qa!") << QStringLiteral("qall!") @@ -56,7 +56,7 @@ AppCommands::~AppCommands() { - m_instance = 0; + m_instance = nullptr; } bool AppCommands::exec(KTextEditor::View *view, const QString &cmd, QString &msg, const KTextEditor::Range &) @@ -269,7 +269,7 @@ return it; } } - return Q_NULLPTR; + return nullptr; } void AppCommands::closeCurrentDocument() @@ -298,7 +298,7 @@ KTextEditor::Application *app = KTextEditor::Editor::instance()->application(); KTextEditor::MainWindow *mw = app->activeMainWindow(); KTextEditor::View *view = mw->activeView(); - KTextEditor::View *viewToRemove = Q_NULLPTR; + KTextEditor::View *viewToRemove = nullptr; while ((viewToRemove = findViewInDifferentSplitView(mw, view))) { mw->closeSplitView(viewToRemove); @@ -313,7 +313,7 @@ //END AppCommands //BEGIN KateViBufferCommand -BufferCommands *BufferCommands::m_instance = 0; +BufferCommands *BufferCommands::m_instance = nullptr; BufferCommands::BufferCommands() : KTextEditor::Command(QStringList() << QStringLiteral("ls") @@ -327,7 +327,7 @@ BufferCommands::~BufferCommands() { - m_instance = 0; + m_instance = nullptr; } bool BufferCommands::exec(KTextEditor::View *view, const QString &cmd, QString &, const KTextEditor::Range &) @@ -378,7 +378,7 @@ activateDocument(view, docs.at(idx - 1)); } else { // string argument: switch to the given file - KTextEditor::Document *doc = 0; + KTextEditor::Document *doc = nullptr; Q_FOREACH(KTextEditor::Document *it, docs) { if (it->documentName() == address) { diff -Nru ktexteditor-5.28.0/src/vimode/appcommands.h ktexteditor-5.31.0/src/vimode/appcommands.h --- ktexteditor-5.28.0/src/vimode/appcommands.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/appcommands.h 2017-02-05 11:12:49.000000000 +0000 @@ -44,7 +44,7 @@ bool help(KTextEditor::View *view, const QString &cmd, QString &msg) Q_DECL_OVERRIDE; static AppCommands* self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new AppCommands(); } return m_instance; @@ -92,7 +92,7 @@ bool help(KTextEditor::View *view, const QString &cmd, QString &msg) Q_DECL_OVERRIDE; static BufferCommands* self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new BufferCommands(); } return m_instance; diff -Nru ktexteditor-5.28.0/src/vimode/cmds.cpp ktexteditor-5.31.0/src/vimode/cmds.cpp --- ktexteditor-5.28.0/src/vimode/cmds.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/cmds.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -43,7 +43,7 @@ using namespace KateVi; //BEGIN ViCommands -Commands *Commands::m_instance = 0; +Commands *Commands::m_instance = nullptr; bool Commands::exec(KTextEditor::View *view, const QString &_cmd, QString &msg, const KTextEditor::Range &range) @@ -205,7 +205,7 @@ co->setIgnoreCase(false); return co; } - return 0L; + return nullptr; } const QStringList &Commands::mappingCommands() @@ -268,7 +268,7 @@ //END ViCommands //BEGIN SedReplace -SedReplace *SedReplace::m_instance = 0; +SedReplace *SedReplace::m_instance = nullptr; bool SedReplace::interactiveSedReplace(KTextEditor::ViewPrivate *, QSharedPointer interactiveSedReplace) { diff -Nru ktexteditor-5.28.0/src/vimode/cmds.h ktexteditor-5.31.0/src/vimode/cmds.h --- ktexteditor-5.28.0/src/vimode/cmds.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/cmds.h 2017-02-05 11:12:49.000000000 +0000 @@ -53,7 +53,7 @@ public: ~Commands() { - m_instance = 0; + m_instance = nullptr; } /** @@ -61,8 +61,7 @@ * @param view view to use for execution * @param cmd cmd string * @param msg message returned from running the command - * @param rangeStart first line in range - * @param rangeEnd last line in range + * @param range range to execute command on * @return success */ bool exec(class KTextEditor::View *view, const QString &cmd, QString &msg, @@ -83,7 +82,7 @@ static Commands *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new Commands(); } return m_instance; @@ -106,12 +105,12 @@ public: ~SedReplace() { - m_instance = 0; + m_instance = nullptr; } static SedReplace *self() { - if (m_instance == 0) { + if (m_instance == nullptr) { m_instance = new SedReplace(); } return m_instance; diff -Nru ktexteditor-5.28.0/src/vimode/emulatedcommandbar/commandmode.h ktexteditor-5.31.0/src/vimode/emulatedcommandbar/commandmode.h --- ktexteditor-5.28.0/src/vimode/emulatedcommandbar/commandmode.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/emulatedcommandbar/commandmode.h 2017-02-05 11:12:49.000000000 +0000 @@ -46,11 +46,11 @@ virtual ~CommandMode() { } - virtual bool handleKeyPress ( const QKeyEvent* keyEvent ); - virtual void editTextChanged(const QString &newText); - virtual CompletionStartParams completionInvoked(Completer::CompletionInvocation invocationType); - virtual void completionChosen(); - void deactivate(bool wasAborted); + bool handleKeyPress ( const QKeyEvent* keyEvent ) Q_DECL_OVERRIDE; + void editTextChanged(const QString &newText) Q_DECL_OVERRIDE; + CompletionStartParams completionInvoked(Completer::CompletionInvocation invocationType) Q_DECL_OVERRIDE; + void completionChosen() Q_DECL_OVERRIDE; + void deactivate(bool wasAborted) Q_DECL_OVERRIDE; QString executeCommand(const QString &commandToExecute); private: CompletionStartParams activateCommandCompletion(); diff -Nru ktexteditor-5.28.0/src/vimode/emulatedcommandbar/emulatedcommandbar.h ktexteditor-5.31.0/src/vimode/emulatedcommandbar/emulatedcommandbar.h --- ktexteditor-5.28.0/src/vimode/emulatedcommandbar/emulatedcommandbar.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/emulatedcommandbar/emulatedcommandbar.h 2017-02-05 11:12:49.000000000 +0000 @@ -56,7 +56,7 @@ public: enum Mode { NoMode, SearchForward, SearchBackward, Command }; - explicit EmulatedCommandBar(KateViInputMode* viInputMode, InputModeManager *viInputModeManager, QWidget *parent = 0); + explicit EmulatedCommandBar(KateViInputMode* viInputMode, InputModeManager *viInputModeManager, QWidget *parent = nullptr); virtual ~EmulatedCommandBar(); void init(Mode mode, const QString &initialText = QString()); bool isActive(); diff -Nru ktexteditor-5.28.0/src/vimode/emulatedcommandbar/interactivesedreplacemode.h ktexteditor-5.31.0/src/vimode/emulatedcommandbar/interactivesedreplacemode.h --- ktexteditor-5.28.0/src/vimode/emulatedcommandbar/interactivesedreplacemode.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/emulatedcommandbar/interactivesedreplacemode.h 2017-02-05 11:12:49.000000000 +0000 @@ -47,8 +47,8 @@ { return m_isActive; } - virtual bool handleKeyPress(const QKeyEvent* keyEvent); - virtual void deactivate(bool wasAborted); + bool handleKeyPress(const QKeyEvent* keyEvent) Q_DECL_OVERRIDE; + void deactivate(bool wasAborted) Q_DECL_OVERRIDE; QWidget *label(); private: void updateInteractiveSedReplaceLabelText(); diff -Nru ktexteditor-5.28.0/src/vimode/emulatedcommandbar/searchmode.h ktexteditor-5.31.0/src/vimode/emulatedcommandbar/searchmode.h --- ktexteditor-5.28.0/src/vimode/emulatedcommandbar/searchmode.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/emulatedcommandbar/searchmode.h 2017-02-05 11:12:49.000000000 +0000 @@ -47,11 +47,11 @@ }; enum class SearchDirection { Forward, Backward }; void init(SearchDirection); - virtual bool handleKeyPress ( const QKeyEvent* keyEvent ); - virtual void editTextChanged(const QString &newText); - virtual CompletionStartParams completionInvoked(Completer::CompletionInvocation invocationType); - virtual void completionChosen(); - virtual void deactivate(bool wasAborted); + bool handleKeyPress ( const QKeyEvent* keyEvent ) Q_DECL_OVERRIDE; + void editTextChanged(const QString &newText) Q_DECL_OVERRIDE; + CompletionStartParams completionInvoked(Completer::CompletionInvocation invocationType) Q_DECL_OVERRIDE; + void completionChosen() Q_DECL_OVERRIDE; + void deactivate(bool wasAborted) Q_DECL_OVERRIDE; bool isSendingSyntheticSearchCompletedKeypress() const { return m_isSendingSyntheticSearchCompletedKeypress; diff -Nru ktexteditor-5.28.0/src/vimode/inputmodemanager.cpp ktexteditor-5.31.0/src/vimode/inputmodemanager.cpp --- ktexteditor-5.28.0/src/vimode/inputmodemanager.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/inputmodemanager.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -222,7 +222,7 @@ // We have to be clever about which widget we dispatch to, as we can trigger // shortcuts if we're not careful (even if Vim mode is configured to steal shortcuts). QKeyEvent k(QEvent::KeyPress, key, mods, text); - QWidget *destWidget = NULL; + QWidget *destWidget = nullptr; if (QApplication::activePopupWidget()) { // According to the docs, the activePopupWidget, if present, takes all events. destWidget = QApplication::activePopupWidget(); @@ -323,7 +323,7 @@ case ViMode::ReplaceMode: return m_viReplaceMode; } - return NULL; + return nullptr; } void InputModeManager::viEnterNormalMode() diff -Nru ktexteditor-5.28.0/src/vimode/keyparser.cpp ktexteditor-5.31.0/src/vimode/keyparser.cpp --- ktexteditor-5.28.0/src/vimode/keyparser.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/keyparser.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -25,7 +25,7 @@ using namespace KateVi; -KeyParser *KeyParser::m_instance = NULL; +KeyParser *KeyParser::m_instance = nullptr; KeyParser::KeyParser() { @@ -34,7 +34,7 @@ KeyParser *KeyParser::self() { - if (m_instance == NULL) { + if (m_instance == nullptr) { m_instance = new KeyParser(); } diff -Nru ktexteditor-5.28.0/src/vimode/keyparser.h ktexteditor-5.31.0/src/vimode/keyparser.h --- ktexteditor-5.28.0/src/vimode/keyparser.h 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/keyparser.h 2017-02-05 11:12:49.000000000 +0000 @@ -45,7 +45,7 @@ static KeyParser *self(); ~KeyParser() { - m_instance = NULL; + m_instance = nullptr; } const QString encodeKeySequence(const QString &keys) const; diff -Nru ktexteditor-5.28.0/src/vimode/modes/modebase.cpp ktexteditor-5.31.0/src/vimode/modes/modebase.cpp --- ktexteditor-5.28.0/src/vimode/modes/modebase.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/modes/modebase.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -1250,7 +1250,7 @@ int curr_cursor_y = globalPos.y(); int curr_cursor_x = globalPos.x(); - KTextEditor::ViewPrivate *bestview = NULL; + KTextEditor::ViewPrivate *bestview = nullptr; int best_x1 = -1, best_x2 = -1, best_y1 = -1, best_y2 = -1, best_center_y = -1, best_center_x = -1; if (direction == Next && visible_views.count() != 1) { @@ -1278,7 +1278,7 @@ if (view != m_view && x2 <= curr_x1 && (x2 > best_x2 || (x2 == best_x2 && qAbs(curr_cursor_y - center_y) < qAbs(curr_cursor_y - best_center_y)) || - bestview == NULL)) { + bestview == nullptr)) { bestview = view; best_x2 = x2; best_center_y = center_y; @@ -1288,7 +1288,7 @@ if (view != m_view && x1 >= curr_x2 && (x1 < best_x1 || (x1 == best_x1 && qAbs(curr_cursor_y - center_y) < qAbs(curr_cursor_y - best_center_y)) || - bestview == NULL)) { + bestview == nullptr)) { bestview = view; best_x1 = x1; best_center_y = center_y; @@ -1298,7 +1298,7 @@ if (view != m_view && y1 >= curr_y2 && (y1 < best_y1 || (y1 == best_y1 && qAbs(curr_cursor_x - center_x) < qAbs(curr_cursor_x - best_center_x)) || - bestview == NULL)) { + bestview == nullptr)) { bestview = view; best_y1 = y1; best_center_x = center_x; @@ -1307,7 +1307,7 @@ if (view != m_view && y2 <= curr_y1 && (y2 > best_y2 || (y2 == best_y2 && qAbs(curr_cursor_x - center_x) < qAbs(curr_cursor_x - best_center_x)) || - bestview == NULL)) { + bestview == nullptr)) { bestview = view; best_y2 = y2; best_center_x = center_x; @@ -1319,7 +1319,7 @@ } } - if (bestview != NULL) { + if (bestview != nullptr) { bestview->setFocus(); bestview->setInputMode(KTextEditor::View::ViInputMode); } diff -Nru ktexteditor-5.28.0/src/vimode/motion.cpp ktexteditor-5.31.0/src/vimode/motion.cpp --- ktexteditor-5.28.0/src/vimode/motion.cpp 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/src/vimode/motion.cpp 2017-02-05 11:12:49.000000000 +0000 @@ -24,7 +24,7 @@ Motion::Motion(NormalViMode *parent, const QString &pattern, Range(NormalViMode::*commandMethod)(), unsigned int flags) - : Command(parent, pattern, 0, flags) + : Command(parent, pattern, nullptr, flags) { m_ptr2commandMethod = commandMethod; }

        These marks will show bookmarks, for instance.Bookmarks menu." msgstr "Yer imleri menüsünde, yer imlerinin nasıl sıralanacağını seçin." #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Yer İmleri Menüsünü Sırala" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -470,13 +549,14 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "&Oluşturulma tarihine göre" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Yer imleri, yerleştirildikleri satırların numarasıyla sıralı olarak " @@ -484,47 +564,54 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "&Konuma göre" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Komut" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Tanımlama" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Girdiyi Düzenle..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Girdiyi Kaldır" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Girdi Ekle..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Haha fazla Not" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    Daten wedderherstellen (Hülp)

    Nich all Daten laat sik wedderherstellen. Villicht is de " -#~ "Utlagerndatei nich komplett.

    " - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Overwrite" -#~ msgstr "Överschrieven" - -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    The file was not closed appropriately. Do you want to recover the " -#~ "data?

    " -#~ msgstr "" -#~ "\n" -#~ "

    Daten wedderherstellen (Hülp)

    De Datei wöör nich propper tomaakt. " -#~ "Wullt Du de Daten wedderherstellen?

    " - -#~ msgid "Cancel" -#~ msgstr "Afbreken" - -#~ msgid "Stop" -#~ msgstr "Anhollen" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column the color name" -#~ msgid "Color Role" -#~ msgstr "Klören" - -#, fuzzy -#~| msgid "Colors" -#~ msgctxt "@title:column a color button" -#~ msgid "Color" -#~ msgstr "Klören" - -#~ msgid "Export HlColors..." -#~ msgstr "Markeerklören exporteren…" - -#~ msgid "Import HlColors..." -#~ msgstr "Markeerklören importeren…" - -#~ msgid "Template Background" -#~ msgstr "Vörlaag för Achtergrund" - -#~ msgid "Collapse One Local Level" -#~ msgstr "En lokaal Evene tosamenfoolden" - -#~ msgid "Expand One Local Level" -#~ msgstr "En lokaal Evene utfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 1" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 2" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 3" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 4" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 5" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 6" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 7" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 8" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "Collapse Level 9" -#~ msgstr "Böverste Evene tosamenfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 1" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 2" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 3" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 4" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 5" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 6" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 7" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 8" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Expand Toplevel" -#~ msgid "Expand Level 9" -#~ msgstr "Böverste Evene utfoolden" - -#, fuzzy -#~| msgid "Collapse Toplevel" -#~ msgid "&Collapse" -#~ msgstr "Böverste Evene tosamenfoolden" - -#~ msgid "&Auto completion enabled" -#~ msgstr "&Autom. Kompletteren anmaakt" - -#, fuzzy -#~ msgid "Form" -#~ msgstr "Form" - -#~ msgid "" -#~ "A KDE text-editor component could not be found;\n" -#~ "please check your KDE installation." -#~ msgstr "" -#~ "Keen KDE-Texteditorkomponent funnen!\n" -#~ "Överprööv bitte Dien KDE-Installatschoon." - -#~ msgid "Use this to close the current document" -#~ msgstr "Dat aktuelle Dokment tomaken" - -#~ msgid "Use this command to create a new document" -#~ msgstr "Mit dissen Befehl kannst Du dat en nieg Dokment opstellen" - -#~ msgid "Use this command to open an existing document for editing" -#~ msgstr "" -#~ "Mit dissen Befehl kannst Du en vörhannen Dokment opmaken un bewerken" - -#~ msgid "" -#~ "This lists files which you have opened recently, and allows you to easily " -#~ "open them again." -#~ msgstr "" -#~ "List de tolest opmaakten Dateien op, Du kannst se denn eenfach wedder " -#~ "opmaken." - -#~ msgid "&New Window" -#~ msgstr "&Nieg Finster" - -#~ msgid "Create another view containing the current document" -#~ msgstr "En anner Ansicht vun't aktuelle Dokment opstellen" - -#~ msgid "Choose Editor..." -#~ msgstr "Editor utsöken..." - -#~ msgid "Override the system-wide setting for the default editing component" -#~ msgstr "De Systeeminstellen för de Editorkomponent övergahn" - -#~ msgid "Close the current document view" -#~ msgstr "De aktuelle Ansicht vun't Dokment tomaken" - -#~ msgid "Use this command to show or hide the view's statusbar" -#~ msgstr "" -#~ "Mit dissen Befehl kannst Du de Ansicht ehren Statusbalken wiesen oder " -#~ "versteken" - -#~ msgid "Sho&w Path" -#~ msgstr "Padd &wiesen" - -#~ msgid "Show the complete document path in the window caption" -#~ msgstr "Den helen Padd vun't Dokment binnen den Finstertitel wiesen" - -#~ msgid "Configure the application's keyboard shortcut assignments." -#~ msgstr "De Tastkombinatschonen för't Programm instellen" - -#~ msgid "Configure which items should appear in the toolbar(s)." -#~ msgstr "De Knööp fastleggen, de op de Warktüüchbalkens wiest warrt" - -#~ msgid "&About Editor Component" -#~ msgstr "&Vertell wat över de Editorkomponent" - -#~ msgid " INS " -#~ msgstr " Inf " - -#~ msgid " LINE " -#~ msgstr " Reeg " - -#~ msgid "Open File" -#~ msgstr "Datei opmaken" - -#~ msgid "" -#~ "The given file could not be read, check if it exists or if it is readable " -#~ "for the current user." -#~ msgstr "" -#~ "De angeven Datei lett sik nich lesen. Prööv bitte, wat ehr dat gifft un " -#~ "wat de aktuelle Bruker ehr lesen dörv." - -#~ msgid " BLOCK " -#~ msgstr " Block " - -#~ msgid "Read the contents of stdin" -#~ msgstr "Den Inholt vun de Standardingaav (stdin) lesen" - -#~ msgid "Set encoding for the file to open" -#~ msgstr "Koderen för de Datei angeven, de Du opmaken wullt" - -#~ msgid "Navigate to this line" -#~ msgstr "Na disse Reeg jumpen" - -#~ msgid "Navigate to this column" -#~ msgstr "Na dissen Striep jumpen" - -#~ msgid "KWrite" -#~ msgstr "KWrite" - -#~ msgid "KWrite - Text Editor" -#~ msgstr "KWrite - Texteditor" - -#~ msgid "(c) 2000-2005 The Kate Authors" -#~ msgstr "(c) 2000-2005, De Kate-Autoren" - -#~ msgid "Choose Editor Component" -#~ msgstr "Editorkomponent utsöken" - -#~ msgid "The swap file is broken. Recovery might be incomplete." -#~ msgstr "" -#~ "De Utlagerndatei is schaadhaftig. Wedderherstellen is villicht nich " -#~ "komplett." - -#~ msgid "Directory containing tests, basedir and output directories." -#~ msgstr "Orner mit Tests, den Basisorner un de Utgaavornern." - -#~ msgid "" -#~ "Compare failures of this testrun against snapshot . Defaults to " -#~ "the most recently captured failure snapshot or none if none exists." -#~ msgstr "" -#~ "Verglieken vun dissen Testloop mit Snappschööt . As " -#~ "Vörinstellen warrt de niegste sekerte Snappschööt bruukt oder keen, wenn " -#~ "dat keen gifft." - -#~ msgid "Do not suppress debug output" -#~ msgstr "Fehlersöök-Utgaav wiesen" - -#~ msgid "Regenerate baseline (instead of checking)" -#~ msgstr "Grundtostand wedderherstellen (ansteed vun en Prööv)" - -#~ msgid "Keep output files even on success" -#~ msgstr "Utgaavdateien ok bi Spood wohren" - -#~ msgid "Save failures of this testrun as failure snapshot " -#~ msgstr "Fehlers vun dissen Testloop as Snappschööt sekern" - -#~ msgid "Show the window while running tests" -#~ msgstr "Dat Finster wiesen, wielt de Tests loopt" - -#~ msgid "Only run a single test. Multiple options allowed." -#~ msgstr "Bloots en enkel Test opropen. Lett sik mehr as eenmaal bruken." - -#~ msgid "Put output in instead of /output" -#~ msgstr "Utgaav na ansteed vun /output sekern" - -#~ msgid "Run each test case in a separate process." -#~ msgstr "Elk Test as egen Perzess utföhren" - -#~ msgid "" -#~ "Directory containing tests, basedir and output directories. Only regarded " -#~ "if -b is not specified." -#~ msgstr "" -#~ "Orner mit Tests, den Basisorner un de Utgaavornern. Warrt bloots denn " -#~ "bruukt, wenn Du \"-b\" nich angeven hest." - -#~ msgid "" -#~ "Relative path to testcase, or directory of testcases to be run " -#~ "(equivalent to -t)." -#~ msgstr "" -#~ "Relativ Padd na den opsett Test, oder Orner mit opsett Tests, de Du " -#~ "utföhren wullt (liek as \"-t\")" - -#~ msgid "TestRegression" -#~ msgstr "Leegutwickeln-Test" - -#~ msgid "Regression tester for kate" -#~ msgstr "Leegutwickeln-Tester för Kate" - -#~ msgid "Error: " -#~ msgstr "Fehler: " - -#~ msgid "Error calling '%1'. Please check for syntax errors." -#~ msgstr "Fehler bi't Opropen vun \"%1\". Kiek bitte na Syntaxfehlers." - -#~ msgid "" -#~ "If this is enabled, the editor will calculate the number of spaces up to " -#~ "the next tab position as defined by the tab width, and insert that number " -#~ "of spaces instead of a TAB character." -#~ msgstr "" -#~ "Wenn anmaakt, reekt de Editor mit de angeven Tabulatorbreed de Tall vun " -#~ "Freetekens to de nakamen Tab-Positschoon ut, un föögt disse Tall vun " -#~ "Freetekens ansteed vun en Tabteken in." - -#~ msgid "&Insert spaces instead of tabulators" -#~ msgstr "&Free- ansteed vun Tabtekens infögen" - -#~ msgctxt "Encodings menu" -#~ msgid "Disabled" -#~ msgstr "Utmaakt" - -#, fuzzy -#~| msgid "" -#~| "The file %1 was opened with UTF-8 encoding but contained invalid " -#~| "characters. It is set to read-only mode, as saving might destroy its " -#~| "content. Either reopen the file with the correct encoding chosen or " -#~| "enable the read-write mode again in the menu to be able to edit it." -#~ msgid "" -#~ "The file %1 was opened with 2 encoding but contained invalid characters. " -#~ "It is set to read-only mode, as saving might destroy its content. Either " -#~ "reopen the file with the correct encoding chosen or enable the read-write " -#~ "mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "De Datei \"%1\" wöör mit de Koderen UTF-8 opmaakt, man barg leeg Tekens. " -#~ "Se wöör nu op \"Bloots leesbor\" sett, anners mag en Sekern ehr Inholt " -#~ "twei maken. Du kannst de Datei nu mit de richtige Koderen nochmaal " -#~ "opmaken, oder ehr över dat Menü wedder op \"Lees- un schriefbor\" setten " -#~ "un denn bewerken." - -#~ msgid "Binary File Opened" -#~ msgstr "Binere Datei opmaakt" - -#~ msgid "Broken UTF-8 File Opened" -#~ msgstr "Schaadhaftig UTF-8-Datei opmaakt" - -#~ msgid "Universal" -#~ msgstr "Universal" - -#~ msgid "&Word Wrap Document" -#~ msgstr "Regen vun't Dokment ü&mbreken" - -#~ msgid "Modify search behavior" -#~ msgstr "Söökbedregen topassen" - -#~ msgid "&Options" -#~ msgstr "&Optschonen" - -#~ msgid "From &cursor" -#~ msgstr "Vun den &Blinker af" - -#~ msgid "Hi&ghlight all" -#~ msgstr "All r&utheven" - -#~ msgid "Add &BOM" -#~ msgstr "&Bytereeg-Mark ( „BOM“) tofögen" - -#~ msgid "(c) 2000-2008 The Kate Authors" -#~ msgstr "(c) 2000-2008, De Kate-Autoren" - -#~ msgid "Developer & Highlight wizard" -#~ msgstr "Schriever un Syntaxmarkeren-Baas" - -#~ msgid "Unable to find 'katepartapi.js'" -#~ msgstr "\"katepartapi.js\" lett sik nich finnen" - -#~ msgid "Unable to read file: '%1'" -#~ msgstr "Datei \"%1\" lett sik nich opmaken" - -#~ msgid "Failed to start interpreter for script %1, command %2" -#~ msgstr "Interpreter för Skript \"%1\", Befehl \"%2\" lett sik nich opropen" - -#~ msgid "This executes the current document as JavaScript within Kate." -#~ msgstr "Dat aktuelle Dokment as JavaScript binnen Kate utföhren" - -#~ msgid "On-the-Fly Spellcheck enabled" -#~ msgstr "Schriefwies-Direkprööv anmaakt" - -#~ msgid "Success" -#~ msgstr "Resultaat" - -#~ msgid "Move Character Right" -#~ msgstr "Een Bookstaav na rechts gahn" - -#~ msgid "Move Character Left" -#~ msgstr "Een Bookstaav na links gahn" - -#~ msgid "&Overwrite" -#~ msgstr "Ö&verschrieven" - -#~ msgid "Plain text\t\t(Alt+1)" -#~ msgstr "Eenfach Text\t\t(Alt+1)" - -#~ msgid "Whole words\t(Alt+2)" -#~ msgstr "Hele Wöör\t\t(Alt+2)" - -#~ msgid "Escape sequences\t(Alt+3)" -#~ msgstr "Schuul-Sequenzen\t(Alt+3)" - -#~ msgid "Regular expression\t(Alt+4)" -#~ msgstr "Reguleer Utdruck\t(Alt+4)" - -#~ msgid "&Dynamic word wrap" -#~ msgstr "&Dünaamsch Reegümbrook" - -#~ msgid "(c) 2000-2007 The Kate Authors" -#~ msgstr "(c) 2000-2007, De Schrievers vun Kate" - -#~ msgid "Line must be at least 1" -#~ msgstr "Reeg mutt tominnst 1 wesen." - -#~ msgid "There is not that many lines in this document" -#~ msgstr "So veel Regen hett dat Dokment nich" - -#~ msgid "KSqueezedTextLabel" -#~ msgstr "KTosamenPramstTextBeteker" - -#~ msgid "Add special item to search pattern" -#~ msgstr "Besünner Element dat Söökmuster tofögen" - -#~ msgid "" -#~ "Resolve placeholders (\\0 to \\9) and escape sequences (\\n, \\t, ..)" -#~ msgstr "" -#~ "Platzhollers (\\0 ... \\9) un Schuulsequenzen (\\n, \\t, ...) oplösen" - -#~ msgid "Add special item to replacement text" -#~ msgstr "Besünner Element den Tuuschtext tofögen" - -#~ msgid "Highlight all matches" -#~ msgstr "All Drepers rutheven" - -#~ msgid "Match case" -#~ msgstr "Op Grootschrieven oppassen" - -#~ msgid "Start search from cursor, not document start" -#~ msgstr "Söök bi den Blinker anfangen, nich bi den Dokmentanfang" - -#~ msgid "From cursor" -#~ msgstr "Vun den Blinker af" - -#~ msgid "Selection only " -#~ msgstr "Bloots Köör " - -#~ msgctxt "Language" -#~ msgid "Ddoc" -#~ msgstr "Ddoc" - -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "

    When selected, vi " -#~ "commands will override Kate's built-in commands. For example: Ctrl+R will " -#~ "redo, and override the standard action (showing the search & replace " -#~ "dialog).

    " -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "

    Is dit anmaakt, " -#~ "överschrievt de VI-Befehlen Kate ehr inbuut Akschonen. Strg+R a.B. " -#~ "wedderhaalt en Akschoon denn, dat överschrifft de Standardakschoon (Söök- " -#~ "un Utwesseldialoog wiesen).

    " - -#~ msgid "-- VI: COMMAND LINE --" -#~ msgstr "-- VI: Befehlsreeg --" - -#~ msgid "Shortcuts Configuration" -#~ msgstr "Tastkombinatschonen instellen" - -#~ msgid "" -#~ "You are trying to save a python file as non ASCII, without specifiying a " -#~ "correct source encoding line for encoding \"%1\"" -#~ msgstr "" -#~ "Du büst jüst bi un sekerst en Python-Datei nich mit ASCII-Koderen, man " -#~ "hest ok keen propper Bornkodeerreeg angeven, mit de sik \"%1\" koderen " -#~ "lett." - -#~ msgid "No encoding header" -#~ msgstr "Keen Koderen-Koppreeg" - -#~ msgid "" -#~ "The spelling program could not be started. Please make sure you have set " -#~ "the correct spelling program and that it is properly configured and in " -#~ "your PATH." -#~ msgstr "" -#~ "De Klookschriever lett sik nich starten. Bitte prööv, wat Du dat richtige " -#~ "Programm hest, dat richtig instellt is un sik dat ok över Dien PATH-" -#~ "Variable finnen lett." - -#~ msgid "The spelling program seems to have crashed." -#~ msgstr "As dat lett is de Klookschriever afstört." - -#~ msgid "unknown" -#~ msgstr "Nich begäng" - -#~ msgid "Context '%1': Incorrect number of arguments in '%2'" -#~ msgstr "Kontext \"%1\": Leeg Tall vun Argumenten in \"%2\"" - -#~ msgid "Exception, line %1: %2" -#~ msgstr "Fehler, Reeg %1: %2" - -#~ msgid "Could not access view." -#~ msgstr "Keen Togriep op de Ansicht" - -#~ msgid "Could not access lookup object." -#~ msgstr "Keen Togriep op dat Nakiekobjekt" - -#~ msgid "Exception: Unable to find function '%1': %2" -#~ msgstr "Utnahm: Funkschoon \"%1\" lett sik nich finnen: %2" - -#~ msgid "Exception in line %1: %2" -#~ msgstr "Utnahm in Reeg %1: %2" - -#~ msgid "Sort: None" -#~ msgstr "Sorteren: Keen" - -#~ msgid "Filter: None" -#~ msgstr "Filter: Keen" - -#~ msgid "Setup" -#~ msgstr "Inrichten" - -#~ msgid "&Maximum undo steps:" -#~ msgstr "&Hööchsttall Torüchnehm-Schreed:" - -#~ msgid "" -#~ "The file %1 was opened with UTF-8 encoding but contained invalid " -#~ "characters. It is set to read-only mode, as saving might destroy it's " -#~ "content. Either reopen the file with the correct encoding chosen or " -#~ "enable the read-write mode again in the menu to be able to edit it." -#~ msgstr "" -#~ "De Datei \"%1\" wöör mit de Koderen UTF-8 opmaakt, man barg leeg Tekens. " -#~ "Se wöör nu op \"Bloots leesbor\" sett, anners mag en Sekern ehren Inholt " -#~ "tweimaken. Du kannst de Datei nu mit de richtige Koderen nochmaal " -#~ "opmaken, oder ehr över dat Menü wedder op \"Lees- un schriefbor\" setten " -#~ "un denn bewerken." - -#~ msgid "Highlight the whole bracket matching expression" -#~ msgstr "Den helen passen Klemmenutdruck rutheven" - -#~ msgid " Static" -#~ msgstr " Fastleggen" - -#~ msgid "Print syntax &guide" -#~ msgstr "Syntax&anwiesen drucken" - -#~ msgid "" -#~ "

    Access " -#~ "Grouping properties

    " -#~ msgstr "" -#~ "

    Togriepkoppel-Egenschappen

    " - -#~ msgid "" -#~ "

    Item " -#~ "Grouping properties

    " -#~ msgstr "" -#~ "

    Elementkoppel-Egenschappen

    " - -#~ msgid "Print &selected text only" -#~ msgstr "Bloots &Markeren drucken" - -#~ msgid "" -#~ "

    This option is only available if some text is selected in the document." -#~ "

    If available and enabled, only the selected text is printed.

    " -#~ msgstr "" -#~ "

    Disse Optschoon is bloots verföögbor, wenn in't Dokment Text markeert " -#~ "is.

    Wenn se verföögbor un anschalt is, warrt bloots de markeerte " -#~ "Text utdruckt.

    " - -#~ msgid "Print %1" -#~ msgstr "%1 drucken" - -#~ msgid "Nowhere" -#~ msgstr "Narms" - -#~ msgid "Selection Only" -#~ msgstr "Bloots Markeren" - -#~ msgid "Selection, then Current Word" -#~ msgstr "Markeren, denn aktuell Woort" - -#~ msgid "Current Word Only" -#~ msgstr "Bloots aktuell Woort" - -#~ msgid "Current Word, then Selection" -#~ msgstr "Aktuell Woort, denn Markeren" - -#~ msgid "Smart search t&ext from:" -#~ msgstr "Plietsch Söökt&ext infögen ut:" - -#~ msgid "" -#~ "

    This determines where a view will get the search text from \n" -#~ "(this will be automatically entered into the Find Text dialog): \n" -#~ "

    \n" -#~ "

    \n" -#~ "

      \n" -#~ "
    • Nowhere: Don't guess the search text.\n" -#~ "
    • \n" -#~ "
    • Selection Only: Use the current text selection, \n" -#~ "if available.\n" -#~ "
    • \n" -#~ "
    • Selection, then Current Word: Use the current \n" -#~ "selection if available, otherwise use the current word.\n" -#~ "
    • \n" -#~ "
    • Current Word Only: Use the word that the cursor \n" -#~ "is currently resting on, if available.\n" -#~ "
    • \n" -#~ "
    • Current Word, then Selection: Use the current \n" -#~ "word if available, otherwise use the current selection.\n" -#~ "
    • \n" -#~ "
    \n" -#~ "

    \n" -#~ "

    \n" -#~ "Note that, in all the above modes, if a search string has \n" -#~ "not been or cannot be determined, then the Find Text Dialog \n" -#~ "will fall back to the last search text.\n" -#~ "

    " -#~ msgstr "" -#~ "

    Leggt fast, woneem de Text wegkummt, de na't Söökfeld inföögt warrt:\n" -#~ "

    \n" -#~ "

    \n" -#~ "

      \n" -#~ "
    • Narms: Keen Text warrt inföögt.\n" -#~ "
    • \n" -#~ "
    • Bloots Markeren: Bruukt - wenn vörhannen - de aktuelle Köör.\n" -#~ "
    • \n" -#~ "
    • Köör, denn aktuell Woort: Bruukt - wenn vörhannen - de\n" -#~ "aktuelle Köör, sünst dat aktuelle Woort.\n" -#~ "
    • \n" -#~ "
    • Bloots aktuell Woort: Bruukt - wenn mööglich - dat Woort,\n" -#~ "binnen dat de Blinker jüst steiht.\n" -#~ "
    • \n" -#~ "
    • Aktuell Woort, denn Köör: Bruukt - wenn mööglich - dat\n" -#~ "aktuelle Woort, sünst de aktuelle Köör.\n" -#~ "
    • \n" -#~ "
    \n" -#~ "

    \n" -#~ "

    \n" -#~ "Beacht bitte, dat jümmers de verleden Sööktext bruukt warrt,\n" -#~ "wenn de baven utsöchte Metood keen Resultaat broch.\n" -#~ "

    " - -#~ msgid "Capture reference 1" -#~ msgstr "Söökresuktaat 1" - -#~ msgid "Capture reference 2" -#~ msgstr "Söökresultaat 2" - -#~ msgid "Capture reference 3" -#~ msgstr "Söökresultaat 3" - -#~ msgid "Capture reference 4" -#~ msgstr "Söökresultaat 4" - -#~ msgid "Capture reference 5" -#~ msgstr "Söökresultaat 5" - -#~ msgid "Capture reference 6" -#~ msgstr "Söökresultaat 6" - -#~ msgid "Capture reference 7" -#~ msgstr "Söökresultaat 7" - -#~ msgid "Capture reference 8" -#~ msgstr "Söökresultaat 8" - -#~ msgid "Capture reference 9" -#~ msgstr "Söökresultaat 9" - -#~ msgid "NORM" -#~ msgstr " Norm " - -#~ msgid " NORM " -#~ msgstr " Norm " - -#~ msgid "&From cursor" -#~ msgstr "Vun den &Blinker af" - -#~ msgid "&Highlight all" -#~ msgstr "&All rutheven" - -#~ msgid "Unspecified Scope" -#~ msgstr "Nich angeven Rebeet" - -#~ msgid "Unspecified Access" -#~ msgstr "Nich angeven Togriep" - -#~ msgid "Unspecified Item Type" -#~ msgstr "Nich angeven Elementtyp" diff -Nru ktexteditor-5.28.0/po/ne/ktexteditor5.po ktexteditor-5.31.0/po/ne/ktexteditor5.po --- ktexteditor-5.28.0/po/ne/ktexteditor5.po 2016-11-05 14:57:58.000000000 +0000 +++ ktexteditor-5.31.0/po/ne/ktexteditor5.po 2017-02-05 11:12:49.000000000 +0000 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: katepart4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2016-10-31 06:54+0000\n" +"POT-Creation-Date: 2017-01-21 03:58+0100\n" "PO-Revision-Date: 2007-08-19 14:23+0545\n" "Last-Translator: Nabin Gautam \n" "Language-Team: Nepali \n" @@ -28,262 +28,318 @@ "\n" #: completion/katecompletionconfig.cpp:42 +#, kde-format msgid "Code Completion Configuration" msgstr "सङ्केत समाप्ति कन्फिगरेसन" #: completion/katecompletionconfig.cpp:116 #: completion/katecompletionconfig.cpp:145 +#, kde-format msgid "Always" msgstr "सधैँ" #: completion/katecompletionmodel.cpp:148 +#, kde-format msgid "Argument-hints" msgstr "तर्क सङ्केत" #: completion/katecompletionmodel.cpp:149 +#, kde-format msgid "Best matches" msgstr "" #: completion/katecompletionmodel.cpp:796 +#, kde-format msgid "Namespaces" msgstr "नेमस्पेस" #: completion/katecompletionmodel.cpp:798 +#, kde-format msgid "Classes" msgstr "वर्ग" #: completion/katecompletionmodel.cpp:800 +#, kde-format msgid "Structs" msgstr "स्ट्रक्ट" #: completion/katecompletionmodel.cpp:802 +#, kde-format msgid "Unions" msgstr "संघ" #: completion/katecompletionmodel.cpp:804 +#, kde-format msgid "Functions" msgstr "प्रकार्य" #: completion/katecompletionmodel.cpp:806 +#, kde-format msgid "Variables" msgstr "चल" #: completion/katecompletionmodel.cpp:808 +#, kde-format msgid "Enumerations" msgstr "गणना" #: completion/katecompletionmodel.cpp:1320 +#, kde-format msgid "Prefix" msgstr "उपसर्ग" #: completion/katecompletionmodel.cpp:1322 +#, kde-format msgid "Icon" msgstr "प्रतिमा" #: completion/katecompletionmodel.cpp:1324 +#, kde-format msgid "Scope" msgstr "क्षेत्र" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: completion/katecompletionmodel.cpp:1326 #: dialogs/commandmenuconfigwidget.ui:22 dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Name" msgstr "नाम" #: completion/katecompletionmodel.cpp:1328 +#, kde-format msgid "Arguments" msgstr "तर्क" #: completion/katecompletionmodel.cpp:1330 +#, kde-format msgid "Postfix" msgstr "प्रत्यय" #: completion/katecompletionmodel.cpp:2036 +#, kde-format msgid "Public" msgstr "सार्वजनिक" #: completion/katecompletionmodel.cpp:2039 +#, kde-format msgid "Protected" msgstr "सुरक्षित" #: completion/katecompletionmodel.cpp:2042 +#, kde-format msgid "Private" msgstr "निजी" #: completion/katecompletionmodel.cpp:2045 +#, kde-format msgid "Static" msgstr "स्थिर" #: completion/katecompletionmodel.cpp:2048 +#, kde-format msgid "Constant" msgstr "अचल" #: completion/katecompletionmodel.cpp:2051 +#, kde-format msgid "Namespace" msgstr "नेमस्पेस" #: completion/katecompletionmodel.cpp:2054 +#, kde-format msgid "Class" msgstr "वर्ग" #: completion/katecompletionmodel.cpp:2057 +#, kde-format msgid "Struct" msgstr "स्ट्रक्ट" #: completion/katecompletionmodel.cpp:2060 +#, kde-format msgid "Union" msgstr "संघ" #: completion/katecompletionmodel.cpp:2063 +#, kde-format msgid "Function" msgstr "प्रकार्य" #: completion/katecompletionmodel.cpp:2066 +#, kde-format msgid "Variable" msgstr "चल" #: completion/katecompletionmodel.cpp:2069 +#, kde-format msgid "Enumeration" msgstr "इनुमरेसन" #: completion/katecompletionmodel.cpp:2072 +#, kde-format msgid "Template" msgstr "टेम्प्लेट" #: completion/katecompletionmodel.cpp:2075 +#, kde-format msgid "Virtual" msgstr "आवास्तविक" #: completion/katecompletionmodel.cpp:2078 +#, kde-format msgid "Override" msgstr "अधिरोहण" #: completion/katecompletionmodel.cpp:2081 +#, kde-format msgid "Inline" msgstr "इनलाइन" #: completion/katecompletionmodel.cpp:2084 +#, kde-format msgid "Friend" msgstr "सहयोगी" #: completion/katecompletionmodel.cpp:2087 +#, kde-format msgid "Signal" msgstr "सङ्केत" #: completion/katecompletionmodel.cpp:2090 +#, kde-format msgid "Slot" msgstr "स्लट" #: completion/katecompletionmodel.cpp:2093 +#, kde-format msgid "Local Scope" msgstr "स्थानीय क्षेत्र" #: completion/katecompletionmodel.cpp:2096 +#, kde-format msgid "Namespace Scope" msgstr "नेमस्पेस क्षेत्र" #: completion/katecompletionmodel.cpp:2099 +#, kde-format msgid "Global Scope" msgstr "विश्वव्यापी क्षेत्र" #: completion/katecompletionmodel.cpp:2102 +#, kde-format msgid "Unknown Property" msgstr "अज्ञात गुण" #: completion/katekeywordcompletion.cpp:165 +#, kde-format msgid "Language keywords" msgstr "" #: completion/katewordcompletion.cpp:90 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "Auto Word Completion" msgstr "शब्द समाप्ति" #: completion/katewordcompletion.cpp:341 +#, kde-format msgid "Shell Completion" msgstr "शेल समाप्ति" #: completion/katewordcompletion.cpp:346 +#, kde-format msgid "Reuse Word Above" msgstr "माथि शब्द पुन: प्रयोग गर्नुहोस्" #: completion/katewordcompletion.cpp:351 +#, kde-format msgid "Reuse Word Below" msgstr "तल शब्द पुन: प्रयोग गर्नुहोस्" #. i18n: ectx: Menu (file) #: data/katepart5ui.rc:4 +#, kde-format msgid "&File" msgstr "फाइल" #. i18n: ectx: Menu (edit) #: data/katepart5ui.rc:17 +#, kde-format msgid "&Edit" msgstr "सम्पादन" #. i18n: ectx: Menu (edit_find_menu) #: data/katepart5ui.rc:36 +#, kde-format msgid "Find Variants" msgstr "" #. i18n: ectx: Menu (edit_goto) #: data/katepart5ui.rc:44 +#, kde-format msgid "Go To" msgstr "" #. i18n: ectx: Menu (view) #: data/katepart5ui.rc:55 +#, kde-format msgid "&View" msgstr "दृश्य" #. i18n: ectx: Menu (view_menu_word_wrap) #: data/katepart5ui.rc:63 -#, fuzzy +#, fuzzy, kde-format #| msgid "Static Word Wrap" msgid "Word Wrap" msgstr "स्थिर शब्द बेराइ" -#. i18n: ectx: Menu (view_menu_borders) #. i18n: ectx: property (title), widget (QGroupBox, gbBorders) +#. i18n: ectx: Menu (view_menu_borders) #: data/katepart5ui.rc:69 dialogs/bordersappearanceconfigwidget.ui:17 #: dialogs/katedialogs.cpp:653 +#, kde-format msgid "Borders" msgstr "किनारा" #. i18n: ectx: Menu (codefolding) #: data/katepart5ui.rc:77 +#, kde-format msgid "&Code Folding" msgstr "सङ्केत फोल्डिङ" #. i18n: ectx: Menu (tools) #: data/katepart5ui.rc:94 +#, kde-format msgid "&Tools" msgstr "उपकरण" #. i18n: ectx: Menu (wordcompletion) #: data/katepart5ui.rc:107 +#, kde-format msgid "Word Completion" msgstr "शब्द समाप्ति" #. i18n: ectx: Menu (spelling) #: data/katepart5ui.rc:113 spellcheck/spellingmenu.cpp:97 +#, kde-format msgid "Spelling" msgstr "" #. i18n: ectx: Menu (settings) #: data/katepart5ui.rc:136 +#, kde-format msgid "&Settings" msgstr "सेटिङ" #. i18n: ectx: ToolBar (mainToolBar) #: data/katepart5ui.rc:158 +#, kde-format msgid "Main Toolbar" msgstr "मुख्य उपकरणपट्टी" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:23 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display marks for code " #| "folding, if code folding is available." @@ -295,14 +351,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingMarkers) #: dialogs/bordersappearanceconfigwidget.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show &folding markers" msgstr "फोल्डिङ मार्कर देखाउनुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will, for instance, show bookmarks." @@ -316,13 +372,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowFoldingPreview) #: dialogs/bordersappearanceconfigwidget.ui:54 -#, fuzzy +#, fuzzy, kde-format #| msgid "Print the current document." msgid "Show preview of folded code" msgstr "हालको कागजात मुद्रण गर्नुहोस् ।" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:63 +#, kde-format msgid "" "

    If this option is checked, every new view will display an icon border on " "the left hand side.

    The icon border shows bookmark signs, for instance." @@ -333,11 +390,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIconBorder) #: dialogs/bordersappearanceconfigwidget.ui:66 +#, kde-format msgid "Show &icon border" msgstr "प्रतिमा किनारा देखाउनुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:73 +#, kde-format msgid "" "If this option is checked, every new view will display line numbers on the " "left hand side." @@ -346,12 +405,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkLineNumbers) #: dialogs/bordersappearanceconfigwidget.ui:76 +#, kde-format msgid "Show &line numbers" msgstr "रेखा नम्बर देखाउनुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:83 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -363,14 +423,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowLineModification) #: dialogs/bordersappearanceconfigwidget.ui:86 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show Folding &Markers" msgid "Show line modification markers" msgstr "फोल्डिङ मार्कर देखाउनुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:93 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will, for instance, show bookmarks." @@ -384,12 +444,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMarks) #: dialogs/bordersappearanceconfigwidget.ui:96 +#, kde-format msgid "Show &scrollbar marks" msgstr "स्क्रोलपट्टी चिनो देखाउनुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:103 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "

    If this option is checked, every new view will show marks on the " #| "vertical scrollbar.

    These marks will, for instance, show bookmarks." @@ -403,12 +464,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarPreview) #: dialogs/bordersappearanceconfigwidget.ui:106 +#, kde-format msgid "Show text &preview on scrollbar" msgstr "" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:113 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -420,14 +482,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMap) #: dialogs/bordersappearanceconfigwidget.ui:116 -#, fuzzy +#, fuzzy, kde-format #| msgid "Show &scrollbar marks" msgid "Show scrollbar mini-map" msgstr "स्क्रोलपट्टी चिनो देखाउनुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:132 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "If this option is checked, every new view will display line numbers on " #| "the left hand side." @@ -439,53 +501,59 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkScrollbarMiniMapAll) #: dialogs/bordersappearanceconfigwidget.ui:135 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save the current document" msgid "Map the whole document" msgstr "हालको कागजात बचत गर्नुहोस्" #. i18n: ectx: property (text), widget (QLabel, labelMiniMapWidth) #: dialogs/bordersappearanceconfigwidget.ui:145 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Minimal matching" -msgid "Minim&ap Width" +msgid "Minim&ap Width:" msgstr "न्यून जोडा" #. i18n: ectx: property (text), widget (QLabel, lblShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:205 +#, kde-format msgid "Scro&llbars visibility:" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:216 dialogs/katedialogs.cpp:657 +#, kde-format msgid "Always On" msgstr "सधैँ खुला" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:221 +#, kde-format msgid "Show When Needed" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbShowScrollbars) #: dialogs/bordersappearanceconfigwidget.ui:226 -#, fuzzy +#, fuzzy, kde-format #| msgid "Always" msgid "Always Off" msgstr "सधैँ" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:239 +#, kde-format msgid "" "Choose how the bookmarks should be ordered in the Bookmarks menu." msgstr "पुस्तकचिनो मेनुमा कसरी पुस्तकचिनो क्रमबद्ध गर्ने रोज्नुहोस् ।" #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "पुस्तकचिनो मेनु क्रमबद्ध गर्नुहोस्" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -493,65 +561,70 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "सिर्जना अनुरूप" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "पुस्तकचिनोलाई तिनीहरू राखिएको लाइन नम्बर अनुरूप क्रमाङ्कन गरिन्छ ।" #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "स्थिति अनुरूप" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "आदेश" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "वर्णन" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 -#, fuzzy +#, fuzzy, kde-format #| msgid "Edit entry..." msgid "Edit Entry..." msgstr "प्रविष्टि सम्पादन गर्नुहोस्..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Remove entry" msgid "Remove Entry" msgstr "प्रविष्टि हटाउनुहोस्" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Add entry..." msgid "Add Entry..." msgstr "प्रविष्टि थप्नुहोस्..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "अरू द्रष्टब्य" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    The entries are accessible through the submenu Commands in the " "Tools menu. For faster access it is possible to assign shortcutsThis icon will be displayed in the menu and toolbar.

    " msgstr "

    यो प्रतिमा मेनु र उपकरणपट्टी प्रदर्शित हुनेछ ।

    " #. i18n: ectx: property (text), widget (QLabel, lblDescription) #: dialogs/commandmenueditwidget.ui:102 +#, kde-format msgid "&Description:" msgstr "वर्णन:" #. i18n: ectx: property (text), widget (QLabel, lblCategory) #: dialogs/commandmenueditwidget.ui:115 +#, kde-format msgid "&Category:" msgstr "कोटि:" -#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #. i18n: ectx: property (title), widget (QGroupBox, gbViInputMode) +#. i18n: ectx: property (title), widget (QGroupBox, gbGeneral) #: dialogs/completionconfigtab.ui:20 dialogs/katedialogs.cpp:519 #: dialogs/katedialogs.cpp:649 dialogs/katedialogs.cpp:845 #: vimode/config/configwidget.ui:29 +#, kde-format msgid "General" msgstr "साधारण" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoCompletionEnabled) #: dialogs/completionconfigtab.ui:26 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "Enable &auto completion" msgstr "शब्द समाप्ति" #. i18n: ectx: property (title), widget (QGroupBox, gbWordCompletion) #: dialogs/completionconfigtab.ui:36 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "A&uto Word Completion" msgstr "शब्द समाप्ति" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigtab.ui:50 +#, kde-format msgid "Minimal word length to complete:" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:75 +#, kde-format msgid "Remove tail of a previous word when completion item chosen from a list" msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, removeTail) #: dialogs/completionconfigtab.ui:78 -#, fuzzy +#, fuzzy, kde-format #| msgid "Re&move trailing spaces" msgid "Remove tail on complete" msgstr "ट्रेलिङ खाली स्थान हटाउनुहोस्" #. i18n: ectx: property (title), widget (QGroupBox, gbKeywordCompletion) #: dialogs/completionconfigtab.ui:88 -#, fuzzy +#, fuzzy, kde-format #| msgid "Word Completion" msgid "&Keyword completion" msgstr "शब्द समाप्ति" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigtab.ui:97 +#, kde-format msgid "" "Keyword completion provides suggestions based on the keywords which exist in " "the document's language." @@ -651,36 +735,39 @@ #. i18n: ectx: property (title), widget (QGroupBox, sorting) #: dialogs/completionconfigwidget.ui:17 +#, kde-format msgid "Sorting" msgstr "क्रमबद्ध" #. i18n: ectx: property (text), widget (QCheckBox, sortingAlphabetical) #: dialogs/completionconfigwidget.ui:37 +#, kde-format msgid "Alphabetical" msgstr "वर्णानुक्रम" #. i18n: ectx: property (text), widget (QCheckBox, sortingReverse) #: dialogs/completionconfigwidget.ui:44 +#, kde-format msgid "Reverse" msgstr "उल्टाउनुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, sortingCaseSensitive) #: dialogs/completionconfigwidget.ui:51 -#, fuzzy +#, fuzzy, kde-format #| msgid "Case &sensitive" msgid "Case sensitive" msgstr "केस सम्वेदनशीलता" #. i18n: ectx: property (text), widget (QCheckBox, sortingInheritanceDepth) #: dialogs/completionconfigwidget.ui:58 -#, fuzzy +#, fuzzy, kde-format #| msgid "Maximum inheritance depth" msgid "Inheritance depth" msgstr "अधिकतम इनहेरिटान्स गहिराइ" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/completionconfigwidget.ui:85 -#, fuzzy +#, fuzzy, kde-format #| msgid "Order of groupings (select a grouping method to configure):" msgid "Order of Groupings (select a grouping method to configure):" msgstr "समूहको क्रम (कन्फिगर गर्नका लागि समूह विधि चयन गर्नुहोस्):" @@ -690,6 +777,7 @@ #. i18n: ectx: property (text), widget (QToolButton, columnUp) #: dialogs/completionconfigwidget.ui:105 dialogs/completionconfigwidget.ui:242 #: dialogs/completionconfigwidget.ui:414 +#, kde-format msgid "^" msgstr "^" @@ -698,130 +786,149 @@ #. i18n: ectx: property (text), widget (QToolButton, columnDown) #: dialogs/completionconfigwidget.ui:112 dialogs/completionconfigwidget.ui:249 #: dialogs/completionconfigwidget.ui:421 +#, kde-format msgid "\\/" msgstr "\\/" #. i18n: ectx: property (title), widget (QGroupBox, filtering) #: dialogs/completionconfigwidget.ui:128 +#, kde-format msgid "Filtering" msgstr "फिल्टरिङ" #. i18n: ectx: property (text), widget (QCheckBox, filteringContextMatchOnly) #: dialogs/completionconfigwidget.ui:143 +#, kde-format msgid "Suitable context matches only" msgstr "उचित सन्दर्भ मिल्ने मात्र" #. i18n: ectx: property (text), widget (QCheckBox, filteringHideAttributes) #: dialogs/completionconfigwidget.ui:150 +#, kde-format msgid "Hide completions with the following attributes:" msgstr "निम्न विशेषतासँग समाप्ति लुकाउछ:" #. i18n: ectx: property (text), widget (QLabel, label6) #: dialogs/completionconfigwidget.ui:162 -#, fuzzy +#, fuzzy, kde-format #| msgid "Maximum inheritance depth" msgid "Maximum inheritance depth:" msgstr "अधिकतम इनहेरिटान्स गहिराइ" #. i18n: ectx: property (specialValueText), widget (QSpinBox, filteringMaximumInheritanceDepth) #: dialogs/completionconfigwidget.ui:172 +#, kde-format msgid "Infinity" msgstr "अनन्त" #. i18n: ectx: property (title), widget (QGroupBox, grouping) #: dialogs/completionconfigwidget.ui:190 +#, kde-format msgid "Grouping" msgstr "समूह" #. i18n: ectx: property (text), widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:209 -#, fuzzy +#, fuzzy, kde-format #| msgid "Grouping method" msgid "Grouping Method" msgstr "समूहवद्ध गर्ने तरिका" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:214 +#, kde-format msgid "Scope type (local, namespace, global)" msgstr "क्षेत्र प्रकार (स्थानीय, नेमस्पेस, विश्वब्यापी)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:219 +#, kde-format msgid "Scope (eg. per class)" msgstr "क्षेत्र (जस्तै, हरेक वर्ग)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:224 +#, kde-format msgid "Access type (public etc.)" msgstr "पहुँच प्रकार (सार्वजनिक इत्यादि ।)" #. i18n: ectx: property (text), item, widget (QTreeWidget, groupingMethods) #: dialogs/completionconfigwidget.ui:229 +#, kde-format msgid "Item type (function etc.)" msgstr "वस्तु प्रकार (प्रकार्य इत्यादि ।)" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/completionconfigwidget.ui:279 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Access Grouping Properties" msgstr "फुटर गुण" #. i18n: ectx: property (text), widget (QCheckBox, accessConst) #: dialogs/completionconfigwidget.ui:286 +#, kde-format msgid "Include const in grouping" msgstr "समूहवद्ध गर्दा const सम्मिलित गर्नुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, accessStatic) #: dialogs/completionconfigwidget.ui:293 +#, kde-format msgid "Include static in grouping" msgstr "समूहवद्ध गर्दा स्थिरता सम्मिलित गर्नुहोस्" #. i18n: ectx: property (text), widget (QCheckBox, accessSignalSlot) #: dialogs/completionconfigwidget.ui:300 +#, kde-format msgid "Include signals and slots in grouping" msgstr "समूहवद्ध गर्दा सङ्केत र स्लट सम्मिलित गर्दनुहोस्" #. i18n: ectx: property (text), widget (QLabel, label_3) #: dialogs/completionconfigwidget.ui:330 -#, fuzzy +#, fuzzy, kde-format #| msgid "Footer Properties" msgid "Item Grouping properties" msgstr "फुटर गुण" #. i18n: ectx: property (text), widget (QCheckBox, itemTemplate) #: dialogs/completionconfigwidget.ui:337 +#, kde-format msgid "Include templates in grouping" msgstr "समूहवद्ध गर्दा टेम्प्लेट सम्मिलित गर्नुहोस्" #. i18n: ectx: property (title), widget (QGroupBox, columnMerging) #: dialogs/completionconfigwidget.ui:366 +#, kde-format msgid "Column Merging" msgstr "स्तम्भ गाभ्दै" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:391 +#, kde-format msgid "Columns" msgstr "स्तम्भ" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:396 +#, kde-format msgid "Merged" msgstr "गाभिएको" #. i18n: ectx: property (text), widget (QTreeWidget, columnMergeTree) #: dialogs/completionconfigwidget.ui:401 +#, kde-format msgid "Shown" msgstr "प्रदर्शित" #. i18n: ectx: property (title), widget (QGroupBox, gbStaticWordWrap) -#: dialogs/editconfigwidget.ui:17 +#: dialogs/editconfigwidget.ui:20 +#, kde-format msgid "Static Word Wrap" msgstr "स्थिर शब्द बेराइ" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:23 -#, fuzzy +#: dialogs/editconfigwidget.ui:26 +#, fuzzy, kde-format #| msgid "" #| "

    Automatically start a new line of text when the current line exceeds " #| "the length specified by the Wrap words at: option.

    This " @@ -846,12 +953,14 @@ "गतिशील शब्द बेराइ सक्षम पार्नुहोस् ।" #. i18n: ectx: property (text), widget (QCheckBox, chkStaticWordWrap) -#: dialogs/editconfigwidget.ui:26 +#: dialogs/editconfigwidget.ui:29 +#, kde-format msgid "Enable static &word wrap" msgstr "स्थिर शब्द बेराइ सक्षम पार्नुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:33 +#: dialogs/editconfigwidget.ui:36 +#, kde-format msgid "" "

    If this option is checked, a vertical line will be drawn at the word wrap " "column as defined in the Editing properties.

    Note " @@ -862,19 +971,21 @@ "पिच फन्ट प्रयोग गरेमा शब्द बेर्ने मार्कर मात्र कोरिने छ ।

    " #. i18n: ectx: property (text), widget (QCheckBox, chkShowStaticWordWrapMarker) -#: dialogs/editconfigwidget.ui:36 +#: dialogs/editconfigwidget.ui:39 +#, kde-format msgid "Show static word wra&p marker (if applicable)" msgstr "(अनुकूल भएमा) स्थिर शब्द बेराइ मार्कर देखाउनुहोस्" #. i18n: ectx: property (text), widget (QLabel, lblWordWrap) -#: dialogs/editconfigwidget.ui:57 -#, fuzzy +#: dialogs/editconfigwidget.ui:60 +#, fuzzy, kde-format #| msgid "W&rap words at:" msgid "Wra&p words at:" msgstr "यसमा शब्द बेर्नुहोस्:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbWordWrap) -#: dialogs/editconfigwidget.ui:67 +#: dialogs/editconfigwidget.ui:70 +#, kde-format msgid "" "If the Word Wrap option is selected this entry determines the length (in " "characters) at which the editor will automatically start a new line." @@ -883,105 +994,117 @@ "गर्छ जसमा सम्पादकले स्वत: नयाँ रेखा सुरु गर्नेछ ।" #. i18n: ectx: property (title), widget (QGroupBox, gbInputMode) -#: dialogs/editconfigwidget.ui:101 -#, fuzzy +#: dialogs/editconfigwidget.ui:104 +#, fuzzy, kde-format #| msgid "&Indentation" msgid "Input Mode" msgstr "इन्डेन्टेसन" #. i18n: ectx: property (text), widget (QLabel, lblInputMode) -#: dialogs/editconfigwidget.ui:107 -#, fuzzy +#: dialogs/editconfigwidget.ui:110 +#, fuzzy, kde-format #| msgid "Default indentation mode:" -msgid "Default input mode" +msgid "Default input mode:" msgstr "पूर्वनिर्धारित इन्डेन्टेसन मोड:" #. i18n: ectx: property (title), widget (QGroupBox, gbAutoBrackets) -#: dialogs/editconfigwidget.ui:133 -#, fuzzy +#: dialogs/editconfigwidget.ui:136 +#, fuzzy, kde-format #| msgid "Auto &brackets" msgid "Auto Brackets" msgstr "स्वत: कोष्ठक राख्दछ" #. i18n: ectx: property (text), widget (QCheckBox, chkAutoBrackets) -#: dialogs/editconfigwidget.ui:139 -#, fuzzy +#: dialogs/editconfigwidget.ui:142 +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Enable automatic brackets" msgstr "मिल्दो कोष्टकमा चयन गर्नुहोस्" #. i18n: ectx: property (title), widget (QGroupBox, gbCopyAndPaste) -#: dialogs/editconfigwidget.ui:149 -#, fuzzy +#: dialogs/editconfigwidget.ui:152 +#, fuzzy, kde-format #| msgid "Roland Pabel" msgid "Copy and Paste" msgstr "रोलान्ड पाबेल" #. i18n: ectx: property (text), widget (QCheckBox, chkSmartCopyCut) -#: dialogs/editconfigwidget.ui:155 +#: dialogs/editconfigwidget.ui:158 +#, kde-format msgid "Copy/Cut the current line if no selection" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblFiletype) #: dialogs/filetypeconfigwidget.ui:14 +#, kde-format msgid "&Filetype:" msgstr "फाइल प्रकार:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbFiletypes) #: dialogs/filetypeconfigwidget.ui:24 -#, fuzzy +#, fuzzy, kde-format #| msgid "Select the tiletype you want to change." msgid "Select the filetype you want to change." msgstr "तपाईँले परिवर्तन गर्न चाहेको टायल प्रकार चयन गर्नुहोस् ।" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:31 +#, kde-format msgid "Create a new file type." msgstr "नयाँ फाइल प्रकार सिर्जना गर्नुहोस् ।" #. i18n: ectx: property (text), widget (QPushButton, btnNew) #: dialogs/filetypeconfigwidget.ui:34 +#, kde-format msgid "&New" msgstr "नयाँ" #. i18n: ectx: property (whatsThis), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:41 +#, kde-format msgid "Delete the current file type." msgstr "हालको फाइल प्रकार मेट्नुहोस् ।" #. i18n: ectx: property (text), widget (QPushButton, btnDelete) #: dialogs/filetypeconfigwidget.ui:44 schema/kateschemaconfig.cpp:923 +#, kde-format msgid "&Delete" msgstr "मेट्नुहोस्" #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/filetypeconfigwidget.ui:66 mode/katemodeconfigpage.cpp:268 +#, kde-format msgid "Properties" msgstr "गुण" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtName) #: dialogs/filetypeconfigwidget.ui:82 +#, kde-format msgid "" "The name of the filetype will be the text of the corresponding menu item." msgstr "फाइल प्रकारको नाम सम्बन्धित मेनु वस्तुको पाठ हुनेछ ।" #. i18n: ectx: property (text), widget (QLabel, lblSection) #: dialogs/filetypeconfigwidget.ui:89 +#, kde-format msgid "&Section:" msgstr "खण्ड:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtSection) #: dialogs/filetypeconfigwidget.ui:99 +#, kde-format msgid "The section name is used to organize the file types in menus." msgstr "मेनुमा फाइल प्रकार सङ्गठीत गर्न खण्ड नाम प्रयोग गरिन्छ ।" #. i18n: ectx: property (text), widget (QLabel, lblVariables) #: dialogs/filetypeconfigwidget.ui:106 +#, kde-format msgid "&Variables:" msgstr "चल:" #. i18n: ectx: property (whatsThis), widget (VariableLineEdit, edtVariables) #: dialogs/filetypeconfigwidget.ui:116 +#, kde-format msgid "" "

    This string allows to configure Kate's settings for the files selected by " "this mimetype using Kate variables. Almost any configuration option can be " @@ -995,23 +1118,26 @@ #. i18n: ectx: property (text), widget (QLabel, lblHl) #: dialogs/filetypeconfigwidget.ui:123 +#, kde-format msgid "&Highlighting:" msgstr "हाइलाइटिङ:" #. i18n: ectx: property (text), widget (QLabel, lblIndenter) #: dialogs/filetypeconfigwidget.ui:136 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Indentation" msgid "&Indentation Mode:" msgstr "इन्डेन्टेसन" #. i18n: ectx: property (text), widget (QLabel, lblExtensions) #: dialogs/filetypeconfigwidget.ui:149 +#, kde-format msgid "File e&xtensions:" msgstr "फाइल विस्तार:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtFileExtensions) #: dialogs/filetypeconfigwidget.ui:159 +#, kde-format msgid "" "The wildcards mask allows to select files by filename. A typical mask uses " "an asterisk and the file extension, for example *.txt; *.text. " @@ -1023,11 +1149,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblMimeTypes) #: dialogs/filetypeconfigwidget.ui:166 +#, kde-format msgid "MIME &types:" msgstr "माइम प्रकार:" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtMimeTypes) #: dialogs/filetypeconfigwidget.ui:181 +#, kde-format msgid "" "The mime type mask allows to select files by mimetype. The string is a " "semicolon-separated list of mimetypes, for example text/plain; text/" @@ -1039,16 +1167,19 @@ #. i18n: ectx: property (whatsThis), widget (QToolButton, btnMimeTypes) #: dialogs/filetypeconfigwidget.ui:188 +#, kde-format msgid "Displays a wizard that helps you easily select mimetypes." msgstr "विजार्ड प्रदर्शन गर्दछ जसले तपाईँलाई माइमप्रकार सजिलै चयन गर्न मद्दत गर्दछ ।" #. i18n: ectx: property (text), widget (QLabel, lblPriority) #: dialogs/filetypeconfigwidget.ui:197 +#, kde-format msgid "P&riority:" msgstr "प्राथमिकता:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbPriority) #: dialogs/filetypeconfigwidget.ui:207 +#, kde-format msgid "" "Sets priority for this file type. If more than one file type selects the " "same file, the one with the highest priority will be used." @@ -1058,16 +1189,19 @@ #. i18n: ectx: property (text), widget (QPushButton, btnDownload) #: dialogs/filetypeconfigwidget.ui:232 +#, kde-format msgid "Download Highlighting Files..." msgstr "हाइलाइट फाइल डाउनलोड गर्नुहोस्..." #. i18n: ectx: property (text), widget (QLabel, lblMode) #: dialogs/indentationconfigwidget.ui:17 +#, kde-format msgid "Default indentation mode:" msgstr "पूर्वनिर्धारित इन्डेन्टेसन मोड:" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbMode) #: dialogs/indentationconfigwidget.ui:27 +#, kde-format msgid "" "This is a list of available indentation modes. The specified indentation " "mode will be used for all new documents. Be aware that it is also possible " @@ -1080,46 +1214,48 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbIndentationMode) #: dialogs/indentationconfigwidget.ui:49 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation" msgid "Indent using" msgstr "इन्डेन्टेसन" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithTabs) #: dialogs/indentationconfigwidget.ui:55 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "&Tabulators" msgstr "टेबुलेटर" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentWithSpaces) #: dialogs/indentationconfigwidget.ui:62 -#, fuzzy +#, fuzzy, kde-format #| msgid "Template" msgid "&Spaces" msgstr "टेम्प्लेट" #. i18n: ectx: property (text), widget (QLabel, lblIndentWidth) #: dialogs/indentationconfigwidget.ui:69 -#, fuzzy +#, fuzzy, kde-format #| msgid "Indentation width:" msgid "&Indentation width:" msgstr "इन्डेन्टेसन चौडाइ:" #. i18n: ectx: property (text), widget (QRadioButton, rbIndentMixed) #: dialogs/indentationconfigwidget.ui:79 -#, fuzzy +#, fuzzy, kde-format #| msgid "Tabulators" msgid "Tabulators &and Spaces" msgstr "टेबुलेटर" #. i18n: ectx: property (text), widget (QLabel, lblTabWidth) #: dialogs/indentationconfigwidget.ui:99 +#, kde-format msgid "Tab wi&dth:" msgstr "ट्याब चौडाइ:" #. i18n: ectx: property (whatsThis), widget (KPluralHandlingSpinBox, sbIndentWidth) #: dialogs/indentationconfigwidget.ui:125 +#, kde-format msgid "" "The indentation width is the number of spaces which is used to indent a " "line. If the option Insert spaces instead of tabulators in the " @@ -1132,11 +1268,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbProperties) #: dialogs/indentationconfigwidget.ui:144 +#, kde-format msgid "Indentation Properties" msgstr "इन्डेन्टेसन गुण" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:150 +#, kde-format msgid "" "If this option is disabled, changing the indentation level aligns a line to " "a multiple of the width specified in Indentation width." @@ -1146,13 +1284,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkKeepExtraSpaces) #: dialogs/indentationconfigwidget.ui:153 -#, fuzzy +#, fuzzy, kde-format #| msgid "Keep extra spaces" msgid "&Keep extra spaces" msgstr "थप खाली स्थान राख्नुहोस्" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:160 +#, kde-format msgid "" "If this option is selected, pasted code from the clipboard is indented. " "Triggering the undo-action removes the indentation." @@ -1162,18 +1301,20 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkIndentPaste) #: dialogs/indentationconfigwidget.ui:163 -#, fuzzy +#, fuzzy, kde-format #| msgid "Adjust indentation of code pasted from the clipboard" msgid "Adjust indentation of code &pasted from the clipboard" msgstr "क्लिपबोर्डबाट टाँसिएको सङ्केतको इन्डेन्टेसन समायोजन गर्नुहोस्" #. i18n: ectx: property (title), widget (QGroupBox, gbKeys) #: dialogs/indentationconfigwidget.ui:173 +#, kde-format msgid "Indentation Actions" msgstr "इन्डेन्टेसन कार्य" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:179 +#, kde-format msgid "" "If this option is selected, the Backspace key decreases the " "indentation level if the cursor is located in the leading blank space of a " @@ -1184,14 +1325,14 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackspaceUnindents) #: dialogs/indentationconfigwidget.ui:182 -#, fuzzy +#, fuzzy, kde-format #| msgid "Backspace key in leading blank space unindents" msgid "&Backspace key in leading blank space unindents" msgstr "अगाडिको खाली स्थानको Backspace कुञ्जीले इन्डेन्ट हटाउँदछ" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/indentationconfigwidget.ui:192 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "\n" -#~| "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

    " -#~ msgid "" -#~ "\n" -#~ "

    Data Recovery (Help)

    Could " -#~ "not recover all data. The swap file was probably incomplete.

    " -#~ msgstr "" -#~ "\n" -#~ "

    សកម្មភាព​គ្រាប់ចុច​ថេប(Tab) (ប្រសិន​បើ​មិន​មាន​ជម្រើស) ថេប(Tab) ដើម្បី​តម្រឹម​បន្ទាត់​បច្ចុប្បន្ន​នៅ​ក្នុង​ប្លុក​កូដ​​បច្ចុប្បន្ន​ដូច​នៅ​ក្នុង emacs, make " +"ផ្លូវកាត់​ថេប(Tab) ទៅ​​សកម្មភាព តម្រឹម ។\">ច្រើន​ទៀត ...

    " #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbTabAdvances) #: dialogs/indentationconfigwidget.ui:225 +#, kde-format msgid "" "If this option is selected, the Tab key always inserts white space so " "that the next tab position is reached. If the option Insert spaces " @@ -1143,11 +1314,13 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbTabAdvances) #: dialogs/indentationconfigwidget.ui:228 +#, kde-format msgid "Always advance to the &next tab position" msgstr "ចូល​ទៅកាន់​ទីតាំង​ថេប​បន្ទាប់​ជានិច្ច" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbTabIndents) #: dialogs/indentationconfigwidget.ui:235 +#, kde-format msgid "" "If this option is selected, the Tab key always indents the current " "line by the number of character positions specified in Indentation widthTab key either indents the current " "line or advances to the next tab position.

    If the insertion point is at " @@ -1185,11 +1360,12 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbTabSmart) #: dialogs/indentationconfigwidget.ui:248 +#, kde-format msgid "Increase indentation level if in l&eading blank space" msgstr "បង្កើន​កម្រិត​​ចូល​បន្ទាត់ នៅពេល​ដែល​មាន​ចន្លោះ​នៅ​ពីមុខ" #: dialogs/katedialogs.cpp:198 dialogs/katedialogs.cpp:200 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "Wrap words at" #| msgid " character" #| msgid_plural " characters" @@ -1198,23 +1374,27 @@ msgstr[0] " តួអក្សរ" #: dialogs/katedialogs.cpp:227 +#, kde-format msgid "Indentation" msgstr "ការ​ចូល​បន្ទាត់" #: dialogs/katedialogs.cpp:300 +#, kde-format msgid "Auto Completion" msgstr "ការ​បំពេញ​ស្វ័យប្រវត្តិ" #: dialogs/katedialogs.cpp:364 +#, kde-format msgid "Spellcheck" msgstr "ពិនិត្យ​​អក្ខរាវិរុទ្ធ" #: dialogs/katedialogs.cpp:440 +#, kde-format msgid "Text Navigation" msgstr "ការ​រុករក​អត្ថបទ" #: dialogs/katedialogs.cpp:508 -#, fuzzy +#, fuzzy, kde-format #| msgctxt "Wrap words at" #| msgid " character" #| msgid_plural " characters" @@ -1224,135 +1404,158 @@ msgstr[0] " តួអក្សរ" #: dialogs/katedialogs.cpp:621 +#, kde-format msgid "Editing" msgstr "ការ​​កែសម្រួល" #: dialogs/katedialogs.cpp:626 +#, kde-format msgid "Editing Options" msgstr "ជម្រើស​ការ​កែសម្រួល" #: dialogs/katedialogs.cpp:655 +#, kde-format msgid "Off" msgstr "បិទ" #: dialogs/katedialogs.cpp:656 +#, kde-format msgid "Follow Line Numbers" msgstr "ដាក់​ពី​ក្រោយ​លេខ​បន្ទាត់" #: dialogs/katedialogs.cpp:775 dialogs/katedialogs.cpp:780 +#, kde-format msgid "Appearance" msgstr "រូបរាង" #. i18n: ectx: property (title), widget (QGroupBox, groupBox) #: dialogs/katedialogs.cpp:846 dialogs/textareaappearanceconfigwidget.ui:102 +#, kde-format msgid "Advanced" msgstr "កម្រិត​ខ្ពស់" #: dialogs/katedialogs.cpp:901 +#, kde-format msgid "" "You did not provide a backup suffix or prefix. Using default suffix: '~'" msgstr "អ្នក​មិន​បាន​ផ្ដល់​បច្ច័យ ឬ​បុព្វបទ​បម្រុង​ទុក ។ ប្រើ​បច្ច័យ​លំនាំដើម ៖ '~'" #: dialogs/katedialogs.cpp:902 +#, kde-format msgid "No Backup Suffix or Prefix" msgstr "គ្មាន​បច្ច័យ ឬ​បុព្វបទ​បម្រុង​ឡើយ" #: dialogs/katedialogs.cpp:1031 +#, kde-format msgid "Open/Save" msgstr "បើក​/​រក្សាទុក" #: dialogs/katedialogs.cpp:1036 +#, kde-format msgid "File Opening & Saving" msgstr "ការបើក និង​រក្សាទុក​ឯកសារ" #: dialogs/katedialogs.cpp:1050 +#, kde-format msgid "Highlight Download" msgstr "រំលេច​ការ​ទាញ​យក" #: dialogs/katedialogs.cpp:1057 +#, kde-format msgid "Select the syntax highlighting files you want to update:" msgstr "ជ្រើស​ឯកសារ​​រំលេច​​វាក្យ​សម្ពន្ធ ដែល​អ្នក​ចង់​ធ្វើ​បច្ចុប្បន្នភាព ៖" #: dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Installed" msgstr "បាន​ដំឡើង" #: dialogs/katedialogs.cpp:1062 +#, kde-format msgid "Latest" msgstr "ចុង​ក្រោយ​បំផុត" #: dialogs/katedialogs.cpp:1069 +#, kde-format msgid "Note: New versions are selected automatically." msgstr "ចំណាំ ៖ កំណែ​ថ្មី​ត្រូវ​បាន​ជ្រើសដោយ​ស្វ័យ​ប្រវត្តិ ។" #: dialogs/katedialogs.cpp:1076 +#, kde-format msgid "&Install" msgstr "ដំឡើង" #: dialogs/katedialogs.cpp:1119 +#, kde-format msgid "" "The list of highlightings could not be found on / retrieved from the server" msgstr "រក​មិន​ឃើញ​បញ្ជី​រំលេច​នៅ​ពេល​បាន​យក​ពី​ម៉ាស៊ីន​បម្រើ" #: dialogs/katedialogs.cpp:1223 +#, kde-format msgid "&Go to line:" msgstr "ទៅ​កាន់​បន្ទាត់ ៖" #: dialogs/katedialogs.cpp:1229 +#, kde-format msgid "Go" msgstr "ទៅ" #: dialogs/katedialogs.cpp:1291 +#, kde-format msgid "Dictionary:" msgstr "វចនានុក្រម  ៖" #: dialogs/katedialogs.cpp:1345 -#, fuzzy +#, fuzzy, kde-format #| msgid "&View Difference" msgid "View &Difference" msgstr "មើល​ភាព​ខុស​គ្នា" #: dialogs/katedialogs.cpp:1346 +#, kde-format msgid "Shows a diff of the changes" msgstr "" #: dialogs/katedialogs.cpp:1351 -#, fuzzy +#, fuzzy, kde-format #| msgid "Reloa&d" msgid "&Reload" msgstr "ផ្ទុក​ឡើង​វិញ" #: dialogs/katedialogs.cpp:1353 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "Reload the file from disk. If you have unsaved changes, they will be lost." msgid "Reload the file from disk. Unsaved changes will be lost." msgstr "ផ្ទុក​ឯកសារ​ពី​ថាស​ឡើងវិញ ។ ប្រសិន​បើ​មិនបាន​រក្សាទុក​ការ​ផ្លាស់​ប្ដូរ នោះ​ពួក​វា​នឹង​ត្រូវ​បាត់​បង់ ។" #: dialogs/katedialogs.cpp:1357 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Save File As..." msgid "&Save As..." msgstr "រក្សាទុក​ឯកសារ​ជា..." #: dialogs/katedialogs.cpp:1359 +#, kde-format msgid "Lets you select a location and save the file again." msgstr "អនុញ្ញាត​ឲ្យ​អ្នក​ជ្រើស​ទីតាំង និង​រក្សា​ទុក​ឯកសារ​ម្ដង​ទៀត ។" #. i18n: ectx: property (text), widget (QPushButton, m_skipBtn) #: dialogs/katedialogs.cpp:1364 spellcheck/spellcheckbar.ui:143 -#, fuzzy +#, fuzzy, kde-format #| msgid "Ignore Word" msgid "&Ignore" msgstr "មិន​អើពើ​ពាក្យ​" #: dialogs/katedialogs.cpp:1365 -#, fuzzy +#, fuzzy, kde-format #| msgid "Ignore the changes. You will not be prompted again." msgid "Ignores the changes on disk without any action." msgstr "មិន​អើពើ​នឹង​ការ​ផ្លាស់​ប្ដូរ ។ អ្នក​នឹង​មិន​ត្រូវ​បាន​អនុញ្ញាត​ឲ្យ​ផ្លាស់ប្ដូរ​ម្ដងទៀត​ឡើយ ។" #: dialogs/katedialogs.cpp:1432 swapfile/kateswapdiffcreator.cpp:137 +#, kde-format msgid "" "The diff command failed. Please make sure that diff(1) is installed and in " "your PATH." @@ -1361,24 +1564,29 @@ "អ្នក ។" #: dialogs/katedialogs.cpp:1434 swapfile/kateswapdiffcreator.cpp:139 +#, kde-format msgid "Error Creating Diff" msgstr "កំហុស​ក្នុង​ការ​បង្កើត Diff" #: dialogs/katedialogs.cpp:1442 swapfile/kateswapdiffcreator.cpp:147 +#, kde-format msgid "The files are identical." msgstr "ឯកសារ​ដូច​គ្នា ។" #: dialogs/katedialogs.cpp:1443 swapfile/kateswapdiffcreator.cpp:148 +#, kde-format msgid "Diff Output" msgstr "លទ្ធផល Diff" #. i18n: ectx: property (title), widget (QGroupBox, gbCursorMovement) #: dialogs/navigationconfigwidget.ui:12 +#, kde-format msgid "Text Cursor Movement" msgstr "ចលនា​ទស្សន៍​ទ្រនិច​អត្ថបទ" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkSmartHome) #: dialogs/navigationconfigwidget.ui:18 +#, kde-format msgid "" "When selected, pressing the home key will cause the cursor to skip " "whitespace and go to the start of a line's text. The same applies for the " @@ -1389,11 +1597,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkSmartHome) #: dialogs/navigationconfigwidget.ui:21 +#, kde-format msgid "Smart ho&me and smart end" msgstr "ទៅ​ដើម​ឆ្លាត និង​​ចុង​ឆ្លាត" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkPagingMovesCursor) #: dialogs/navigationconfigwidget.ui:28 +#, kde-format msgid "" "Selects whether the PageUp and PageDown keys should alter the vertical " "position of the cursor relative to the top of the view." @@ -1403,16 +1613,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkPagingMovesCursor) #: dialogs/navigationconfigwidget.ui:31 +#, kde-format msgid "&PageUp/PageDown moves cursor" msgstr "ទំព័រ​លើ​/​ទំព័រ​ក្រោម​ផ្លាស់ទី​ទស្សន៍ទ្រនិច" #. i18n: ectx: property (text), widget (QLabel, lblAutoCenterCursor) #: dialogs/navigationconfigwidget.ui:43 +#, kde-format msgid "&Autocenter cursor:" msgstr "&Autocenter cursor:" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbAutoCenterCursor) #: dialogs/navigationconfigwidget.ui:53 +#, kde-format msgid "" "Sets the number of lines to maintain visible above and below the cursor when " "possible." @@ -1423,41 +1636,49 @@ #. i18n: ectx: property (specialValueText), widget (QSpinBox, sbDynamicWordWrapDepth) #: dialogs/navigationconfigwidget.ui:56 dialogs/opensaveconfigadvwidget.ui:160 #: dialogs/textareaappearanceconfigwidget.ui:57 +#, kde-format msgid "Disabled" msgstr "បិទ" #. i18n: ectx: property (suffix), widget (QSpinBox, sbAutoCenterCursor) #: dialogs/navigationconfigwidget.ui:59 +#, kde-format msgid " lines" msgstr "បន្ទាត់" #. i18n: ectx: property (title), widget (QGroupBox, cbNavigationMisc) #: dialogs/navigationconfigwidget.ui:84 +#, kde-format msgid "Misc" msgstr "ផ្សេងៗ" #. i18n: ectx: property (text), widget (QLabel, lblTextSelectionMode) #: dialogs/navigationconfigwidget.ui:92 +#, kde-format msgid "Text selection mode:" msgstr "របៀប​ជម្រើស​អត្ថបទ ៖" #. i18n: ectx: property (text), item, widget (QComboBox, cbTextSelectionMode) #: dialogs/navigationconfigwidget.ui:103 inputmode/katenormalinputmode.cpp:82 +#, kde-format msgid "Normal" msgstr "ធម្មតា" #. i18n: ectx: property (text), item, widget (QComboBox, cbTextSelectionMode) #: dialogs/navigationconfigwidget.ui:108 +#, kde-format msgid "Persistent" msgstr "Persistent" #. i18n: ectx: property (text), widget (QCheckBox, chkScrollPastEnd) #: dialogs/navigationconfigwidget.ui:131 +#, kde-format msgid "Allow scrolling past the end of the document" msgstr "អនុញ្ញាត​ឲ្យ​បិទភ្ជាប់​រមូរ​នៅ​ចុង​ឯកសារ" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbBackup) #: dialogs/opensaveconfigadvwidget.ui:17 +#, kde-format msgid "" "

    Backing up on save will cause Kate to copy the disk file to '<" "prefix><filename><suffix>' before saving changes.

    The " @@ -1469,11 +1690,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbBackup) #: dialogs/opensaveconfigadvwidget.ui:20 +#, kde-format msgid "Backup on Save" msgstr "បម្រុង​ទុក​នៅ​ពេល​រក្សាទុក" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackupLocalFiles) #: dialogs/opensaveconfigadvwidget.ui:29 +#, kde-format msgid "" "If this option is enabled, backups for local files will be created when " "saving." @@ -1482,11 +1705,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackupLocalFiles) #: dialogs/opensaveconfigadvwidget.ui:32 +#, kde-format msgid "&Local files" msgstr "ឯកសារ​មូលដ្ឋាន" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkBackupRemoteFiles) #: dialogs/opensaveconfigadvwidget.ui:39 +#, kde-format msgid "" "If this option is enabled, backups for remote files will be created when " "saving." @@ -1495,82 +1720,94 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkBackupRemoteFiles) #: dialogs/opensaveconfigadvwidget.ui:42 +#, kde-format msgid "&Remote files" msgstr "ឯកសារ​ពី​ចម្ងាយ" #. i18n: ectx: property (text), widget (QLabel, label_5) #: dialogs/opensaveconfigadvwidget.ui:49 +#, kde-format msgid "&Prefix:" msgstr "បុព្វបទ ៖" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtBackupPrefix) #: dialogs/opensaveconfigadvwidget.ui:59 +#, kde-format msgid "Enter the prefix to prepend to the backup file names." msgstr "បញ្ចូល​បុព្វបទ​ដែល​ត្រូវ​បន្ថែម​ទៅ​ខាងដើម​ឈ្មោះ​ឯកសារ​បម្រុង​ទុក ។" #. i18n: ectx: property (text), widget (QLabel, label_6) #: dialogs/opensaveconfigadvwidget.ui:66 +#, kde-format msgid "&Suffix:" msgstr "បច្ច័យ ៖" #. i18n: ectx: property (whatsThis), widget (KLineEdit, edtBackupSuffix) #: dialogs/opensaveconfigadvwidget.ui:76 +#, kde-format msgid "Enter the suffix to append to the backup file names." msgstr "បញ្ចូល​បច្ច័យ​ដែលត្រូវ​បន្ថែម​ទៅ​ខាង​ចុង​ឈ្មោះ​ឯកសារបម្រុងទុក ។" #. i18n: ectx: property (title), widget (QGroupBox, gpSwapFileOptions) #: dialogs/opensaveconfigadvwidget.ui:92 +#, kde-format msgid "Swap File Options" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:98 -#, fuzzy +#, fuzzy, kde-format #| msgid "New Filetype" msgid "Swap file:" msgstr "ប្រភេទ​ឯកសារ​ថ្មី" #. i18n: ectx: property (text), item, widget (QComboBox, cmbSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:109 -#, fuzzy +#, fuzzy, kde-format #| msgid "Disabled" msgid "Disable" msgstr "បិទ" #. i18n: ectx: property (text), item, widget (QComboBox, cmbSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:114 +#, kde-format msgid "Enable" msgstr "" #. i18n: ectx: property (text), item, widget (QComboBox, cmbSwapFileMode) #: dialogs/opensaveconfigadvwidget.ui:119 +#, kde-format msgid "Alternative Directory" msgstr "" #. i18n: ectx: property (text), widget (QLabel, lblSwapDirectory) #: dialogs/opensaveconfigadvwidget.ui:127 -msgid "Directory" +#, kde-format +msgid "Directory:" msgstr "" #. i18n: ectx: property (placeholderText), widget (KUrlRequester, kurlSwapDirectory) #: dialogs/opensaveconfigadvwidget.ui:143 -#, fuzzy +#, fuzzy, kde-format #| msgid "Folder Config File" msgid "Directory for swp files" msgstr "ឯកសារ​កំណត់​រចនាសម្ព័ន្ធ​ថត" #. i18n: ectx: property (text), widget (QLabel, lblSwapFileSync) #: dialogs/opensaveconfigadvwidget.ui:150 +#, kde-format msgid "Sync every:" msgstr "" #. i18n: ectx: property (suffix), widget (QSpinBox, spbSwapFileSync) #: dialogs/opensaveconfigadvwidget.ui:163 +#, kde-format msgid "s" msgstr "" #. i18n: ectx: property (text), widget (QLabel, label_2) #: dialogs/opensaveconfigadvwidget.ui:182 +#, kde-format msgid "" "Be aware, that disabling the swap file synchronization may lead to data loss " "in case of a system crash." @@ -1578,16 +1815,19 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbFileFormat) #: dialogs/opensaveconfigwidget.ui:12 +#, kde-format msgid "File Format" msgstr "ទ្រង់ទ្រាយ​ឯកសារ" #. i18n: ectx: property (text), widget (QLabel, lblEncoding) #: dialogs/opensaveconfigwidget.ui:23 +#, kde-format msgid "&Encoding:" msgstr "ការ​អ៊ិនកូដ ៖" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbEncoding) #: dialogs/opensaveconfigwidget.ui:33 +#, kde-format msgid "" "This defines the standard encoding to use to open/save files, if not changed " "in the open/save dialog or by using a command line option." @@ -1597,11 +1837,13 @@ #. i18n: ectx: property (text), widget (QLabel, lblEncodingDetection) #: dialogs/opensaveconfigwidget.ui:40 +#, kde-format msgid "&Encoding Detection:" msgstr "រកឃើញ​កា​រអ៊ីនកូដ ៖" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbEncodingDetection) #: dialogs/opensaveconfigwidget.ui:50 +#, kde-format msgid "" "if neither the encoding chosen as standard above, nor the encoding specified " "in the open/save dialog, nor the encoding specified on command line match " @@ -1613,19 +1855,30 @@ #. i18n: ectx: property (text), widget (QLabel, lblEncodingDetection2) #: dialogs/opensaveconfigwidget.ui:57 +#, kde-format msgid "&Fallback Encoding:" msgstr "ការ​អ៊ិនកូដ Fallback ៖" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbEncodingFallback) #: dialogs/opensaveconfigwidget.ui:67 +#, fuzzy, kde-format +#| msgid "" +#| "This defines the fallback encoding to try for opening files if neither " +#| "the encoding chosen as standard above, nor the encoding specified in the " +#| "open/save dialog, nor the encoding specified on command line match the " +#| "content of the file. Before this is used, an attempt will be made to " +#| "determine the encoding to use by looking for a byte order marker at start " +#| "of file: if one is found, the right unicode encoding will be chosen; " +#| "otherwise encoding detection will run, if both fail fallback encoding " +#| "will be tried." msgid "" "This defines the fallback encoding to try for opening files if neither the " "encoding chosen as standard above, nor the encoding specified in the open/" "save dialog, nor the encoding specified on command line match the content of " "the file. Before this is used, an attempt will be made to determine the " -"encoding to use by looking for a byte order marker at start of file: if one " -"is found, the right unicode encoding will be chosen; otherwise encoding " -"detection will run, if both fail fallback encoding will be tried." +"encoding to use by looking for a byte order mark at start of file: if one is " +"found, the right Unicode encoding will be chosen; otherwise encoding " +"detection will run, if both fail the fallback encoding will be tried." msgstr "" "វា​កំណត់​ការ​អ៊ីនកូដ fallback ដើម្បី​ព្យាយាម​បើក​ឯកសារ ប្រសិនបើ​ការ​អ៊ីនកូដ​ដែលបានជ្រើស​រើស​ជា​ស្តង់ដារ​" "ខាង​លើ ឬ​ការ​អ៊ីនកូដ​ដែល​បានបញ្ជាក់​នៅ​ក្នុង​ប្រអប់​បើក/បិទ ឬ​ការ​អ៊ីនកូដ​ដែលបានបញ្ជាក់​នៅក្នុង​​បន្ទាត់​ពាក្យ​" @@ -1636,26 +1889,31 @@ #. i18n: ectx: property (text), widget (QLabel, lblEOL) #: dialogs/opensaveconfigwidget.ui:74 +#, kde-format msgid "E&nd of line:" msgstr "ចុង​បន្ទាត់ ៖" #. i18n: ectx: property (text), item, widget (KComboBox, cmbEOL) #: dialogs/opensaveconfigwidget.ui:85 +#, kde-format msgid "UNIX" msgstr "យូនីក" #. i18n: ectx: property (text), item, widget (KComboBox, cmbEOL) #: dialogs/opensaveconfigwidget.ui:90 +#, kde-format msgid "DOS/Windows" msgstr "ដូស​/​វីនដូ" #. i18n: ectx: property (text), item, widget (KComboBox, cmbEOL) #: dialogs/opensaveconfigwidget.ui:95 +#, kde-format msgid "Macintosh" msgstr "Macintosh" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkDetectEOL) #: dialogs/opensaveconfigwidget.ui:105 +#, kde-format msgid "" "If this option is enabled the editor will autodetect the end of line type. " "The first found end of line type will be used for the whole file." @@ -1665,15 +1923,22 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkDetectEOL) #: dialogs/opensaveconfigwidget.ui:108 +#, kde-format msgid "A&utomatic end of line detection" msgstr "ការ​រក​ឃើញ​ចុង​បន្ទាត់​ដោយ​ស្វ័យ​ប្រវត្តិ" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkEnableBOM) #: dialogs/opensaveconfigwidget.ui:115 +#, fuzzy, kde-format +#| msgid "" +#| "The byte order mark is a special sequence at the beginning of unicode " +#| "encoded documents. It helps editors to open text documents with the " +#| "correct unicode encoding. The byte order mark is not visible in the " +#| "displayed document." msgid "" -"The byte order mark is a special sequence at the beginning of unicode " +"The byte order mark is a special sequence at the beginning of Unicode " "encoded documents. It helps editors to open text documents with the correct " -"unicode encoding. The byte order mark is not visible in the displayed " +"Unicode encoding. The byte order mark is not visible in the displayed " "document." msgstr "" "សញ្ញា​សម្គាល់​លំដាប់បៃ​គឺ​ជា​លំដាប់​ពិសេស​នៅ​ដើម​ឯកសារ​ដែល​បាន​អ៊ីនកូដ​​យូនីកូដ ។ វា​ជួយ​កម្មវិធី​កែសម្រួល​ ក្នុងការ​" @@ -1682,27 +1947,33 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkEnableBOM) #: dialogs/opensaveconfigwidget.ui:118 -msgid "Enable byte order marker" +#, fuzzy, kde-format +#| msgid "Enable byte order marker" +msgid "Enable byte order mark (BOM)" msgstr "បើក​ឧបករណ៍​សម្គាល់​លំដាប់​បៃ" #. i18n: ectx: property (text), widget (QLabel, label) #: dialogs/opensaveconfigwidget.ui:125 +#, kde-format msgid "Line Length Limit:" msgstr "ដែន​កំណត់​ប្រវែង​បន្ទាត់ ៖" #. i18n: ectx: property (specialValueText), widget (QSpinBox, lineLengthLimit) #: dialogs/opensaveconfigwidget.ui:135 +#, kde-format msgid "Unlimited" msgstr "គ្មាន​ដែន​កំណត់" #. i18n: ectx: property (title), widget (QGroupBox, gbCleanups) #: dialogs/opensaveconfigwidget.ui:151 +#, kde-format msgid "Automatic Cleanups on Save" msgstr "សម្អាត​ដោយ​ស្វ័យ​ប្រវត្តិ​នៅ​ពេល​រក្សាទុក" #. i18n: ectx: property (whatsThis), widget (QLabel, lblRemoveTrailingSpaces) #. i18n: ectx: property (whatsThis), widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:159 dialogs/opensaveconfigwidget.ui:172 +#, kde-format msgid "" "Depending on the choice, trailing spaces are removed when saving a document, " "either in the entire document or only of modified lines." @@ -1712,26 +1983,31 @@ #. i18n: ectx: property (text), widget (QLabel, lblRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:162 +#, kde-format msgid "Re&move trailing spaces:" msgstr "យក​ដក​ឃ្លា​នៅ​ពី​ក្រោយ​ចេញ​" #. i18n: ectx: property (text), item, widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:176 +#, kde-format msgid "Never" msgstr "មិន​ដែល" #. i18n: ectx: property (text), item, widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:181 +#, kde-format msgid "On Modified Lines" msgstr "បាន​កែប្រែ​បន្ទាត់" #. i18n: ectx: property (text), item, widget (QComboBox, cbRemoveTrailingSpaces) #: dialogs/opensaveconfigwidget.ui:186 +#, kde-format msgid "In Entire Document" msgstr "ក្នុង​ឯកសារ​ទាំងមូល" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkNewLineAtEof) #: dialogs/opensaveconfigwidget.ui:209 +#, kde-format msgid "" "On save, a line break is appended to the document if not already present. " "The line break is visible after reloading the file." @@ -1741,11 +2017,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkNewLineAtEof) #: dialogs/opensaveconfigwidget.ui:212 +#, kde-format msgid "Append newline at end of file on save" msgstr "បន្ថែម​ខាងចុង​បន្ទាត់​ថ្មី​នៅ​ពេល​បញ្ចប់​ការ​រក្សាទុក​ឯកសារ" #. i18n: ectx: property (whatsThis), widget (QGroupBox, gbWordWrap) #: dialogs/textareaappearanceconfigwidget.ui:9 view/kateview.cpp:693 +#, kde-format msgid "" "If this option is checked, the text lines will be wrapped at the view border " "on the screen." @@ -1753,27 +2031,31 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbWordWrap) #: dialogs/textareaappearanceconfigwidget.ui:12 view/kateview.cpp:690 +#, kde-format msgid "&Dynamic Word Wrap" msgstr "រុំ​ពាក្យ​ថាមវន្ត" #. i18n: ectx: property (text), widget (QLabel, lblDynamicWordWrapIndicators) #: dialogs/textareaappearanceconfigwidget.ui:21 +#, kde-format msgid "Dynamic &word wrap indicators (if applicable):" msgstr "ទ្រនិចបង្ហាញ​រុំ​ពាក្យ​ថាមវន្ត (ប្រសិន​បើ​អាច​អនុវត្ត) ៖" #. i18n: ectx: property (whatsThis), widget (KComboBox, cmbDynamicWordWrapIndicator) #: dialogs/textareaappearanceconfigwidget.ui:31 +#, kde-format msgid "Choose when the Dynamic Word Wrap Indicators should be displayed." msgstr "ជ្រើស ពេល​ដែល​ដែលត្រូវ​បង្ហាញ​ទ្រនិច​ចង្អុលបង្ហាញ​ការ​រុំ​ពាក្យ​ថាមវន្ត ។" #. i18n: ectx: property (text), widget (QLabel, lblDynamicWordWrapIndicators_2) #: dialogs/textareaappearanceconfigwidget.ui:38 +#, kde-format msgid "Align dynamically wrapped lines to indentation depth:" msgstr "តម្រឹម​បន្ទាត់​ដែល​បាន​រុំ​ជា​ថាមវន្ត​ទៅ​ជម្រៅ​ការ​ចូល​បន្ទាត់ ៖" #. i18n: ectx: property (whatsThis), widget (QSpinBox, sbDynamicWordWrapDepth) #: dialogs/textareaappearanceconfigwidget.ui:54 -#, no-c-format +#, no-c-format, kde-format msgid "" "

    Enables the start of dynamically wrapped lines to be aligned vertically " "to the indentation level of the first line. This can help to make code and " @@ -1791,17 +2073,19 @@ #. i18n: ectx: property (suffix), widget (QSpinBox, sbDynamicWordWrapDepth) #: dialogs/textareaappearanceconfigwidget.ui:60 -#, no-c-format +#, no-c-format, kde-format msgid "% of View Width" msgstr "% នៃ​ទទឹង​ទិដ្ឋភាព" #. i18n: ectx: property (title), widget (QGroupBox, gbWhitespaceHighlighting) #: dialogs/textareaappearanceconfigwidget.ui:76 +#, kde-format msgid "Whitespace Highlighting" msgstr "ការ​រំលេច" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowTabs) #: dialogs/textareaappearanceconfigwidget.ui:82 +#, kde-format msgid "" "The editor will display a symbol to indicate the presence of a tab in the " "text." @@ -1809,16 +2093,19 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowTabs) #: dialogs/textareaappearanceconfigwidget.ui:85 +#, kde-format msgid "&Highlight tabulators" msgstr "រំលេច​​​ការ​រៀប​ជា​តារាង" #. i18n: ectx: property (text), widget (QCheckBox, chkShowSpaces) #: dialogs/textareaappearanceconfigwidget.ui:92 +#, kde-format msgid "Highlight trailing &spaces" msgstr "បន្លិច​ចន្លោះ​នៅ​ពីក្រោយ" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowIndentationLines) #: dialogs/textareaappearanceconfigwidget.ui:108 +#, kde-format msgid "" "If this is enabled, the editor will display vertical lines to help identify " "indent lines." @@ -1826,11 +2113,13 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowIndentationLines) #: dialogs/textareaappearanceconfigwidget.ui:111 +#, kde-format msgid "Show i&ndentation lines" msgstr "បង្ហាញ​បន្ទាត់​ចូល" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkShowWholeBracketExpression) #: dialogs/textareaappearanceconfigwidget.ui:118 +#, kde-format msgid "" "If this is enabled, the range between the selected matching brackets will be " "highlighted." @@ -1838,29 +2127,33 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkShowWholeBracketExpression) #: dialogs/textareaappearanceconfigwidget.ui:121 +#, kde-format msgid "Highlight range between selected brackets" msgstr "ជួរ​​រំលេច​រវាង​វង់ក្រចក​ដែល​បាន​ជ្រើស" #. i18n: ectx: property (toolTip), widget (QCheckBox, chkAnimateBracketMatching) #: dialogs/textareaappearanceconfigwidget.ui:128 -#, fuzzy +#, fuzzy, kde-format #| msgid "Select to Matching Bracket" msgid "Flash matching brackets" msgstr "ជ្រើស​ទៅ​តង្កៀប​ដែល​ដូច" #. i18n: ectx: property (whatsThis), widget (QCheckBox, chkAnimateBracketMatching) #: dialogs/textareaappearanceconfigwidget.ui:131 +#, kde-format msgid "" "If this is enabled, matching brackets are animated for better visibility." msgstr "" #. i18n: ectx: property (text), widget (QCheckBox, chkAnimateBracketMatching) #: dialogs/textareaappearanceconfigwidget.ui:134 +#, kde-format msgid "Animate bracket matching" msgstr "" #. i18n: ectx: property (toolTip), widget (QCheckBox, chkFoldFirstLine) #: dialogs/textareaappearanceconfigwidget.ui:144 +#, kde-format msgid "" "When this setting is enabled, the editor view automatically folds\n" "comment blocks that start on the first line of the document. This is\n" @@ -1870,11 +2163,12 @@ #. i18n: ectx: property (text), widget (QCheckBox, chkFoldFirstLine) #: dialogs/textareaappearanceconfigwidget.ui:147 +#, kde-format msgid "Fold First Line" msgstr "" #: document/katebuffer.cpp:179 -#, fuzzy +#, fuzzy, kde-format #| msgid "New Filetype" msgctxt "short translation, user created new file" msgid "New file" @@ -1896,15 +2190,18 @@ "ដំណើរការ​ឯកសារ​នេះ ។" #: document/katedocument.cpp:2153 +#, kde-format msgctxt "translators: you can also translate 'Try Again' with 'Reload'" msgid "Try Again" msgstr "" #: document/katedocument.cpp:2156 document/katedocument.cpp:5928 +#, kde-format msgid "&Close" msgstr "បិទ" #: document/katedocument.cpp:2157 document/katedocument.cpp:5929 +#, kde-format msgid "Close message" msgstr "បិទ​សារ" @@ -1969,11 +2266,12 @@ "តួអក្សរ​ត្រូវ​បាន​រុំ ហើយ​ឯកសារ​ត្រូវ​បាន​កំណត់​របៀប​បាន​តែ​អាន ការ​រក្សាទុក​នឹង​ត្រូវ​បាន​កែប្រែ​មាតិកា​របស់​វា ។" #: document/katedocument.cpp:2311 +#, kde-format msgid "Temporarily raise limit and reload file" msgstr "" #: document/katedocument.cpp:2314 -#, fuzzy +#, fuzzy, kde-format #| msgid "&Close" msgid "Close" msgstr "បិទ" @@ -1994,6 +2292,7 @@ "តួអក្សរ​ត្រូវ​បាន​រុំ ហើយ​ឯកសារ​ត្រូវ​បាន​កំណត់​របៀប​បាន​តែ​អាន ការ​រក្សាទុក​នឹង​ត្រូវ​បាន​កែប្រែ​មាតិកា​របស់​វា ។" #: document/katedocument.cpp:2343 +#, kde-format msgid "" "Do you really want to save this unmodified file? You could overwrite changed " "data in the file on disk." @@ -2002,15 +2301,18 @@ "ក្នុង​ឯកសារ​លើ​ថាស ។" #: document/katedocument.cpp:2343 +#, kde-format msgid "Trying to Save Unmodified File" msgstr "ព្យាយាម​រក្សាទុក​ឯកសារ​ដែល​មិនបាន​កែប្រែ" #: document/katedocument.cpp:2343 document/katedocument.cpp:2348 #: document/katedocument.cpp:2360 +#, kde-format msgid "Save Nevertheless" msgstr "រក្សាទុក ទោះ​យ៉ាងណា​ក៏ដោយ" #: document/katedocument.cpp:2348 +#, kde-format msgid "" "Do you really want to save this file? Both your open file and the file on " "disk were changed. There could be some data lost." @@ -2020,12 +2322,17 @@ #: document/katedocument.cpp:2348 document/katedocument.cpp:2360 #: document/katedocument.cpp:2644 +#, kde-format msgid "Possible Data Loss" msgstr "អាច​បណ្ដាល​ឲ្យ​បាត់​ទិន្នន័យ" #: document/katedocument.cpp:2360 +#, fuzzy, kde-format +#| msgid "" +#| "The selected encoding cannot encode every unicode character in this " +#| "document. Do you really want to save it? There could be some data lost." msgid "" -"The selected encoding cannot encode every unicode character in this " +"The selected encoding cannot encode every Unicode character in this " "document. Do you really want to save it? There could be some data lost." msgstr "" "ការ​អ៊ិនកូដ​ដែល​បាន​ជ្រើស​មិន​អាច​អ៊ិនកូដ​រាល់​តួអក្សរ​យូនីកូដ​​នៅ​ក្នុង​តួអក្សរ​នេះ​បាន​ទេ ។ តើ​អ្នក​ពិត​ជា​ចង់​រក្សាទុក​" @@ -2056,58 +2363,69 @@ "សរសេរ​​គឺ​ពេញ ឬ​អ្នក​មាន​សិទ្ធិ​បាន​តែ​អាន​ចំពោះ​ថត​ឯកសារ ។" #: document/katedocument.cpp:2532 +#, kde-format msgid "Failed to create backup copy." msgstr "បរាជ័យ​ក្នុង​ការ​បង្កើត​ច្បាប់​ចម្លង​បម្រុងទុក ។" #: document/katedocument.cpp:2533 +#, kde-format msgid "Try to Save Nevertheless" msgstr "ព្យាយាម​រក្សាទុក ទោះ​យ៉ាងណា​ក៏ដោយ" #: document/katedocument.cpp:2643 +#, kde-format msgid "Do you really want to continue to close this file? Data loss may occur." msgstr "តើ​អ្នក​ពិត​ជា​ចង់​បន្ត​បិទ​ឯកសារ​នេះ​ឬ ? អាច​មាន​ទិន្នន័យ​បាត់បង់ ។" #: document/katedocument.cpp:2644 +#, kde-format msgid "Close Nevertheless" msgstr "បិទ ទោះ​យ៉ាងណា​ក៏ដោយ" #: document/katedocument.cpp:4091 +#, kde-format msgid "Untitled" msgstr "គ្មាន​ចំណង​ជើង" #: document/katedocument.cpp:4132 document/katedocument.cpp:4286 #: document/katedocument.cpp:4297 document/katedocument.cpp:4991 +#, kde-format msgid "Save File" msgstr "រក្សាទុក​ឯកសារ" #: document/katedocument.cpp:4136 +#, kde-format msgid "Save failed" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​រក្សាទុក" #: document/katedocument.cpp:4196 +#, kde-format msgid "What do you want to do?" msgstr "តើ​អ្នក​ចង់​ធ្វើ​អ្វី ?" #: document/katedocument.cpp:4197 +#, kde-format msgid "File Was Changed on Disk" msgstr "ឯកសារ​ត្រូវ​បាន​ផ្លាស់ប្ដូរ​នៅ​លើ​ថាស" #: document/katedocument.cpp:4198 +#, kde-format msgid "&Reload File" msgstr "ផ្ទុក​ឯកសារ​ឡើង​វិញ" #: document/katedocument.cpp:4199 +#, kde-format msgid "&Ignore Changes" msgstr "មិន​អើពើ​នឹង​ការ​ផ្លាស់ប្ដូរ" #: document/katedocument.cpp:4309 -#, fuzzy +#, fuzzy, kde-format #| msgid "Save File" msgid "Save Copy of File" msgstr "រក្សាទុក​ឯកសារ" #: document/katedocument.cpp:4535 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "Using deprecated modeline 'remove-trailing-space'. Please replace with " #| "'remove-trailing-spaces modified;', see http://docs.kde.org/stable/en/kde-" @@ -2122,7 +2440,7 @@ "kate/config-variables.html#variable-យក​​ចន្លោះ​មិន​ឃើញ​​នៅ​ខាង​ក្រោយ​ចេញ" #: document/katedocument.cpp:4540 -#, fuzzy +#, fuzzy, kde-format #| msgid "" #| "Using deprecated modeline 'replace-trailing-space-save'. Please replace " #| "with 'remove-trailing-spaces all;', see http://docs.kde.org/stable/en/kde-" @@ -2158,6 +2476,7 @@ msgstr "មាន​ឯកសារដែល​មាន​ឈ្មោះ \"%1\" រួច​ហើយ ។ តើ​អ្នក​ពិត​ជា​ចង់​សរសេរ​ជាន់​លើ​វា​ឬ ?" #: document/katedocument.cpp:5020 +#, kde-format msgid "Overwrite File?" msgstr "សរសេរ​ជាន់​លើ​ឯកសារ​ឬ ?" @@ -2171,6 +2490,7 @@ "តើ​អ្នក​ចង់​រក្សាទុក​ការ​ផ្លាស់ប្ដូរ ឬ​បោះបង់​ពួកវា ?" #: document/katedocument.cpp:5234 +#, kde-format msgid "Close Document" msgstr "បិទ​ឯកសារ" @@ -2181,71 +2501,85 @@ msgstr "ឯកសារ %1 នៅ​តែ​កំពុង​ផ្ទុក ។" #: document/katedocument.cpp:5374 +#, kde-format msgid "&Abort Loading" msgstr "" #: inputmode/katenormalinputmode.cpp:92 +#, kde-format msgid "OVERWRITE" msgstr "" #: inputmode/katenormalinputmode.cpp:92 +#, kde-format msgid "INSERT" msgstr "" #: inputmode/katenormalinputmodefactory.cpp:52 -#, fuzzy +#, fuzzy, kde-format #| msgid "Normal mode" msgid "Normal Mode" msgstr "របៀប​ធម្មតា" #: inputmode/kateviinputmode.cpp:40 +#, kde-format msgid "VI: INSERT MODE" msgstr "VI: INSERT MODE" #: inputmode/kateviinputmode.cpp:43 +#, kde-format msgid "VI: NORMAL MODE" msgstr "VI: NORMAL MODE" #: inputmode/kateviinputmode.cpp:46 +#, kde-format msgid "VI: VISUAL" msgstr "VI: VISUAL" #: inputmode/kateviinputmode.cpp:49 +#, kde-format msgid "VI: VISUAL BLOCK" msgstr "VI: VISUAL BLOCK" #: inputmode/kateviinputmode.cpp:52 +#, kde-format msgid "VI: VISUAL LINE" msgstr "VI: VISUAL LINE" #: inputmode/kateviinputmode.cpp:55 +#, kde-format msgid "VI: REPLACE" msgstr "VI: REPLACE" #: inputmode/kateviinputmode.cpp:160 +#, kde-format msgid "vi-mode" msgstr "" #: inputmode/kateviinputmode.cpp:173 -#, fuzzy +#, fuzzy, kde-format #| msgid "E&ncoding" msgid "recording" msgstr "ការ​អ៊ិនកូដ" #: inputmode/kateviinputmodefactory.cpp:55 utils/kateglobal.cpp:121 #: vimode/config/configtab.cpp:249 +#, kde-format msgid "Vi Input Mode" msgstr "របៀប​បញ្ចូល VI" #: mode/katemodeconfigpage.cpp:60 +#, kde-format msgid "" msgstr "<មិន​បានផ្លាស់ប្ដូរ>" #: mode/katemodeconfigpage.cpp:71 +#, kde-format msgid "Use Default" msgstr "ប្រើ​លំនាំដើម" #: mode/katemodeconfigpage.cpp:184 +#, kde-format msgid "New Filetype" msgstr "ប្រភេទ​ឯកសារ​ថ្មី" @@ -2255,6 +2589,7 @@ msgstr "លក្ខណៈ​សម្បត្តិ​របស់ %1" #: mode/katemodeconfigpage.cpp:288 +#, kde-format msgid "" "Select the MimeTypes you want for this file type.\n" "Please note that this will automatically edit the associated file extensions " @@ -2264,32 +2599,39 @@ "សូម​ចំណាំ​ថា ឯកសារ​នេះ​នឹង​កែសម្រួល​ផ្នែក​បន្ថែម​ឯកសារ​ដែល​ជាប់​ទាក់ទង​​ដោយ​ស្វ័យ​ប្រវត្តិ ។" #: mode/katemodeconfigpage.cpp:290 +#, kde-format msgid "Select Mime Types" msgstr "ជ្រើស​ប្រភេទ Mime" #: mode/katemodeconfigpage.cpp:307 +#, kde-format msgid "Modes && Filetypes" msgstr "របៀប និង​ប្រភេទ​ឯកសារ" #: printing/printconfigwidgets.cpp:49 +#, kde-format msgid "Te&xt Settings" msgstr "ការ​កំណត់​អត្ថបទ" #: printing/printconfigwidgets.cpp:53 +#, kde-format msgid "Print line &numbers" msgstr "បោះពុម្ព​លេខ​បន្ទាត់" #: printing/printconfigwidgets.cpp:56 +#, kde-format msgid "Print &legend" msgstr "បោះពុម្ព​តាង" #: printing/printconfigwidgets.cpp:65 +#, kde-format msgid "" "

    If enabled, line numbers will be printed on the left side of the page(s)." "

    " msgstr "

    ប្រសិន​បើ​​បើក នោះ​លេខ​បន្ទាត់​នឹង​ត្រូវ​បាន​បោះពុម្ព​នៅ​លើ​ចំហៀង​ខាងឆ្វេង​នៃ​ទំព័រ ។

    " #: printing/printconfigwidgets.cpp:67 +#, kde-format msgid "" "

    Print a box displaying typographical conventions for the document type, " "as defined by the syntax highlighting being used.

    " @@ -2298,62 +2640,77 @@ "រំលេច​វាក្យ​សម្ពន្ធ​ដែល​កំពុង​ប្រើ ។

    " #: printing/printconfigwidgets.cpp:119 +#, kde-format msgid "Hea&der && Footer" msgstr "បឋមកថា និង​បាតកថា" #: printing/printconfigwidgets.cpp:126 +#, kde-format msgid "Pr&int header" msgstr "បោះពុម្ព​បឋមកថា" #: printing/printconfigwidgets.cpp:128 +#, kde-format msgid "Pri&nt footer" msgstr "បោះពុម្ព​បាតកថា" #: printing/printconfigwidgets.cpp:134 +#, kde-format msgid "Header/footer font:" msgstr "ពុម្ពអក្សរ​បឋមកថា​/​បាតកថា ៖" #: printing/printconfigwidgets.cpp:139 +#, kde-format msgid "Choo&se Font..." msgstr "ជ្រើស​ពុម្ពអក្សរ​​..." #: printing/printconfigwidgets.cpp:145 +#, kde-format msgid "Header Properties" msgstr "លក្ខណៈ​សម្បត្តិ​បឋមកថា" #: printing/printconfigwidgets.cpp:149 +#, kde-format msgid "&Format:" msgstr "ទ្រង់ទ្រាយ ៖" #: printing/printconfigwidgets.cpp:171 printing/printconfigwidgets.cpp:217 +#, kde-format msgid "Colors:" msgstr "ពណ៌ ៖" #: printing/printconfigwidgets.cpp:178 printing/printconfigwidgets.cpp:224 +#, kde-format msgid "Foreground:" msgstr "ផ្ទៃ​ខាងមុខ ៖" #: printing/printconfigwidgets.cpp:183 +#, kde-format msgid "Bac&kground" msgstr "ផ្ទៃ​ខាងក្រោយ" #: printing/printconfigwidgets.cpp:189 +#, kde-format msgid "Footer Properties" msgstr "លក្ខណៈ​សម្បត្តិ​បាតកថា​" #: printing/printconfigwidgets.cpp:194 +#, kde-format msgid "For&mat:" msgstr "ទ្រង់ទ្រាយ ៖" #: printing/printconfigwidgets.cpp:229 +#, kde-format msgid "&Background" msgstr "ផ្ទៃ​ខាងក្រោយ" #: printing/printconfigwidgets.cpp:258 +#, kde-format msgid "

    Format of the page header. The following tags are supported:

    " msgstr "

    ទ្រង់ទ្រាយ​បឋមកថា​ទំព័រ ។ ស្លាក​ខាងក្រោម​គឺ​ត្រូវ​បាន​គាំទ្រ ៖

    " #: printing/printconfigwidgets.cpp:260 +#, kde-format msgid "" "

    Tab key action (if no selection exists) Tab to align the current line in the current code block like in " -#~| "emacs, make Tab a shortcut to the action Align." -#~| "\">More ...

    Data Recovery (Help)

    These marks will show bookmarks, for instance.Bookmarks menu." msgstr "" @@ -477,11 +545,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Ordenatu laster-marken menua" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -491,60 +561,68 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 -#, fuzzy +#, fuzzy, kde-format #| msgid "By c&reation" msgid "B&y creation" msgstr "So&rtze-dataren arabera" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Laster-markak kokatuta dauden lerro-zenbakien arabera ordenatu egingo dira." #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 -#, fuzzy +#, fuzzy, kde-format #| msgid "By &position" msgid "By posi&tion" msgstr "&Posizioaren arabera" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Komandoa" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Deskribapena" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Editatu sarrera..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Kendu sarrera" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Gehitu sarrera..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Ohar gehiago" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "

    Tab " -#~| "key action (if no selection exists) Tab to " -#~| "align the current line in the current code block like in emacs, make " -#~| "Tab a shortcut to the action Align.\">More ...

These marks will show bookmarks, for instance.Bookmarks menu." msgstr "" @@ -450,11 +529,13 @@ #. i18n: ectx: property (title), widget (QGroupBox, gbSortBookmarks) #: dialogs/bordersappearanceconfigwidget.ui:242 +#, kde-format msgid "Sort Bookmarks Menu" msgstr "Lesezeichenmenü sortieren" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:248 +#, kde-format msgid "" "Each new bookmark will be added to the bottom, independently from where it " "is placed in the document." @@ -464,11 +545,13 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByCreation) #: dialogs/bordersappearanceconfigwidget.ui:251 +#, kde-format msgid "B&y creation" msgstr "Nach &Erstellungszeitpunkt" #. i18n: ectx: property (whatsThis), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:258 +#, kde-format msgid "The bookmarks will be ordered by the line numbers they are placed at." msgstr "" "Die Lesezeichen werden nach den Zeilennummern sortiert, in denen sie gesetzt " @@ -476,45 +559,53 @@ #. i18n: ectx: property (text), widget (QRadioButton, rbSortBookmarksByPosition) #: dialogs/bordersappearanceconfigwidget.ui:261 +#, kde-format msgid "By posi&tion" msgstr "Nach &Position" -#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #. i18n: ectx: property (text), widget (QTableWidget, tblNormalModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblInsertModeMappings) #. i18n: ectx: property (text), widget (QTableWidget, tblVisualModeMappings) +#. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:27 vimode/config/configwidget.ui:95 #: vimode/config/configwidget.ui:133 vimode/config/configwidget.ui:171 +#, kde-format msgid "Command" msgstr "Befehl" #. i18n: ectx: property (text), widget (QTreeWidget, treeWidget) #: dialogs/commandmenuconfigwidget.ui:32 +#, kde-format msgid "Description" msgstr "Beschreibung" #. i18n: ectx: property (text), widget (QPushButton, btnEditEntry) #: dialogs/commandmenuconfigwidget.ui:48 +#, kde-format msgid "Edit Entry..." msgstr "Eintrag bearbeiten ..." #. i18n: ectx: property (text), widget (QPushButton, btnRemoveEntry) #: dialogs/commandmenuconfigwidget.ui:58 +#, kde-format msgid "Remove Entry" msgstr "Eintrag löschen" #. i18n: ectx: property (text), widget (QPushButton, btnAddEntry) #: dialogs/commandmenuconfigwidget.ui:78 +#, kde-format msgid "Add Entry..." msgstr "Eintrag hinzufügen ..." #. i18n: ectx: property (title), widget (QGroupBox, gbNotes) #: dialogs/commandmenuconfigwidget.ui:93 +#, kde-format msgid "Further Notes" msgstr "Weitere Anmerkungen" #. i18n: ectx: property (text), widget (QLabel, lblNotes) #: dialogs/commandmenuconfigwidget.ui:108 +#, kde-format msgid "" "