diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2011-10-04 13:53:37 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2011-10-04 13:53:37 (GMT) |
commit | c7b6c35e2b32b5d85f90088906d7ca6ecfe47202 (patch) | |
tree | e489b6c938c9509a10ceb785bcf480798a0cb14a | |
parent | 8b610c28c1300e0aa800569225d8512d0b66ffce (diff) | |
parent | 6a80266dae9e05de0a68d6a69f5f5416f9dd5746 (diff) | |
download | Qt-c7b6c35e2b32b5d85f90088906d7ca6ecfe47202.zip Qt-c7b6c35e2b32b5d85f90088906d7ca6ecfe47202.tar.gz Qt-c7b6c35e2b32b5d85f90088906d7ca6ecfe47202.tar.bz2 |
Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into master-integration
* 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1:
add integrity gbuild to the project file for convenience
don't build activeqt examples on mingw
QNetworkAccessBackend::start() is used although QT_NO_BEARERMANAGEMENT is defined.
Updated Russian translation
Ukrainian translation updated for 4.8
retreving -> retrieving
Removed duplicate Spectrum Analyzer entry from demos doc page.
Removed obsolete QWS_ALPHA_CURSOR feature.
Removed duplicate link from QFinalState documentation.
Clarified keypad navigation specific event documentation.
docs: Typo and link fixes.
Use the right callback in QObject::disconnect()
25 files changed, 825 insertions, 317 deletions
diff --git a/doc/src/getting-started/demos.qdoc b/doc/src/getting-started/demos.qdoc index 5c0652c..201b5c7 100644 --- a/doc/src/getting-started/demos.qdoc +++ b/doc/src/getting-started/demos.qdoc @@ -149,13 +149,6 @@ implement a small Web browser. \endlist - \section1 Multimedia - - \list - \o \l{demos/spectrum}{Spectrum Analyser} shows how the \l{QtMultimedia} - module can be used to manipulate audio as it is played. - \endlist - \section1 Phonon \list diff --git a/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp b/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp index fd5f386..a5f3ed1 100644 --- a/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp +++ b/doc/src/snippets/code/doc_src_unix-signal-handlers.cpp @@ -44,7 +44,7 @@ class MyDaemon : public QObject Q_OBJECT public: - MyDaemon(QObject *parent = 0, const char *name = 0); + MyDaemon(QObject *parent = 0); ~MyDaemon(); // Unix signal handlers. @@ -67,8 +67,8 @@ class MyDaemon : public QObject //! [1] -MyDaemon::MyDaemon(QObject *parent, const char *name) - : QObject(parent,name) +MyDaemon::MyDaemon(QObject *parent) + : QObject(parent) { if (::socketpair(AF_UNIX, SOCK_STREAM, 0, sighupFd)) qFatal("Couldn't create HUP socketpair"); diff --git a/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp b/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp index 11f5163..e695572 100644 --- a/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp +++ b/doc/src/snippets/code/src_corelib_concurrent_qtconcurrentrun.cpp @@ -76,7 +76,7 @@ QString result = future.result(); //! [4] // call 'QList<QByteArray> QByteArray::split(char sep) const' in a separate thread QByteArray bytearray = "hello world"; -QFuture<QList<QByteArray> > future = QtConcurrent::run(bytearray, &QByteArray::split), ','); +QFuture<QList<QByteArray> > future = QtConcurrent::run(bytearray, &QByteArray::split, ','); ... QList<QByteArray> result = future.result(); //! [4] @@ -84,7 +84,7 @@ QList<QByteArray> result = future.result(); //! [5] // call 'void QImage::invertPixels(InvertMode mode)' in a separate thread QImage image = ...; -QFuture<void> future = QtConcurrent::run(image, &QImage::invertPixels, QImage::InvertRgba); +QFuture<void> future = QtConcurrent::run(&image, &QImage::invertPixels, QImage::InvertRgba); ... future.waitForFinished(); // At this point, the pixels in 'image' have been inverted diff --git a/examples/examples.pro b/examples/examples.pro index cf12dd6..0c4c9cb 100644 --- a/examples/examples.pro +++ b/examples/examples.pro @@ -63,7 +63,7 @@ contains(QT_CONFIG, opengl): SUBDIRS += opengl contains(QT_CONFIG, openvg): SUBDIRS += openvg contains(QT_CONFIG, dbus): SUBDIRS += dbus contains(QT_CONFIG, declarative): SUBDIRS += declarative -win32: SUBDIRS += activeqt +win32:!win32-g++*: SUBDIRS += activeqt contains(QT_CONFIG, xmlpatterns):!contains(QT_CONFIG, no-gui): SUBDIRS += xmlpatterns contains(DEFINES, QT_NO_CURSOR): SUBDIRS -= mainwindows contains(QT_CONFIG, concurrent): SUBDIRS += qtconcurrent diff --git a/qmake/qmake.pri b/qmake/qmake.pri index 87735d6..c2fc1d5 100644 --- a/qmake/qmake.pri +++ b/qmake/qmake.pri @@ -20,6 +20,7 @@ SOURCES += project.cpp property.cpp main.cpp generators/makefile.cpp \ generators/symbian/symmake_abld.cpp \ generators/symbian/symmake_sbsv2.cpp \ generators/symbian/initprojectdeploy_symbian.cpp \ + generators/integrity/gbuild.cpp \ windows/registry.cpp \ symbian/epocroot.cpp @@ -36,6 +37,7 @@ HEADERS += project.h property.h generators/makefile.h \ generators/symbian/symmake_abld.h \ generators/symbian/symmake_sbsv2.h \ generators/symbian/initprojectdeploy_symbian.h \ + generators/integrity/gbuild.h \ windows/registry_p.h \ symbian/epocroot_p.h diff --git a/src/corelib/global/qconfig-minimal.h b/src/corelib/global/qconfig-minimal.h index ace1eea..1035631 100644 --- a/src/corelib/global/qconfig-minimal.h +++ b/src/corelib/global/qconfig-minimal.h @@ -324,9 +324,6 @@ #ifndef QT_NO_QWSEMBEDWIDGET # define QT_NO_QWSEMBEDWIDGET #endif -#ifndef QT_NO_QWS_ALPHA_CURSOR -# define QT_NO_QWS_ALPHA_CURSOR -#endif #ifndef QT_NO_QWS_CURSOR # define QT_NO_QWS_CURSOR #endif diff --git a/src/corelib/global/qconfig-nacl.h b/src/corelib/global/qconfig-nacl.h index 18ae261..5aefdfe 100644 --- a/src/corelib/global/qconfig-nacl.h +++ b/src/corelib/global/qconfig-nacl.h @@ -247,9 +247,6 @@ #ifndef QT_NO_QWSEMBEDWIDGET # define QT_NO_QWSEMBEDWIDGET #endif -#ifndef QT_NO_QWS_ALPHA_CURSOR -# define QT_NO_QWS_ALPHA_CURSOR -#endif #ifndef QT_NO_QWS_CURSOR # define QT_NO_QWS_CURSOR #endif diff --git a/src/corelib/global/qfeatures.h b/src/corelib/global/qfeatures.h index e0b8a8f..64d5f08 100644 --- a/src/corelib/global/qfeatures.h +++ b/src/corelib/global/qfeatures.h @@ -178,9 +178,6 @@ // QWSEmbedWidget //#define QT_NO_QWSEMBEDWIDGET -// Alpha Cursor -//#define QT_NO_QWS_ALPHA_CURSOR - // Decoration //#define QT_NO_QWS_DECORATION_DEFAULT diff --git a/src/corelib/global/qfeatures.txt b/src/corelib/global/qfeatures.txt index 6b861d4..dea05e0 100644 --- a/src/corelib/global/qfeatures.txt +++ b/src/corelib/global/qfeatures.txt @@ -1268,13 +1268,6 @@ Requires: CURSOR Name: Cursor SeeAlso: ??? -Feature: QWS_ALPHA_CURSOR -Description: Supports alpha-blended cursors. -Section: Qt for Embedded Linux -Requires: -Name: Alpha Cursor -SeeAlso: ??? - Feature: QWS_MANAGER Description: Supports the window manager. Section: Qt for Embedded Linux diff --git a/src/corelib/io/qprocess.cpp b/src/corelib/io/qprocess.cpp index e900663..d70811c 100644 --- a/src/corelib/io/qprocess.cpp +++ b/src/corelib/io/qprocess.cpp @@ -2281,7 +2281,7 @@ QT_END_INCLUDE_NAMESPACE However, note that repeated calls to this function will recreate the list of environment variables, which is a non-trivial operation. - \note For new code, it is recommended to use QProcessEvironment::systemEnvironment() + \note For new code, it is recommended to use QProcessEnvironment::systemEnvironment() \sa QProcessEnvironment::systemEnvironment(), environment(), setEnvironment() */ diff --git a/src/corelib/kernel/qcoreevent.h b/src/corelib/kernel/qcoreevent.h index 281367b..f1a0407 100644 --- a/src/corelib/kernel/qcoreevent.h +++ b/src/corelib/kernel/qcoreevent.h @@ -209,8 +209,8 @@ public: // last event id used = 132 #ifdef QT_KEYPAD_NAVIGATION - EnterEditFocus = 150, // enter edit mode in keypad navigation - LeaveEditFocus = 151, // enter edit mode in keypad navigation + EnterEditFocus = 150, // enter edit mode in keypad navigation (Defined only with QT_KEYPAD_NAVIGATION) + LeaveEditFocus = 151, // leave edit mode in keypad navigation (Defined only with QT_KEYPAD_NAVIGATION) #endif AcceptDropsChange = 152, diff --git a/src/corelib/kernel/qobject.cpp b/src/corelib/kernel/qobject.cpp index 67dbadb..5d6e4d7 100644 --- a/src/corelib/kernel/qobject.cpp +++ b/src/corelib/kernel/qobject.cpp @@ -3002,7 +3002,7 @@ bool QObject::disconnect(const QObject *sender, const QMetaMethod &signal, } const void *cbdata[] = { sender, signal.mobj ? signalSignature.constData() : 0, receiver, method.mobj ? methodSignature.constData() : 0 }; - if (QInternal::activateCallbacks(QInternal::ConnectCallback, (void **) cbdata)) + if (QInternal::activateCallbacks(QInternal::DisconnectCallback, (void **) cbdata)) return true; } diff --git a/src/corelib/statemachine/qfinalstate.cpp b/src/corelib/statemachine/qfinalstate.cpp index c583c32..7d65984 100644 --- a/src/corelib/statemachine/qfinalstate.cpp +++ b/src/corelib/statemachine/qfinalstate.cpp @@ -80,7 +80,7 @@ QT_BEGIN_NAMESPACE machine.start(); \endcode - \sa QStateMachine::finished(), QState::finished() + \sa QState::finished() */ class QFinalStatePrivate : public QAbstractStatePrivate diff --git a/src/gui/dialogs/qmessagebox.cpp b/src/gui/dialogs/qmessagebox.cpp index 66e7216..149e267 100644 --- a/src/gui/dialogs/qmessagebox.cpp +++ b/src/gui/dialogs/qmessagebox.cpp @@ -548,8 +548,8 @@ void QMessageBoxPrivate::_q_buttonClicked(QAbstractButton *button) \snippet doc/src/snippets/code/src_gui_dialogs_qmessagebox.cpp 6 This is the approach recommended in the - \l{http://developer.apple.com/documentation/UserExperience/Conceptual/AppleHIGuidelines/XHIGWindows/chapter_18_section_7.html} - {Mac OS X Guidlines}. Similar guidlines apply for the other + \l{http://developer.apple.com/library/mac/documentation/UserExperience/Conceptual/AppleHIGuidelines/Windows/Windows.html#//apple_ref/doc/uid/20000961-BABCAJID} + {Mac OS X Guidelines}. Similar guidelines apply for the other platforms, but note the different ways the \l{QMessageBox::informativeText} {informative text} is handled for different platforms. diff --git a/src/gui/widgets/qtoolbar.cpp b/src/gui/widgets/qtoolbar.cpp index e0e8ce6..c7ae73f 100644 --- a/src/gui/widgets/qtoolbar.cpp +++ b/src/gui/widgets/qtoolbar.cpp @@ -440,7 +440,7 @@ void QToolBarPrivate::plug(const QRect &r) pop up a menu containing the items that does not currently fit in the toolbar. - When a QToolBar is not a child of a QMainWindow, it looses the ability + When a QToolBar is not a child of a QMainWindow, it loses the ability to populate the extension pop up with widgets added to the toolbar using addWidget(). Please use widget actions created by inheriting QWidgetAction and implementing QWidgetAction::createWidget() instead. diff --git a/src/network/access/qnetworkaccessbackend_p.h b/src/network/access/qnetworkaccessbackend_p.h index ff05306..7f6aff9 100644 --- a/src/network/access/qnetworkaccessbackend_p.h +++ b/src/network/access/qnetworkaccessbackend_p.h @@ -110,9 +110,7 @@ public: // socket). virtual void open() = 0; -#ifndef QT_NO_BEARERMANAGEMENT virtual bool start(); -#endif virtual void closeDownstreamChannel() = 0; // slot-like: diff --git a/src/sql/drivers/symsql/qsql_symsql.cpp b/src/sql/drivers/symsql/qsql_symsql.cpp index 4ceac9b..f34212c 100644 --- a/src/sql/drivers/symsql/qsql_symsql.cpp +++ b/src/sql/drivers/symsql/qsql_symsql.cpp @@ -217,7 +217,7 @@ void QSymSQLResultPrivate::initColumns(QSqlRecord& rec) int nCols = stmt.ColumnCount(); if (nCols <= 0) { q->setLastError(qMakeError(access, QCoreApplication::translate("QSymSQLResult", - "Error retreving column count"), QSqlError::UnknownError, nCols)); + "Error retrieving column count"), QSqlError::UnknownError, nCols)); return; } @@ -227,7 +227,7 @@ void QSymSQLResultPrivate::initColumns(QSqlRecord& rec) if (err != KErrNone) { q->setLastError(qMakeError(access, QCoreApplication::translate("QSymSQLResult", - "Error retreving column name"), QSqlError::UnknownError, err)); + "Error retrieving column name"), QSqlError::UnknownError, err)); return; } @@ -240,7 +240,7 @@ void QSymSQLResultPrivate::initColumns(QSqlRecord& rec) if (err != KErrNone) { q->setLastError(qMakeError(access, QCoreApplication::translate("QSymSQLResult", - "Error retreving column type"), QSqlError::UnknownError, err)); + "Error retrieving column type"), QSqlError::UnknownError, err)); return; } diff --git a/tools/porting/src/qt3headers0.resource b/tools/porting/src/qt3headers0.resource Binary files differindex 8e24385..1a3e8a0 100644 --- a/tools/porting/src/qt3headers0.resource +++ b/tools/porting/src/qt3headers0.resource diff --git a/translations/assistant_uk.ts b/translations/assistant_uk.ts index 73f5df5..d3bd284 100644 --- a/translations/assistant_uk.ts +++ b/translations/assistant_uk.ts @@ -259,6 +259,10 @@ Reason: <translation>Адреса</translation> </message> <message> + <source>Toolbar Menu</source> + <translation>Панель закладок</translation> + </message> + <message> <source>Bookmarks Menu</source> <translation>Меню закладок</translation> </message> @@ -285,41 +289,9 @@ Reason: <context> <name>CentralWidget</name> <message> - <source>Add new page</source> - <translation>Додати нову сторінку</translation> - </message> - <message> - <source>Close current page</source> - <translation>Закрити поточну сторінку</translation> - </message> - <message> <source>Print Document</source> <translation>Друкувати документ</translation> </message> - <message> - <source>unknown</source> - <translation>невідомо</translation> - </message> - <message> - <source>Add New Page</source> - <translation>Додати нову сторінку</translation> - </message> - <message> - <source>Close This Page</source> - <translation>Закрити цю сторінку</translation> - </message> - <message> - <source>Close Other Pages</source> - <translation>Закрити інші сторінки</translation> - </message> - <message> - <source>Add Bookmark for this Page...</source> - <translation>Додати закладку для цієї сторінки...</translation> - </message> - <message> - <source>Search</source> - <translation>Пошук</translation> - </message> </context> <context> <name>CmdLineParser</name> @@ -651,6 +623,49 @@ Reason: </message> </context> <context> + <name>GlobalActions</name> + <message> + <source>&Back</source> + <translation>&Назад</translation> + </message> + <message> + <source>&Forward</source> + <translation>&Вперед</translation> + </message> + <message> + <source>&Home</source> + <translation>&Домівка</translation> + </message> + <message> + <source>ALT+Home</source> + <translation></translation> + </message> + <message> + <source>Zoom &in</source> + <translation>З&більшити</translation> + </message> + <message> + <source>Zoom &out</source> + <translation>З&меншити</translation> + </message> + <message> + <source>&Copy selected Text</source> + <translation>&Копіювати виділений текст</translation> + </message> + <message> + <source>&Print...</source> + <translation>&Друк...</translation> + </message> + <message> + <source>&Find in Text...</source> + <translation>Пошук в &тексті...</translation> + </message> + <message> + <source>&Find</source> + <translation>По&шук</translation> + </message> +</context> +<context> <name>HelpEngineWrapper</name> <message> <source>Unfiltered</source> @@ -675,16 +690,28 @@ Reason: <translation><title>Помилка 404...</title><div align="center"><br><br><h1>Не вдалось знайти сторінку</h1><br><h3>'%1'</h3></div></translation> </message> <message> + <source>Open Link</source> + <translation>Відкрити посилання</translation> + </message> + <message> <source>Copy &Link Location</source> <translation>Копіювати &адресу посилання</translation> </message> <message> + <source>Copy</source> + <translation>Копіювати</translation> + </message> + <message> + <source>Reload</source> + <translation>Перезавантажити</translation> + </message> + <message> <source>Open Link in New Tab Ctrl+LMB</source> <translation>Відкрити посилання в новій вкладці Ctrl+LMB</translation> </message> <message> - <source>Open Link in New Tab</source> - <translation>Відкрити посилання в новій вкладці</translation> + <source>Open Link in New Page</source> + <translation>Відкрити посилання в новій сторінці</translation> </message> </context> <context> @@ -875,10 +902,18 @@ Reason: <translation>Закладки</translation> </message> <message> + <source>Open Pages</source> + <translation>Відкрити сторінки</translation> + </message> + <message> <source>Qt Assistant</source> <translation>Qt Assistant</translation> </message> <message> + <source>Bookmark Toolbar</source> + <translation>Панель закладок</translation> + </message> + <message> <source>Looking for Qt Documentation...</source> <translation>Пошук документації Qt...</translation> </message> @@ -899,10 +934,6 @@ Reason: <translation>Попередній перегляд...</translation> </message> <message> - <source>&Print...</source> - <translation>&Друк...</translation> - </message> - <message> <source>&Close Tab</source> <translation>&Закрити вкладку</translation> </message> @@ -919,18 +950,6 @@ Reason: <translation>&Правка</translation> </message> <message> - <source>&Copy selected Text</source> - <translation>&Копіювати виділений текст</translation> - </message> - <message> - <source>&Find in Text...</source> - <translation>Пошук в &тексті...</translation> - </message> - <message> - <source>&Find</source> - <translation>По&шук</translation> - </message> - <message> <source>Find &Next</source> <translation>Знайти &наступне</translation> </message> @@ -947,14 +966,6 @@ Reason: <translation>&Вид</translation> </message> <message> - <source>Zoom &in</source> - <translation>З&більшити</translation> - </message> - <message> - <source>Zoom &out</source> - <translation>З&меншити</translation> - </message> - <message> <source>Normal &Size</source> <translation>&Нормальний розмір</translation> </message> @@ -979,28 +990,20 @@ Reason: <translation>Пошук</translation> </message> <message> - <source>ALT+S</source> - <translation></translation> - </message> - <message> - <source>&Go</source> - <translation>П&ерейти</translation> - </message> - <message> - <source>&Home</source> - <translation>&Домівка</translation> + <source>E&xit</source> + <translation>Ви&йти</translation> </message> <message> - <source>ALT+Home</source> + <source>ALT+S</source> <translation></translation> </message> <message> - <source>&Back</source> - <translation>&Назад</translation> + <source>ALT+P</source> + <translation></translation> </message> <message> - <source>&Forward</source> - <translation>&Вперед</translation> + <source>&Go</source> + <translation>П&ерейти</translation> </message> <message> <source>Sync with Table of Contents</source> @@ -1100,6 +1103,17 @@ Reason: </message> </context> <context> + <name>OpenPagesWidget</name> + <message> + <source>Close %1</source> + <translation>Закрити %1</translation> + </message> + <message> + <source>Close All Except %1</source> + <translation>Закрити все, крім %1</translation> + </message> +</context> +<context> <name>OutputPage</name> <message> <source>Form</source> @@ -1318,6 +1332,14 @@ Do you want to remove it?</source> <source>Restore to default</source> <translation>Відновити типово</translation> </message> + <message> + <source>Appearance</source> + <translation>Зовнішій вигляд</translation> + </message> + <message> + <source>Show tabs for each individual page</source> + <translation>Показувати вкладки для кожної окремої сторінки</translation> + </message> </context> <context> <name>QCollectionGenerator</name> @@ -1519,6 +1541,29 @@ qhelpgenerator <файл-проекту-довідки> [опції] </message> </context> <context> + <name>TabBar</name> + <message> + <source>(Untitled)</source> + <translation>(Без назви)</translation> + </message> + <message> + <source>New &Tab</source> + <translation>&Нова вкладка</translation> + </message> + <message> + <source>&Close Tab</source> + <translation>&Закрити вкладку</translation> + </message> + <message> + <source>Close Other Tabs</source> + <translation>Закрити інші вкладки</translation> + </message> + <message> + <source>Add Bookmark for this Page...</source> + <translation>Додати закладку для цієї сторінки...</translation> + </message> +</context> +<context> <name>TopicChooser</name> <message> <source>Choose Topic</source> diff --git a/translations/designer_ru.ts b/translations/designer_ru.ts index 471a366..fdaeda3 100644 --- a/translations/designer_ru.ts +++ b/translations/designer_ru.ts @@ -872,8 +872,6 @@ <source>Invalid stretch value for '%1': '%2'</source> <extracomment>Parsing layout stretch values ---------- -Parsing layout stretch values ----------- Parsing layout stretch values</extracomment> <translation>Некорректный коэффициент растяжения для '%1': '%2'</translation> </message> @@ -881,8 +879,6 @@ Parsing layout stretch values</extracomment> <source>Invalid minimum size for '%1': '%2'</source> <extracomment>Parsing grid layout minimum size values ---------- -Parsing grid layout minimum size values ----------- Parsing grid layout minimum size values</extracomment> <translation>Некорректный минимальный размер для '%1': '%2'</translation> </message> @@ -1899,8 +1895,6 @@ Container pages should only be added by specifying them in XML returned by the d <source>An empty class name was passed on to %1 (object name: '%2').</source> <extracomment>Empty class name passed to widget factory method ---------- -Empty class name passed to widget factory method ----------- Empty class name passed to widget factory method</extracomment> <translation>Методу %1 (объекта '%2') было передано пустое имя класса.</translation> </message> diff --git a/translations/designer_uk.ts b/translations/designer_uk.ts index 7d1065c..4f45ff7 100644 --- a/translations/designer_uk.ts +++ b/translations/designer_uk.ts @@ -409,18 +409,10 @@ <translation>Видалити підвікно</translation> </message> <message> - <source>page</source> - <translation>сторінка</translation> - </message> - <message> <source>Insert Subwindow</source> <translation>Вставити підвікно</translation> </message> <message> - <source>subwindow</source> - <translation>підвікно</translation> - </message> - <message> <source>Subwindow</source> <translation>Підвікно</translation> </message> @@ -461,6 +453,10 @@ <translation>Змінити розташування '%1' з %2 на %3</translation> </message> <message> + <source>Change layout alignment</source> + <translation>Змінити вирівнювання розташування</translation> + </message> + <message> <source>Set action text</source> <translation>Встановити текст дії</translation> </message> @@ -876,8 +872,6 @@ <source>Invalid stretch value for '%1': '%2'</source> <extracomment>Parsing layout stretch values ---------- -Parsing layout stretch values ----------- Parsing layout stretch values</extracomment> <translation>Неправильне значення розтягування для '%1': '%2'</translation> </message> @@ -885,8 +879,6 @@ Parsing layout stretch values</extracomment> <source>Invalid minimum size for '%1': '%2'</source> <extracomment>Parsing grid layout minimum size values ---------- -Parsing grid layout minimum size values ----------- Parsing grid layout minimum size values</extracomment> <translation>Неправильне значення мінімального розміру для '%1': '%2'</translation> </message> @@ -1820,8 +1812,8 @@ Container pages should only be added by specifying them in XML returned by the d <translation>&Файл</translation> </message> <message> - <source>Edit</source> - <translation>Правка</translation> + <source>&Edit</source> + <translation>&Правка</translation> </message> <message> <source>F&orm</source> @@ -1902,8 +1894,6 @@ Container pages should only be added by specifying them in XML returned by the d <source>An empty class name was passed on to %1 (object name: '%2').</source> <extracomment>Empty class name passed to widget factory method ---------- -Empty class name passed to widget factory method ----------- Empty class name passed to widget factory method</extracomment> <translation>До %1 було передане пусте ім'я класу (ім'я об'єкта: '%2').</translation> </message> @@ -3741,6 +3731,10 @@ Do you want overwrite the template?</source> <translation>Успадкована</translation> </message> <message> + <source>[Theme] %1</source> + <translation>[Тема] %1</translation> + </message> + <message> <source>Horizontal</source> <translation>Горизонтальне</translation> </message> @@ -3749,6 +3743,10 @@ Do you want overwrite the template?</source> <translation>Вертикальне</translation> </message> <message> + <source>Theme</source> + <translation>Тема</translation> + </message> + <message> <source>Normal Off</source> <translation>Нормальний, вимк</translation> </message> @@ -4337,6 +4335,17 @@ Do you want overwrite the template?</source> </message> </context> <context> + <name>qdesigner_internal::IconThemeDialog</name> + <message> + <source>Set Icon From Theme</source> + <translation>Встановити піктограму з теми</translation> + </message> + <message> + <source>Input icon name from the current theme:</source> + <translation>Введіть назву піктограми з поточної теми:</translation> + </message> +</context> +<context> <name>qdesigner_internal::ItemListEditor</name> <message> <source>Items List</source> @@ -4486,20 +4495,24 @@ Do you want overwrite the template?</source> <translation>&Значок:</translation> </message> <message> - <source>Shortcut:</source> - <translation>Поєднання клавіш:</translation> + <source>...</source> + <translation>...</translation> </message> <message> - <source>Checkable:</source> - <translation>Прапорець:</translation> + <source>T&oolTip:</source> + <translation>Спливаюча &підказка:</translation> </message> <message> - <source>ToolTip:</source> - <translation>Спливаюча підказка:</translation> + <source>Icon th&eme:</source> + <translation>Те&ма значків:</translation> </message> <message> - <source>...</source> - <translation>...</translation> + <source>&Checkable:</source> + <translation>П&рапорець:</translation> + </message> + <message> + <source>&Shortcut:</source> + <translation>Поєднання клаві&ш:</translation> </message> </context> <context> @@ -4750,6 +4763,10 @@ Please select another name.</source> <translation>Оберіть файл...</translation> </message> <message> + <source>Set Icon From Theme...</source> + <translation>Встановити піктограму з теми...</translation> + </message> + <message> <source>Copy Path</source> <translation>Копіювати шлях</translation> </message> @@ -4761,6 +4778,10 @@ Please select another name.</source> <source>...</source> <translation>...</translation> </message> + <message> + <source>[Theme] %1</source> + <translation>[Тема] %1</translation> + </message> </context> <context> <name>qdesigner_internal::PlainTextEditorDialog</name> @@ -5084,6 +5105,42 @@ Class: %2</source> <context> <name>qdesigner_internal::QDesignerTaskMenu</name> <message> + <source>Layout Alignment</source> + <translation>Вирівнювання розташування</translation> + </message> + <message> + <source>No Horizontal Alignment</source> + <translation>Без горизонтального вирівнювання</translation> + </message> + <message> + <source>Left</source> + <translation>Вліво</translation> + </message> + <message> + <source>Center Horizontally</source> + <translation>Центрувати горизонтально</translation> + </message> + <message> + <source>Right</source> + <translation>Вправо</translation> + </message> + <message> + <source>No Vertical Alignment</source> + <translation>Без вертикального вирівнювання</translation> + </message> + <message> + <source>Top</source> + <translation>Догори</translation> + </message> + <message> + <source>Center Vertically</source> + <translation>Центрувати вертикально</translation> + </message> + <message> + <source>Bottom</source> + <translation>Донизу</translation> + </message> + <message> <source>Change objectName...</source> <translation>Змінити objectName...</translation> </message> @@ -5351,6 +5408,10 @@ Class: %2</source> <source>Insert &Image</source> <translation>Вставити &зображення</translation> </message> + <message> + <source>Simplify Rich Text</source> + <translation>Спростити форматований текст</translation> + </message> </context> <context> <name>qdesigner_internal::ScriptDialog</name> diff --git a/translations/qt_ru.ts b/translations/qt_ru.ts index 19c0544..7dd4320 100644 --- a/translations/qt_ru.ts +++ b/translations/qt_ru.ts @@ -1264,7 +1264,7 @@ to </message> <message> <source>Unable to rollback transaction</source> - <translation>Невозможно отозвать транзакцию</translation> + <translation>Невозможно откатить транзакцию</translation> </message> <message> <source>Unable to set autocommit</source> @@ -3262,7 +3262,7 @@ Please verify the correct directory name was given.</source> </message> <message> <source>Unable to rollback transaction</source> - <translation>Невозможно отозвать транзакцию</translation> + <translation>Невозможно откатить транзакцию</translation> </message> </context> <context> @@ -3569,7 +3569,7 @@ Please verify the correct directory name was given.</source> </message> <message> <source>Unable to rollback transaction</source> - <translation>Невозможно отозвать транзакцию</translation> + <translation>Невозможно откатить транзакцию</translation> </message> </context> <context> @@ -3722,6 +3722,10 @@ Please verify the correct directory name was given.</source> <source>Actions</source> <translation>Действия</translation> </message> + <message> + <source>Corner Toolbar</source> + <translation>Угловая панель</translation> + </message> </context> <context> <name>QMessageBox</name> @@ -4062,7 +4066,7 @@ Please verify the correct directory name was given.</source> </message> <message> <source>Unable to rollback transaction</source> - <translation>Невозможно отозвать транзакцию</translation> + <translation>Невозможно откатить транзакцию</translation> </message> </context> <context> @@ -4116,7 +4120,7 @@ Please verify the correct directory name was given.</source> </message> <message> <source>Unable to rollback transaction</source> - <translation>Невозможно отозвать транзакцию</translation> + <translation>Невозможно откатить транзакцию</translation> </message> <message> <source>Unable to enable autocommit</source> @@ -4212,7 +4216,7 @@ Please verify the correct directory name was given.</source> </message> <message> <source>Could not rollback transaction</source> - <translation>Не удалось отозвать транзакцию</translation> + <translation>Не удалось откатить транзакцию</translation> </message> <message> <source>Unable to subscribe</source> @@ -5020,7 +5024,7 @@ Please choose a different file name.</source> </message> <message> <source>Unable to rollback transaction</source> - <translation>Невозможно отозвать транзакцию</translation> + <translation>Невозможно откатить транзакцию</translation> </message> </context> <context> @@ -5054,7 +5058,7 @@ Please choose a different file name.</source> </message> <message> <source>Unable to rollback transaction</source> - <translation>Невозможно отозвать транзакцию</translation> + <translation>Невозможно откатить транзакцию</translation> </message> </context> <context> @@ -5510,15 +5514,15 @@ Please choose a different file name.</source> <message> <source>Space</source> <extracomment>This and all following "incomprehensible" strings in QShortcut context are key names. Please use the localized names appearing on actual keyboards or whatever is commonly used.</extracomment> - <translation type="unfinished">Пробел</translation> + <translation>Пробел</translation> </message> <message> <source>Esc</source> - <translation type="unfinished">Esc</translation> + <translation>Esc</translation> </message> <message> <source>Tab</source> - <translation type="unfinished">Tab</translation> + <translation>Tab</translation> </message> <message> <source>Backtab</source> @@ -5538,67 +5542,67 @@ Please choose a different file name.</source> </message> <message> <source>Ins</source> - <translation type="unfinished">Ins</translation> + <translation>Ins</translation> </message> <message> <source>Del</source> - <translation type="unfinished">Del</translation> + <translation>Del</translation> </message> <message> <source>Pause</source> - <translation type="unfinished">Pause</translation> + <translation>Pause</translation> </message> <message> <source>Print</source> - <translation type="unfinished">Print</translation> + <translation>Print</translation> </message> <message> <source>SysReq</source> - <translation type="unfinished">SysReq</translation> + <translation>SysReq</translation> </message> <message> <source>Home</source> - <translation type="unfinished">Home</translation> + <translation>Home</translation> </message> <message> <source>End</source> - <translation type="unfinished">End</translation> + <translation>End</translation> </message> <message> <source>Left</source> - <translation type="unfinished">Влево</translation> + <translation>Влево</translation> </message> <message> <source>Up</source> - <translation type="unfinished">Вверх</translation> + <translation>Вверх</translation> </message> <message> <source>Right</source> - <translation type="unfinished">Вправо</translation> + <translation>Вправо</translation> </message> <message> <source>Down</source> - <translation type="unfinished">Вниз</translation> + <translation>Вниз</translation> </message> <message> <source>PgUp</source> - <translation type="unfinished">PgUp</translation> + <translation>PgUp</translation> </message> <message> <source>PgDown</source> - <translation type="unfinished">PgDown</translation> + <translation>PgDown</translation> </message> <message> <source>CapsLock</source> - <translation type="unfinished">CapsLock</translation> + <translation>CapsLock</translation> </message> <message> <source>NumLock</source> - <translation type="unfinished">NumLock</translation> + <translation>NumLock</translation> </message> <message> <source>ScrollLock</source> - <translation type="unfinished">ScrollLock</translation> + <translation>ScrollLock</translation> </message> <message> <source>Menu</source> @@ -5626,15 +5630,15 @@ Please choose a different file name.</source> </message> <message> <source>Volume Down</source> - <translation type="unfinished">Тише</translation> + <translation>Тише</translation> </message> <message> <source>Volume Mute</source> - <translation type="unfinished">Выключить звук</translation> + <translation>Выключить звук</translation> </message> <message> <source>Volume Up</source> - <translation type="unfinished">Громче</translation> + <translation>Громче</translation> </message> <message> <source>Bass Boost</source> @@ -5696,7 +5700,7 @@ Please choose a different file name.</source> </message> <message> <source>Standby</source> - <translation type="unfinished">Режим ожидания</translation> + <translation>Режим ожидания</translation> </message> <message> <source>Open URL</source> @@ -5776,31 +5780,31 @@ Please choose a different file name.</source> </message> <message> <source>Monitor Brightness Up</source> - <translation type="unfinished">Увеличить яркость монитора</translation> + <translation>Увеличить яркость монитора</translation> </message> <message> <source>Monitor Brightness Down</source> - <translation type="unfinished">Уменьшить яркость монитора</translation> + <translation>Уменьшить яркость монитора</translation> </message> <message> <source>Keyboard Light On/Off</source> - <translation type="unfinished">Вкл./Откл. подсветку клавиатуры</translation> + <translation>Вкл./Откл. подсветку клавиатуры</translation> </message> <message> <source>Keyboard Brightness Up</source> - <translation type="unfinished">Увеличить яркость подсветки клавиатуры</translation> + <translation>Увеличить яркость подсветки клавиатуры</translation> </message> <message> <source>Keyboard Brightness Down</source> - <translation type="unfinished">Уменьшить яркость подсветки клавиатуры</translation> + <translation>Уменьшить яркость подсветки клавиатуры</translation> </message> <message> <source>Power Off</source> - <translation type="unfinished">Отключение питания</translation> + <translation>Отключение питания</translation> </message> <message> <source>Wake Up</source> - <translation type="unfinished">Пробуждение</translation> + <translation>Пробуждение</translation> </message> <message> <source>Eject</source> @@ -5856,7 +5860,7 @@ Please choose a different file name.</source> </message> <message> <source>Back Forward</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Назад/вперёд</translation> </message> <message> <source>Application Left</source> @@ -5900,7 +5904,7 @@ Please choose a different file name.</source> </message> <message> <source>Display</source> - <translation type="unfinished"></translation> + <translation type="unfinished">Отобразить</translation> </message> <message> <source>DOS</source> @@ -6355,7 +6359,7 @@ Please choose a different file name.</source> <message> <source>Hangup</source> <extracomment>Button to end a call (note: a separate button is used to start the call)</extracomment> - <translation type="unfinished">Положить трубку</translation> + <translation type="unfinished">Отбой</translation> </message> <message> <source>Flip</source> @@ -6363,23 +6367,23 @@ Please choose a different file name.</source> </message> <message> <source>Ctrl</source> - <translation></translation> + <translation>Ctrl</translation> </message> <message> <source>Shift</source> - <translation></translation> + <translation>Shift</translation> </message> <message> <source>Alt</source> - <translation></translation> + <translation>Alt</translation> </message> <message> <source>Meta</source> - <translation></translation> + <translation>Meta</translation> </message> <message> <source>+</source> - <translation></translation> + <translation>+</translation> </message> <message> <source>F%1</source> @@ -6720,6 +6724,72 @@ Please choose a different file name.</source> </message> </context> <context> + <name>QSymSQLDriver</name> + <message> + <source>Invalid option: </source> + <translation>Неверный параметр: </translation> + </message> + <message> + <source>Error opening database</source> + <translation>Ошибка открытия базы данных</translation> + </message> + <message> + <source>POLICY_DB_DEFAULT must be defined before any other POLICY definitions can be used</source> + <translation>POLICY_DB_DEFAULT должна быть задана до начала использования других определений POLICY</translation> + </message> + <message> + <source>Unable to begin transaction</source> + <translation>Невозможно начать транзакцию</translation> + </message> + <message> + <source>Unable to commit transaction</source> + <translation>Невозможно завершить транзакцию</translation> + </message> + <message> + <source>Unable to rollback transaction</source> + <translation>Невозможно откатить транзакцию</translation> + </message> +</context> +<context> + <name>QSymSQLResult</name> + <message> + <source>Error retrieving column count</source> + <translation>Ошибка получения количества колонок</translation> + </message> + <message> + <source>Error retrieving column name</source> + <translation>Ошибка получения названия колонки</translation> + </message> + <message> + <source>Error retrieving column type</source> + <translation>Ошибка получения типа колонки</translation> + </message> + <message> + <source>Unable to fetch row</source> + <translation>Невозможно получить строку</translation> + </message> + <message> + <source>Unable to execute statement</source> + <translation>Невозможно выполнить выражение</translation> + </message> + <message> + <source>Statement is not prepared</source> + <translation>Выражение не подготовлено</translation> + </message> + <message> + <source>Unable to reset statement</source> + <translation>Невозможно сбросить выражение</translation> + </message> + <message> + <source>Unable to bind parameters</source> + <translation>Невозможно привязать параметр</translation> + </message> + <message> + <source>Parameter count mismatch</source> + <translation>Количество параметров не совпадает</translation> + </message> +</context> +<context> <name>QSymbianSocketEngine</name> <message> <source>Unable to initialize non-blocking socket</source> @@ -7409,12 +7479,12 @@ Please choose a different file name.</source> <message> <source>Toggle Controls</source> <comment>Toggle Media Controls</comment> - <translation type="unfinished">Вкл/выкл управление</translation> + <translation>Вкл/выкл управление</translation> </message> <message> <source>Toggle Loop</source> <comment>Toggle Media Loop Playback</comment> - <translation type="unfinished">Вкл/выкл зацикленность</translation> + <translation>Вкл/выкл зацикленность</translation> </message> <message> <source>Enter Fullscreen</source> @@ -8292,7 +8362,7 @@ Please choose a different file name.</source> <name>QmlJSDebugger::ToolBox</name> <message> <source>Qt Quick Toolbox</source> - <translation>Инструментарий Qt Quick</translation> + <translation type="obsolete">Инструментарий Qt Quick</translation> </message> </context> <context> @@ -10134,7 +10204,7 @@ Please choose a different file name.</source> </message> <message> <source>'%1' attribute contains invalid QName content: %2.</source> - <translation type="unfinished">Атрибут `%1` имеет некорректное содержимое QName: %2.</translation> + <translation>Атрибут «%1» имеет некорректное содержимое QName: %2.</translation> </message> </context> </TS> diff --git a/translations/qt_uk.ts b/translations/qt_uk.ts index c3cfec0..115b9e1 100644 --- a/translations/qt_uk.ts +++ b/translations/qt_uk.ts @@ -9,10 +9,21 @@ </message> </context> <context> + <name>Debugger::JSAgentWatchData</name> + <message> + <source>[Array of length %1]</source> + <translation>[Масив довжини %1]</translation> + </message> + <message> + <source><undefined></source> + <translation><не визначено></translation> + </message> +</context> +<context> <name>FakeReply</name> <message> - <source>Fake error !</source> - <translation>Несправжня помилка !</translation> + <source>Fake error!</source> + <translation>Несправжня помилка!</translation> </message> <message> <source>Invalid URL</source> @@ -1062,6 +1073,14 @@ to <context> <name>QAccessibleButton</name> <message> + <source>Uncheck</source> + <translation>Зняти відмітку</translation> + </message> + <message> + <source>Check</source> + <translation>Відмітити</translation> + </message> + <message> <source>Press</source> <translation>Натисніть</translation> </message> @@ -2450,6 +2469,10 @@ to <source>Cannot create %1 for output</source> <translation>Неможливо створити %1 для виводу</translation> </message> + <message> + <source>No file engine available or engine does not support UnMapExtension</source> + <translation>Жодний файловий рушій не є доступним або підтримує UnMapExtension</translation> + </message> </context> <context> <name>QFileDialog</name> @@ -3411,6 +3434,18 @@ Do you want to delete it anyway?</source> <source>Cannot resolve symbol "%1" in %2: %3</source> <translation>Неможливо розв’язати символ "%1" в %2: %3</translation> </message> + <message> + <source>'%1' is not an ELF object (%2)</source> + <translation>'%1' не є об'єктом ELF (%2)</translation> + </message> + <message> + <source>'%1' is not an ELF object</source> + <translation>'%1' не є об'єктом ELF</translation> + </message> + <message> + <source>'%1' is an invalid ELF object (%2)</source> + <translation>'%1' є неправильним об'єктом ELF (%2)</translation> + </message> </context> <context> <name>QLineEdit</name> @@ -3508,6 +3543,10 @@ Do you want to delete it anyway?</source> <source>%1: Unknown error %2</source> <translation>%1: Невідома помилка %2</translation> </message> + <message> + <source>%1: Access denied</source> + <translation>%1: Доступ заборонено</translation> + </message> </context> <context> <name>QMYSQLDriver</name> @@ -3682,6 +3721,10 @@ Do you want to delete it anyway?</source> <source>Actions</source> <translation>Дії</translation> </message> + <message> + <source>Corner Toolbar</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>QMessageBox</name> @@ -3849,10 +3892,6 @@ Do you want to delete it anyway?</source> <context> <name>QNetworkAccessDataBackend</name> <message> - <source>Operation not supported on %1</source> - <translation>Непідтримувана для %1 операція</translation> - </message> - <message> <source>Invalid URI: %1</source> <translation>Неправильний URI: %1</translation> </message> @@ -3947,6 +3986,10 @@ Do you want to delete it anyway?</source> <translation>Помилка мережевої сесії.</translation> </message> <message> + <source>backend start error.</source> + <translation>помилка запуску драйвера.</translation> + </message> + <message> <source>Temporary network failure.</source> <translation>Тимчасовий збій мережі.</translation> </message> @@ -4139,6 +4182,10 @@ Do you want to delete it anyway?</source> <source>invalid query: "%1"</source> <translation>неправильний запит "%1"</translation> </message> + <message> + <source>Host not found</source> + <translation>Вузол не знайдено</translation> + </message> </context> <context> <name>QPPDOptionsModel</name> @@ -5424,10 +5471,6 @@ Do you want to overwrite it?</source> <translation>%1: невідома помилка %2</translation> </message> <message> - <source>%1: key error</source> - <translation>%1: помилка ключа</translation> - </message> - <message> <source>%1: unable to make key</source> <translation>%1: неможливо створити ключ</translation> </message> @@ -5452,6 +5495,10 @@ Do you want to overwrite it?</source> <translation>%1: обмеження розміру встановлені системою</translation> </message> <message> + <source>%1: bad name</source> + <translation>%1: пагане ім'я</translation> + </message> + <message> <source>%1: not attached</source> <translation>%1: не прикріплено</translation> </message> @@ -6675,6 +6722,187 @@ Do you want to overwrite it?</source> </message> </context> <context> + <name>QSymSQLDriver</name> + <message> + <source>Invalid option: </source> + <translation>Неправильна опція: </translation> + </message> + <message> + <source>Error opening database</source> + <translation>Помилка відкриття бази даних</translation> + </message> + <message> + <source>POLICY_DB_DEFAULT must be defined before any other POLICY definitions can be used</source> + <translation>POLICY_DB_DEFAULT повинна бути визначена до того, як будь-які інші визначення POLICY можуть бути використані</translation> + </message> + <message> + <source>Unable to begin transaction</source> + <translation>Неможливо почати транзакцію</translation> + </message> + <message> + <source>Unable to commit transaction</source> + <translation>Неможливо завершити транзакцію</translation> + </message> + <message> + <source>Unable to rollback transaction</source> + <translation>Неможливо відкотити транзакцію</translation> + </message> +</context> +<context> + <name>QSymSQLResult</name> + <message> + <source>Error retrieving column count</source> + <translation>Помилка отримання кількості стовпців</translation> + </message> + <message> + <source>Error retrieving column name</source> + <translation>Помилка отримання назви стовпця</translation> + </message> + <message> + <source>Error retrieving column type</source> + <translation>Помилка отримання типу стовпця</translation> + </message> + <message> + <source>Unable to fetch row</source> + <translation>Неможливо отримати рядок</translation> + </message> + <message> + <source>Unable to execute statement</source> + <translation>Неможливо виконати вираз</translation> + </message> + <message> + <source>Statement is not prepared</source> + <translation>Вираз не підготовлено</translation> + </message> + <message> + <source>Unable to reset statement</source> + <translation>Неможливо скинути вираз</translation> + </message> + <message> + <source>Unable to bind parameters</source> + <translation>Неможливо прив'язати параметри</translation> + </message> + <message> + <source>Parameter count mismatch</source> + <translation>Кількість параметрів не збігається</translation> + </message> +</context> +<context> + <name>QSymbianSocketEngine</name> + <message> + <source>Unable to initialize non-blocking socket</source> + <translation>Неможливо ініціалізувати неблокувальний сокет</translation> + </message> + <message> + <source>Unable to initialize broadcast socket</source> + <translation>Неможливо ініціалізувати широкомовний сокет</translation> + </message> + <message> + <source>Attempt to use IPv6 socket on a platform with no IPv6 support</source> + <translation>Спроба використати сокет IPv6 на платформі без підтримки IPv6</translation> + </message> + <message> + <source>The remote host closed the connection</source> + <translation>Віддалений вузол закрив з’єднання</translation> + </message> + <message> + <source>Network operation timed out</source> + <translation>Час на мережеву операцію вичерпано</translation> + </message> + <message> + <source>Out of resources</source> + <translation>Недостатньо ресурсів</translation> + </message> + <message> + <source>Unsupported socket operation</source> + <translation>Непідтримувана для сокета операція</translation> + </message> + <message> + <source>Protocol type not supported</source> + <translation>Тип протоколу не підтримується</translation> + </message> + <message> + <source>Invalid socket descriptor</source> + <translation>Неправильний дескриптор сокета</translation> + </message> + <message> + <source>Host unreachable</source> + <translation>Вузол недоступний</translation> + </message> + <message> + <source>Network unreachable</source> + <translation>Мережа недоступна</translation> + </message> + <message> + <source>Permission denied</source> + <translation>Доступ заборонено</translation> + </message> + <message> + <source>Connection timed out</source> + <translation>Час на з’єднання вичерпано</translation> + </message> + <message> + <source>Connection refused</source> + <translation>У з'єднанні відмовлено</translation> + </message> + <message> + <source>The bound address is already in use</source> + <translation>Адреса вже використовується</translation> + </message> + <message> + <source>The address is not available</source> + <translation>Адреса не доступна</translation> + </message> + <message> + <source>The address is protected</source> + <translation>Адреса захищена</translation> + </message> + <message> + <source>Datagram was too large to send</source> + <translation>Датаграма завелика, щоб надіслати</translation> + </message> + <message> + <source>Unable to send a message</source> + <translation>Неможливо надіслати повідомлення</translation> + </message> + <message> + <source>Unable to receive a message</source> + <translation>Неможливо отримати повідомлення</translation> + </message> + <message> + <source>Unable to write</source> + <translation>Неможливо записати</translation> + </message> + <message> + <source>Network error</source> + <translation>Помилка мережі</translation> + </message> + <message> + <source>Another socket is already listening on the same port</source> + <translation>Інший сокет вже слухає цей самий порт</translation> + </message> + <message> + <source>Operation on non-socket</source> + <translation>Операція з не-сокетом</translation> + </message> + <message> + <source>The proxy type is invalid for this operation</source> + <translation>Неправильний тип проксі-серверу для цієї операції</translation> + </message> + <message> + <source>The address is invalid for this operation</source> + <translation>Неправильна адреса для цієї операції</translation> + </message> + <message> + <source>The specified network session is not opened</source> + <translation>Вказаний мережевий сеанс не відкрито</translation> + </message> + <message> + <source>Unknown error</source> + <translation>Невідома помилка</translation> + </message> +</context> +<context> <name>QSystemSemaphore</name> <message> <source>%1: permission denied</source> @@ -6693,6 +6921,10 @@ Do you want to overwrite it?</source> <translation>%1: недостатньо ресурсів</translation> </message> <message> + <source>%1: name error</source> + <translation>%1: помилка імені</translation> + </message> + <message> <source>%1: unknown error %2</source> <translation>%1: невідома помилка %2</translation> </message> @@ -6782,11 +7014,21 @@ Do you want to overwrite it?</source> <context> <name>QUndoGroup</name> <message> + <source>Undo %1</source> + <translation>Повернути %1</translation> + </message> + <message> <source>Undo</source> + <comment>Default text for undo action</comment> <translation>Повернути</translation> </message> <message> + <source>Redo %1</source> + <translation>Повторити %1</translation> + </message> + <message> <source>Redo</source> + <comment>Default text for redo action</comment> <translation>Повторити</translation> </message> </context> @@ -6800,11 +7042,21 @@ Do you want to overwrite it?</source> <context> <name>QUndoStack</name> <message> + <source>Undo %1</source> + <translation>Повернути %1</translation> + </message> + <message> <source>Undo</source> + <comment>Default text for undo action</comment> <translation>Повернути</translation> </message> <message> + <source>Redo %1</source> + <translation>Повторити %1</translation> + </message> + <message> <source>Redo</source> + <comment>Default text for redo action</comment> <translation>Повторити</translation> </message> </context> @@ -6881,6 +7133,10 @@ Do you want to overwrite it?</source> <source>File does not exist</source> <translation>Файл не існує</translation> </message> + <message> + <source>Loading is handled by the media engine</source> + <translation>Звантаження оброблене рушієм мультимедіа</translation> + </message> </context> <context> <name>QWebPage</name> @@ -6888,10 +7144,6 @@ Do you want to overwrite it?</source> <source>Redirection limit reached</source> <translation>Ліміт перенаправлень вичерпано</translation> </message> - <message> - <source>Bad HTTP request</source> - <translation>Поганий запит HTTP</translation> - </message> <message numerus="yes"> <source>%n file(s)</source> <comment>number of chosen file</comment> @@ -6932,6 +7184,11 @@ Do you want to overwrite it?</source> <translation>Файл не обрано</translation> </message> <message> + <source>Details</source> + <comment>text to display in <details> tag when it has no <summary> child</comment> + <translation>Деталі</translation> + </message> + <message> <source>Open in New Window</source> <comment>Open in New Window context menu item</comment> <translation>Відкрити в новому вікні</translation> @@ -6962,6 +7219,61 @@ Do you want to overwrite it?</source> <translation>Копіювати зображення</translation> </message> <message> + <source>Copy Image Address</source> + <comment>Copy Image Address menu item</comment> + <translation>Скопіювати адресу зображення</translation> + </message> + <message> + <source>Open Video</source> + <comment>Open Video in New Window</comment> + <translation>Відкрити відео</translation> + </message> + <message> + <source>Open Audio</source> + <comment>Open Audio in New Window</comment> + <translation>Відкрити аудіо</translation> + </message> + <message> + <source>Copy Video</source> + <comment>Copy Video Link Location</comment> + <translation>Копіювати відео</translation> + </message> + <message> + <source>Copy Audio</source> + <comment>Copy Audio Link Location</comment> + <translation>Копіювати аудіо</translation> + </message> + <message> + <source>Toggle Controls</source> + <comment>Toggle Media Controls</comment> + <translation>Увімкнути/викнути управління</translation> + </message> + <message> + <source>Toggle Loop</source> + <comment>Toggle Media Loop Playback</comment> + <translation>Увімкнути/викнути програвання по колу</translation> + </message> + <message> + <source>Enter Fullscreen</source> + <comment>Switch Video to Fullscreen</comment> + <translation>На повний екран</translation> + </message> + <message> + <source>Play</source> + <comment>Play</comment> + <translation>Грати</translation> + </message> + <message> + <source>Pause</source> + <comment>Pause</comment> + <translation>Пауза</translation> + </message> + <message> + <source>Mute</source> + <comment>Mute</comment> + <translation>Без звуку</translation> + </message> + <message> <source>Open Frame</source> <comment>Open Frame in New Window context menu item</comment> <translation>Відкрити фрейм</translation> @@ -7002,6 +7314,11 @@ Do you want to overwrite it?</source> <translation>Вставити</translation> </message> <message> + <source>Select All</source> + <comment>Select All context menu item</comment> + <translation>Виділити все</translation> + </message> + <message> <source>No Guesses Found</source> <comment>No Guesses Found context menu item</comment> <translation>Підказок не знайдено</translation> @@ -7467,10 +7784,6 @@ Do you want to overwrite it?</source> <translation>Пересунути курсор в кінець документа</translation> </message> <message> - <source>Select all</source> - <translation>Виділити все</translation> - </message> - <message> <source>Select to the next character</source> <translation>Виділити до наступного символу</translation> </message> @@ -7969,6 +8282,94 @@ Do you want to overwrite it?</source> </message> </context> <context> + <name>QmlJSDebugger::LiveSelectionTool</name> + <message> + <source>Items</source> + <translation>Елементи</translation> + </message> +</context> +<context> + <name>QmlJSDebugger::QmlToolBar</name> + <message> + <source>Inspector Mode</source> + <translation>Режим інспектора</translation> + </message> + <message> + <source>Play/Pause Animations</source> + <translation>Грати/зупинити анімації</translation> + </message> + <message> + <source>Select</source> + <translation>Обрати</translation> + </message> + <message> + <source>Select (Marquee)</source> + <translation>Обрати (Marquee)</translation> + </message> + <message> + <source>Zoom</source> + <translation>Масштабувати</translation> + </message> + <message> + <source>Color Picker</source> + <translation>Вибір кольору</translation> + </message> + <message> + <source>Apply Changes to QML Viewer</source> + <translation>Застосувати зміни до переглядача QML</translation> + </message> + <message> + <source>Apply Changes to Document</source> + <translation>Застосувати зміни до документа</translation> + </message> + <message> + <source>Tools</source> + <translation>Інструменти</translation> + </message> + <message> + <source>1x</source> + <translation></translation> + </message> + <message> + <source>0.5x</source> + <translation></translation> + </message> + <message> + <source>0.25x</source> + <translation></translation> + </message> + <message> + <source>0.125x</source> + <translation></translation> + </message> + <message> + <source>0.1x</source> + <translation></translation> + </message> +</context> +<context> + <name>QmlJSDebugger::ToolBarColorBox</name> + <message> + <source>Copy Color</source> + <translation>Копіювати колір</translation> + </message> +</context> +<context> + <name>QmlJSDebugger::ZoomTool</name> + <message> + <source>Zoom to &100%</source> + <translation>Масштабувати до &100%</translation> + </message> + <message> + <source>Zoom In</source> + <translation>Збільшити</translation> + </message> + <message> + <source>Zoom Out</source> + <translation>Зменшити</translation> + </message> +</context> +<context> <name>QtXmlPatterns</name> <message> <source>%1 is an unsupported encoding.</source> diff --git a/translations/qtconfig_ru.ts b/translations/qtconfig_ru.ts index a200ac1..c5ddbb0 100644 --- a/translations/qtconfig_ru.ts +++ b/translations/qtconfig_ru.ts @@ -33,7 +33,7 @@ </message> <message> <source>On The Spot</source> - <translation type="unfinished"></translation> + <translation>В тексте</translation> </message> <message> <source>Unknown</source> @@ -101,15 +101,15 @@ </message> <message> <source>Over The Spot</source> - <translation type="unfinished"></translation> + <translation>Поверх текста</translation> </message> <message> <source>Off The Spot</source> - <translation type="unfinished"></translation> + <translation>Вне текста</translation> </message> <message> <source>Root</source> - <translation type="unfinished"></translation> + <translation>Общий</translation> </message> <message> <source>Select a Directory</source> diff --git a/translations/qtconfig_uk.ts b/translations/qtconfig_uk.ts index 24a9b7d..6cdae56 100644 --- a/translations/qtconfig_uk.ts +++ b/translations/qtconfig_uk.ts @@ -36,6 +36,10 @@ <translation>У вікні документу</translation> </message> <message> + <source>Unknown</source> + <translation>Невідомий</translation> + </message> + <message> <source>Auto (default)</source> <translation>Автоматично (типово)</translation> </message> @@ -92,6 +96,10 @@ <translation>Збереження змін...</translation> </message> <message> + <source>Saved changes.</source> + <translation>Зміни збережено.</translation> + </message> + <message> <source>Over The Spot</source> <translation>Над вікном документу</translation> </message> @@ -124,25 +132,6 @@ <translation>Зберегти зміни до налаштувань?</translation> </message> <message> - <source>&Yes</source> - <translation>&Так</translation> - </message> - <message> - <source>&No</source> - <translation>&Ні</translation> - </message> - <message> - <source>&Cancel</source> - <translation>&Скасувати</translation> - </message> -</context> -<context> - <name>MainWindowBase</name> - <message> - <source>Qt Configuration</source> - <translation>Налаштування Qt</translation> - </message> - <message> <source>Appearance</source> <translation>Вигляд</translation> </message> @@ -179,8 +168,8 @@ <translation>Створити палітру</translation> </message> <message> - <source>&3-D Effects:</source> - <translation>&3-D ефекти:</translation> + <source>&Button Background:</source> + <translation>Фон &кнопки:</translation> </message> <message> <source>Window Back&ground:</source> @@ -351,22 +340,6 @@ <translation>Стиль введення XIM:</translation> </message> <message> - <source>On The Spot</source> - <translation>У вікні документу</translation> - </message> - <message> - <source>Over The Spot</source> - <translation>Над вікном документу</translation> - </message> - <message> - <source>Off The Spot</source> - <translation>В рядку стану</translation> - </message> - <message> - <source>Root</source> - <translation>В додатковому вікні</translation> - </message> - <message> <source>Default Input Method:</source> <translation>Типовий метод введення:</translation> </message> @@ -411,11 +384,7 @@ <translation>Веб-сайт:</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://phonon.kde.org"><span style=" text-decoration: underline; color:#0000ff;">http://phonon.kde.org</span></a></p></body></html></source> + <source><a href="http://phonon.kde.org">http://phonon.kde.org/</a></source> <translation></translation> </message> <message> @@ -423,11 +392,7 @@ p, li { white-space: pre-wrap; } <translation>Про GStreamer</translation> </message> <message> - <source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://gstreamer.freedesktop.org/"><span style=" text-decoration: underline; color:#0000ff;">http://gstreamer.freedesktop.org/</span></a></p></body></html></source> + <source><a href="http://gstreamer.freedesktop.org/">http://gstreamer.freedesktop.org/</a></source> <translation></translation> </message> <message> @@ -472,7 +437,7 @@ p, li { white-space: pre-wrap; } </message> <message> <source>Ctrl+S</source> - <translation>Ctrl+S</translation> + <translation></translation> </message> <message> <source>E&xit</source> @@ -483,6 +448,10 @@ p, li { white-space: pre-wrap; } <translation>Вийти</translation> </message> <message> + <source>Ctrl+Q</source> + <translation></translation> + </message> + <message> <source>&About</source> <translation>&Про</translation> </message> @@ -500,16 +469,12 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>PaletteEditorAdvancedBase</name> + <name>PaletteEditorAdvanced</name> <message> <source>Tune Palette</source> <translation>Налаштувати палітру</translation> </message> <message> - <source><b>Edit Palette</b><p>Change the palette of the current widget or form.</p><p>Use a generated palette or select colors for each color group and each color role.</p><p>The palette can be tested with different widget layouts in the preview section.</p></source> - <translation><b>Редагування палітри</b><p>Змінити палітру поточного віджета чи форми.</p><p>Використовуйте згенеровану палітру чи оберіть кольори для кожної групи кольорів та кожної кольорової ролі.</p><p>Палітру можна протестувати з різними розміщеннями віджетів в секції попереднього перегляду.</p></translation> - </message> - <message> <source>Select &Palette:</source> <translation>Виберіть &палітру:</translation> </message> @@ -558,26 +523,38 @@ p, li { white-space: pre-wrap; } <translation>Текст вікна</translation> </message> <message> - <source>Button</source> - <translation>Кнопка</translation> - </message> - <message> <source>Base</source> <translation>Базовий</translation> </message> <message> + <source>AlternateBase</source> + <translation>Альтернативний базовий</translation> + </message> + <message> + <source>ToolTipBase</source> + <translation>Базовий спливаючої підказки</translation> + </message> + <message> + <source>ToolTipText</source> + <translation>Текст спливаючої підказки</translation> + </message> + <message> <source>Text</source> <translation>Текст</translation> </message> <message> - <source>BrightText</source> - <translation>Яскравий текст</translation> + <source>Button</source> + <translation>Кнопка</translation> </message> <message> <source>ButtonText</source> <translation>Текст кнопки</translation> </message> <message> + <source>BrightText</source> + <translation>Яскравий текст</translation> + </message> + <message> <source>Highlight</source> <translation>Підсвічений</translation> </message> @@ -586,26 +563,22 @@ p, li { white-space: pre-wrap; } <translation>Підсвічений текст</translation> </message> <message> - <source>&Select Color:</source> - <translation>&Оберіть колір:</translation> + <source>Link</source> + <translation>Посилання</translation> </message> <message> - <source>Choose a color</source> - <translation>Оберіть колір</translation> + <source>LinkVisited</source> + <translation>Відвідане посилання</translation> </message> <message> - <source>Choose a color for the selected central color role.</source> - <translation>Виберіть колір для вказаної головної кольорової ролі.</translation> + <source>&Select Color:</source> + <translation>&Оберіть колір:</translation> </message> <message> <source>3-D shadow &effects</source> <translation>3-D &ефекти тіні</translation> </message> <message> - <source>Build &from button color</source> - <translation>Будувати &з кольору кнопки</translation> - </message> - <message> <source>Generate shadings</source> <translation>Генерувати тіні</translation> </message> @@ -614,6 +587,10 @@ p, li { white-space: pre-wrap; } <translation>Увімкніть, щоб кольори 3D-ефектів розраховувались з кольору кнопки.</translation> </message> <message> + <source>Build &from button color</source> + <translation>Будувати &з кольору кнопки</translation> + </message> + <message> <source>Choose 3D-effect color role</source> <translation>Оберіть роль для 3D-ефектів</translation> </message> @@ -646,24 +623,16 @@ p, li { white-space: pre-wrap; } <translation>Оберіть &колір:</translation> </message> <message> - <source>Choose a color for the selected effect color role.</source> - <translation>Оберіть колір для вказаної кольорової ролі ефектів.</translation> - </message> - <message> - <source>OK</source> - <translation>OK</translation> - </message> - <message> - <source>Close dialog and apply all changes.</source> - <translation>Закрити діалог та застосувати усі зміни.</translation> + <source>Choose a color</source> + <translation>Оберіть колір</translation> </message> <message> - <source>Cancel</source> - <translation>Скасувати</translation> + <source>Choose a color for the selected central color role.</source> + <translation>Виберіть колір для вказаної головної кольорової ролі.</translation> </message> <message> - <source>Close dialog and discard all changes.</source> - <translation>Закрити діалог та відкинути усі зміни.</translation> + <source>Choose a color for the selected effect color role.</source> + <translation>Оберіть колір для вказаної кольорової ролі ефектів.</translation> </message> </context> <context> @@ -674,14 +643,14 @@ p, li { white-space: pre-wrap; } </message> </context> <context> - <name>PreviewWidgetBase</name> + <name>PreviewWidget</name> <message> <source>Preview Window</source> <translation>Вікно попереднього перегляду</translation> </message> <message> - <source>ButtonGroup</source> - <translation>Група кнопок</translation> + <source>GroupBox</source> + <translation>Контейнер</translation> </message> <message> <source>RadioButton1</source> @@ -696,8 +665,8 @@ p, li { white-space: pre-wrap; } <translation>Перемикач 3</translation> </message> <message> - <source>ButtonGroup2</source> - <translation>Група кнопок 2</translation> + <source>GroupBox2</source> + <translation>Контейнер 2</translation> </message> <message> <source>CheckBox1</source> @@ -720,18 +689,9 @@ p, li { white-space: pre-wrap; } <translation>Кнопка</translation> </message> <message> - <source><p> -<a href="http://qt.nokia.com">http://qt.nokia.com</a> -</p> -<p> -<a href="http://www.kde.org">http://www.kde.org</a> -</p></source> - <translation><p> -<a href="http://qt.nokia.com">http://qt.nokia.com</a> -</p> -<p> -<a href="http://www.kde.org">http://www.kde.org</a> -</p></translation> + <source><p><a href="http://qt.nokia.com">http://qt.nokia.com</a></p> +<p><a href="http://www.kde.org">http://www.kde.org</a></p></source> + <translation></translation> </message> </context> </TS> |