From 4ebe96275944643a06ac4119ef707e1436df5781 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Wed, 2 Jun 2010 11:33:24 +0200 Subject: Reset gesture when in MayBeGesture state. When a gesture recognizer switches from MayBeGesture to Cancelled gesture we need to reset the state of the recognizer, but do not send any events to the user. Reviewed-by: Thomas Zander --- src/gui/kernel/qgesturemanager.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/gui/kernel/qgesturemanager.cpp b/src/gui/kernel/qgesturemanager.cpp index 43facef..7363d70 100644 --- a/src/gui/kernel/qgesturemanager.cpp +++ b/src/gui/kernel/qgesturemanager.cpp @@ -284,6 +284,9 @@ bool QGestureManager::filterEventThroughContexts(const QMultiMap activeToMaybeGestures = m_activeGestures & newMaybeGestures; + // check if a maybe gesture switched to canceled - reset it but don't send an event + QSet maybeToCanceledGestures = m_maybeGestures & notGestures; + // check if a running gesture switched back to not gesture state, // i.e. were canceled QSet canceledGestures = m_activeGestures & notGestures; @@ -343,7 +346,8 @@ bool QGestureManager::filterEventThroughContexts(const QMultiMap undeliveredGestures; @@ -364,7 +368,7 @@ bool QGestureManager::filterEventThroughContexts(const QMultiMap endedGestures = - finishedGestures + canceledGestures + undeliveredGestures; + finishedGestures + canceledGestures + undeliveredGestures + maybeToCanceledGestures; foreach (QGesture *gesture, endedGestures) { recycle(gesture); m_gestureTargets.remove(gesture); -- cgit v0.12 From dbd16b3b6d2e6b030dd52e90eb3a38dc1a73c180 Mon Sep 17 00:00:00 2001 From: Zeno Albisser Date: Thu, 3 Jun 2010 16:54:31 +0200 Subject: fix for using .lnk files when running app from UNC Since "" is an invalid target for a .lnk file, we can return false for doStat() in case of resolving the .lnk to "". Notice that .lnk files only allow absolute paths for the target. "" is returned by readLink in case the .lnk file does not exist. Reviewed-by: Joao Task-Number: QTBUG-10863 --- src/corelib/io/qfsfileengine_win.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/corelib/io/qfsfileengine_win.cpp b/src/corelib/io/qfsfileengine_win.cpp index ec49f1a..21930e1 100644 --- a/src/corelib/io/qfsfileengine_win.cpp +++ b/src/corelib/io/qfsfileengine_win.cpp @@ -1162,7 +1162,15 @@ bool QFSFileEnginePrivate::doStat() const if (filePath.isEmpty()) return could_stat; - QString fname = filePath.endsWith(QLatin1String(".lnk")) ? readLink(filePath) : filePath; + QString fname; + if(filePath.endsWith(QLatin1String(".lnk"))) { + fname = readLink(filePath); + if(fname.isEmpty()) + return could_stat; + } + else + fname = filePath; + fname = fixIfRelativeUncPath(fname); UINT oldmode = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOOPENFILEERRORBOX); -- cgit v0.12 From cd8a6d6836f04f66d3e7083c97f7873240afa433 Mon Sep 17 00:00:00 2001 From: "Bradley T. Hughes" Date: Fri, 4 Jun 2010 12:53:36 +0200 Subject: Avoid timer starvation during high posted event activity Similar to commit bc01bb10da23d0d2308cf02a16947be836bc9a21, we need to avoid starvation of the idle time source by forcing a single, normal priority pass after processing posted events. Reviewed-by: ogoffart Task-number: QT-3467 --- src/corelib/kernel/qeventdispatcher_glib.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/corelib/kernel/qeventdispatcher_glib.cpp b/src/corelib/kernel/qeventdispatcher_glib.cpp index fd36be4..9c1c827 100644 --- a/src/corelib/kernel/qeventdispatcher_glib.cpp +++ b/src/corelib/kernel/qeventdispatcher_glib.cpp @@ -246,6 +246,7 @@ struct GPostEventSource GSource source; QAtomicInt serialNumber; int lastSerialNumber; + QEventDispatcherGlibPrivate *d; }; static gboolean postEventSourcePrepare(GSource *s, gint *timeout) @@ -274,6 +275,7 @@ static gboolean postEventSourceDispatch(GSource *s, GSourceFunc, gpointer) GPostEventSource *source = reinterpret_cast(s); source->lastSerialNumber = source->serialNumber; QCoreApplication::sendPostedEvents(); + source->d->runTimersOnceWithNormalPriority(); return true; // i dunno, george... } @@ -313,6 +315,7 @@ QEventDispatcherGlibPrivate::QEventDispatcherGlibPrivate(GMainContext *context) postEventSource = reinterpret_cast(g_source_new(&postEventSourceFuncs, sizeof(GPostEventSource))); postEventSource->serialNumber = 1; + postEventSource->d = this; g_source_set_can_recurse(&postEventSource->source, true); g_source_attach(&postEventSource->source, mainContext); -- cgit v0.12 From 2b4d2fd1ada524f4780dd7633ca34bc72d823ff1 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Fri, 4 Jun 2010 18:37:00 +0200 Subject: Fix in Addressbook tutorial Don't add if name or address is empty. Reviewed-by: Alessandro Portale --- examples/tutorials/addressbook/part3/addressbook.cpp | 1 + examples/tutorials/addressbook/part4/addressbook.cpp | 1 + examples/tutorials/addressbook/part5/addressbook.cpp | 1 + examples/tutorials/addressbook/part6/addressbook.cpp | 1 + examples/tutorials/addressbook/part7/addressbook.cpp | 1 + 5 files changed, 5 insertions(+) diff --git a/examples/tutorials/addressbook/part3/addressbook.cpp b/examples/tutorials/addressbook/part3/addressbook.cpp index adb87ef..28a570a 100644 --- a/examples/tutorials/addressbook/part3/addressbook.cpp +++ b/examples/tutorials/addressbook/part3/addressbook.cpp @@ -125,6 +125,7 @@ void AddressBook::submitContact() if (name == "" || address == "") { QMessageBox::information(this, tr("Empty Field"), tr("Please enter a name and address.")); + return; } if (!contacts.contains(name)) { diff --git a/examples/tutorials/addressbook/part4/addressbook.cpp b/examples/tutorials/addressbook/part4/addressbook.cpp index 1b7a6c4..55d551f 100644 --- a/examples/tutorials/addressbook/part4/addressbook.cpp +++ b/examples/tutorials/addressbook/part4/addressbook.cpp @@ -134,6 +134,7 @@ void AddressBook::submitContact() if (name == "" || address == "") { QMessageBox::information(this, tr("Empty Field"), tr("Please enter a name and address.")); + return; } //! [submitContact() function part1] if (currentMode == AddingMode) { diff --git a/examples/tutorials/addressbook/part5/addressbook.cpp b/examples/tutorials/addressbook/part5/addressbook.cpp index 80c18c3..1b3f451 100644 --- a/examples/tutorials/addressbook/part5/addressbook.cpp +++ b/examples/tutorials/addressbook/part5/addressbook.cpp @@ -141,6 +141,7 @@ void AddressBook::submitContact() if (name == "" || address == "") { QMessageBox::information(this, tr("Empty Field"), tr("Please enter a name and address.")); + return; } if (currentMode == AddingMode) { diff --git a/examples/tutorials/addressbook/part6/addressbook.cpp b/examples/tutorials/addressbook/part6/addressbook.cpp index fc41190..724971c 100644 --- a/examples/tutorials/addressbook/part6/addressbook.cpp +++ b/examples/tutorials/addressbook/part6/addressbook.cpp @@ -147,6 +147,7 @@ void AddressBook::submitContact() if (name == "" || address == "") { QMessageBox::information(this, tr("Empty Field"), tr("Please enter a name and address.")); + return; } if (currentMode == AddingMode) { diff --git a/examples/tutorials/addressbook/part7/addressbook.cpp b/examples/tutorials/addressbook/part7/addressbook.cpp index 3ab8702..bf00298 100644 --- a/examples/tutorials/addressbook/part7/addressbook.cpp +++ b/examples/tutorials/addressbook/part7/addressbook.cpp @@ -149,6 +149,7 @@ void AddressBook::submitContact() if (name == "" || address == "") { QMessageBox::information(this, tr("Empty Field"), tr("Please enter a name and address.")); + return; } if (currentMode == AddingMode) { -- cgit v0.12 From 09c6a81109d3978c1583c556202c01c1e774f11f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 4 Jun 2010 20:47:46 +0200 Subject: Make qbswap() use glibc's fast bswap_*() functions if available. Reviewed-by: Thiago Macieira --- src/corelib/global/qendian.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/corelib/global/qendian.h b/src/corelib/global/qendian.h index 107854c..353e8b9 100644 --- a/src/corelib/global/qendian.h +++ b/src/corelib/global/qendian.h @@ -42,6 +42,16 @@ #ifndef QENDIAN_H #define QENDIAN_H +#ifdef Q_OS_LINUX +QT_BEGIN_INCLUDE_NAMESPACE +# include +QT_END_INCLUDE_NAMESPACE +#endif + +#ifdef __GLIBC__ +#include +#endif + #include QT_BEGIN_HEADER @@ -264,6 +274,21 @@ template <> inline qint16 qFromBigEndian(const uchar *src) * and it is therefore a bit more convenient and in most cases more efficient. */ template T qbswap(T source); + +#ifdef __GLIBC__ +template <> inline quint64 qbswap(quint64 source) +{ + return bswap_64(source); +} +template <> inline quint32 qbswap(quint32 source) +{ + return bswap_32(source); +} +template <> inline quint16 qbswap(quint16 source) +{ + return bswap_16(source); +} +#else template <> inline quint64 qbswap(quint64 source) { return 0 @@ -292,6 +317,7 @@ template <> inline quint16 qbswap(quint16 source) | ((source & 0x00ff) << 8) | ((source & 0xff00) >> 8) ); } +#endif // __GLIBC__ // signed specializations template <> inline qint64 qbswap(qint64 source) -- cgit v0.12 From 51fa7df978d71a366c95c732d6a8c2576690d63a Mon Sep 17 00:00:00 2001 From: David Faure Date: Sat, 5 Jun 2010 00:06:15 +0200 Subject: Add convenience constructor to QTextOption::Tab Merge-request: 1734 Reviewed-by: Simon Hausmann --- src/gui/text/qtextoption.cpp | 10 ++++++++-- src/gui/text/qtextoption.h | 2 ++ tests/auto/qtextformat/tst_qtextformat.cpp | 5 +---- tests/auto/qtextlayout/tst_qtextlayout.cpp | 9 ++------- tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp | 9 ++------- 5 files changed, 15 insertions(+), 20 deletions(-) diff --git a/src/gui/text/qtextoption.cpp b/src/gui/text/qtextoption.cpp index c1e254c..a2b8022 100644 --- a/src/gui/text/qtextoption.cpp +++ b/src/gui/text/qtextoption.cpp @@ -145,7 +145,7 @@ QTextOption &QTextOption::operator=(const QTextOption &o) \sa tabArray(), setTabStop(), setTabs() */ -void QTextOption::setTabArray(QList tabStops) +void QTextOption::setTabArray(QList tabStops) // Qt5: const ref { if (!d) d = new QTextOptionPrivate; @@ -165,7 +165,7 @@ void QTextOption::setTabArray(QList tabStops) \sa tabStops() */ -void QTextOption::setTabs(QList tabStops) +void QTextOption::setTabs(QList tabStops) // Qt5: const ref { if (!d) d = new QTextOptionPrivate; @@ -391,6 +391,12 @@ QList QTextOption::tabs() const */ /*! + \fn Tab::Tab(qreal pos, TabType tabType, QChar delim = QChar()) + Creates a tab with the given position, tab type, and (for DelimiterTab) delimiter + \since 4.6 +*/ + +/*! \fn bool Tab::operator==(const Tab &other) const Returns true if tab \a other is equal to this tab; diff --git a/src/gui/text/qtextoption.h b/src/gui/text/qtextoption.h index 1381ed1..5af7834 100644 --- a/src/gui/text/qtextoption.h +++ b/src/gui/text/qtextoption.h @@ -68,6 +68,8 @@ public: struct Q_GUI_EXPORT Tab { inline Tab() : position(80), type(QTextOption::LeftTab) { } + inline Tab(qreal pos, TabType tabType, QChar delim = QChar()) + : position(pos), type(tabType), delimiter(delim) {} inline bool operator==(const Tab &other) const { return type == other.type diff --git a/tests/auto/qtextformat/tst_qtextformat.cpp b/tests/auto/qtextformat/tst_qtextformat.cpp index ee1f4b5..9b71481 100644 --- a/tests/auto/qtextformat/tst_qtextformat.cpp +++ b/tests/auto/qtextformat/tst_qtextformat.cpp @@ -308,10 +308,7 @@ void tst_QTextFormat::getSetTabs() format.setTabPositions(tabs); Comparator c2(tabs, format.tabPositions()); - QTextOption::Tab tab2; - tab2.position = 3456; - tab2.type = QTextOption::RightTab; - tab2.delimiter = QChar('x'); + QTextOption::Tab tab2(3456, QTextOption::RightTab, QChar('x')); tabs.append(tab2); format.setTabPositions(tabs); Comparator c3(tabs, format.tabPositions()); diff --git a/tests/auto/qtextlayout/tst_qtextlayout.cpp b/tests/auto/qtextlayout/tst_qtextlayout.cpp index 1a5f493..a631f3d 100644 --- a/tests/auto/qtextlayout/tst_qtextlayout.cpp +++ b/tests/auto/qtextlayout/tst_qtextlayout.cpp @@ -980,9 +980,7 @@ void tst_QTextLayout::testCenteredTab() // test if centering the tab works. We expect the center of 'Bar.' to be at the tab point. QTextOption option = layout.textOption(); QList tabs; - QTextOption::Tab tab; - tab.type = QTextOption::CenterTab; - tab.position = 150; + QTextOption::Tab tab(150, QTextOption::CenterTab); tabs.append(tab); option.setTabs(tabs); layout.setTextOption(option); @@ -1002,10 +1000,7 @@ void tst_QTextLayout::testDelimiterTab() // try the different delimiter characters to see if the alignment works there. QTextOption option = layout.textOption(); QList tabs; - QTextOption::Tab tab; - tab.type = QTextOption::DelimiterTab; - tab.delimiter = QChar('.'); - tab.position = 100; + QTextOption::Tab tab(100, QTextOption::DelimiterTab, QChar('.')); tabs.append(tab); option.setTabs(tabs); layout.setTextOption(option); diff --git a/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp b/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp index 64c42bb..a463d86 100644 --- a/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp +++ b/tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp @@ -198,14 +198,9 @@ void tst_QTextOdfWriter::testWriteStyle2() { QTextBlockFormat bf; // = cursor.blockFormat(); QList tabs; - QTextOption::Tab tab1; - tab1.position = 40; - tab1.type = QTextOption::RightTab; + QTextOption::Tab tab1(40, QTextOption::RightTab); tabs << tab1; - QTextOption::Tab tab2; - tab2.position = 80; - tab2.type = QTextOption::DelimiterTab; - tab2.delimiter = 'o'; + QTextOption::Tab tab2(80, QTextOption::DelimiterTab, 'o'); tabs << tab2; bf.setTabPositions(tabs); -- cgit v0.12 From fad226e8a6354d89fad3dbee5ab6dd07e80534bc Mon Sep 17 00:00:00 2001 From: Lorn Potter Date: Mon, 7 Jun 2010 09:30:41 +1000 Subject: make corewlan more namespace friendly --- src/plugins/bearer/corewlan/qcorewlanengine.mm | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/src/plugins/bearer/corewlan/qcorewlanengine.mm b/src/plugins/bearer/corewlan/qcorewlanengine.mm index a9cb65b..6ba9504 100644 --- a/src/plugins/bearer/corewlan/qcorewlanengine.mm +++ b/src/plugins/bearer/corewlan/qcorewlanengine.mm @@ -70,9 +70,10 @@ #include #include -@interface QNSListener : NSObject + +@interface QT_MANGLE_NAMESPACE(QNSListener) : NSObject { - NSNotificationCenter *center; + NSNotificationCenter *notificationCenter; CWInterface *currentInterface; QCoreWlanEngine *engine; NSLock *locker; @@ -86,16 +87,16 @@ @end -@implementation QNSListener +@implementation QT_MANGLE_NAMESPACE(QNSListener) @synthesize engine; - (id) init { [locker lock]; QMacCocoaAutoReleasePool pool; - center = [NSNotificationCenter defaultCenter]; + notificationCenter = [NSNotificationCenter defaultCenter]; currentInterface = [CWInterface interfaceWithName:nil]; - [center addObserver:self selector:@selector(notificationHandler:) name:kCWPowerDidChangeNotification object:nil]; + [notificationCenter addObserver:self selector:@selector(notificationHandler:) name:kCWPowerDidChangeNotification object:nil]; [locker unlock]; return self; } @@ -116,7 +117,7 @@ -(void)remove { [locker lock]; - [center removeObserver:self]; + [notificationCenter removeObserver:self]; [locker unlock]; } @@ -126,7 +127,7 @@ } @end -QNSListener *listener = 0; +QT_MANGLE_NAMESPACE(QNSListener) *listener = 0; QT_BEGIN_NAMESPACE @@ -296,6 +297,9 @@ void QScanThread::getUserConfigurations() for(uint row=0; row < [wifiInterfaces count]; row++ ) { CWInterface *wifiInterface = [CWInterface interfaceWithName: [wifiInterfaces objectAtIndex:row]]; + if ( ![wifiInterface power] ) + continue; + NSString *nsInterfaceName = [wifiInterface name]; // add user configured system networks SCDynamicStoreRef dynRef = SCDynamicStoreCreate(kCFAllocatorSystemDefault, (CFStringRef)@"Qt corewlan", nil, nil); @@ -430,7 +434,7 @@ void QCoreWlanEngine::initialize() QMacCocoaAutoReleasePool pool; if([[CWInterface supportedInterfaces] count] > 0 && !listener) { - listener = [[QNSListener alloc] init]; + listener = [[QT_MANGLE_NAMESPACE(QNSListener) alloc] init]; listener.engine = this; hasWifi = true; } else { @@ -785,6 +789,11 @@ void QCoreWlanEngine::networksChanged() changed = true; } + if (ptr->bearer != cpPriv->bearer) { + ptr->bearer = cpPriv->bearer; + changed = true; + } + if (ptr->state != cpPriv->state) { ptr->state = cpPriv->state; changed = true; -- cgit v0.12 From eba8e2c10c5bc1b373fdf7640962029cb2e7908f Mon Sep 17 00:00:00 2001 From: Takumi ASAKI Date: Mon, 7 Jun 2010 11:13:11 +0900 Subject: * Add Japanese tutorial documents * Add Japanese hellotr example --- .gitignore | 1 + doc/doc.pri | 11 +- doc/src/ja_JP/development/designer-manual.qdoc | 175 ++++ doc/src/ja_JP/development/qmake-manual.qdoc | 212 ++++ doc/src/ja_JP/development/qtestlib.qdoc | 432 ++++++++ doc/src/ja_JP/examples/arrowpad.qdoc | 248 +++++ doc/src/ja_JP/examples/hellotr.qdoc | 200 ++++ doc/src/ja_JP/examples/trollprint.qdoc | 286 ++++++ doc/src/ja_JP/getting-started/tutorials.qdoc | 101 ++ doc/src/ja_JP/images/linguist-hellotr_en.png | Bin 0 -> 4424 bytes doc/src/ja_JP/images/linguist-hellotr_ja.png | Bin 0 -> 5624 bytes .../snippets/code/doc_src_examples_hellotr.qdoc | 72 ++ doc/src/ja_JP/tutorials/addressbook.qdoc | 1070 ++++++++++++++++++++ doc/src/ja_JP/tutorials/widgets-tutorial.qdoc | 257 +++++ examples/ja_JP/linguist/hellotr/hellotr.pro | 13 + examples/ja_JP/linguist/hellotr/main.cpp | 71 ++ tools/qdoc3/test/qt-api-only_ja_JP.qdocconf | 30 + tools/qdoc3/test/qt-build-docs.qdocconf | 1 + tools/qdoc3/test/qt-build-docs_ja_JP.qdocconf | 110 ++ tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf | 1 + tools/qdoc3/test/qt-html-templates_ja_JP.qdocconf | 178 ++++ tools/qdoc3/test/qt.qdocconf | 1 + tools/qdoc3/test/qt_ja_JP.qdocconf | 125 +++ tools/qdoc3/test/qt_zh_CN.qdocconf | 1 + 24 files changed, 3595 insertions(+), 1 deletion(-) create mode 100644 doc/src/ja_JP/development/designer-manual.qdoc create mode 100644 doc/src/ja_JP/development/qmake-manual.qdoc create mode 100644 doc/src/ja_JP/development/qtestlib.qdoc create mode 100644 doc/src/ja_JP/examples/arrowpad.qdoc create mode 100644 doc/src/ja_JP/examples/hellotr.qdoc create mode 100644 doc/src/ja_JP/examples/trollprint.qdoc create mode 100644 doc/src/ja_JP/getting-started/tutorials.qdoc create mode 100644 doc/src/ja_JP/images/linguist-hellotr_en.png create mode 100644 doc/src/ja_JP/images/linguist-hellotr_ja.png create mode 100644 doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc create mode 100644 doc/src/ja_JP/tutorials/addressbook.qdoc create mode 100644 doc/src/ja_JP/tutorials/widgets-tutorial.qdoc create mode 100644 examples/ja_JP/linguist/hellotr/hellotr.pro create mode 100644 examples/ja_JP/linguist/hellotr/main.cpp create mode 100644 tools/qdoc3/test/qt-api-only_ja_JP.qdocconf create mode 100644 tools/qdoc3/test/qt-build-docs_ja_JP.qdocconf create mode 100644 tools/qdoc3/test/qt-html-templates_ja_JP.qdocconf create mode 100644 tools/qdoc3/test/qt_ja_JP.qdocconf diff --git a/.gitignore b/.gitignore index 4e3b130..f398365 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ examples/*/*/* !examples/*/*/README examples/*/*/*[.]app !examples/declarative/* +!examples/ja_JP/*/* demos/*/* !demos/spectrum/* demos/spectrum/bin diff --git a/doc/doc.pri b/doc/doc.pri index 3180a61..0a5cc9a 100644 --- a/doc/doc.pri +++ b/doc/doc.pri @@ -36,9 +36,15 @@ QT_ZH_CN_DOCUMENTATION = ($$QDOC qt-api-only_zh_CN.qdocconf) && \ $$GENERATOR doc-build/html-qt_zh_CN/qt.qhp -o doc/qch/qt_zh_CN.qch \ ) +QT_JA_JP_DOCUMENTATION = ($$QDOC qt-api-only_ja_JP.qdocconf) && \ + (cd $$QT_BUILD_TREE && \ + $$GENERATOR doc-build/html-qt_ja_JP/qt.qhp -o doc/qch/qt_ja_JP.qch \ + ) + win32-g++:isEmpty(QMAKE_SH) { QT_DOCUMENTATION = $$replace(QT_DOCUMENTATION, "/", "\\\\") QT_ZH_CN_DOCUMENTATION = $$replace(QT_ZH_CN_DOCUMENTATION, "/", "\\\\") + QT_JA_JP_DOCUMENTATION = $$replace(QT_JA_JP_DOCUMENTATION, "/", "\\\\") } # Build rules: @@ -52,6 +58,9 @@ docs.depends = sub-qdoc3 adp_docs qch_docs docs_zh_CN.depends = docs docs_zh_CN.commands = $$QT_ZH_CN_DOCUMENTATION +docs_ja_JP.depends = docs +docs_ja_JP.commands = $$QT_JA_JP_DOCUMENTATION + # Install rules htmldocs.files = $$QT_BUILD_TREE/doc/html htmldocs.path = $$[QT_INSTALL_DOCS] @@ -67,5 +76,5 @@ docimages.path = $$[QT_INSTALL_DOCS]/src sub-qdoc3.depends = sub-corelib sub-xml sub-qdoc3.commands += (cd tools/qdoc3 && $(MAKE)) -QMAKE_EXTRA_TARGETS += sub-qdoc3 adp_docs qch_docs docs docs_zh_CN +QMAKE_EXTRA_TARGETS += sub-qdoc3 adp_docs qch_docs docs docs_zh_CN docs_ja_JP INSTALLS += htmldocs qchdocs docimages diff --git a/doc/src/ja_JP/development/designer-manual.qdoc b/doc/src/ja_JP/development/designer-manual.qdoc new file mode 100644 index 0000000..585af16 --- /dev/null +++ b/doc/src/ja_JP/development/designer-manual.qdoc @@ -0,0 +1,175 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \page designer-quick-start.html + + \title Qt Designer クイックガイド + + \QD を使うための基本的な手順は、以下の\bold{四つ}です。 + + \list 1 + \o フォームとオブジェクトを選択する + \o フォームにオブジェクトを配置する + \o スロットにシグナルを接続する + \o フォームをプレビューする + \endlist + + \image rgbController-screenshot.png + + Red、Green、Blue(RGB)の値を操作するために必要なコントロールを含む + 小さなウィジェット(上記スクリーンショット参照)を設計する場合を想定します。 + このウィジェットは、画像処理プログラム内のどこからでも表示できるウィジェットです。 + + \table + \row + \i \inlineimage designer-choosing-form.png + \i \bold{フォームを選択する} + + \gui{新しいフォーム} ダイアログから \gui Widget を選択して開始します。 + \endtable + + + \table + \row + \i \inlineimage rgbController-arrangement.png + \i \bold{フォームにウィジェットを配置する} + + 3つのラベル(Label)、スピンボックス(Spin Box)、垂直方向のスライダ(Vertical Slider)をフォーム上へドラッグします。 + ラベルの既定の文字列を変更するには、文字列をダブルクリックします。 + 希望するレイアウトに合わせて配置します。 + \endtable + + 画像のようにこれらのウィジェットを配置するには、 + レイアウトにウィジェットを配置する必要があります。 + これを3つグループに対して行います。 + まず "RED" ラベルを選択します。 + 次に、\key Ctrl (Mac OS X では \key Command)キーを押したまま、対応するスピンボックスとスライダを選択します。 + \gui{フォーム} メニューで、\gui{格子状に並べる}を選択します。 + + \table + \row + \i \inlineimage rgbController-form-gridLayout.png + \i \inlineimage rgbController-selectForLayout.png + \endtable + + 他の2つのラベルに対しても、対応するスピンボックスとスライダごとにこの手順を繰り返します。 + + 次の手順は、これら3つのレイアウトを組み合わせて、1つの\bold{メインレイアウト}を作成することです。 + メインレイアウトとは、トップレベルウィジェット(この場合は QWidget)のレイアウトです。 + トップレベルウィジェットにレイアウトを配置することは重要です。 + そうでなければ、ウィンドウをサイズ変更したときにウィンドウ上のウィジェットのサイズが変更されません。 + レイアウトを設定するには、フォーム上の3つのレイアウト以外の任意の場所で\gui{右クリック}し、\gui{水平に並べる}を選択します。 + または、\gui{格子状に並べる}を選択することもできます。 + そのどちらでも同じ配置(以下を参照)で表示されます。 + + \image rgbController-final-layout.png + + \note メインレイアウトはフォームに表示できません。 + メインレイアウトがインストールされているかどうかを確認するには、 + フォームをサイズ変更してみます。 + インストールされている場合は、各ウィジェットのサイズが適宜変更されます。 + または、\QD の \gui{Object Inspector} で確認することもできます。 + トップレベルウィジェットにレイアウトが配置されていない場合、 + その横に崩れたレイアウトのアイコン \inlineimage rgbController-no-toplevel-layout.png + が表示されます。 + + スライダをクリックして特定の値までドラッグするときに、 + スピンボックスにスライダの位置を反映させます。 + この操作を行うには、スライダの \l{QAbstractSlider::}{valueChanged()} + シグナルをスピンボックスの \l{QSpinBox::}{setValue()} + スロットに接続する必要があります。 + また、逆方向、すなわちスピンボックスの \l{QSpinBox::}{valueChanged()} + シグナルをスライダの \l{QAbstractSlider::value()}{setValue()} スロットに接続する必要があります。 + + この操作を行うには、\key{F4} キーを押すか、\gui{編集|シグナル/スロットの編集} を選択し、 + \gui{シグナル/スロットの編集}モードに切り替える必要があります。 + + \table + \row + \i \inlineimage rgbController-signalsAndSlots.png + \i \bold{シグナルをスロットに接続する} + + スライダをクリックし、カーソルをスピンボックスまでドラッグします。 + 以下のような \gui{シグナルスロットを設定} ダイアログがポップアップ表示されます。 + 適切なシグナルとスロットを選択し、\gui OK をクリックします。 + \endtable + + \image rgbController-configure-connection1.png + + 手順を(逆の順序で)繰り返し、 + スピンボックスをクリックしてカーソルをスライダまでドラッグし、 + スピンボックスの \l{QSpinBox::}{valueChanged()} シグナルを、 + スライダの \l{QAbstractSlider::value()}{setValue()} スロットに接続します。 + + 以下のスクリーンショットは、適切なシグナルとスロットを選択するためのガイドとして利用できます。 + + \image rgbController-configure-connection2.png + + RGBコントローラーの "RED" コンポーネントのオブジェクトが正常に接続されたので、 + "GREEN" および "BLUE" コンポーネントにも同じ手順を繰り返します。 + + RGB値の範囲は 0 ~ 255 であるため、 + スピンボックスとスライダを特定の範囲に制限する必要があります。 + + \table + \row + \i \inlineimage rgbController-property-editing.png + \i \bold{ウィジェットのプロパティを設定する} + + 最初のスピンボックスをクリックします。 + \gui{プロパティエディタ}に \l{QSpinBox} のプロパティが表示されます。 + \l{QSpinBox::}{maximum} のプロパティに、"255" と入力します。 + 次に、最初の垂直方向のスライダをクリックすると、 + \l{QAbstractSlider} のプロパティが表示されます。 + \l{QAbstractSlider::}{maximum} のプロパティにも、"255" と入力します。 + 残りのスピンボックスとスライダに対しても、この処理を繰り返します。 + \endtable + + ここで、フォームをプレビューし、アプリケーションの外観を確認します。 + この操作を行うには、\key{Ctrl + R} を押すか、 + \gui{フォーム}メニューから\gui{プレビュー}を選択します。 + スライダをドラッグすると、 + スピンボックスにその値が反映されます(逆の場合も同じ)。 + またサイズを変更し、子ウィジェットの管理に使用するレイアウトが + どのようにウィンドウのさまざまなサイズに対応しているか確認します。 +*/ + diff --git a/doc/src/ja_JP/development/qmake-manual.qdoc b/doc/src/ja_JP/development/qmake-manual.qdoc new file mode 100644 index 0000000..8c9297f --- /dev/null +++ b/doc/src/ja_JP/development/qmake-manual.qdoc @@ -0,0 +1,212 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \page qmake-tutorial.html + \title qmake チュートリアル + + このチュートリアルでは \c qmake の使い方を説明します。 + このチュートリアルを読み終わったら \c qmake + のユーザガイドを読むことをお勧めします。 + + \section1 簡単な例 + + アプリケーションの基本的な実装は既に完了していて、 + 次のファイルが作成されていると仮定します。 + + \list + \o hello.cpp + \o hello.h + \o main.cpp + \endlist + + これらのファイルは Qt ディストリビューションの + \c{examples/qmake/tutorial} ディレクトリにあります。 + アプリケーションの設定について知っておくべきことは、 + それが Qt で書かれているということだけです。 + まず、テキストエディタで \c{examples/qmake/tutorial} に + \c hello.pro というファイルを作成します。 + 最初にすることは、開発プロジェクトに含まれるソースファイルとヘッダファイルを + \c qmake に教える行を追加することです。 + + ソースファイルをプロジェクトファイルに追加します。 + これには \l{qmake Variable Reference#SOURCES}{SOURCES} 変数を使います。 + 新しい行を作り、\c{SOURCES +=}、続いて hello.cpp を入力します。 + つまり、以下のようになります: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 108 + + これを以下のようになるまでプロジェクトの各ソースファイルに対して行います: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 109 + + make に似たシンタックスを使いたい場合は、 + 以下のように改行をエスケープしてすべてのファイルを 1 行に書きます: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 110 + + ソースファイルの一覧をプロジェクトファイルに追加しました。 + 次にヘッダファイルを追加します。 + ヘッダファイルはソースファイルと全く同じ方法で追加することができます。 + ただし変数は \l{qmake Variable Reference#HEADERS}{HEADERS} + を使います。 + + これを終えると、プロジェクトファイルは以下のようになるでしょう: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 111 + + ターゲットの名前は自動的に設定され、 + プロジェクトファイルと同じ名前になります。 + ただしプラットフォームに合わせたサフィックスがつけられます。 + 例えば、プロジェクトファイルが \c hello.pro である場合、 + ターゲットは Windows では \c hello.exe 、Unix では \c hello になります。 + プロジェクトファイルで別の名前を指定することもできます: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 112 + + 最後に \l{qmake Variable Reference#CONFIG}{CONFIG} 変数を設定します。 + このアプリケーションは Qt アプリケーションなので \c CONFIG に + \c qt を追加する必要があります。 + \c qmake は リンクの必要があるライブラリを追加し、 + \c moc と \c uic の実行コマンドが Makefile に含まれるようにします。 + + 最終的なプロジェクトファイルは以下のようになります: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 113 + + \c qmake を使って、このアプリケーションのための Makefile を生成します。 + プロジェクトのディレクトリでコマンドラインに次のように入力します: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 114 + + そして、使用するコンパイラによって \c make または \c nmake を入力します。 + + Visual Studio ユーザの場合、\c qmake は、以下のように + \c .dsp ファイルまたは \c .vcproj ファイルも作成できます: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 115 + + \section1 アプリケーションをデバッグできるようにする + + アプリケーションのリリースバージョンはデバッグシンボルなどのデバッグ情報を含みません。 + 開発中は、関連情報を含むアプリケーションのデバッグバージョンを作成するのが便利です。 + これは、プロジェクトファイルの \c CONFIG 変数に \c debug + を追加することで簡単に実現できます。 + + たとえば: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 116 + + 直前の例と同様に、Makefile を生成するには \c qmake を使います。 + アプリケーションをデバッグ環境で実行する際に役に立つ情報を得られるようになります。 + + \section1 プラットフォーム固有のソースファイルを追加する + + 数時間コーディングをしていると、 + アプリケーションにプラットフォーム固有な部分が出てきて + プラットフォーム固有のコードを別のファイルに分けたい場合があるかもしれません。 + ここでは 2 つのファイル \c hellowin.cpp と \c hellounix.cpp があるとして、 + これをプロジェクトファイルに追加します。 + これらのファイルをそのまま \c SOURCES 変数に追加することはできません。 + なぜなら、両方のファイルが Makefile に追加されてしまうからです。 + \c qmake が実行されたプラットフォームにしたがって処理されるスコープを使う必要があります。 + + Windows 用のファイルを追加するシンプルなスコープは以下のようになります: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 117 + + \c qmake が Windows 上で実行されると、ソースファイルのリストに + \c hellowin.cpp が追加されます。 + \c qmake が他のプラットフォームで実行された場合、この部分は無視されます。 + 次に Unix 用ファイルのスコープを作成します。 + + これを終えると、プロジェクトファイルは以下のようになります: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 118 + + これまでと同様に、Makefile を生成するには \c qmake を使います。 + + \section1 ファイルが存在しない場合に qmake を中止する + + 特定のファイルが存在しない場合に Makefile を作成したくない場合、 + exists() 関数を使ってファイルが存在するかどうかを確認することができます。 + また error() 関数を使って \c qmake の処理を中止させることができます。 + これらの関数はスコープとして動作します。 + 使い方はスコープの条件をこれらの関数で置き換えるだけです。 + \c main.cpp ファイルの確認は以下のようになります : + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 119 + + 記号 \c{!} はテストを否定します。 + つまり \c{exists( main.cpp )} はファイルが存在する場合に真になり、 + \c{!exists( main.cpp )} はファイルが存在しない場合に真になります。 + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 120 + + 前と同様に、\c qmake を実行して Makefile を生成します。 + 仮に \c main.cpp の名前を変更すると、上記のメッセージが表示され、 + \c qmake は処理を中止します。 + + \section1 複数の条件をチェックする + + Windows を使っていて、 + コマンドラインからこのアプリケーションを実行したときに + qDebug() の出力を見ることができるようにしたい場合、 + アプリケーションをコンソールの設定を追加してビルドする必要があります。 + Windows で Makefile をこの設定にするには、 + \c CONFIG に \c console を追加します。 + Windows で実行されていて、\e{かつ} \c CONFIG にすでに \c debug + がある場合にのみ \c CONFIG を追加したい場合があるかもしれません。 + このような場合、2 つのスコープをネストさせて使います。 + まず 1 つのスコープを作成し、その中にもう 1 つスコープを作成します。 + そして 2 つのスコープの中に設定を書きます。例えば: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 121 + + ネストされたスコープはコロンを使ってつなぐことができます。 + 最終的なプロジェクトファイルは以下のようになります: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 122 + + 以上です。\c qmake のチュートリアルが終了しました。 + それでは、あなたの開発プロジェクトのプロジェクトファイルを作成してみましょう。 +*/ + diff --git a/doc/src/ja_JP/development/qtestlib.qdoc b/doc/src/ja_JP/development/qtestlib.qdoc new file mode 100644 index 0000000..65c4c3f --- /dev/null +++ b/doc/src/ja_JP/development/qtestlib.qdoc @@ -0,0 +1,432 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \page qtestlib-tutorial.html + \brief QTestLib を使ったテストの導入ガイド + \contentspage QTestLib マニュアル + \nextpage {第1章: ユニットテストの作成}{第1章} + + \title QTestLib チュートリアル + + このチュートリアルでは QTestLib フレームワークの機能の初歩的な使い方を説明します。 + このチュートリアルは全5章で構成されています: + + \list 1 + \o \l {第1章: ユニットテストの作成}{ユニットテストの作成} + \o \l {第2章: データドリブンテスト}{データドリブンテスト} + \o \l {第3章: GUI イベントのシミュレート}{GUI イベントのシミュレート} + \o \l {第4章: GUI イベントの再現}{GUI イベントの再現} + \o \l {第5章: ベンチマークの作成}{ベンチマークの作成} + \endlist + +*/ + + +/*! + \example qtestlib/tutorial1 + + \contentspage {QTestLib チュートリアル}{目次} + \nextpage {第2章: データドリブンテスト}{第2章} + + \title 第1章: ユニットテストの作成 + + 第1章では、クラスのテストを行うシンプルなユニットテストを作成して実行する方法を説明します。 + + \section1 テストを作成する + + QString クラスの挙動をテストすると仮定しましょう。 + まず、テスト関数を含むクラスが必要です。 + このクラスは、 QObject を継承する必要があります: + + \snippet examples/qtestlib/tutorial1/testqstring.cpp 0 + + QTest ヘッダーを include してください。 + それから、テストフレームワークがテスト関数を検索して実行できるよう、 + テスト関数を private slot として宣言する必要があります。 + + 次に、テスト関数を実装します。実装は以下のようになります: + + \snippet doc/src/snippets/code/doc_src_qtestlib.qdoc 8 + + \l QVERIFY() マクロは、引数として渡される式を評価します。 + 式が真と評価されるとテスト関数の実行が継続されます。 + そうでなければ、エラーメッセージがテストログに追加されテスト関数の実行が停止します。 + + テストログに詳細情報を追加したい場合は、 + \l QCOMPARE() マクロを代わりに使用してください: + + \snippet examples/qtestlib/tutorial1/testqstring.cpp 1 + + 文字列が等しくない場合、両方の文字列の内容がテストログに追加され、 + 比較に失敗した理由を直ちに確認できます。 + + 最後に、テストケースを実行可能にするために以下の2行が必要となります: + + \snippet examples/qtestlib/tutorial1/testqstring.cpp 2 + + \l QTEST_MAIN() マクロは、すべてのテスト関数を実行するシンプルな + \c main() 関数に展開されます。 + テストクラスの宣言と実装が \c .cpp ファイルに存在する場合、 + Qt のメタオブジェクト機能を動作させるために、 + 生成された moc ファイルを include する必要があります。 + + \section1 テストを実行する + + 作成したテストを実行してみましょう。 + テストが \c testqstring.cpp + として空のディレクトリに保存されていると仮定して、 + qmake を使用してプロジェクトを作成し、makefile を生成します。 + + \snippet doc/src/snippets/code/doc_src_qtestlib.qdoc 9 + + \bold {注:} Windows をお使いの場合、 \c make を \c nmake または、 + 任意のビルドツールに置き換えてください。 + + 作成した実行ファイルを実行すると、次の出力が表示されます: + + \snippet doc/src/snippets/code/doc_src_qtestlib.qdoc 10 + + おめでとうございます! + QTestLib フレームワークを使用して、 + 最初のユニットテストの作成と実行に成功しました。 +*/ + +/*! + \example qtestlib/tutorial2 + + \previouspage {第1章: ユニットテストの作成}{第1章} + \contentspage {QTestLib チュートリアル}{目次} + \nextpage {第3章: GUI イベントのシミュレート}{第3章} + + \title 第2章: データドリブンテスト + + 本章ではテストを複数回、それぞれ異なるテストデータを使用して行う方法について、 + 例を示しながら説明します。 + + これまでは、テストデータをテスト関数にハードコードしていました。 + この場合、テストデータを追加した関数は以下のようになります: + + \snippet doc/src/snippets/code/doc_src_qtestlib.qdoc 11 + + 関数が繰り返しを行うコードによって分散するのを防ぐために、 + QTestLib はテストデータのテスト関数への追加をサポートします。 + そのために、別の private slot をテストクラスに追加する必要があります: + + \snippet examples/qtestlib/tutorial2/testqstring.cpp 0 + + \section1 データ関数を記述する + + テスト関数に関連するデータ関数では、テスト関数と同じ関数名を使用して、 + 末尾に \c{_data} を追加します。 + データ関数は以下のようになります: + + \snippet examples/qtestlib/tutorial2/testqstring.cpp 1 + + まず、 \l QTest::addColumn() 関数を使用して、 + テストテーブルの2つの要素(テスト文字列(\c{"string"})および、 + QString::toUpper() 関数をその文字列に適用するときに予期された結果(\c{"result"})) + を定義します。 + + 次に、 \l QTest::newRow() 関数を使用して、 + データをテーブルに追加します。 + それぞれのデータセットは、テストテーブルでは別々の行(Row)になります。 + + \l QTest::newRow() は、データセット名をその引数として受け付けます。 + テストに失敗した場合、テストログでこのデータセット名が使用され、 + 失敗したデータの一覧が表示されます。 + 続いて、最初に任意の文字列(\c{"string"})を、次に + QString::toUpper() 関数をその文字列(\c{"string"})に適用するときに予期された結果(\c{"result"})の順に、 + テーブル行にデータセットをストリーミングします。 + + テストデータとは、二次元テーブルを指します。 + ここでは、\c string および \c result と呼ばれる2つの列と3つの行が含まれます。 + さらに、インデックスと同様に、各行に名前を関連付けます: + + \table + \header + \o index + \o name + \o string + \o result + \row + \o 0 + \o all lower + \o "hello" + \o HELLO + \row + \o 1 + \o mixed + \o "Hello" + \o HELLO + \row + \o 2 + \o all upper + \o "HELLO" + \o HELLO + \endtable + + \section1 テスト関数を書き換える + + ここで、テスト関数の書き換えを行います: + + \snippet examples/qtestlib/tutorial2/testqstring.cpp 2 + + TestQString::toUpper() 関数は 3 回実行されます。 + すなわち、関連する TestQString::toUpper_data() + 関数で作成したテストテーブルの各エントリ毎に一度実行されます。 + + TestQString::toUpper() 関数では + まず、 \l QFETCH() マクロを使用して、データセットの2つの要素を取得します。 + \l QFETCH() は、要素のデータタイプと要素名の、 + 2 つの引数を取ります。 + 次に \l QCOMPARE() マクロを使用して、テストを実行します。 + + このアプローチにより、テストの修正を行うことなく + テストに新規データを非常に簡単に追加できます。 + + このテストの場合も、テストケースを実行可能にするには、 + 同様に以下の2行が必要です: + + \snippet examples/qtestlib/tutorial2/testqstring.cpp 3 + + これまでと同様に、 \l QTEST_MAIN() マクロは + すべてのテスト関数を実行するシンプルな + \c main() 関数に展開されます。 + テストクラスの宣言と実装が \c .cpp ファイルに存在する場合、 + Qt のメタオブジェクト機能を動作させるために、 + 生成された moc ファイルを include する必要があります。 + +*/ + +/*! + \example qtestlib/tutorial3 + + \previouspage {第2章: データドリブンテスト}{第2章} + \contentspage {QTestLib チュートリアル}{目次} + \nextpage {第4章: GUI イベントの再現}{第4章} + + \title 第3章: GUI イベントのシミュレート + + QTestLib にはグラフィカルユーザインターフェースをテストするための機能があります。 + QTestLib は、ネイティブなウィンドウシステムのイベントをシミュレートする代わりに、 + Qt の内部で使われるイベントを送信します。 + このため、テストが実行されるコンピュータには + 副次的な悪影響が発生しません。 + + 本章では、シンプルな GUI テストを作成する方法を確認します。 + + \section1 GUI テストを作成する + + 今回は、 QLineEdit クラスの挙動をテストすると仮定しましょう。 + これまでと同様に、テスト関数を含むクラスが必要です: + + \snippet examples/qtestlib/tutorial3/testgui.cpp 0 + + 唯一の違いは、 QTest だけでなく、 QtGui クラスの宣言を + include する必要があることです。 + + \snippet examples/qtestlib/tutorial3/testgui.cpp 1 + + テスト関数を実装する際は、最初に QLineEdit を作成します。 + 次に、 \l QTest::keyClicks() 関数を使用して、 + "hello world" をラインエディットに入力する操作をシミュレートします。 + + \note キーボードショートカットを正しくテストするには、 + ウィジェットの表示も必要になります。 + + QTest::keyClicks() は、 + ウィジェットのキーシーケンスの入力をシミュレートします。 + 必要に応じてキーボード修飾子の指定や、 + 各キー入力後の遅延(ミリ秒単位)を指定することができます。 + 同様に、 QTest::keyClick() 、 QTest::keyPress() 、 QTest::keyRelease() 、 + QTest::mouseClick() 、 QTest::mouseDClick() 、 QTest::mouseMove() 、 + QTest::mousePress() 及び QTest::mouseRelease() 関数を使用して、 + 関連付けられた GUI イベントをシミュレートできます。 + + 最後に、 \l QCOMPARE() マクロを使用して、 + ラインエディットの文字列が正しいかどうか確認します。 + + これまでと同様に、 + テストケースを実行可能にするには、 + 以下の2行が必要です: + + \snippet examples/qtestlib/tutorial3/testgui.cpp 2 + + QTEST_MAIN() マクロは + すべてのテスト関数を実行するシンプルな + \c main() 関数に展開されます。 + テストクラスの宣言と実装が \c .cpp ファイルに存在する場合、 + Qt のメタオブジェクト機能を動作させるために、 + 生成された moc ファイルを include する必要があります。 +*/ + +/*! + \example qtestlib/tutorial4 + + \previouspage {第3章: GUI イベントのシミュレート}{第3章} + \contentspage {QTestLib チュートリアル}{目次} + \nextpage {第5章: ベンチマークの作成}{第5章} + + \title 第4章: GUI イベントの再現 + + 本章では、GUI イベントをシミュレートしたり、 + あるウィジェットで一連の GUI イベントを再生したり保存したりする方法について説明します。 + + 一連のイベントを保存して再生するアプローチは、 + \l{第2章: データドリブンテスト}{第2章} + で説明したアプローチとよく似ています。 + 必要な変更は、テストクラスにデータ関数を追加することです: + + \snippet examples/qtestlib/tutorial4/testgui.cpp 0 + + \section1 データ関数を記述する + + これまでと同様にテスト関数に関連するデータ関数では、 + テスト関数と同じ名前を使用して末尾に \c{_data} を追加します。 + + \snippet examples/qtestlib/tutorial4/testgui.cpp 1 + + まず、 QTest::addColumn() 関数を使用して、 + テーブルの2つの要素(GUI イベントのリスト(\c{"events"})および、 + QWidget のイベントのリストを適用するときに予期された結果(\c{"expected"}))を定義します。 + 最初の要素の型は \l QTestEventList であることに注意してください。 + + QTestEventList では、後で使用するテストデータの保存を行うために + GUI イベントを読み込んだり、 QWidget ウィジェットで再生したりできます。 + + 現在のデータ関数で、 \l QTestEventList を2つ作成します。 + 最初のリストには 'a' キーを一度だけ入力します。 + QTestEventList::addKeyClick() 関数を使用して、 + リストにイベントを追加します。 + 次に、QTest::newRow() 関数を使用してデータセットに名前を付けて、 + テーブルにイベントリストおよび予期された結果をストリーミングします。 + + 2つ目のリストには、2つのキー入力('a' に続いてバックスペース(Qt::Key_Backspace))を設定します。 + QTestEventList::addKeyClick() を使用してリストにイベントを追加し、 + QTest::newRow() を使用して名前を関連付けたテーブルにイベントリストおよび予期された結果を挿入します。 + + \section1 テスト関数を書き換える + + ここで、テストの書き換えを行います: + + \snippet examples/qtestlib/tutorial4/testgui.cpp 2 + + TestGui::testGui() 関数は2回実行されます。 + 関連する TestGui::testGui_data() + 関数で作成したテストデータの各エントリ毎にそれぞれ実行されます。 + + まず、\l QFETCH() マクロを使用して、データセットの2つの要素を取得します。 + \l QFETCH() は、要素のデータ型と要素名の2つの引数を取ります。 + 次に QLineEdit を作成し、 QTestEventList::simulate() 関数を使用して + ウィジェットにイベントのリストを適用します。 + + 最後に、 QCOMPARE() マクロを使用してラインエディットの文字列が正しいかどうか確認します。 + + これまでと同様に、 + テストケースを実行可能にするには、 + 以下の2行が必要です: + + \snippet examples/qtestlib/tutorial4/testgui.cpp 3 + + \l QTEST_MAIN() マクロは + すべてのテスト関数を実行するシンプルな + \c main() 関数に展開されます。 + テストクラスの宣言と実装が \c .cpp ファイルに存在する場合、 + Qt のメタオブジェクト機能を動作させるために、 + 生成された moc ファイルを include する必要があります。 +*/ + +/*! + \example qtestlib/tutorial5 + + \previouspage {第4章: GUI イベントの再現}{第4章} + \contentspage {QTestLib チュートリアル}{目次} + + \title 第5章: ベンチマークの作成 + + 最終章となる本章では QTestLib を使ってベンチマークを作成する方法について説明します。 + + \section1 ベンチマークの作成 + ベンチマークを作成するには QBENCHMARK マクロを用いてテスト関数を拡張します。 + ベンチマークテスト関数には通常、テストの準備コードと測定するコードを含む + QBENCHMARK マクロが一つ含まれます。 + QString::localeAwareCompare() のベンチマークを行う関数は以下のようになります。 + + \snippet examples/qtestlib/tutorial5/benchmarking.cpp 0 + + 測定の準備は関数の最初に行われています。 + この時点では測定は始まっていません。 + QBENCHMARK マクロで囲まれたブロックの中身のみが計測されます。 + このブロックの内部は正確な測定を行うために、何度か繰り返し実行される場合があります。 + + \l {testlib-benchmarking-measurement}{ベンチマークの方法}(バックエンド)は何種類か用意されており、 + コマンドライン引数から選択することが出来ます。 + + \section1 データ関数 + + データ関数は複数のデータでベンチマークを行うテストを作成するのに有用です。 + たとえば、ロケール準拠と標準的な比較を行う場合は以下のようになります。 + + \snippet examples/qtestlib/tutorial5/benchmarking.cpp 1 + + テスト関数ではデータに従ってベンチマークする手法を決定します。 + + \snippet examples/qtestlib/tutorial5/benchmarking.cpp 2 + + "if (useLocaleCompare)" 文はそのオーバヘッドを測定対象外とするために + QBENCHMARK マクロのブロックの外部にあります。 + ベンチマークの実行時にはそれぞれどちらか一つの QBENCHMARK マクロが実行されます。 + + \section1 外部ツール + + テストデータの可視化を行うためのツールが Qt Labs Web サイトの + \l{qtestlib-tools} プロジェクトに含まれています。 + そこには実行したテストの結果からパフォーマンスを比較したり、 + パフォーマンスのWeb用グラフを作成するツールが含まれています。 + + それらのツールの詳細と簡単なグラフの例は + \l{qtestlib-tools Announcement} を参照してください。 + +*/ + + + diff --git a/doc/src/ja_JP/examples/arrowpad.qdoc b/doc/src/ja_JP/examples/arrowpad.qdoc new file mode 100644 index 0000000..2518264 --- /dev/null +++ b/doc/src/ja_JP/examples/arrowpad.qdoc @@ -0,0 +1,248 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \example linguist/arrowpad + \title サンプル: アローパッド + + この例では、\e {Qt Linguist} の主なコンセプトである"文脈"について、 + 少し詳しく取り上げて説明します。 + また、2つ以上の言語を使用する方法についても説明します。 + + \image linguist-arrowpad_en.png + + アプリケーションで使用可能な言語の数に制限はありませんが、 + ここではフランス語とオランダ語の2言語の翻訳を使用します。 + \c arrowpad.pro の関連する行は以下のとおりです。 + + \snippet examples/linguist/arrowpad/arrowpad.pro 0 + \codeline + \snippet examples/linguist/arrowpad/arrowpad.pro 1 + + \c lupdate を実行すると、2つの類似したメッセージファイル + \c arrowpad_fr.ts と \c arrowpad_nl.ts が作成されます。 + これらのファイルにはすべてのソーステキストとその文脈が含まれます。 + それらのテキストは \c tr() の呼び出しを通じて翻訳対象として + ソースコード内でマークされているものです。 + + Qt アプリケーションの翻訳の詳細については、 + \l{Qt Linguist manual}{Qt Linguist マニュアル} をご覧ください。 + + \section1 各行の簡単な解説 + + \c arrowpad.h では、 QWidget の派生クラスである \c ArrowPad + クラスを定義します。 + 上記のスクリーンショットで + 中央の 4 つのボタンを持つウィジェットが \c ArrowPad です。 + + \snippet examples/linguist/arrowpad/arrowpad.h 0 + \snippet examples/linguist/arrowpad/arrowpad.h 1 + \snippet examples/linguist/arrowpad/arrowpad.h 2 + + \c lupdate を実行するとソーステキストの抽出だけでなく、 + 文脈へのグループ化を行うことができます。 + ソーステキストが表示されるクラスの名前が文脈となります。 + 従って、この例では、"ArrowPad" が + \c ArrowPad クラスの文字列の文脈です。 + \c Q_OBJECT のマクロは、以下の内容で + \c ArrowPad に \c tr(x) を定義します: + + \snippet doc/src/snippets/code/doc_src_examples_arrowpad.qdoc 0 + + 各ソーステキストが表示されるクラスを把握しておくと、 + \e {Qt Linguist} で論理的に関連のある文字列をグループ化することが出来ます。 + 例えば、ダイアログ内のすべての文字列には + ダイアログのクラス名の文脈が含まれるため、同時に表示されます。 + 文字列が表示される文脈によって翻訳の内容が影響を受ける場合があるため、 + 翻訳者にとって有用な情報となります。 + 一部の翻訳では、キーボードショートカットを変更する必要があります。 + また、同じグループにまとめられた特定の文脈(クラス) + にすべてのソーステキストを含めることにより、 + 翻訳者はコンフリクトを起こすことなく、 + より簡単にショートカットを変更できます。 + + \c arrowpad.cpp で、\c ArrowPad クラスを実装します。 + + \snippet examples/linguist/arrowpad/arrowpad.cpp 0 + \snippet examples/linguist/arrowpad/arrowpad.cpp 1 + \snippet examples/linguist/arrowpad/arrowpad.cpp 2 + \snippet examples/linguist/arrowpad/arrowpad.cpp 3 + + ラベルはユーザ表示可能な文字列であるため、 + ボタンのラベルごとに \c ArrowPad::tr() を呼び出します。 + + \image linguist-arrowpad_en.png + + \snippet examples/linguist/arrowpad/mainwindow.h 0 + \snippet examples/linguist/arrowpad/mainwindow.h 1 + + 上記のスクリーンショットでは、ウィンドウ全体が \c MainWindow です。 + これは、\c mainwindow.h ヘッダーファイルで定義します。 + ここでも、\c MainWindow が \e {Qt Linguist} の文脈になるよう、 + \c Q_OBJECT を使用します。 + + \snippet examples/linguist/arrowpad/mainwindow.cpp 0 + + \c MainWindow と \c mainwindow.cpp を実装する際に、 + \c ArrowPad クラスのインスタンスを作成します。 + + \snippet examples/linguist/arrowpad/mainwindow.cpp 1 + + また、\c MainWindow::tr() を、 + アクションおよびショートカット用に、計 2 回呼び出します。 + + \c tr() を使用して、言語によって異なるキーをサポートします。 + 英語の場合、"Ctrl+Q" は Quit (終了) に適していますが、 + オランダ語の翻訳者は "Ctrl+A" (Afsluiten の場合) を、 + ドイツ語の翻訳者は "Strg+E" (Beenden の場合) を使うといいでしょう。 + \key Ctrl キーショートカットを \c tr() で使用する場合は + 引数を 2 つ使用して、 + ショートカットが実行する機能を2番目の引数に記述してください。 + + \c main.cpp で定義した標準的な \c main() 関数は、以下のようになります。 + + \snippet examples/linguist/arrowpad/main.cpp 2 + \snippet examples/linguist/arrowpad/main.cpp 3 + + 現在のロケールに基づいて、使用する翻訳を選択します。 + 例えば、QLocale::system() は、 + \c LANG 環境変数の設定によって影響を受ける場合があります。 + \c .qm メッセージファイル(および TS ファイル)の命名規則に + ロケールを使用すると、 + 簡単にロケールに基づいて翻訳ファイルを選択することが + できるようになります。 + + 選択したロケールに QM メッセージファイルが存在しない場合、 + 元のソーステキストが使用され、エラーは生成されません。 + + \section1 フランス語からオランダ語に翻訳する + + ここでは、サンプルアプリケーションをフランス語に翻訳することから始めます。 + \e {Qt Linguist} を起動し、\c arrowpad_fr.ts の作業を行います。 + 2つの文脈 ("ArrowPad" および "MainWindow") + にグループ化された7つのソーステキスト ("\&Up", "\&Left" 等) + が含まれているはずです。 + + 次に、以下の翻訳を入力します: + + \list + \o \c ArrowPad + \list + \o \&Up - \&Haut + \o \&Left - \&Gauche + \o \&Right - \&Droite + \o \&Down - \&Bas + \endlist + \o \c MainWindow + \list + \o E\&xit - \&Quitter + \o Ctrl+Q - Ctrl+Q + \o \&File - \&Fichier + \endlist + \endlist + + 翻訳の入力が終わったら、 \key{Ctrl+Return} (もしくは\gui {完了にして次へ} + ボタン)を押すと、 + 翻訳が完了とマークされ次のソーステキストに移動するため便利です。 + + ファイルを保存して、オランダ語の翻訳でも同じ手順を実行し、 + \c arrowpad_nl.ts の作業を行います: + + \list + \o \c ArrowPad + \list + \o \&Up - \&Omhoog + \o \&Left - \&Links + \o \&Right - \&Rechts + \o \&Down - Omlaa\&g + \endlist + \o \c MainWindow + \list + \o E\&xit - \&Afsluiten + \o Ctrl+Q - Ctrl+A + \o File - \&Bestand + \endlist + \endlist + + \c tt1_fr.ts と \c tt1_nl.ts の翻訳ソースファイルは + QM ファイルに変換する必要があります。 + 以前と同様の方法で \e {Qt Linguist} を使用して変換できますが、 + コマンドラインツール \c lrelease を使うと + \e {Qt Linguist} から個々の \gui {ファイル|リリース} を読み込まなくても、 + アプリケーションの\e{すべての} QM ァイルを作成できます。 + + 以下を入力します: + + \snippet doc/src/snippets/code/doc_src_examples_arrowpad.qdoc 1 + + これにより、\c arrowpad_fr.qm と \c arrowpad_nl.qm が作成されます。 + \c LANG 環境変数を \c fr に設定します。 + Unix では、以下の2つのコマンドのいずれかが機能します。 + + \snippet doc/src/snippets/code/doc_src_examples_arrowpad.qdoc 2 + + Windows では、\c autoexec.bat を修正するか、以下を実行します。 + + \snippet doc/src/snippets/code/doc_src_examples_arrowpad.qdoc 3 + + プログラムを実行すると、フランス語版が表示されます: + + \image linguist-arrowpad_fr.png + + \c LANG=nl を設定し、オランダ語でも同じ手順を実行します。 + これで、オランダ語版が表示されます: + + \image linguist-arrowpad_nl.png + + \section1 エクササイズ + + \e {Qt Linguist} で未完了の翻訳を行います。 + 例えば、各テキストのチェックマークをクリックして翻訳を未完了の状態にして保存します。 + その後、 \c lupdate 、\c lrelease 、サンプルの順に実行します。 + この変更がどのような影響を及ぼしましたか。 + + \c LANG=fr_CA (フランス語(カナダ))に設定し、 + サンプルプログラムを再実行します。 + \c LANG=fr の場合と同じ結果になる理由を説明してください。 + + オランダ語翻訳のショートカットのいずれかを変更し、 + \e \&Bestand と \e \&Boven の競合を解消します。 +*/ diff --git a/doc/src/ja_JP/examples/hellotr.qdoc b/doc/src/ja_JP/examples/hellotr.qdoc new file mode 100644 index 0000000..cc01b81 --- /dev/null +++ b/doc/src/ja_JP/examples/hellotr.qdoc @@ -0,0 +1,200 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \example linguist/hellotr + \title サンプル: こんにちは tr() + + これは、小さな Hello World プログラムを日本語に翻訳する例です。 + 以下のスクリーンショットは英語版です。 + + \image linguist-hellotr_en.png + + Qt アプリケーションの翻訳に関する詳細は、\l{Qt Linguist manual} + をご覧ください。 + + \section1 各行の簡単な解説 + + \snippet examples/ja_JP/linguist/hellotr/main.cpp 0 + + この行では、 QTranslator クラスの宣言を読み込みます。 + QTranslator クラスのオブジェクトは、 + ユーザに表示する文字列を翻訳します。 + + \snippet examples/ja_JP/linguist/hellotr/main.cpp 5 + + 親をもたない QTranslator オブジェクトを作成します。 + + \snippet examples/ja_JP/linguist/hellotr/main.cpp 6 + + プログラムで使用するソーステキストの日本語の翻訳を含む、 + \c hellotr_ja.qm ( \c .qm というファイル拡張子は省略します) + と呼ばれるファイルを読み込みます。 + ファイルが見つからなくてもエラーは発生しません。 + + \snippet examples/ja_JP/linguist/hellotr/main.cpp 7 + + \c hellotr_ja.qm の翻訳を、プログラムで使用する翻訳プールに追加します。 + + \snippet examples/ja_JP/linguist/hellotr/main.cpp 8 + + "Hello world!" を表示するプッシュボタンを作成します。 + 検索した \c hellotr_ja.qm に "Hello world!" の翻訳が含まれている場合、 + その翻訳が表示されます。 + 含まれていない場合、翻訳前のテキストがそのまま表示されます。 + + QObject を継承するすべてのクラスには、\c tr() 関数が含まれます。 + QObject クラスのメンバ関数内では、\c QPushButton::tr("Hello world!") + や \c QObject::tr("Hello world!") の代わりに、シンプルに + \c tr("Hello world!") を使います。 + + \section1 英語版のアプリケーションを実行する + + 翻訳ファイル \c hellotr_ja.qm の作成が終わっていないため、 + 以下のアプリケーションを起動したときに元の文字列が表示されます。 + + \image linguist-hellotr_en.png + + \section1 日本語のメッセージファイルを作成する + + 最初のステップは、プロジェクトのすべてのソースファイルを列挙する + \c hellotr.pro を作成することです。 + プロジェクトファイルは、qmake プロジェクトファイルまたは、通常の + makefile である可能性があります。 + 以下の記述を含むプロジェクトファイルを作成してください。 + + \snippet examples/ja_JP/linguist/hellotr/hellotr.pro 0 + \snippet examples/ja_JP/linguist/hellotr/hellotr.pro 1 + + \c TRANSLATIONS は、管理するメッセージファイルを指します。 + この例では、日本語の翻訳のみ管理します。 + + ファイル拡張子は、\c .qm ではなく、\c .ts であることにご注意ください。 + \c .ts は翻訳のソースファイルのフォーマットであり、 + アプリケーションの開発時に使用します。 + プログラマーまたはリリースマネージャーは \c lupdate プログラムを実行し、 + ソースコードから抽出したソーステキストを使用して + TS ファイルの生成と更新を行います。 + 翻訳者は、 \e {Qt Linguist} を使用して TS ファイルの読み取りと更新を行い、 + 翻訳の追加と編集を行います。 + + TS の形式は、ユーザが直接閲覧可能な XML 形式であるため、 + 直接Eメールで送信したり、簡単にバージョン管理の対象にすることが出来ます。 + このファイルを手動で編集する場合、XML の既定のエンコードは UTF-8 で、 + Latin1(ISO 8859-1)ではないことに気をつけてください。 + '\oslash'(ノルウェー語の o にスラッシュが付いたもの)などの + Latin1 文字を入力する1つの方法は、XML エンティティ "ø" + を使用することです。 + これはすべての Unicode 4.0 文字に対して有効です。 + + 翻訳が完了したら、\c lrelease プログラムを使用して、 + TS ファイルを QM ファイル(Qt Message ファイル)形式に変換します。 + QM 形式は、極めて高速な検索性能を実現するようにデザインされた + コンパクトなライブラリ形式です。 + \c lupdate と \c lrelease はどちらも、 + プロジェクト全体のソースファイルとヘッダーファイル + (プロジェクトファイルの HEADERS および SOURCES 行で指定されている) + を読み取り、\c tr() 関数呼び出しの際に表示される文字列を抽出します。 + + \c lupdate は、メッセージファイル(この場合は \c hellotr_ja.ts) + の作成と更新を行い、これらをソースコードと同期させるために使用します。 + \c lupdate にはデータの削除機能がないため、 + \c lupdate はいつでも安全に実行できます。 + 例えば、ソースが変更されるたびに TS ファイルが更新されるよう、 + makefile に記述できます。 + + それでは、以下のように \c lupdate を実行してみましょう: + + \snippet doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc 0 + + (\c -verbose オプションは、操作を説明するメッセージを表示するよう + \c lupdate に指示します。) + 現在のディレクトリに、以下の内容で + \c hellotr_ja.ts ファイルが作成されていると思います: + + \snippet doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc 1 + + ツール (\c lupdate、 \e {Qt Linguist}、\c lrelease) + を使用して読み取りと更新を行うため、 + ファイル形式を理解する必要はありません。 + + \section1 Qt Linguist を使用して日本語に翻訳する + + XML やテキストエディタを使用して、TS ファイルを翻訳することも出来ますが、 + ここでは \e {Qt Linguist} を使用して翻訳を行います。 + + \e {Qt Linguist} を起動するには、以下を入力します。 + + \snippet doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc 2 + + 左上のペインに "QPushButton" が表示されるはずです。 + これをダブルクリックし、次に "Hello world!" をクリックして、 + \gui Translation ペイン (ウィンドウ右中央)に + "こんにちは、世界!" と入力します。 + 感嘆符(!)を忘れないように付けてください! + + \gui{完了} チェックボックスをオンにして、 + メニューバーから \gui{ファイル|保存} を選択します。 + TS ファイルから、以下の記述がなくなります。 + + \snippet doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc 3 + + その代わりに以下が含まれます。 + + \snippet doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc 4 + + \section1 日本語版のアプリケーションを実行する + + 日本語版のアプリケーションを実行する前に、 + TS ファイルから QM ファイルを生成する必要があります。 + QM ファイルは、\e {Qt Linguist}(単一の TS ファイルの場合)のメニューから、 + もしくは、コマンドラインプログラム \c lrelease を使用して生成できます。 + \c lrelease を使用する場合、 + プロジェクトファイルに列挙されている TS ファイルごとに + 1 つの QM ファイルを作成することが出来ます。 + \e {Qt Linguist} のメニューバーから \gui{ファイル|リリース} を選択し、 + ポップアップ表示される \gui{ファイルの保存} ダイアログで\gui{保存}を選択し、 + \c hellotr_ja.ts から \c hellotr_ja.qm を生成します。 + 今すぐ \c hellotr プログラムを再実行してみましょう。 + これで、ボタンに "こんにちは、世界!" と表示されます。 + + \image linguist-hellotr_ja.png +*/ diff --git a/doc/src/ja_JP/examples/trollprint.qdoc b/doc/src/ja_JP/examples/trollprint.qdoc new file mode 100644 index 0000000..1686774 --- /dev/null +++ b/doc/src/ja_JP/examples/trollprint.qdoc @@ -0,0 +1,286 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \example linguist/trollprint + \title サンプル: トロールプリント + + トロールプリント(Troll Print)は、 + ユーザがプリンタの設定をするためのサンプルアプリケーションです。 + これには、英語とポルトガル語の2つのバージョンが用意されています。 + + \image linguist-trollprint_10_en.png + + この例では、いくつかのポルトガル語の翻訳を含む翻訳ファイル + \c trollprint_pt.ts を用意しました。 + + 同じアプリケーションの2つのバージョン、 + Troll Print 1.0 と 1.1 をリリースすることを想定します。 + 1つのバージョンで作成した翻訳を次のリリースで再利用する方法を習得します。 + (このチュートリアルでは、いくつかのソースファイルの編集が必要です。 + 新しい一時ディレクトリにすべてのファイルをコピーして、 + ここで作業を行うのがベストでしょう。) + + Qtアプリケーションの翻訳の詳細については、 + \l{Qt Linguist manual}{Qt Linguist マニュアル} をご覧ください。 + + \section1 各行の簡単な解説 + + \c PrintPanel クラスを \c printpanel.h で宣言します。 + + \snippet examples/linguist/trollprint/printpanel.h 0 + + \c PrintPanel は QWidget の派生クラスです。 + \c tr() が正しく動作するには、\c Q_OBJECT マクロが必要です。 + + 実装ファイルは \c printpanel.cpp です。 + + \snippet examples/linguist/trollprint/printpanel.cpp 0 + + Troll Print 1.0 で一部のコードがコメントアウトされています。 + Troll Print 1.1 にバージョンアップする際に、 + コメントから戻してください。 + + \snippet examples/linguist/trollprint/printpanel.cpp 1 + \snippet examples/linguist/trollprint/printpanel.cpp 2 + + PrintPanel では、\c tr("Enabled") と \c tr("Disabled") + を2回ずつ使用することに注意してください。 + "Enabled" と "Disabled" はどちらも同じ文脈で表示されるため、 + \e {Qt Linguist} では、それぞれ1回目の使用に対してのみ表示され、 + 2回目以降の使用に対しては翻訳が流用されるため表示されません。 + これは便利な時間短縮ツールですが、ポルトガル語などの一部の言語では、 + 2回目の使用に対して異なる翻訳が必要になります。 + これから、\e {Qt Linguist}で、 + すべての \c tr() に対して異なる翻訳を表示できるように設定する方法を学習します。 + + \c MainWindow, \c mainwindow.h はシンプルなヘッダーファイルです。 + \c mainwindow.cpp の実装には、翻訳対象としてマークする必要のある + ユーザに表示するソーステキストがあります。 + + \snippet examples/linguist/trollprint/mainwindow.cpp 0 + + ウィンドウのタイトルは翻訳する必要があります。 + + \snippet examples/linguist/trollprint/mainwindow.cpp 1 + \snippet examples/linguist/trollprint/mainwindow.cpp 3 + + また、アクションとメニューも翻訳する必要があります。 + キーボードショートカット "Ctrl+Q" に対して使用している \c tr() + の第 2 引数は、このショートカットがどのような機能を有しているかを + 翻訳者に示す唯一の情報であることに注意してください。 + + \snippet examples/linguist/trollprint/main.cpp 0 + + \c main.cpp の \c main() 関数は、 + \l{linguist/arrowpad}{アローパッド} の例の場合と同じになります。 + 具体的には、現在のロケールに基づいて、翻訳ファイルを選択します。 + + \section1 英語とポルトガル語で Troll Print 1.0 を実行する + + 既存の \c trollprint_pt.ts ファイルの翻訳を使用します。 + + \c LANG 環境変数を \c pt に設定して、\c trollprint を実行します。 + QM ファイルがないため、スクリーンショットは英語版のままです。 + ここで、\c lrelease (例: \c {lrelease trollprint.pro})を実行し、 + サンプルを再実行します。 + これで、ポルトガル語版(Troll Imprimir 1.0)になりました: + + \image linguist-trollprint_10_pt_bad.png + + 翻訳は正しく表示されていますが、誤りがあります。 + 文法的に正しいポルトガル語では、 + "Enabled" が2回目に使用されるときの正しい翻訳は、 + "Ativado" ではなく "Ativadas" であり、 + "Disabled" が2回目に翻訳されるときも、 + 語尾を同様に変化させる必要があります。 + + \e {Qt Linguist} で \c trollprint_pt.ts を開くと、 + ソースコードには "Enabled" と "Disabled" が2回ずつ使われていますが、 + 翻訳ソースファイルでは1回ずつしか使われていません。 + これは、\e {Qt Linguist} では、 + ソーステキストが重複する場合は翻訳を流用することにより、 + 翻訳者の作業を最小限に抑えようとするためです。 + このように類似した翻訳に誤りがある場合、 + プログラマは繰り返し使用する際に翻訳の曖昧さを排除する必要があります。 + これは、2個の引数を取る\c tr() を使用することにより、 + 容易に実行できます。 + + 実際には、翻訳者の"文脈"は変更する必要のある文字列が表示されるクラスに対するクラス名であるため、 + どのファイルを変更すべきか簡単に特定できます。 + この場合、ファイルは \c printpanel.cpp であり、 + 変更すべき行は4行あります。 + ラジオボタンの最初のペアの \c tr() 呼び出しに、2つ目の引数 "two-sided"(両面) をに追加します: + + \snippet doc/src/snippets/code/doc_src_examples_trollprint.qdoc 0 + + そして、ラジオボタンの2番目のペアの \c tr() 呼び出しに、 + 2つ目の引数 "colors"(色) を追加します。 + + \snippet doc/src/snippets/code/doc_src_examples_trollprint.qdoc 1 + + ここで、\c lupdate を実行し、\e {Qt Linguist} で + \c trollprint_pt.ts を開きます。2 つの変更個所がわかるはずです。 + + まず、翻訳ソースファイルには、\e{3組}の "Enabled" と + "Disabled" のペアが含まれています。 + 最初のペアは、既に利用されていないテキストであることを意味する灰色になっています。 + これは、 \c tr() 内の文字列が第二引数を追加した新たな + \c tr() の文字列で置き換えられたからです。 + 2番目のペアには、"two-sided"(両面) というコメントが含まれており、 + 3番目のペアには、"colors"(色) というコメントが含まれています。 + これらのコメントは、\e {Qt Linguist} に + \gui {開発者のコメント} として表示されます。 + + 次に、翻訳者の作業を最小限に抑えるために、 + 新たに使用される "Enabled" と "Disabled" の文字列に対して、 + 訳語 "Ativado" と "Desativado" が自動的に使用されます。 + これらの訳語は、これらの原語が2回目に使用される場合の正しい翻訳ではありません。 + ここからが、チュートリアルの出発点です。 + + 2番目の "Ativado" を "Ativadas" に、 + 2番目の "Desativado" を "Desativadas" に変更し、保存して終了します。 + \c lrelease を実行して最新のバイナリ \c trollprint_pt.qm ファイルを作成し、 + Troll Print (または Troll Imprimir) を実行します。 + + \image linguist-trollprint_10_pt_good.png + + \e {Qt Linguist} では "comments" と呼ばれる + \c tr() 呼び出しの2つ目の引数は、 + 同じ文脈(クラス)で発生する類似したソーステキストを識別します。 + コメントは、たとえば Ctrl キーによるキーボードショートカットが + ショートカットによって実行される機能を伝達する唯一の手段である場合等に、 + 翻訳者に情報を提供するのに便利です。 + + 翻訳者に情報を提供する他の手段は、 + 翻訳の必要があるソーステキストを含むアプリケーションの + 特定の部分への移動方法に関する情報を提供することです。 + これにより、翻訳者は、翻訳が表示される文脈を確認し、 + 翻訳を検索してテストを行うことができます。 + これは、ソースコードで \c TRANSLATOR + コメントを使用して行います: + + \snippet doc/src/snippets/code/doc_src_examples_trollprint.qdoc 2 + + 一部のソースファイル、特にダイアログクラスのコメントに + ダイアログに到達するまでに必要な操作を記述します。 + また、\c mainwindow.cpp や \c printpanel.cpp など、 + 適切なサンプルファイルにこれらを追加することもできます。 + \c lupdate を実行して \e {Qt Linguist} を起動し、 + \c trollprint_pt.ts を読み込みます。 + ソーステキストの一覧を参照する際に、 + \gui{ソーステキスト}と\gui{開発者のコメント} + の領域に表示されるコメントを確認できます。 + + 特に大きなプログラムでは、翻訳者が自分の翻訳を探し、 + それが適切かどうかを確認することが困難な場合があります。 + コメントは役立つナビゲーション情報を提供するため、 + 翻訳に要する時間を節約できます: + + \snippet doc/src/snippets/code/doc_src_examples_trollprint.qdoc 3 + + \section1 Troll Print 1.1 + + これから、Troll Print のバージョン 1.1 のリリースの準備を行います。 + テキストエディターを起動して、次の手順に従って変更を行ってください: + + \list + \o \c printpanel.cpp の文字列 "\TROLL PRINT\" を引数に + QLabel を作成する2つの行のコメントを解除します。 + \o ソースの変更: \c printpanel.cpp で、"2-sided" を + "Two-sided" に置き換えます。 + \o \c mainwindow.cpp で、すべての "1.0" を "1.1" に置き換えます。 + \o \c mainwindow.cpp で、著作権表示の年号を 1999-2000 に更新します。 + \endlist + + (実際のアプリケーションでは、バージョン番号と著作権表示の年号は + const または #define をつかって定義するでしょう。) + + 終了したら、\c lupdate を実行し、\e {Qt Linguist} で + \c trollprint_pt.ts を開きます。以下の項目は、特別なコンテンツです: + + \list + \o \c MainWindow + \list + \o Troll Print 1.0 - 古いテキストとして灰色でマーク + \o About Troll Print 1.0 - 古いテキストとして灰色でマーク + \o Troll Print 1.0. Copyright 1999 Software, Inc. - + 古いテキストとして灰色でマーク + \o Troll Print 1.1 - 自動的に "Troll Imprimir 1.1" に翻訳(未完了) + \o About Troll Print 1.1 - 自動的に "Troll Imprimir 1.1" に翻訳(未完了) + \o Troll Print 1.1. Copyright 1999-2000 Software, + Inc. - 自動的に "Troll Imprimir 1.1. + Copyright 1999-2000 Software, Inc." に翻訳(未完了) + \endlist + \o \c PrintPanel + \list + \o 2-sided - 古いテキストとして灰色でマーク + \o \TROLL PRINT\ - 未翻訳のテキストとして"?"マーク + \o Two-sided - 未翻訳のテキストとして"?"マーク + \endlist + \endlist + + \c lupdate は、修正を容易に行い、数字の処理を効率的に行うために、 + 様々な処理を行っています。 + + \c MainWindow の翻訳の見直しを行います。 + "\TROLL PRINT\" を "\TROLL IMPRIMIR\" と翻訳します。 + "Two-sided" を翻訳する際には、\gui{フレーズと推測} の欄から + "2-lados" をダブルクリックして訳に選択した後に、 + "2" を "Dois" に変更します。 + + 保存して終了し、\c lrelease を実行します。 + ポルトガル語版の表示は以下のようになります: + + \image linguist-trollprint_11_pt.png + + \gui{Ajuda|Sobre} (\gui{Help|About}) を選択し、 + バージョン情報ボックスを確認します。 + + \gui{Ajuda|Sobre Qt} (\gui{Help|About Qt}) を選択した場合、 + 英語版のダイアログが表示されます。 + Qt の翻訳はまだ終わっていません。 + 詳細については、\l{Internationalization with Qt} を参照してください。 + + ここで、\c LANG=en を設定し、元の英語版を実行してみてください: + + \image linguist-trollprint_11_en.png +*/ diff --git a/doc/src/ja_JP/getting-started/tutorials.qdoc b/doc/src/ja_JP/getting-started/tutorials.qdoc new file mode 100644 index 0000000..701ba88 --- /dev/null +++ b/doc/src/ja_JP/getting-started/tutorials.qdoc @@ -0,0 +1,101 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \page tutorials.html + \title チュートリアル + + \contentspage How to Learn Qt + \nextpage Qt Examples + + \brief Qt の学習を助けるチュートリアルやガイドの概要 + + \nextpage Qt Examples + + Qt で提供されているこれらのチュートリアルやガイドは + 新たに Qt の開発を始めるユーザの良い助けとなります。 + これらのドキュメントでは ウィジェットの基本的な使い方から始まり + ステップバイステップでアプリケーションの使い方を学ぶことが出来ます。 + + \table + \row + \o{2,1} \l{ウィジェットのチュートリアル}{\bold ウィジェット} + \o{2,1} \l{チュートリアル: アドレス帳}{\bold {アドレス帳}} + \row + \o \image widget-examples.png Widgets + \o + ウィジェットとレイアウトを使って GUI アプリケーションを作成する + 初心者向けのガイドです。 + + \o \image addressbook-tutorial.png AddressBook + \o + 完全な機能を持つアドレス帳アプリケーションを作成する 7 章で構成されたガイドです。 + + \row + \o{2,1} \l{Qt Designer クイックガイド}{\bold{Qt Designer}} + \o{2,1} \l{Qt Linguist Manual: Programmers#Tutorials}{\bold {Qt Linguist}} + \row + \o \image designer-examples.png QtDesigner + \o + \QD を使ってフォームを生成する基本的な手順を説明するクイックガイドです。 + + \o \image linguist-examples.png QtLinguist + \o + \l{サンプル: こんにちは tr()}{こんにちは tr()}、 + \l{サンプル: アローパッド}{アローパッド}、 + \l{サンプル: トロールプリント}{トロールプリント} + の三例を通じて翻訳の方法を説明します。 + + \row + \o{2,1} \l{QTestLib チュートリアル}{\bold QTestLib} + \o{2,1} \l{qmake チュートリアル}{\bold qmake} + \row + \o{2,1} + Qt のユニットテストフレームワークである QTestLib の機能の初歩的な使い方を説明するチュートリアルです。 + このチュートリアルは4章で構成されています。 + + \o{2,1} + \c qmake の使い方を説明するチュートリアルです。 + このチュートリアルを卒業した後は \l{qmake Manual}{qmake user guide}(英語) + を読むことをお勧めします。 + + \endtable +*/ diff --git a/doc/src/ja_JP/images/linguist-hellotr_en.png b/doc/src/ja_JP/images/linguist-hellotr_en.png new file mode 100644 index 0000000..05aa945 Binary files /dev/null and b/doc/src/ja_JP/images/linguist-hellotr_en.png differ diff --git a/doc/src/ja_JP/images/linguist-hellotr_ja.png b/doc/src/ja_JP/images/linguist-hellotr_ja.png new file mode 100644 index 0000000..d9beb01 Binary files /dev/null and b/doc/src/ja_JP/images/linguist-hellotr_ja.png differ diff --git a/doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc b/doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc new file mode 100644 index 0000000..e05cd12 --- /dev/null +++ b/doc/src/ja_JP/snippets/code/doc_src_examples_hellotr.qdoc @@ -0,0 +1,72 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +//! [0] +lupdate -verbose hellotr.pro +//! [0] + + +//! [1] + + + QPushButton + + Hello world! + + + + +//! [1] + + +//! [2] +linguist hellotr_ja.ts +//! [2] + + +//! [3] + +//! [3] + + +//! [4] +こんにちは、世界! +//! [4] diff --git a/doc/src/ja_JP/tutorials/addressbook.qdoc b/doc/src/ja_JP/tutorials/addressbook.qdoc new file mode 100644 index 0000000..9fb1059 --- /dev/null +++ b/doc/src/ja_JP/tutorials/addressbook.qdoc @@ -0,0 +1,1070 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \page tutorials-addressbook.html + + \title チュートリアル: アドレス帳 + \brief シンプルだが、完全な機能を持つアプリケーションの作成を通じた + GUI プログラミングへの導入。 + + このチュートリアルでは、Qt クロスプラットフォームフレームワークを使用した + GUI プログラミングの概要について説明しています。 + + \image addressbook-tutorial-screenshot.png + + \omit + It doesn't cover everything; the emphasis is on teaching the programming + philosophy of GUI programming, and Qt's features are introduced as needed. + Some commonly used features are never used in this tutorial. + \endomit + + このチュートリアルでは以下に示す Qt の基本的な機能を学ぶことが出来ます: + + \list + \o ウィジェットとレイアウトマネージャ + \o コンテナクラス + \o シグナル/スロット + \o 入力デバイスと出力デバイス + \endlist + + Qt を初めて利用する方は、最初に \l{How to Learn Qt} をご覧ください。 + + チュートリアルの目次: + + \list 1 + \o \l{tutorials/addressbook/part1}{ユーザインターフェースの設計} + \o \l{tutorials/addressbook/part2}{アドレスの追加} + \o \l{tutorials/addressbook/part3}{項目間のナビゲーション} + \o \l{tutorials/addressbook/part4}{アドレスの編集と削除} + \o \l{tutorials/addressbook/part5}{検索機能の追加} + \o \l{tutorials/addressbook/part6}{読み込みと保存} + \o \l{tutorials/addressbook/part7}{その他の機能} + \endlist + + このチュートリアルのソースコードは、Qt の + \c examples/tutorials/addressbook ディレクトリに置かれています。 + + この小さなアプリケーションは本格的な最新の GUI + アプリケーションのようには見えませんが、 + 複雑なアプリケーションで使用される多くの基本的な技術が採用されています。 + このチュートリアルが終わったら、 + メニューやツールバー、ステータスバーなどを表示する + 小さな GUI アプリケーションである + \l{mainwindows/application}{Application} + のサンプルをチェックすることをお勧めします。 + +*/ + +/*! + \page tutorials-addressbook-part1.html + + \example tutorials/addressbook/part1 + \title 第1章 - ユーザインターフェースのデザイン + + 本チュートリアルの第1章では + アドレス帳アプリケーションで使用する基本的なインターフェース + (GUI) の設計について説明します。 + + GUI プログラム作成の最初のステップは、 + ユーザインターフェースを設計することです。 + 本章の目標は、基本的なアドレス帳アプリケーションを実装するのに必要な + ラベルと入力フィールドを設定することです。 + 下図は、ここで作成しようとしているアドレス帳のスクリーンショットです。 + + \image addressbook-tutorial-part1-screenshot.png + + ユーザがアドレス帳に名前や住所を入力できるようにするには、 + 2つの QLabel のオブジェクトである \c nameLabel 及び \c addressLabel と、 + 入力フィールドとして QLineEdit オブジェクトの \c nameLine と + QTextEdit オブジェクトの \c addressText が必要です。 + 使用するウィジェットとその配置は下図に示してあります。 + + \image addressbook-tutorial-part1-labeled-screenshot.png + + 以下の3つのファイルを使用してこのアドレス帳を実装します: + + \list + \o \c{addressbook.h} - \c AddressBook クラスを宣言するファイル、 + \o \c{addressbook.cpp} - \c AddressBook クラスを実装するファイル、 + \o \c{main.cpp} - \c AddressBook クラスのインスタンスを持つ + \c main() 関数を含むファイル。 + \endlist + + \section1 Qt プログラミング - 派生クラスの作成 + + Qt プログラムを作成する際は、 + 通常 Qt オブジェクトの派生クラスを作成して機能を追加します。 + これは、カスタムウィジットや標準的なウィジェットの集合体を作成する場合の + 重要なコンセプトの1つです。 + ウィジェットの挙動の拡張や変更のために派生クラスを作成することには + 以下のような利点があります: + + \list + \o 仮想関数または純粋仮想関数の実装を行って要求される機能を実装できます。 + 必要によっては基底クラスの実装にフォールバックして利用できます。 + + \o これにより、アプリケーションのその他の部分が + ユーザインターフェースの個々のウィジェットを指定する必要がないよう、 + ユーザインターフェースの一部をクラス内にカプセル化できます。 + + \o 派生クラスは、同一のアプリケーションまたはライブラリに + 複数のカスタムウィジットを作成するために使用できます。 + また、派生クラスのコードは、他のプロジェクトで再利用可能です。 + + \endlist + + Qt ではアドレス帳ウィジェットを提供していないため、 + 標準的な Qt ウィジェットクラスを継承して機能を追加します。 + 本チュートリアルで作成する \c AddressBook クラスは、 + 基本的なアドレス帳ウィジェットが必要な場合に再利用できます。 + + \section1 AddressBook クラスの宣言 + + \l{tutorials/addressbook/part1/addressbook.h}{\c addressbook.h} + ファイルは、 \c AddressBook クラスを宣言するために使用します。 + + ここでは \c AddressBook を QWidget の派生クラスとし、 + コンストラクタを宣言することから始めます。 + また、 Q_OBJECT マクロを使用して、クラスで多言語化機能及び、 + Qt のシグナル/スロット機能が使われていることを示します。 + ただし、現段階ではこれらの機能の全てを使わない場合もあります。 + + \snippet tutorials/addressbook/part1/addressbook.h class definition + + クラスは、 前述した QLineEdit と QTextEdit のプライベートなインスタンス + \c nameLine と \c addressText の宣言を保有します。 + 後述の章で、 \c nameLine 及び \c addressText に保存したデータが、 + 多くのアドレス帳の機能で必要になることがわかるでしょう。 + + 我々が使用する QLabel オブジェクトは、 + 一旦作成すると後で参照する必要がないため、宣言する必要はありません。 + Qt でオブジェクトの所有権を追跡する方法については、次節で説明します。 + + Q_OBJECT マクロ自体は、Qt のより高度な機能を実装します。 + ここでは、 Q_OBJECT マクロを、 \l{QObject::}{tr()} 及び + \l{QObject::}{connect()} 関数を使用可能にする + ショートカットとみなしたほうが良いでしょう。 + + これで、 \c addressbook.h ファイルが完成しました。 + 次は対応する \c addressbook.cpp ファイルの実装を行います。 + + \section1 AddressBook クラスの実装 + + \c AddressBook のコンストラクタは、 \a{parent} パラメータとして + QWidget を受け取ります。 + 慣例により、このパラメータを基底クラスのコンストラクタに渡します。 + 親が複数の子を所有できるというこの所有概念は、 + Qt でウィジェットのグループ化を行う場合に有用です。 + 例えば、親を削除すると、親に属する子も全て削除されます。 + + \snippet tutorials/addressbook/part1/addressbook.cpp constructor and input fields + + このコンストラクタ内で、 \c nameLine と \c addressText のインスタンスを生成し、 + 2つのローカル QLabel オブジェクトの \c nameLabel と \c addressLabel + を宣言し、そのインスタンスを生成します。 + \l{QObject::tr()}{tr()} 関数は、 + 翻訳した文字列が存在する場合にそれを返します。 + そうでない場合は、引数の文字列自体を返します。 + この関数は文字列が他の言語に翻訳されるようにマークする役目を持ちます。 + 翻訳可能な文字列を使用するたびに、マークしてください。 + + Qt を使用してプログラミングを行う場合、 + レイアウトが機能する仕組みを理解していると便利です。 + Qt は主に、以下の3つのレイアウトクラスを提供します。 + ウィジェットの配置を処理するための QHBoxLayout 、 QVBoxLayout 及び + QGridLayout です。 + + \image addressbook-tutorial-part1-labeled-layout.png + + ここでは、 QGridLayout を使って、 + ラベルと入力フィールドを配置します。 + QGridLayout は、有効なスペースを格子状に分割し、 + 行/列番号により指定するセルに、ウィジェットを配置します。 + 上図は、レイアウトセルとウィジェットの位置を示しており、 + 以下のコードを使用して、この配置を指定します: + + \snippet tutorials/addressbook/part1/addressbook.cpp layout + + \c addressLabel は、追加引数として Qt::AlignTop を用いて配置されていることに注意してください。 + これは、セル(1,0) で縦方向の中央に配置されないようにするためです。 + Qt のレイアウトにおける基本概念については、 + \l{Layout Management} のドキュメントをご覧ください。 + + ウィジェットにレイアウトオブジェクトをインストールするには、 + ウィジェットの \l{QWidget::setLayout()}{setLayout()} + 関数を呼び出す必要があります。 + + \snippet tutorials/addressbook/part1/addressbook.cpp setting the layout + + 最後に、ウィジェットのタイトルを "Simple Address Book" とします。 + + \section1 アプリケーションを実行する + + 別のファイル \c main.cpp に、 \c main() 関数に実装します。 + この関数内で、QApplication である \c app のインスタンスを生成します。 + QApplication は、既定のフォントやカーソルなど + アプリケーションに共通な複数のリソース及び、 + イベントループの実行に関与しています。 + 従って、Qt を使用する全ての GUI アプリケーションでは、 + 必ず QApplication が存在します。 + + \snippet tutorials/addressbook/part1/main.cpp main function + + スタックに新しい \c AddressBook ウィジェットを生成し、 + \l{QWidget::show()}{show()} 関数を呼び出して表示します。 + ただし、ウィジェットはアプリケーションのイベントループが + 開始されるまで表示されません。 + アプリケーションの \l{QApplication::}{exec()} 関数を呼び出して、 + イベントループを開始します。 + この関数により返された結果は、 \c main() 関数の戻り値として使用されます。 + この時点で、スタックで \c AddressBook + をインスタンス化した理由が明らかになります。 + イベントループが終了すると \c main() 関数のスコープの外に移動します。 + それに伴って \c AddressBook 及び、 + これに属する全ての子ウィジェットが削除されるため、 + メモリリークを防ぐことができます。 +*/ + +/*! + \page tutorials-addressbook-part2.html + + \example tutorials/addressbook/part2 + \title 第2章 - アドレスの追加 + + 基本的なアドレス帳アプリケーションを作成するための次の手順は、 + ユーザからの操作を可能にすることです。 + + \image addressbook-tutorial-part2-add-contact.png + + 新しい連絡先を追加するために、 + ユーザがクリックするプッシュボタンを作成します。 + また、これらの連絡先を整理して保存するために、 + 何らかのデータ構造が必要になります。 + + \section1 AddressBook クラスの宣言 + + ラベルと入力フィールドの設定が完了しているため、 + 連絡先を追加する際に必要なプッシュボタンを追加します。 + \c addressbook.h ファイルに、 + 3つの QPushButton オブジェクトを宣言し、 + 対応する3つの public slot を作成します。 + + \snippet tutorials/addressbook/part2/addressbook.h slots + + スロットとは特定のシグナルに応答して呼び出される関数をいいます。 + このコンセプトについては、 \c AddressBook + クラスを実装する際にさらに詳細に取り上げます。 + なお、Qt のシグナル/スロットのコンセプトの概要については、 + \l{Signals and Slots} のドキュメントを参照してください。 + + 3つの QPushButton オブジェクト \c addButton 、 \c submitButton 、 + \c cancelButton は、前章の \c nameLine と \c addressText とともに、 + プライベート変数宣言に含まれています。 + + \snippet tutorials/addressbook/part2/addressbook.h pushbutton declaration + + アドレス帳の連絡先を横断して表示するには、 + 連絡先保持用のコンテナが必要です。 + QMap のオブジェクトである \c contacts をこの目的に使用します。 + \c contacts にはキーとして連絡先の名前 \e key + とそれに対応する値として連絡先の住所 \e value を格納します。 + + \snippet tutorials/addressbook/part2/addressbook.h remaining private variables + + QString の2つのプライベートオブジェクトとして \c oldName と \c oldAddress + も宣言します。 + これらのオブジェクトは、ユーザが \gui Add + をクリックする前に最後に表示した連絡先の名前と住所が含まれている必要があります。 + ユーザが \gui Cancel + をクリックすると、最後に表示した連絡先の詳細に戻って表示することが出来ます。 + + \section1 AddressBook クラスの実装 + + \c AddressBook のコンストラクタ内で、連絡先の詳細を編集することなく + 表示のみを行えるよう、 \c nameLine と \c addressText + を読み取り専用に設定します。 + + \dots + \snippet tutorials/addressbook/part2/addressbook.cpp setting readonly 1 + \dots + \snippet tutorials/addressbook/part2/addressbook.cpp setting readonly 2 + + 次に、プッシュボタン \c addButton 、 \c submitButton 、 \c cancelButton + のインスタンスを生成します。 + + \snippet tutorials/addressbook/part2/addressbook.cpp pushbutton declaration + + \c addButton を、 \l{QPushButton::show()} 関数を呼び出して表示します。 + \c submitButton と \c cancelButton は、 + \l{QPushButton::hide()}{hide()} を呼び出して非表示にします。 + これら2つのプッシュボタンはユーザが \gui Add + をクリックした場合にのみ表示され、後に説明する + \c addContact() によって処理されます。 + + \snippet tutorials/addressbook/part2/addressbook.cpp connecting signals and slots + + 各プッシュボタンの \l{QPushButton::clicked()}{clicked()} を、 + それぞれのスロットに接続します。 + 下図はこれを説明したものです。 + + \image addressbook-tutorial-part2-signals-and-slots.png + + 次に、 QVBoxLayout を使用して、 + アドレス帳ウィジェットの右側にプッシュボタンを + 上下一列に配置します。 + + \snippet tutorials/addressbook/part2/addressbook.cpp vertical layout + + \l{QBoxLayout::addStretch()}{addStretch()} 関数は、 + プッシュボタンを等間隔に並べるのではなく、 + ウィジェット上部に近づけて配置するために使用します。 + 下図は、\l{QBoxLayout::addStretch()}{addStretch()} を使用した場合と、 + 使用しない場合の違いを示しています。 + + \image addressbook-tutorial-part2-stretch-effects.png + + 次に、\l{QGridLayout::addLayout()}{addLayout()} を使用して、 + \c buttonLayout1 を \c mainLayout に追加します。 + \c buttonLayout1 は \c mainLayout の子となり、 + レイアウトが入れ子になりました。 + + \snippet tutorials/addressbook/part2/addressbook.cpp grid layout + + レイアウトの配置は以下のようになります: + + \image addressbook-tutorial-part2-labeled-layout.png + + \c addContact() では、最後に表示した連絡先の詳細を、 + \c oldName と \c oldAddress に保存します。 + 次に、これらの入力フィールドをクリアし、読み取り専用モードを解除します。 + \c nameLine にフォーカスをセットして、 \c submitButton と \c cancelButton を表示します。 + + \snippet tutorials/addressbook/part2/addressbook.cpp addContact + + \c submitContact() 関数は、以下の次の3つの要素から成ります: + + \list 1 + + \o \c nameLine 及び \c addressText から連絡先の詳細を抽出し、 + QString オブジェクトに保存します。 + また、ユーザが入力フィールドに何も入力せずに + \gui Submit をクリックしないよう確認します。 + どちらかのフィールドが空であれば、ユーザに名前と住所の入力を求める + QMessageBox が表示されます。 + + \snippet tutorials/addressbook/part2/addressbook.cpp submitContact part1 + + \o 続けて、連絡先が既に存在するかどうか確認します。 + 存在しない場合は \c contacts に連絡先を追加して QMessageBox を表示し、 + 連絡先が追加されたことをユーザに知らせます。 + + \snippet tutorials/addressbook/part2/addressbook.cpp submitContact part2 + + 連絡先が既に存在する場合、 QMessageBox を表示し、 + 連絡先が重複して追加されないように + 連絡先が存在することをユーザに知らせます。 + \c contacts オブジェクトは、名前と住所のキー値のペアで構成されているため、 + \e key が一意であることを確認します。 + + \o 上記の両方の事例に対処したら、 + 以下のコードを使ってプッシュボタンを通常の状態に戻します: + + \snippet tutorials/addressbook/part2/addressbook.cpp submitContact part3 + + \endlist + + 以下のスクリーンショットは、ユーザに情報メッセージを表示するために使用する + QMessageBox オブジェクトです。 + + \image addressbook-tutorial-part2-add-successful.png + + \c cancel() 関数は、最後に表示した連絡先の詳細を復元して + \c addButton を有効にし、 \c submitButton と \c cancelButton + を非表示にします。 + + \snippet tutorials/addressbook/part2/addressbook.cpp cancel + + 連絡先を追加する際の概念は、ユーザがいつでも自由に + \gui{送信} または \gui{キャンセル} をクリックできるようにすることです。 + 以下のフローチャートは、この概念を詳細に説明しています: + + \image addressbook-tutorial-part2-add-flowchart.png +*/ + +/*! + \page tutorials-addressbook-part3.html + + \example tutorials/addressbook/part3 + \title 第3章 - 項目間のナビゲーション + + アドレス帳アプリケーションは、半分完成しました。 + 次に表示する連絡先を変更するために、いくつかの関数を追加します。 + しかし、最初に、これらの連絡先を保存するために使用するデータ構造の種類を決める必要があります。 + + 第2章では、連絡先の名前 \e key 及び、連絡先の住所 \e value + の鍵と値のペアで QMap を使用しました。 + これは、この事例で使用するのに適した構造です。 + ただし、各項目間を移動して表示するには、多少の機能拡張が必要です。 + + QMap を、最初の要素と最後の要素を含むすべての要素が接続された + 循環リストに似たデータ構造に、機能拡張します。 + 下図はこのデータ構造を説明したものです。 + + \image addressbook-tutorial-part3-linkedlist.png + + \section1 AddressBook クラスの宣言 + + アドレス帳アプリケーションにナビゲーション機能を追加するには、 + \c AddressBook クラスに2つのスロットを追加する必要があります。 + next() 及び \c previous() を + \c addressbook.h ファイルに追加します。 + + \snippet tutorials/addressbook/part3/addressbook.h navigation functions + + また、新たに2つの QPushButton オブジェクトが必要になります。 + プライベート変数として + \c nextButton と \c previousButton を宣言します。 + + \snippet tutorials/addressbook/part3/addressbook.h navigation pushbuttons + + \section1 AddressBook クラスの実装 + + \c addressbook.cpp の \c AddressBook コンストラクタでは、 + \c nextButton と \c previousButton のインスタンスを生成し + 初期設定で無効にします。 + これは、アドレス帳に複数の連絡先が存在しない場合、 + ナビゲーションを有効にしないためです。 + + \snippet tutorials/addressbook/part3/addressbook.cpp navigation pushbuttons + + これらのプッシュボタンを、それぞれスロットに接続します: + + \snippet tutorials/addressbook/part3/addressbook.cpp connecting navigation signals + + 以下の画像は、ここで作成しようとしている + グラフィカルユーザインターフェースです。 + 最終アプリケーションが完成間近であることがわかるでしょう。 + + \image addressbook-tutorial-part3-screenshot.png + + \c next() と \c previous() では基本的な規約に従って、 + \c nextButton を右側に、 \c previousButton を左側に配置します。 + 直感的でわかりやすいレイアウトに仕上げるために、 + QHBoxLayout を使用してウィジェットを横に並べて配置します: + + \snippet tutorials/addressbook/part3/addressbook.cpp navigation layout + + 次に、 \c mainLayout に、QHBoxLayout のオブジェクトである + \c buttonLayout2 を追加します。 + + \snippet tutorials/addressbook/part3/addressbook.cpp adding navigation layout + + 下図は、 \c mainLayout のウィジェットの配置を示します。 + \image addressbook-tutorial-part3-labeled-layout.png + + \c addContact() 関数内部では、 + ユーザが連絡先を追加しているときに移動しないよう、 + これらのボタンを無効にする必要があります。 + + \snippet tutorials/addressbook/part3/addressbook.cpp disabling navigation + + また、 \c submitContact() 関数では、 \c contacts のサイズに応じて、 + ナビゲーションボタン \c nextButton 及び \c previousButton を有効にします。 + 前述のように、アドレス帳に複数の連絡先が存在しない場合は、 + ナビゲーションを有効にできません。 + 以下のコードは、その処理方法を示しています。 + + \snippet tutorials/addressbook/part3/addressbook.cpp enabling navigation + + \c cancel() 関数にも、これらの処理を含めます。 + + ここで、QMap のオブジェクト \c contacts を使って、 + 循環リストをエミュレートしましょう。 + \c next() 関数で、 \c contacts のイテレータを作成し、次に: + + \list + \o イテレータが \c contacts の末尾にない場合は、次の項目に移動します。 + + \o イテレータが \c contacts の末尾にある場合は、 + \c contacts の先頭に移動します。 + これによって、QMap が循環リストのように機能するという印象を与えます。 + \endlist + + \snippet tutorials/addressbook/part3/addressbook.cpp next() function + + \c contacts 内の正しいオブジェクトに移動したら、 + \c nameLine と \c addressText に内容を表示します。 + + 同様に、 \c previous() 関数で、 \c contacts のイテレータを作成し、次に: + \list + \o イテレータが \c contacts の末尾にある場合は、 + 表示をクリアして戻ります。 + + \o イテレータが \c contacts の先頭にある場合は、末尾に移動します。 + + \o イテレータを直前の項目に移動します。 + \endlist + + \snippet tutorials/addressbook/part3/addressbook.cpp previous() function + + もう一度、 \c contacts に現在のオブジェクトの内容を表示します。 +*/ + +/*! + \page tutorials-addressbook-part4.html + + \example tutorials/addressbook/part4 + \title 第4章 - アドレスの編集と削除 + + 本章では、アドレス帳アプリケーションに保存されている + 連絡先の内容を変更する方法について説明します。 + + \image addressbook-tutorial-screenshot.png + + ここでは、連絡先を整理して保存するだけでなく、 + ナビゲーションが可能なアドレス帳を作成します。 + 必要に応じて連絡先の詳細を変更できるよう、 + 編集・削除機能を追加すると便利です。 + ただし、列挙型書式の若干の改善が必要になります。 + 前章では、次の2つのモードを扱いました: + \c AddingMode 及び \c NavigationMode - + ただし、これらは列挙型として定義しませんでした。 + 代わりに、対応するボタンを手動で有効または無効にし、 + 複数行のコードを繰り返します。 + + 本章では、以下のような2つの異なる値を持つ \c Mode 列挙型を定義します: + + \list + \o \c{NavigationMode} + \o \c{AddingMode} + \o \c{EditingMode} + \endlist + + \section1 AddressBook クラスの宣言 + + \c addressbook.h ファイルをアップデートし、 \c Mode 列挙型を追加します: + + \snippet tutorials/addressbook/part4/addressbook.h Mode enum + + また、public slot として2つの新しいスロット + \c editContact() 及び \c removeContact() を追加します。 + + \snippet tutorials/addressbook/part4/addressbook.h edit and remove slots + + モードを切り替えるために、すべての QPushButton オブジェクトの + 有効化/無効化を制御する \c updateInterface() 関数を導入します。 + また、前述の編集と削除を行うスロット用に、2つの新しいボタン + \c editButton 及び \c removeButton を追加します。 + + \snippet tutorials/addressbook/part4/addressbook.h updateInterface() declaration + \dots + \snippet tutorials/addressbook/part4/addressbook.h buttons declaration + \dots + \snippet tutorials/addressbook/part4/addressbook.h mode declaration + + 最後に、現在のモードを保持する列挙型の \c currentMode を宣言します。 + + \section1 AddressBook クラスの実装 + + ここで、アドレス帳アプリケーションのモード変更機能を実装する必要があります。 + アドレス帳をはじめて起動するときは、 + メモリに連絡先が保存されていないため、 + コンストラクタでは、 \c editButton 及び \c removeButton + のインスタンスの生成と無効化を行います。 + + \snippet tutorials/addressbook/part4/addressbook.cpp edit and remove buttons + + また、ボタンをそれぞれのスロット \c editContact() 及び \c removeContact() + に接続し、 \c buttonLayout1 に追加します。 + + \snippet tutorials/addressbook/part4/addressbook.cpp connecting edit and remove + \dots + \snippet tutorials/addressbook/part4/addressbook.cpp adding edit and remove to the layout + + \c editContact() は、モードを \c EditingMode に切り替える前に、 + 連絡先の古い詳細情報を、 \c oldName と \c oldAddress に保存します。 + このモードでは、 \c submitButton と \c cancelButton + の両方が有効になるため、ユーザは連絡先の詳細を変更し、 + どちらか一方のボタンをクリックできます。 + + \snippet tutorials/addressbook/part4/addressbook.cpp editContact() function + + \c submitContact() 関数は、 \c{if-else} ステートメントにより、 + 2つの処理に分割しています。 + \c currentMode が \c AddingMode であるかどうかを確認します。 + その場合、連絡先追加の処理を行います。 + + \snippet tutorials/addressbook/part4/addressbook.cpp submitContact() function beginning + \dots + \snippet tutorials/addressbook/part4/addressbook.cpp submitContact() function part1 + + \c AddingMode でない場合、 \c currentMode が \c EditingMode + であるかどうか確認します。 + その場合、 \c oldName を \c name と比較します。 + 名前を変更した場合、 \c contacts から古い連絡先を削除し、 + 新たに更新した連絡先を挿入します。 + + \snippet tutorials/addressbook/part4/addressbook.cpp submitContact() function part2 + + 住所のみを変更した場合 (たとえば、 \c oldAddress は \c address と異なる)、 + 連絡先の住所を更新します。 + 最後に、 \c currentMode を \c NavigationMode に設定します。 + これは、無効にしたプッシュボタンをすべて再び有効にするための重要なステップです。 + + アドレス帳から連絡先の削除を行う + \c removeContact() 関数を実装します。 + この関数では、まず連絡先が \c contacts に存在するかどうか確認します。 + + \snippet tutorials/addressbook/part4/addressbook.cpp removeContact() function + + 存在する場合、ユーザに削除を確認するために、QMessageBox を表示します。 + ユーザが確認したら、 \c previous() を呼び出して、 + ユーザインターフェースで他の連絡先を表示できることを確認し、 + QMap の \l{QMap::remove()}{remove()} 関数を使用して連絡先を削除します。 + 念のため、QMessageBox を表示してユーザに知らせます。 + この関数で使用するメッセージボックスを以下に示します: + + \image addressbook-tutorial-part4-remove.png + + \section2 ユーザインターフェースを更新する + + 既に、 \c updateInterface() 関数が + 現在のモードに応じてプッシュボタンの有効化と無効化を行うための + 手段であることを説明しました。 + この関数は、渡される \c mode 引数に応じて現在のモードを更新します。 + なお、引数の値を確認する前に \c currentMode に代入しています。 + + このとき、それぞれのプッシュボタンは、 + 現在のモードに応じて有効または無効になります。 + \c AddingMode 及び \c EditingMode でのコードを以下に示します: + + \snippet tutorials/addressbook/part4/addressbook.cpp update interface() part 1 + + \c NavigationMode の場合、 QPushButton::setEnabled() + 関数のパラメータに条件を含めます。 + これは、アドレス帳に少なくとも1つ以上の連絡先が存在する場合に、 + \c editButton と \c removeButton が有効であることを確認するためのものです。 + \c nextButton と \c previousButton は、 + アドレス帳に少なくとも2つ以上の連絡先が存在する場合にのみ有効になります。 + + \snippet tutorials/addressbook/part4/addressbook.cpp update interface() part 2 + + モードの設定及び、同一関数内でのユーザインターフェースの更新を行うタスクを実行することにより、 + アプリケーションの内部状態により + ユーザインターフェースが「非同期」になる可能性を防ぎます。 +*/ + +/*! + \page tutorials-addressbook-part5.html + + \example tutorials/addressbook/part5 + \title 第5章 - 検索機能の追加 + + 本章では、アドレス帳アプリケーションの連絡先と住所を + 検索する方法について説明します。 + + \image addressbook-tutorial-part5-screenshot.png + + アドレス帳アプリケーションへ連絡先の追加を繰り返すと、 + \e Next 及び \e Previous ボタンによる連絡先のナビゲートが面倒になります。 + この場合、\e{検索(Find)}機能を使うと、 + 連絡先の検索をより効率的に行うことができます。 + 上記スクリーンショットは、\e Find ボタン及び、 + パネル上のボタンの位置を示します。 + + ユーザーが \e Find ボタンをクリックすると、 + 連絡先の名前の入力を求めるダイアログを表示します。 + Qt が提供する QDialog クラスを継承して \c FindDialog クラスを導入します。 + + \section1 FindDialog クラスの宣言 + + \image addressbook-tutorial-part5-finddialog.png + + QDialog を継承するには、最初に、QDialog のヘッダーを + \c finddialog.h ファイルで include する必要があります。 + また、これらのウィジェットをダイアログクラスで使用するため、 + 前方宣言を使用して QLineEdit と QPushButton を宣言します。 + + \c AddressBook クラスと同様に、 \c FindDialog クラスには Q_OBJECT + マクロが含まれ、ダイアログが別のウィンドウとして開かれる場合でも、 + コンストラクタは親 QWidget を取るように定義されます。 + + \snippet tutorials/addressbook/part5/finddialog.h FindDialog header + + \c FindDialog のインスタンスを保持するクラスにより使用される + パブリック関数 \c getFindText() を定義します。 + この関数を経由してユーザが入力した検索文字列を取得します。 + また、ユーザが \gui Find ボタンをクリックしたときに検索文字列を処理するために、 + public slot として \c findClicked() を定義します。 + + 最後に、\gui Find ボタンに対応するプライベート変数として \c findButton 、 + ユーザが検索文字列を入力するラインエディット \c lineEdit 及び、 + 後の作業で使用する検索文字列を保存するために使用する内部文字列として + \c findText の定義を行います。 + + \section1 FindDialog クラスの実装 + + \c FindDialog のコンストラクタ内で、プライベート変数の + \c lineEdit 、 \c findButton 及び \c findText を設定します。 + QHBoxLayout を用いてウィジェットを配置します。 + + \snippet tutorials/addressbook/part5/finddialog.cpp constructor + + シグナルをそれぞれのスロットに接続し、 + レイアウトとウィンドウのタイトルを設定します。 + \c findButton の \l{QPushButton::clicked()} シグナルは、 + \c findClicked() と \l{QDialog::accept()}{accept()} + に接続されていることがわかります。 + QDialog により提供される \l{QDialog::accept()}{accept()} スロットは + ダイアログを非表示にして、結果コードを \l{QDialog::}{Accepted} + に設定します。 + この関数を使用して、 \c AddressBook の \c findContact() 関数に、 + \c FindDialog オブジェクトが閉じていることを知らせます。 + この論理については、 \c findContact() 関数について取り上げる際に、 + さらに詳細に説明します。 + + \image addressbook-tutorial-part5-signals-and-slots.png + + \c findClicked() で、ユーザが連絡先の名前を入力せずに + \gui Find ボタンをクリックしたかどうか確認するために + \c lineEdit を検証します。 + 次に、 \c lineEdit から抽出した検索文字列を \c findText に設定します。 + その後、 \c lineEdit のコンテンツをクリアし、ダイアログを非表示にします。 + + \snippet tutorials/addressbook/part5/finddialog.cpp findClicked() function + + \c findText 変数用のパブリックな取得関数 + \c getFindText() を実装します。 + コンストラクタ及び \c findClicked() 関数でのみ + \c findText を直接設定するため、 + \c getFindText() に対応する設定関数は作成しません。 + \c getFindText() はパブリックであるため、インスタンスを生成し + \c FindDialog を使用するクラスは、 + ユーザが入力して確定した検索文字列にいつでもアクセスできます。 + + \snippet tutorials/addressbook/part5/finddialog.cpp getFindText() function + + \section1 AddressBook クラスの宣言 + + \c AddressBook クラス内部から \c FindDialog を使用できるよう、 + \c addressbook.h ファイルに \c finddialog.h を含めます。 + + \snippet tutorials/addressbook/part5/addressbook.h include finddialog's header + + これまでのところ、アドレス帳の全機能に、 + QPushButton とそのボタンに対応するスロットが含まれています。 + 同様に、\gui{検索(Find)}機能には、 + \c findButton 及び \c findContact() が含まれています。 + + \c findButton はプライベート変数として宣言され、 + \c findContact() 関数は public slot として宣言されます。 + + \snippet tutorials/addressbook/part5/addressbook.h findContact() declaration + \dots + \snippet tutorials/addressbook/part5/addressbook.h findButton declaration + + 最後に、 \c FindDialog のインスタンスを参照するためのプライベート変数 + \c dialog を宣言します。 + + \snippet tutorials/addressbook/part5/addressbook.h FindDialog declaration + + インスタンス化されたダイアログは複数回使用します。 + プライベート変数を使用すると、 + クラスの複数の場所から参照できるようになります。 + + \section1 AddressBook クラスの実装 + + \c AddressBook クラスのコンストラクタ内で、 + プライベートオブジェクトの \c findButton と \c findDialog + のインスタンスを生成します: + + \snippet tutorials/addressbook/part5/addressbook.cpp instantiating findButton + \dots + \snippet tutorials/addressbook/part5/addressbook.cpp instantiating FindDialog + + 次に、 \c findButton の \l{QPushButton::clicked()}{clicked()} シグナルを、 + \c findContact() に接続します。 + + \snippet tutorials/addressbook/part5/addressbook.cpp signals and slots for find + + 後は、 \c findContact() 関数のコードだけです: + + \snippet tutorials/addressbook/part5/addressbook.cpp findContact() function + + \c FindDialog インスタンスの \c dialog を表示することから始めます。 + これは、ユーザが検索用に連絡先の名前を入力するためのものです。 + ユーザがダイアログの \c findButton をクリックすると + ダイアログが非表示になり、結果コードが QDialog::Accepted に設定されます。 + これにより、 \c if ステートメントが常に真になります。 + + 続けて、検索文字列の抽出を行います。 + この場合、検索文字列は \c contactName で、 + \c FindDialog の \c getFindText() 関数を使用して取得します。 + アドレス帳に連絡先が存在する場合、直ちに表示します。 + 存在しない場合、検索が失敗したことを示す以下の QMessageBox が表示されます。 + + \image addressbook-tutorial-part5-notfound.png +*/ + +/*! + \page tutorials-addressbook-part6.html + + \example tutorials/addressbook/part6 + \title 第6章 - 読み込みと保存 + + 本章では、アドレス帳アプリケーションの読み込みと保存処理で使用する、 + Qt のファイル処理機能について説明します。 + + \image addressbook-tutorial-part6-screenshot.png + + 連絡先の参照及び検索機能は便利な機能ですが、 + 連絡先の保存と読み込みが可能になるまではアドレス帳は完成しません。 + + Qt は \l{Input/Output and Networking}{入出力} + 用のクラスを様々提供していますが、 + 今回は簡単に組み合わせて使用できる QFile と QDataStream の2つのクラスを選択しました。 + + QFile のオブジェクトは、 + 読み込みと書き込みが可能なディスク上のファイルを表します。 + QFile は、さまざまなデバイスを表すより一般的な QIODevice クラスの派生クラスです。 + + QDataStream オブジェクトは、バイナリデータを QIODevice に保存して、 + 後でもう一度取得できるようシリアライズするために使用します。 + パラメータとしてそれぞれのデバイスを使用すると、 + ストリームを開くのと同じくらい簡単に、 QIODevice + からの読み込みと書き込みを行うことができます。 + + \section1 AddressBook クラスの宣言 + + 2つの QPushButton オブジェクトの \c loadButton と \c saveButton + に加えて、2つの public slot の \c saveToFile() と \c loadFromFile() + を宣言します。 + + \snippet tutorials/addressbook/part6/addressbook.h save and load functions declaration + \dots + \snippet tutorials/addressbook/part6/addressbook.h save and load buttons declaration + + \section1 AddressBook クラスの実装 + + コンストラクタで、 \c loadButton と \c saveButton のインスタンスを生成します。 + 理想的には、プッシュボタンのラベルを、 + "Load contacts from a file"(「ファイルから連絡先を読み込む」)及び、 + "Save contacts to a file"(「連絡先をファイルに保存する」) + に設定するほうがよりユーザーフレンドリーです。 + ただし、他のプッシュボタンのサイズを考慮して、 + \gui{Load...}及び\gui{Save...}に設定します。 + Qt は、 \l{QWidget::setToolTip()}{setToolTip()} を使用して + ツールチップを簡単に設定する方法を提供していますので、 + 以下のコードでプッシュボタンにツールチップを設定します: + + \snippet tutorials/addressbook/part6/addressbook.cpp tooltip 1 + \dots + \snippet tutorials/addressbook/part6/addressbook.cpp tooltip 2 + + ここには記載していませんが、 + これまで実装した他の機能のように右側のレイアウトパネル + \c button1Layout にプッシュボタンを追加し、 + プッシュボタンの \l{QPushButton::clicked()}{clicked()} + シグナルをそれぞれのスロットに接続します。 + + 保存機能の場合、最初に QFileDialog::getSaveFileName() を使用して、 + \c fileName を取得します。 + これは、QFileDialog により提供される簡易関数で、 + モーダルなファイルダイアログをポップアップ表示させ、 + ユーザはファイル名を入力したり、既存の \c{.abk} ファイルを選択することが出来ます。 + \c{.abk} ファイルは、 + 連絡先を保存したときに作成されるアドレス帳の拡張子です。 + + \snippet tutorials/addressbook/part6/addressbook.cpp saveToFile() function part1 + + 以下のスクリーンショットのようなネイティブのファイルダイアログが表示されます: + + \image addressbook-tutorial-part6-save.png + + \c fileName が空ではない場合、 \c fileName を用いて + QFile のオブジェクト \c file を作成します。 + QFile は QIODevice の派生クラスであるため、 + QDataStream から使用できます。 + + 次に、ファイルを \l{QIODevice::}{WriteOnly} モードでオープンします。 + オープンに失敗した場合、 QMessageBox を表示してユーザに知らせます。 + + \snippet tutorials/addressbook/part6/addressbook.cpp saveToFile() function part2 + + オープンに成功した場合、 QDataStream のインスタンス \c out を生成して、 + 開いているファイルに書き込みます。 + QDataStream では、同じバージョンのストリームを使用して、 + 読み込みと書き込みを行う必要があります。 + \c file にシリアライズする前に、 + \l{QDataStream::Qt_4_5}{Qt 4.5で導入されたバージョン} + を今回使用するバージョンとして設定します。 + + \snippet tutorials/addressbook/part6/addressbook.cpp saveToFile() function part3 + + 読み込み機能の場合も QFileDialog::getOpenFileName() を使用して + \c fileName を取得します。 + この関数は QFileDialog::getSaveFileName() に対応するものであり、 + モーダルなファイルダイアログをポップアップ表示させ、 + ユーザはファイル名を入力したり、既存の \c{.abk} + ファイルを選択してアドレス帳に読み込ことができます。 + + \snippet tutorials/addressbook/part6/addressbook.cpp loadFromFile() function part1 + + たとえば、 Windows では、この関数は、以下のスクリーンショットのような + ネイティブのファイルダイアログをポップアップ表示させます。 + + \image addressbook-tutorial-part6-load.png + + \c fileName が空ではない場合、 QFile のオブジェクト + \c file を使用して、 \l{QIODevice::}{ReadOnly} モードでオープンします。 + \c saveToFile() の実装の場合と同様に、オープンに失敗した場合は + QMessageBox を表示して、ユーザに知らせます。 + + \snippet tutorials/addressbook/part6/addressbook.cpp loadFromFile() function part2 + + オープンに成功した場合、 + QDataStream のインスタンス \c in を生成して前記のようにバージョン設定を行い、 + シリアライズしたデータを \c contacts のデータ構造に読み込みます。 + \c contacts オブジェクトはデータが読み込まれる前に空にするので、 + ファイルの読み込みプロセスは簡素化されます。 + より高度な方法では、一時オブジェクトの QMap に読み込んで、 + 重複していない連絡先を \c contacts にコピーします。 + + \snippet tutorials/addressbook/part6/addressbook.cpp loadFromFile() function part3 + + ファイルから読み込んだ連絡先を表示するには、 + 最初に取得したデータを検証し、 + 読み込んだファイルにアドレス帳の連絡先が実際に含まれているか確認します。 + 含まれている場合、最初の連絡先を表示します。 + 含まれていない場合、QMessageBox を表示して、 + 問題があることをユーザに知らせます。 + 最後にインターフェースを更新し、適宜 + プッシュボタンの有効化と無効化を行います。 +*/ + +/*! + \page tutorials-addressbook-part7.html + + \example tutorials/addressbook/part7 + \title 第7章 - 追加機能 + + 本章では、アドレス帳アプリケーションを + 普段の生活で便利に使用するための追加機能について説明します。 + + \image addressbook-tutorial-part7-screenshot.png + + アドレス帳アプリケーションは、それ自体で便利ですが、 + 他のアプリケーションとデータの交換ができればなお便利です。 + vCard 形式は、この目的で使用可能な一般的なファイル形式です。 + 本章では、連絡先を vCard ファイル(\c{.vcf}) + にエクスポートできるよう、アドレス帳クライアントを拡張します。 + + \section1 AddressBook クラスの宣言 + + QPushButton のオブジェクト \c exportButton 及び、 + 対応する public slot の \c exportAsVCard() を + \c addressbook.h ファイルの \c AddressBook クラスに追加します。 + + \snippet tutorials/addressbook/part7/addressbook.h exportAsVCard() declaration + \dots + \snippet tutorials/addressbook/part7/addressbook.h exportButton declaration + + \section1 AddressBook クラスの実装 + + \c AddressBook のコンストラクタで、 \c exportButton の + \l{QPushButton::clicked()}{clicked()} シグナルを + \c exportAsVCard() に接続します。 + このボタンも、右側のボタンのパネルの処理を行うレイアウトである + \c buttonLayout1 に追加します。 + + \c exportAsVCard() 関数では、 + 連絡先の名前を \c name に抽出することから始めます。 + \c firstName 、 \c lastName 及び \c nameList を宣言します。 + 次に \c name を検索し、最初の空白のインデックスを取得します。 + 空白が存在する場合、連絡先の名前を \c firstName と + \c lastName に分割します。 + 次に、空白をアンダースコア ("_") に置き換えます。 + 空白が存在しない場合は、連絡先にファーストネーム(名) + しか保存されていない可能性があります。 + + \snippet tutorials/addressbook/part7/addressbook.cpp export function part1 + + \c saveToFile() 関数と同様に、ユーザがファイルの場所を選択できるよう + ファイルダイアログを開きます。 + 選択したファイル名を使用して、 + 書き込みを行うための QFile のインスタンスを生成します。 + + ファイルを \l{QIODevice::}{WriteOnly} モードでオープンします。 + オープンに失敗した場合、 QMessageBox を表示して、 + 問題があることをユーザに知らせて戻ります。 + オープンに成功した場合、 QTextStream のオブジェクト \c out へ + パラメータファイルを渡します。 + QDataStream のように、QTextStream クラスは、 + プレーンテキストファイルの読み込みと書き込みを行う機能を提供します。 + 結果として、生成された \c{.vcf} は + テキストエディターで開いて編集することができます。 + + \snippet tutorials/addressbook/part7/addressbook.cpp export function part2 + + まず \c{BEGIN:VCARD} タグ、次に \c{VERSION:2.1} タグの順に + vCard ファイルに書き込みます。 + 連絡先の名前は、 \c{N:} タグを使用して書き込みます。 + vCard の "File as" プロパティを設定する \c{FN:} タグを書き込む際は、 + 連絡先にラストネーム(姓)が含まれているかどうかを確認する必要があります。 + 含まれている場合、 \c nameList の情報を使用して入力します。 + 含まれていない場合、 \c firstName のみを書き込みます。 + + \snippet tutorials/addressbook/part7/addressbook.cpp export function part3 + + 続けて連絡先の住所の書き込みを行います。 + 住所のセミコロンには、"\\" をエスケープ文字として追加する必要があります。 + 改行はセミコロンに置き換えられ、コンマはスペースに置き換えられます。 + 次に、 \c{ADR;HOME:;} タグ、 \c address 、 + \c{END:VCARD} タグの順に書き込みます。 + + \snippet tutorials/addressbook/part7/addressbook.cpp export function part4 + + 最後に、vCard のエクスポートに成功したことをユーザに知らせるために、 + QMessageBox が表示されます。 + + \e{vCard は、\l{http://www.imc.org}{Internet Mail Consortium} の登録商標です。} +*/ diff --git a/doc/src/ja_JP/tutorials/widgets-tutorial.qdoc b/doc/src/ja_JP/tutorials/widgets-tutorial.qdoc new file mode 100644 index 0000000..6a6b1a2 --- /dev/null +++ b/doc/src/ja_JP/tutorials/widgets-tutorial.qdoc @@ -0,0 +1,257 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the documentation of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +/*! + \page widgets-tutorial.html + \title ウィジェットのチュートリアル + \brief 本チュートリアルではウィジェットとレイアウトの基本的な使い方を説明し、それらが GUI アプリケーションの開発でどのように使われるかを説明します。 + + \section1 はじめに + + ウィジェットは Qt によるグラフィカルユーザインターフェース(GUI)アプリケーションの基本構成要素です。 + ボタン、ラベル、テキストエディターなどの各 GUI コンポーネントはウィジェットであり、 + 既存のウィンドウのユーザーインタフェース内に配置したり、独立したウィンドウとして表示することができます。 + それぞれのコンポーネントは QWidget の派生クラスとして実装されます。 + QWidget 自体は QObject の派生クラスです。 + + QWidget は抽象クラスではなく、 + 他のウィジェット用のコンテナとして使用されたり、 + カスタムウィジェットを作る場合の基底クラスとして使用されます。 + 他のウィジェットを配置するウィンドウとしてもよく使われます。 + + \l{QObject} と同様に QWidget は所有権を示すために親オブジェクトを指定して生成できるため、 + 親オブジェクトが使用されなくなった場合には破棄されます。 + ウィジェットではこの親子関係が他の意味も持ちます。 + 子ウィジェットは親ウィジェットが使用する領域内に表示されます。 + これは、ウィンドウを削除するとそのウィンドウに含まれる全てのウィジェットが自動的に破棄されることを意味します。 + + \section1 main 関数の記述 + + Qt の GUI サンプルの多くは標準的なアプリケーションの初期化コードを含む + \c{main.cpp} ファイルと、アプリケーションのロジックやカスタム + GUI コンポーネントを含むいくつかのソース/ヘッダファイルから構成されています。 + + \c{main.cpp} 内の典型的な \c main() 関数は以下のようになります: + + \snippet doc/src/snippets/widgets-tutorial/template.cpp main.cpp body + + 最初に、コマンドラインから渡される引数を渡して QApplication のオブジェクトを生成します。 + ウィジェットを生成して表示した後、 QApplication::exec() を呼び出して Qt のイベントループを開始します。 + この関数から戻ってくるまでアプリケーションの制御は Qt 側にて行われます。最後に、\c{main()} は QApplication::exec() から取得された値を返します。 + + \section1 簡単なウィジェットのサンプル + + 以下の簡単なウィジェットのサンプルでは \c main() 関数の中にコードを記述しています。 + + \list + \o \l {tutorials/widgets/toplevel}{ウィンドウの作成} + + \o \l {tutorials/widgets/childwidget}{子ウィジェット} + + \o \l {tutorials/widgets/windowlayout}{レイアウトの利用} + + \o \l {tutorials/widgets/nestedlayouts}{複雑なレイアウト} + \endlist + + \section1 複雑なウィジェットのサンプル + + \l{Widgets examples}{より高度なサンプル} の場合、ウィジェットやレイアウトのためのコードは他のファイルに記述されています。 + 例えば、メインウインドウ用の GUI は、 QMainWindow 派生クラスのコンストラクタで作成されるでしょう。 + + \section1 サンプルのビルド + + Qt のバイナリパッケージを取得してインストールするか、Qt を自分でコンパイルした場合には既にこのチュートリアルで説明されているサンプルはビルドされ、実行する準備ができています。 + これらを変更し再コンパイルをしたい場合は、次の手順に従う必要があります: + + \list 1 + \o コマンドラインで、再コンパイルしたいサンプルを含むディレクトリに移動します。 + \o \c qmake と入力し、\key{Return} キーを押します。 + うまくいかない場合は、現在のパス内にこの実行ファイルが存在することを確認するか、 + フルパスを指定して実行してください。 + \o Linux/Unix および Mac OS X の場合、\c make と入力し、\key{Return} キーを押します。 + Windows 上の Visual Studio の場合、\c nmake と入力し、\key{Return} キーを押します。 + \endlist + + 現在のディレクトリに実行ファイルが生成されます。 + Windows では、このファイルは \c debug または \c release + ディレクトリに配置されているかもしれません。 + このファイルを実行すると、作業中のサンプルコードの動作を確認できます。 +*/ + +/*! + \example tutorials/widgets/toplevel + \title ウィジェットのチュートリアル - ウィンドウの作成 + + 親を持たないウィジェットを作成した場合、そのウィジェットは表示時にウィンドウ(\e{トップレベルウィジェット})として扱われます。 + このウィジェットが必要なくなった場合にそれを破棄してくれる親ウィジェットがないため、トップレベルウィジェットの管理は開発者が行ってください。 + + 以下のサンプルでは QWidget を使用してウィンドウを作成し、サイズを指定して表示します: + + \raw HTML + + +
+ \endraw + \snippet tutorials/widgets/toplevel/main.cpp main program + \raw HTML + + \endraw + \inlineimage widgets-tutorial-toplevel.png + \raw HTML +
+ \endraw + + 実際の GUI を作成するには、ウィンドウ内にウィジェットを配置する必要があります。 + これは、ウィジェットのコンストラクタに QWidget のインスタンスを渡すことで実現します。 + 詳細は本チュートリアルの次の章で示します。 +*/ + +/*! + \example tutorials/widgets/childwidget + \title ウィジェットのチュートリアル - 子ウィジェット + + 前のサンプルで作成したウィンドウに子ウィジェットを追加するために、 + 親として \c window を子ウィジェットのコンストラクタに渡します。 + ここでは、ウィンドウにボタンを追加し特定の場所に配置します: + + \raw HTML + + +
+ \endraw + \snippet tutorials/widgets/childwidget/main.cpp main program + \raw HTML + + \endraw + \inlineimage widgets-tutorial-childwidget.png + \raw HTML +
+ \endraw + + このボタンはウィンドウの子になり、 + ウィンドウが破棄された場合にはボタンも破棄されるでしょう。 + ウィンドウを非表示化したり閉じた際には、自動的に破棄はされません。 + サンプルが終了する場合には破棄されるでしょう。 +*/ + +/*! + \example tutorials/widgets/windowlayout + \title ウィジェットのチュートリアル - レイアウトの利用 + + 一般的に子ウィジェットは、位置とサイズを明確に指定するのではなく、 + レイアウトオブジェクトを使用してウィンドウ内に配置します。 + ここでは、ラベルとラインエディットを生成し、横に並べて配置します。 + + \raw HTML + + +
+ \endraw + \snippet tutorials/widgets/windowlayout/main.cpp main program + \raw HTML + + \endraw + \inlineimage widgets-tutorial-windowlayout.png + \raw HTML +
+ \endraw + + 生成する \c layout オブジェクトは、 \l{QHBoxLayout::}{addWidget()} 関数を使って設定されたウィジェットの位置とサイズを管理します。 + また、\l{QWidget::}{setLayout()} を使用してレイアウトをウィンドウに設定します。 + レイアウトはそれ自体は目には見えない存在です。 + レイアウトの管理対象となっているウィジェット(や他のレイアウト)に対しての効果としてのみ、その存在を確認できます。 + + 上記サンプルにおいて、各ウィジェットの所有権はあまり明確ではありません。 + 親オブジェクトのない3つのウィジェットと1つのレイアウトを作成するため、 + 空のウィンドウと、ラベルとラインエディットをそれぞれ含む別々のウィンドウが表示されるように見えるかもしれません。 + しかし、レイアウトにラベルとラインエディットを管理するように指定すると、 + ウィンドウにそのレイアウトを設定した際に「親の再指定」が行われるため、 + ウィジェットおよびレイアウト自体がそのウィンドウの子になります。 +*/ + +/*! + \example tutorials/widgets/nestedlayouts + \title ウィジェットのチュートリアル - 複雑なレイアウト + + ウィジェットの中に他のウィジェットを含めることができるように、 + レイアウトは異なるレベルでのウィジェットのグループ化にも使用されます。 + ここではウィンドウ上部にラベルとラインエディットを隣り合わせに配置し、 + その下に検索結果が表示されるテーブルビューを表示します。 + + これは、レイアウトを2つ作成して行います。\c{queryLayout} は、QLabel と QLineEdit を左右に並べて表示する QHBoxLayout です。 + \c{mainLayout} は、\c{queryLayout} と QTableView を上下に並べて表示する QVBoxLayout です。 + + \raw HTML + + +
+ \endraw + \snippet tutorials/widgets/nestedlayouts/main.cpp first part + \snippet tutorials/widgets/nestedlayouts/main.cpp last part + \raw HTML + + \endraw + \inlineimage widgets-tutorial-nestedlayouts.png + \raw HTML +
+ \endraw + + \c{mainLayout} の \l{QBoxLayout::}{addLayout()} 関数にて追加された + \c{queryLayout} と \c{resultView} は追加された順番で上から並べられます。 + + ここでは QTableView ウィジェット \c resultView に表示されるデータを含むモデルの設定のコードは省略していますが、 + 後ほど示します。 + + QHBoxLayout や QVBoxLayout と共に Qt から提供される QGridLayout および QFormLayout を使用することにより、 + より複雑なユーザインターフェースの構築が可能になります。 + これらのレイアウトの効果は、\l{Qt Designer} を実行して確認できます。 + + \section1 モデルを設定する + + 上記のコードでは、レイアウトの有効利用に重点を置いていたため、 + テーブルのデータについては示していませんでした。 + 以下のコードで、モデルには行に対応する項目が含まれ、それぞれの行には2つの列のデータが設定されていることがわかるでしょう。 + + \snippet tutorials/widgets/nestedlayouts/main.cpp set up the model + + モデルとビューの有効利用については、\l{Item Views Examples} および + \l{Model/View Programming} の概要に含まれています。 +*/ diff --git a/examples/ja_JP/linguist/hellotr/hellotr.pro b/examples/ja_JP/linguist/hellotr/hellotr.pro new file mode 100644 index 0000000..3846bfb --- /dev/null +++ b/examples/ja_JP/linguist/hellotr/hellotr.pro @@ -0,0 +1,13 @@ +#! [0] +SOURCES = main.cpp +#! [0] #! [1] +TRANSLATIONS = hellotr_ja.ts +#! [1] + +# install +target.path = $$[QT_INSTALL_EXAMPLES]/linguist/hellotr +sources.files = $$SOURCES *.pro +sources.path = $$[QT_INSTALL_EXAMPLES]/linguist/hellotr +INSTALLS += target sources + +symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) diff --git a/examples/ja_JP/linguist/hellotr/main.cpp b/examples/ja_JP/linguist/hellotr/main.cpp new file mode 100644 index 0000000..ad122e9 --- /dev/null +++ b/examples/ja_JP/linguist/hellotr/main.cpp @@ -0,0 +1,71 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the examples of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include +#include +//! [0] +#include +//! [0] + +//! [1] //! [2] +int main(int argc, char *argv[]) +//! [1] //! [3] //! [4] +{ + QApplication app(argc, argv); +//! [3] + +//! [5] + QTranslator translator; +//! [5] //! [6] + translator.load("hellotr_ja"); +//! [6] //! [7] + app.installTranslator(&translator); +//! [4] //! [7] + +//! [8] + QPushButton hello(QPushButton::tr("Hello world!")); +//! [8] + hello.resize(100, 30); + + hello.show(); + return app.exec(); +} +//! [2] diff --git a/tools/qdoc3/test/qt-api-only_ja_JP.qdocconf b/tools/qdoc3/test/qt-api-only_ja_JP.qdocconf new file mode 100644 index 0000000..aa3ab01 --- /dev/null +++ b/tools/qdoc3/test/qt-api-only_ja_JP.qdocconf @@ -0,0 +1,30 @@ +include(qt-build-docs_ja_JP.qdocconf) + +# Ensures that the generated index contains a URL that can be used by the +# tools documentation (assistant.qdocconf, designer.qdocconf, linguist.qdocconf, +# qmake.qdocconf). + +url = ./ + +# Ensures that the documentation for the tools is not included in the generated +# .qhp file. + +qhp.Qt.excluded += $QT_SOURCE_TREE/doc/src/development/assistant-manual.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/simpletextviewer.qdoc \ + $QT_SOURCE_TREE/doc/src/development/designer-manual.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/calculatorbuilder.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/calculatorform.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/customwidgetplugin.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/taskmenuextension.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/containerextension.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/worldtimeclockbuilder.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/worldtimeclockplugin.qdoc \ + $QT_SOURCE_TREE/doc/src/internationalization/linguist-manual.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/hellotr.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/arrowpad.qdoc \ + $QT_SOURCE_TREE/doc/src/examples/trollprint.qdoc \ + $QT_SOURCE_TREE/doc/src/development/qmake-manual.qdoc + +outputdir = $QT_BUILD_TREE/doc-build/html-qt_ja_JP +tagfile = $QT_BUILD_TREE/doc-build/html-qt_ja_JP/qt.tags +base = file:$QT_BUILD_TREE/doc-build/html-qt_ja_JP diff --git a/tools/qdoc3/test/qt-build-docs.qdocconf b/tools/qdoc3/test/qt-build-docs.qdocconf index 00704ea..216ac6a 100644 --- a/tools/qdoc3/test/qt-build-docs.qdocconf +++ b/tools/qdoc3/test/qt-build-docs.qdocconf @@ -115,6 +115,7 @@ excludedirs = $QT_SOURCE_TREE/src/3rdparty/clucene \ $QT_SOURCE_TREE/src/3rdparty/phonon/mmf \ $QT_SOURCE_TREE/src/3rdparty/phonon/waveout \ $QT_SOURCE_TREE/doc/src/snippets \ + $QT_SOURCE_TREE/doc/src/ja_JP \ $QT_SOURCE_TREE/doc/src/zh_CN sources.fileextensions = "*.cpp *.qdoc *.mm" diff --git a/tools/qdoc3/test/qt-build-docs_ja_JP.qdocconf b/tools/qdoc3/test/qt-build-docs_ja_JP.qdocconf new file mode 100644 index 0000000..e517b33 --- /dev/null +++ b/tools/qdoc3/test/qt-build-docs_ja_JP.qdocconf @@ -0,0 +1,110 @@ +include(compat.qdocconf) +include(macros.qdocconf) +include(qt-cpp-ignore.qdocconf) +include(qt-html-templates_ja_JP.qdocconf) +include(qt-defines.qdocconf) + +project = Qt +description = Qt リファレンスドキュメント +url = http://qt.nokia.com/doc/ja_JP/4.7 + +sourceencoding = UTF-8 +outputencoding = UTF-8 +naturallanguage = ja + +indexes = $QT_BUILD_TREE/doc-build/html-qt/qt.index + +qhp.projects = Qt + +qhp.Qt.file = qt.qhp +qhp.Qt.namespace = com.trolltech.qt.470 +qhp.Qt.virtualFolder = qdoc +qhp.Qt.title = Qt +qhp.Qt.indexTitle = Qt +qhp.Qt.selectors = fake:example + +qhp.Qt.filterAttributes = qt 4.7.0 qtrefdoc ja_JP +qhp.Qt.customFilters.Qt.name = Qt 4.7.0 +qhp.Qt.customFilters.Qt.filterAttributes = qt 4.7.0 + +# Files not referenced in any qdoc file (last four are needed by qtdemo) +# See also extraimages.HTML +qhp.Qt.extraFiles = index.html \ + images/bg_l.png \ + images/bg_l_blank.png \ + images/bg_r.png \ + images/box_bg.png \ + images/breadcrumb.png \ + images/bullet_gt.png \ + images/bullet_dn.png \ + images/bullet_sq.png \ + images/bullet_up.png \ + images/feedbackground.png \ + images/horBar.png \ + images/page.png \ + images/page_bg.png \ + images/sprites-combined.png \ + images/arrow-down.png \ + images/spinner.gif \ + images/stylesheet-coffee-plastique.png \ + images/taskmenuextension-example.png \ + images/coloreditorfactoryimage.png \ + images/dynamiclayouts-example.png \ + scripts/functions.js \ + scripts/jquery.js \ + style/OfflineStyle.css \ + style/style_ie6.css \ + style/style_ie7.css \ + style/style_ie8.css \ + style/style.css + +language = Cpp + +sourcedirs = $QT_SOURCE_TREE/doc/src/ja_JP + +excludedirs = $QT_SOURCE_TREE/src/3rdparty/clucene \ + $QT_SOURCE_TREE/src/3rdparty/des \ + $QT_SOURCE_TREE/src/3rdparty/freetype \ + $QT_SOURCE_TREE/src/3rdparty/harfbuzz \ + $QT_SOURCE_TREE/src/3rdparty/kdebase \ + $QT_SOURCE_TREE/src/3rdparty/libjpeg \ + $QT_SOURCE_TREE/src/3rdparty/libmng \ + $QT_SOURCE_TREE/src/3rdparty/libpng \ + $QT_SOURCE_TREE/src/3rdparty/libtiff \ + $QT_SOURCE_TREE/src/3rdparty/md4 \ + $QT_SOURCE_TREE/src/3rdparty/md5 \ + $QT_SOURCE_TREE/src/3rdparty/patches \ + $QT_SOURCE_TREE/src/3rdparty/sha1 \ + $QT_SOURCE_TREE/src/3rdparty/sqlite \ + $QT_SOURCE_TREE/src/3rdparty/webkit/JavaScriptCore \ + $QT_SOURCE_TREE/src/3rdparty/webkit/WebCore \ + $QT_SOURCE_TREE/src/3rdparty/wintab \ + $QT_SOURCE_TREE/src/3rdparty/zlib \ + $QT_SOURCE_TREE/doc/src/snippets \ + $QT_SOURCE_TREE/doc/src/zh_CN \ + $QT_SOURCE_TREE/src/3rdparty/phonon/gstreamer \ + $QT_SOURCE_TREE/src/3rdparty/phonon/ds9 \ + $QT_SOURCE_TREE/src/3rdparty/phonon/qt7 \ + $QT_SOURCE_TREE/src/3rdparty/phonon/mmf \ + $QT_SOURCE_TREE/src/3rdparty/phonon/waveout + +sources.fileextensions = "*.cpp *.qdoc *.mm" +examples.fileextensions = "*.cpp *.h *.js *.xq *.svg *.xml *.ui *.qhp *.qhcp" +examples.imageextensions = "*.png" + +exampledirs = $QT_SOURCE_TREE/doc/src \ + $QT_SOURCE_TREE/examples/ja_JP \ + $QT_SOURCE_TREE/examples \ + $QT_SOURCE_TREE/examples/tutorials \ + $QT_SOURCE_TREE \ + $QT_SOURCE_TREE/qmake/examples \ + $QT_SOURCE_TREE/src/3rdparty/webkit/WebKit/qt/docs +imagedirs = $QT_SOURCE_TREE/doc/src/ja_JP/images \ + $QT_SOURCE_TREE/doc/src/images \ + $QT_SOURCE_TREE/examples \ + $QT_SOURCE_TREE/doc/src/template/images +outputdir = $QT_BUILD_TREE/doc/html_ja_JP +tagfile = $QT_BUILD_TREE/doc/html_ja_JP/qt.tags +base = file:$QT_BUILD_TREE/doc/html_ja_JP + +HTML.generatemacrefs = "true" diff --git a/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf b/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf index 712e23f..c324926 100644 --- a/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf +++ b/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf @@ -80,6 +80,7 @@ excludedirs = $QT_SOURCE_TREE/src/3rdparty/clucene \ $QT_SOURCE_TREE/src/3rdparty/wintab \ $QT_SOURCE_TREE/src/3rdparty/zlib \ $QT_SOURCE_TREE/doc/src/snippets \ + $QT_SOURCE_TREE/doc/src/ja_JP \ $QT_SOURCE_TREE/src/3rdparty/phonon/gstreamer \ $QT_SOURCE_TREE/src/3rdparty/phonon/ds9 \ $QT_SOURCE_TREE/src/3rdparty/phonon/qt7 \ diff --git a/tools/qdoc3/test/qt-html-templates_ja_JP.qdocconf b/tools/qdoc3/test/qt-html-templates_ja_JP.qdocconf new file mode 100644 index 0000000..027548e --- /dev/null +++ b/tools/qdoc3/test/qt-html-templates_ja_JP.qdocconf @@ -0,0 +1,178 @@ +HTML.stylesheets = style/style.css \ + style/OfflineStyle.css \ + style/style_ie7.css \ + style/style_ie8.css \ + style/style_ie6.css + +HTML.postheader = "
\n" \ + "
\n" \ + "
\n" \ + " Home
\n" \ + " Qt Reference Documentation\n" \ + "
\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + " \n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + " Search index:
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "

\n" \ + " API Lookup

\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "

\n" \ + " Qt Topics

\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "

\n" \ + " Examples

\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
    \n" \ + "
  • Home
  • \n" \ + " \n" + +HTML.postpostheader = "
\n" \ + "
\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" + +HTML.footer = " \n" \ + "
\n" \ + " [+] Documentation Feedback
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + " \n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "

\n" \ + " © 2008-2010 Nokia Corporation and/or its\n" \ + " subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation \n" \ + " in Finland and/or other countries worldwide.

\n" \ + "

\n" \ + " All other trademarks are property of their respective owners. Privacy Policy

\n" \ + "
\n" \ + "
\n" \ + "
X
\n" \ + "
\n" \ + "

\n" \ + "

\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "
\n" \ + "\n" diff --git a/tools/qdoc3/test/qt.qdocconf b/tools/qdoc3/test/qt.qdocconf index edf6d92..d132771 100644 --- a/tools/qdoc3/test/qt.qdocconf +++ b/tools/qdoc3/test/qt.qdocconf @@ -130,6 +130,7 @@ excludedirs = $QTDIR/src/3rdparty/clucene \ $QTDIR/src/3rdparty/phonon/mmf \ $QTDIR/src/3rdparty/phonon/waveout \ $QTDIR/doc/src/snippets \ + $QTDIR/doc/src/ja_JP \ $QTDIR/doc/src/zh_CN sources.fileextensions = "*.cpp *.qdoc *.mm" diff --git a/tools/qdoc3/test/qt_ja_JP.qdocconf b/tools/qdoc3/test/qt_ja_JP.qdocconf new file mode 100644 index 0000000..d4141c7 --- /dev/null +++ b/tools/qdoc3/test/qt_ja_JP.qdocconf @@ -0,0 +1,125 @@ +include(compat.qdocconf) +include(macros.qdocconf) +include(qt-cpp-ignore.qdocconf) +include(qt-html-templates_ja_JP.qdocconf) +include(qt-defines.qdocconf) + +project = Qt +versionsym = +version = %VERSION% +description = Qt リファレンスドキュメント +url = http://qt.nokia.com/doc/ja_JP/4.7 + +sourceencoding = UTF-8 +outputencoding = UTF-8 +naturallanguage = ja + +indexes = $QTDIR/doc/html/qt.index + +qhp.projects = Qt + +qhp.Qt.file = qt.qhp +qhp.Qt.namespace = com.trolltech.qt.470 +qhp.Qt.virtualFolder = qdoc +qhp.Qt.title = Qt +qhp.Qt.indexTitle = Qt +qhp.Qt.selectors = fake:example + +qhp.Qt.filterAttributes = qt 4.7.0 qtrefdoc ja_JP +qhp.Qt.customFilters.Qt.name = Qt 4.7.0 +qhp.Qt.customFilters.Qt.filterAttributes = qt 4.7.0 + +# Files not referenced in any qdoc file (last four are needed by qtdemo) +# See also extraimages.HTML +qhp.Qt.extraFiles = index.html \ + images/bg_l.png \ + images/bg_l_blank.png \ + images/bg_ll_blank.png \ + images/bg_ul_blank.png \ + images/header_bg.png \ + images/bg_r.png \ + images/box_bg.png \ + images/breadcrumb.png \ + images/bullet_gt.png \ + images/bullet_dn.png \ + images/bullet_sq.png \ + images/bullet_up.png \ + images/arrow_down.png \ + images/feedbackground.png \ + images/horBar.png \ + images/page.png \ + images/page_bg.png \ + images/sprites-combined.png \ + images/spinner.gif \ + images/stylesheet-coffee-plastique.png \ + images/taskmenuextension-example.png \ + images/coloreditorfactoryimage.png \ + images/dynamiclayouts-example.png \ + scripts/functions.js \ + scripts/jquery.js \ + scripts/shBrushCpp.js \ + scripts/shCore.js \ + scripts/shLegacy.js \ + scripts/narrow.js \ + scripts/superfish.js \ + style/shCore.css \ + style/shThemeDefault.css \ + style/narrow.css \ + style/superfish.css \ + style/superfish_skin.css \ + style/OfflineStyle.css \ + style/style_ie6.css \ + style/style_ie7.css \ + style/style_ie8.css \ + style/style.css + +language = Cpp + +sourcedirs = $QTDIR/doc/src/ja_JP + +excludedirs = $QTDIR/src/3rdparty/clucene \ + $QTDIR/src/3rdparty/des \ + $QTDIR/src/3rdparty/freetype \ + $QTDIR/src/3rdparty/harfbuzz \ + $QTDIR/src/3rdparty/kdebase \ + $QTDIR/src/3rdparty/libjpeg \ + $QTDIR/src/3rdparty/libmng \ + $QTDIR/src/3rdparty/libpng \ + $QTDIR/src/3rdparty/libtiff \ + $QTDIR/src/3rdparty/md4 \ + $QTDIR/src/3rdparty/md5 \ + $QTDIR/src/3rdparty/patches \ + $QTDIR/src/3rdparty/sha1 \ + $QTDIR/src/3rdparty/sqlite \ + $QTDIR/src/3rdparty/webkit/JavaScriptCore \ + $QTDIR/src/3rdparty/webkit/WebCore \ + $QTDIR/src/3rdparty/wintab \ + $QTDIR/src/3rdparty/zlib \ + $QTDIR/doc/src/snippets \ + $QTDIR/doc/src/zh_CN \ + $QTDIR/src/3rdparty/phonon/gstreamer \ + $QTDIR/src/3rdparty/phonon/ds9 \ + $QTDIR/src/3rdparty/phonon/qt7 \ + $QTDIR/src/3rdparty/phonon/mmf \ + $QTDIR/src/3rdparty/phonon/waveout + +sources.fileextensions = "*.cpp *.qdoc *.mm" +examples.fileextensions = "*.cpp *.h *.js *.xq *.svg *.xml *.ui *.qhp *.qhcp" +examples.imageextensions = "*.png" + +exampledirs = $QTDIR/doc/src \ + $QTDIR/examples/ja_JP \ + $QTDIR/examples \ + $QTDIR/examples/tutorials \ + $QTDIR \ + $QTDIR/qmake/examples \ + $QTDIR/src/3rdparty/webkit/WebKit/qt/docs +imagedirs = $QTDIR/doc/src/ja_JP/images \ + $QTDIR/doc/src/images \ + $QTDIR/examples \ + $QTDIR/doc/src/template/images +outputdir = $QTDIR/doc/html_ja_JP +tagfile = $QTDIR/doc/html_ja_JP/qt.tags +base = file:$QTDIR/doc/html_ja_JP + +HTML.generatemacrefs = "true" diff --git a/tools/qdoc3/test/qt_zh_CN.qdocconf b/tools/qdoc3/test/qt_zh_CN.qdocconf index db02478..e894607 100644 --- a/tools/qdoc3/test/qt_zh_CN.qdocconf +++ b/tools/qdoc3/test/qt_zh_CN.qdocconf @@ -78,6 +78,7 @@ excludedirs = $QTDIR/src/3rdparty/clucene \ $QTDIR/src/3rdparty/wintab \ $QTDIR/src/3rdparty/zlib \ $QTDIR/doc/src/snippets \ + $QTDIR/doc/src/ja_JP \ $QTDIR/src/3rdparty/phonon/gstreamer \ $QTDIR/src/3rdparty/phonon/ds9 \ $QTDIR/src/3rdparty/phonon/qt7 \ -- cgit v0.12 From 5eec7f6611075df526f30796378315c9cd469cd8 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sat, 29 May 2010 20:51:57 +0200 Subject: Update the linux-icc mkspec --- mkspecs/linux-icc/qmake.conf | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/mkspecs/linux-icc/qmake.conf b/mkspecs/linux-icc/qmake.conf index 3353180..5e46498 100644 --- a/mkspecs/linux-icc/qmake.conf +++ b/mkspecs/linux-icc/qmake.conf @@ -21,12 +21,12 @@ QMAKE_LEX = flex QMAKE_LEXFLAGS = QMAKE_YACC = yacc QMAKE_YACCFLAGS = -d -QMAKE_CFLAGS = -wd654,1572 +QMAKE_CFLAGS = QMAKE_CFLAGS_DEPS = -M -QMAKE_CFLAGS_WARN_ON = +QMAKE_CFLAGS_WARN_ON = -w1 -Wcheck -wd654,1572,411,873,1125 QMAKE_CFLAGS_WARN_OFF = -w -QMAKE_CFLAGS_RELEASE = -O2 -QMAKE_CFLAGS_DEBUG = -g +QMAKE_CFLAGS_RELEASE = -O2 -falign-functions=16 -ansi-alias -fstrict-aliasing +QMAKE_CFLAGS_DEBUG = -O0 -g QMAKE_CFLAGS_SHLIB = -fPIC QMAKE_CFLAGS_STATIC_LIB = $$QMAKE_CFLAGS_SHLIB QMAKE_CFLAGS_YACC = @@ -60,9 +60,10 @@ QMAKE_LFLAGS_RELEASE = QMAKE_LFLAGS_DEBUG = QMAKE_LFLAGS_SHLIB = -shared QMAKE_LFLAGS_PLUGIN = $$QMAKE_LFLAGS_SHLIB -QMAKE_LFLAGS_SONAME = -Qoption,ld,-soname, +QMAKE_LFLAGS_SONAME = -Wl,-soname, QMAKE_LFLAGS_THREAD = -QMAKE_LFLAGS_RPATH = -Qoption,ld,-rpath, +QMAKE_LFLAGS_NOUNDEF = -Wl,-z,defs +QMAKE_LFLAGS_RPATH = -Wl,-rpath, QMAKE_LIBS = QMAKE_LIBS_DYNLOAD = -ldl @@ -99,8 +100,8 @@ QMAKE_CXXFLAGS_USE_PRECOMPILE = -pch-use ${QMAKE_PCH_OUTPUT} -include ${QMAKE_PC QMAKE_CXXFLAGS_PRECOMPILE = -c -pch-create ${QMAKE_PCH_OUTPUT} -include ${QMAKE_PCH_INPUT} -o ${QMAKE_PCH_TEMP_OBJECT} ${QMAKE_PCH_TEMP_SOURCE} # -Bsymbolic-functions (ld) support -QMAKE_LFLAGS_BSYMBOLIC_FUNC = -Qoption,ld,-Bsymbolic-functions -QMAKE_LFLAGS_DYNAMIC_LIST = -Qoption,ld,--dynamic-list, +QMAKE_LFLAGS_BSYMBOLIC_FUNC = -Wl,-Bsymbolic-functions +QMAKE_LFLAGS_DYNAMIC_LIST = -Wl,--dynamic-list, # Symbol visibility control QMAKE_CFLAGS_HIDESYMS += -fvisibility=hidden -- cgit v0.12 From 8a4d4c1f0d3761cbf46cf0fee076647ec4a6ac5a Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Sun, 30 May 2010 10:46:42 +0200 Subject: Update the mkspec for linux-icc: don't use jump tables in shlibs ICC generates jump table code that isn't PIC (i.e., it does absolute indirect jumps), so this increases the number of relocations in shared libraries by a huge amount. In QtCore it increased by 250% (from 3500 to 12000). --- mkspecs/linux-icc/qmake.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mkspecs/linux-icc/qmake.conf b/mkspecs/linux-icc/qmake.conf index 5e46498..3b26f7d 100644 --- a/mkspecs/linux-icc/qmake.conf +++ b/mkspecs/linux-icc/qmake.conf @@ -27,7 +27,7 @@ QMAKE_CFLAGS_WARN_ON = -w1 -Wcheck -wd654,1572,411,873,1125 QMAKE_CFLAGS_WARN_OFF = -w QMAKE_CFLAGS_RELEASE = -O2 -falign-functions=16 -ansi-alias -fstrict-aliasing QMAKE_CFLAGS_DEBUG = -O0 -g -QMAKE_CFLAGS_SHLIB = -fPIC +QMAKE_CFLAGS_SHLIB = -fPIC -fno-jump-tables QMAKE_CFLAGS_STATIC_LIB = $$QMAKE_CFLAGS_SHLIB QMAKE_CFLAGS_YACC = QMAKE_CFLAGS_THREAD = -D_REENTRANT @@ -58,7 +58,7 @@ QMAKE_LINK_SHLIB = icpc QMAKE_LFLAGS = QMAKE_LFLAGS_RELEASE = QMAKE_LFLAGS_DEBUG = -QMAKE_LFLAGS_SHLIB = -shared +QMAKE_LFLAGS_SHLIB = -shared -shared-intel QMAKE_LFLAGS_PLUGIN = $$QMAKE_LFLAGS_SHLIB QMAKE_LFLAGS_SONAME = -Wl,-soname, QMAKE_LFLAGS_THREAD = @@ -77,7 +77,7 @@ QMAKE_LIBS_THREAD = -lpthread QMAKE_MOC = $$[QT_INSTALL_BINS]/moc QMAKE_UIC = $$[QT_INSTALL_BINS]/uic -QMAKE_AR = ar cqs +QMAKE_AR = xiar cqs QMAKE_OBJCOPY = objcopy QMAKE_RANLIB = -- cgit v0.12 From 91fa2c1beb79124db4a70a37e2224c1de9b9ded4 Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig Date: Mon, 7 Jun 2010 12:33:27 +0200 Subject: Disabled item view items use incorrect background color This was a problem when using alternate row colors. We use a separate palette for base/alternate when using disabled colors. However, we should only use this if the entire view is disabled. To keep compatibility with style sheets we have to preserve the disabled state per item, but we now use the widget pointer to decide which palette role to use. Task-number: QTBUG-11263 Reviewed-by: ogoffart --- src/gui/styles/qcommonstyle.cpp | 4 ++-- src/gui/styles/qgtkstyle.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gui/styles/qcommonstyle.cpp b/src/gui/styles/qcommonstyle.cpp index 4978565..039a6da 100644 --- a/src/gui/styles/qcommonstyle.cpp +++ b/src/gui/styles/qcommonstyle.cpp @@ -762,7 +762,7 @@ void QCommonStyle::drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, Q #ifndef QT_NO_ITEMVIEWS case PE_PanelItemViewRow: if (const QStyleOptionViewItemV4 *vopt = qstyleoption_cast(opt)) { - QPalette::ColorGroup cg = vopt->state & QStyle::State_Enabled + QPalette::ColorGroup cg = (widget ? widget->isEnabled() : (vopt->state & QStyle::State_Enabled)) ? QPalette::Normal : QPalette::Disabled; if (cg == QPalette::Normal && !(vopt->state & QStyle::State_Active)) cg = QPalette::Inactive; @@ -775,7 +775,7 @@ void QCommonStyle::drawPrimitive(PrimitiveElement pe, const QStyleOption *opt, Q break; case PE_PanelItemViewItem: if (const QStyleOptionViewItemV4 *vopt = qstyleoption_cast(opt)) { - QPalette::ColorGroup cg = vopt->state & QStyle::State_Enabled + QPalette::ColorGroup cg = (widget ? widget->isEnabled() : (vopt->state & QStyle::State_Enabled)) ? QPalette::Normal : QPalette::Disabled; if (cg == QPalette::Normal && !(vopt->state & QStyle::State_Active)) cg = QPalette::Inactive; diff --git a/src/gui/styles/qgtkstyle.cpp b/src/gui/styles/qgtkstyle.cpp index b59a033..c989bd3 100644 --- a/src/gui/styles/qgtkstyle.cpp +++ b/src/gui/styles/qgtkstyle.cpp @@ -855,9 +855,10 @@ void QGtkStyle::drawPrimitive(PrimitiveElement element, key = QLS("a"); GTK_WIDGET_SET_FLAGS(gtkTreeView, GTK_HAS_FOCUS); } + bool isEnabled = (widget ? widget->isEnabled() : (vopt->state & QStyle::State_Enabled)); gtkPainter.paintFlatBox(gtkTreeView, detail, option->rect, option->state & State_Selected ? GTK_STATE_SELECTED : - option->state & State_Enabled ? GTK_STATE_NORMAL : GTK_STATE_INSENSITIVE, + isEnabled ? GTK_STATE_NORMAL : GTK_STATE_INSENSITIVE, GTK_SHADOW_OUT, gtkTreeView->style, key); if (isActive ) GTK_WIDGET_UNSET_FLAGS(gtkTreeView, GTK_HAS_FOCUS); -- cgit v0.12 From e82d6264571604357b28ccb8d1b079c7eaf6ba71 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 7 Jun 2010 13:42:13 +0200 Subject: remove somewhat misleading warning about x11 pixmap leak the only situation where it would be actually true are broken drivers (or a broken x server as a whole). qt is not the right place to worry about that problem. Reviewed-by: jbache --- src/gui/image/qpixmap_x11.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/gui/image/qpixmap_x11.cpp b/src/gui/image/qpixmap_x11.cpp index 6bebefc..e8dc5ae 100644 --- a/src/gui/image/qpixmap_x11.cpp +++ b/src/gui/image/qpixmap_x11.cpp @@ -1250,10 +1250,8 @@ void QX11PixmapData::release() pengine = 0; if (!X11) { -#ifndef QT_NO_DEBUG - qWarning("~QX11PixmapData(): QPixmap objects must be destroyed before the QApplication" - " object, otherwise the native pixmap object will be leaked."); -#endif + // At this point, the X server will already have freed our resources, + // so there is nothing to do. return; } -- cgit v0.12 From 3cf159b75f8a5e66edd8f6b4defbee2f4435b6ef Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 7 Jun 2010 13:42:34 +0200 Subject: add docu about pixmaps being invalidated on qapp destruction Reviewed-by: jbache --- src/gui/image/qpixmap.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/image/qpixmap.cpp b/src/gui/image/qpixmap.cpp index 20e4b50..fd2c139 100644 --- a/src/gui/image/qpixmap.cpp +++ b/src/gui/image/qpixmap.cpp @@ -1766,6 +1766,9 @@ QPixmap QPixmap::transformed(const QMatrix &matrix, Qt::TransformationMode mode) function returns the actual matrix used for transforming the pixmap. + \note When using the native X11 graphics system, the pixmap + becomes invalid when the QApplication instance is destroyed. + \sa QBitmap, QImage, QImageReader, QImageWriter */ -- cgit v0.12 From 5f9fdaa5c82fa4529ad4352da6855a19be83c079 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Mon, 7 Jun 2010 15:18:50 +0200 Subject: XQuery test suite (and others): remove p4 dependency --- tests/auto/xmlpatternsxqts/tst_suitetest.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp index ec63858..6e10e3f 100644 --- a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp +++ b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp @@ -141,8 +141,6 @@ void tst_SuiteTest::checkTestSuiteResult() const /* Passed to ResultThreader so it knows what kind of file it is handling. */ ResultThreader::Type type = ResultThreader::Baseline; - QProcess::execute(QLatin1String("p4 edit ") + m_existingBaseline); - for(QFileInfoList::const_iterator it(list.constBegin()); it != end; ++it) { QFileInfo i(*it); @@ -167,8 +165,6 @@ void tst_SuiteTest::checkTestSuiteResult() const const int exitCode = eventLoop.exec(); - QProcess::execute(QLatin1String("p4 revert -a ") + m_existingBaseline); - QCOMPARE(exitCode, 0); } -- cgit v0.12 From 154bf4c4f58b3b4d012cd2ff57cd4709a2226464 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 7 Jun 2010 16:45:51 +0200 Subject: Fix incorrect \since tag Changed the since added in 51fa7df978d71a366c95c732d6a8c2576690d63a from 4.6 to 4.7 Pointed out by Thorbjoern :) Reviewed-by: Trust me --- src/gui/text/qtextoption.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/text/qtextoption.cpp b/src/gui/text/qtextoption.cpp index a2b8022..527b603 100644 --- a/src/gui/text/qtextoption.cpp +++ b/src/gui/text/qtextoption.cpp @@ -393,7 +393,7 @@ QList QTextOption::tabs() const /*! \fn Tab::Tab(qreal pos, TabType tabType, QChar delim = QChar()) Creates a tab with the given position, tab type, and (for DelimiterTab) delimiter - \since 4.6 + \since 4.7 */ /*! -- cgit v0.12 From 83c6f16a17ff5ddee23e752e0eebc014bbc10f01 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 7 Jun 2010 15:47:48 +0200 Subject: qt_ja_JP.ts => qt_ja.ts the other _ja files have no country qualification either, and it makes no sense anyway. --- translations/qt_ja.ts | 8070 +++++++++++++++++++++++++++++++++++++++++ translations/qt_ja_JP.ts | 8070 ----------------------------------------- translations/translations.pri | 2 +- 3 files changed, 8071 insertions(+), 8071 deletions(-) create mode 100644 translations/qt_ja.ts delete mode 100644 translations/qt_ja_JP.ts diff --git a/translations/qt_ja.ts b/translations/qt_ja.ts new file mode 100644 index 0000000..e6f92b7 --- /dev/null +++ b/translations/qt_ja.ts @@ -0,0 +1,8070 @@ + + + + + MAC_APPLICATION_MENU + + + Services + サービス + + + + Hide %1 + %1を隠す + + + + Hide Others + ほかを隠す + + + + Show All + すべてを表示 + + + + Preferences... + 環境設定... + + + + Quit %1 + %1 を終了 + + + + About %1 + %1 について + + + + CloseButton + + + Close Tab + ToolTip + タブを閉じる + + + + PPDOptionsModel + + Name + 名前 + + + Value + + + + + Phonon:: + + + Notifications + 通知 + + + + Music + 音楽 + + + + Video + 動画 + + + + Communication + コミュニケーション + + + + Games + ゲーム + + + + Accessibility + アクセシビリティ + + + + Phonon::AudioOutput + + + <html>The audio playback device <b>%1</b> does not work.<br/>Falling back to <b>%2</b>.</html> + <html>オーディオ再生デバイス<b>%1</b>が動作しません。<br/><b>%2</b>を使用します。</html> + + + + <html>Switching to the audio playback device <b>%1</b><br/>which just became available and has higher preference.</html> + <html>より高いパフォーマンスを得られるオーディオデバイス <b>%1</b> が使用可能となったので、使用します。</html> + + + + Revert back to device '%1' + デバイス '%1' に戻す + + + + Phonon::Gstreamer::Backend + + + Warning: You do not seem to have the package gstreamer0.10-plugins-good installed. + Some video features have been disabled. + 警告: gstreamer0.10-plugins-good がインストールされていません。幾つかの動画機能は使用できません。 + + + + Warning: You do not seem to have the base GStreamer plugins installed. + All audio and video support has been disabled + 警告: GStreamer plugin がインストールされていません。すべての音声、動画機能は使用できません + + + + Phonon::Gstreamer::MediaObject + + + Cannot start playback. + +Check your Gstreamer installation and make sure you +have libgstreamer-plugins-base installed. + 再生できません。 + +Gstreamer と libgstreamer-plugins-base が正しくインストールされているか確認してください。 + + + + A required codec is missing. You need to install the following codec(s) to play this content: %0 + 必要なコーデックがみつかりません。このコンテンツを再生するためには、以下のコーデックをインストールする必要があります: %0 + + + + + + + + + + + Could not open media source. + メディアソースを開くことができません。 + + + + Invalid source type. + 無効なソースの形式です。 + + + + Could not locate media source. + メディアソースがみつかりません。 + + + + Could not open audio device. The device is already in use. + オーディオデバイスを開くことができません。デバイスは既に他のプロセスにより使用されています。 + + + + Could not decode media source. + メディアソースを開くことができません。見つからないか、未知の形式です。 + + + + Phonon::VolumeSlider + + + + + + Volume: %1% + 音量: %1% + + + + + + Use this slider to adjust the volume. The leftmost position is 0%, the rightmost is %1% + スライダを用いて音量を指定してください。左端が0%、右端が%1%になります + + + + Muted + ミュート + + + + Q3Accel + + + %1, %2 not defined + %1, %2 は定義されていません + + + + Ambiguous %1 not handled + 曖昧な %1 は扱えません + + + + Q3DataTable + + + True + + + + + False + + + + + Insert + 挿入 + + + + Update + アップデート + + + + Delete + 削除 + + + + Q3FileDialog + + + All Files (*.*) + すべてのファイル(*.*) + + + + Open + オープン + + + + Select a Directory + ディレクトリを選択 + + + + Copy or Move a File + ファイルをコピーまたは移動 + + + + Read: %1 + 読み込み: %1 + + + + + Write: %1 + 書き込み: %1 + + + + + Cancel + キャンセル + + + + + + + All Files (*) + すべてのファイル(*) + + + + Name + 名前 + + + + Size + サイズ + + + + Type + タイプ + + + + Date + 日付 + + + + Attributes + 属性 + + + + + &OK + OK(&O) + + + + Look &in: + 検索する場所(&I): + + + + + + File &name: + ファイル名(&N): + + + + File &type: + ファイルタイプ(&T): + + + + Back + 戻る + + + + One directory up + 1つ上のディレクトリへ移動 + + + + Create New Folder + 新しいフォルダの作成 + + + + List View + 一覧表示 + + + + Detail View + 詳細表示 + + + + Preview File Info + ファイル情報のプレビュー + + + + Preview File Contents + ファイルの内容のプレビュー + + + + Read-write + 読み込み/書き込み + + + + Read-only + 読み込み専用 + + + + Write-only + 書き込み専用 + + + + Inaccessible + アクセス不可 + + + + Symlink to File + ファイルへのシンボリックリンク + + + + Symlink to Directory + ディレクトリへのシンボリックリンク + + + + Symlink to Special + スペシャルファイルへのシンボリックリンク + + + + File + ファイル + + + + Dir + ディレクトリ + + + + Special + スペシャル + + + + + + Open + オープン + + + + + Save As + 名前を付けて保存 + + + + + + &Open + オープン(&O) + + + + + &Save + 保存(&S) + + + + &Rename + 名前の変更(&R) + + + + &Delete + 削除(&D) + + + + R&eload + リロード(&E) + + + + Sort by &Name + 名前順にソート(&N) + + + + Sort by &Size + サイズ順にソート(&S) + + + + Sort by &Date + 日付順にソート(&D) + + + + &Unsorted + ソート解除(&U) + + + + Sort + ソート + + + + Show &hidden files + 隠しファイルの表示(&H) + + + + the file + ファイル + + + + the directory + ディレクトリ + + + + the symlink + シンボリックリンク + + + + Delete %1 + %1 の削除 + + + + <qt>Are you sure you wish to delete %1 "%2"?</qt> + <qt>%1 "%2" を削除しますか?</qt> + + + + &Yes + はい(&Y) + + + + &No + いいえ(&N) + + + + New Folder 1 + 新しいフォルダ1 + + + + New Folder + 新しいフォルダ + + + + New Folder %1 + 新しいフォルダ %1 + + + + Find Directory + ディレクトリの検索 + + + + + Directories + ディレクトリ + + + + Directory: + ディレクトリ: + + + + + Error + エラー + + + + %1 +File not found. +Check path and filename. + %1 +ファイルが見つかりませんでした。 +パスおよびファイル名を確認してください。 + + + + Q3LocalFs + + + + Could not read directory +%1 + ディレクトリを読み込めませんでした +%1 + + + + Could not create directory +%1 + ディレクトリを作成できませんでした +%1 + + + + Could not remove file or directory +%1 + ファイルまたはディレクトリを削除できませんでした +%1 + + + + Could not rename +%1 +to +%2 + 名前を変更できませんでした +%1 +を +%2 +へ + + + + Could not open +%1 + 開けませんでした +%1 + + + + Could not write +%1 + 書き込めませんでした +%1 + + + + Q3MainWindow + + + Line up + 整列 + + + + Customize... + カスタマイズ... + + + + Q3NetworkProtocol + + + Operation stopped by the user + 操作がユーザによって停止されました + + + + Q3ProgressDialog + + + + Cancel + キャンセル + + + + Q3TabDialog + + + + OK + OK + + + + Apply + 適用 + + + + Help + ヘルプ + + + + Defaults + デフォルト + + + + Cancel + キャンセル + + + + Q3TextEdit + + + &Undo + 元に戻す(&U) + + + + &Redo + やり直す(&R) + + + + Cu&t + 切り取り(&T) + + + + &Copy + コピー(&C) + + + + &Paste + 貼り付け(&P) + + + + Clear + 消去 + + + + + Select All + すべてを選択 + + + + Q3TitleBar + + + System + システム + + + + Restore up + 元に戻す + + + + Minimize + 最小化 + + + + Restore down + 元に戻す + + + + Maximize + 最大化 + + + + Close + 閉じる + + + + Contains commands to manipulate the window + ウィンドウを操作するコマンドを含みます + + + + Puts a minimized back to normal + 最小化されたウィンドウを元のサイズに戻します + + + + Moves the window out of the way + ウィンドウを隠します + + + + Puts a maximized window back to normal + 最大化されたウィンドウを元のサイズに戻します + + + + Makes the window full screen + ウィンドウをフルスクリーンにします + + + + Closes the window + ウィンドウを閉じます + + + + Displays the name of the window and contains controls to manipulate it + ウィンドウの名前と、ウィンドウを操作するコントロールを表示します + + + + Q3ToolBar + + + More... + その他... + + + + Q3UrlOperator + + + + + The protocol `%1' is not supported + プロトコル '%1' はサポートされていません + + + + The protocol `%1' does not support listing directories + プロトコル '%1' はディレクトリのリスティングをサポートしていません + + + + The protocol `%1' does not support creating new directories + プロトコル '%1' は新しいディレクトリの作成をサポートしていません + + + + The protocol `%1' does not support removing files or directories + プロトコル '%1' はファイルまたはディレクトリの削除をサポートしていません + + + + The protocol `%1' does not support renaming files or directories + プロトコル '%1' はファイルまたはディレクトリの名前の変更をサポートしていません + + + + The protocol `%1' does not support getting files + プロトコル '%1' はファイルの取得をサポートしていません + + + + The protocol `%1' does not support putting files + プロトコル '%1' はファイルの送信をサポートしていません + + + + + The protocol `%1' does not support copying or moving files or directories + プロトコル '%1' はファイルまたはディレクトリのコピーまたは移動をサポートしていません + + + + + (unknown) + (不明) + + + + Q3Wizard + + + &Cancel + キャンセル(&C) + + + + < &Back + < 戻る(&B) + + + + &Next > + 次へ(&N) > + + + + &Finish + 完了(&F) + + + + &Help + ヘルプ(&H) + + + + QAbstractSocket + + + + + + Host not found + ホストが見つかりませんでした + + + + + + Connection refused + 接続が拒否されました + + + + Connection timed out + 接続がタイムアウトしました + + + + + + Operation on socket is not supported + 抽象ソケットクラスでのソケットのエラー + このソケットへのこの操作はサポートされていません + + + + Socket operation timed out + ソケット操作がタイムアウトしました + + + + Socket is not connected + ソケットが接続されていません + + + + Network unreachable + ネットワークへ到達できません + + + + QAbstractSpinBox + + + &Step up + 上(&S) + + + + Step &down + 下(&D) + + + + &Select All + すべてを選択(&S) + + + + QApplication + + + Activate + アクティブに + + + + Activates the program's main window + メインウィンドウをアクティブにする + + + + Executable '%1' requires Qt %2, found Qt %3. + 実行可能ファイル '%1' には Qt %2 が必要です。Qt %3 が見つかりました。 + + + + Incompatible Qt Library Error + 互換性のないQtライブラリエラー + + + + QT_LAYOUT_DIRECTION + Translate this string to the string 'LTR' in left-to-right languages or to 'RTL' in right-to-left languages (such as Hebrew and Arabic) to get proper widget layout. + LTR + + + + QAxSelect + + + Select ActiveX Control + ActiveX Control を選択 + + + + OK + OK + + + + &Cancel + キャンセル(&C) + + + + COM &Object: + COM オブジェクト(&O): + + + + QCheckBox + + + Uncheck + 選択解除 + + + + Check + 選択 + + + + Toggle + 反転 + + + + QColorDialog + + + Hu&e: + 色相(&E): + + + + &Sat: + 彩度(&S): + + + + &Val: + 明度(&V): + + + + &Red: + 赤(&R): + + + + &Green: + 緑(&G): + + + + Bl&ue: + 青(&U): + + + + A&lpha channel: + アルファチャネル(&L): + + + + Select Color + + + + + &Basic colors + 基本的なカラー(&B) + + + + &Custom colors + カスタムカラー(&C) + + + &Define Custom Colors >> + カスタムカラーの定義(&D) >> + + + OK + OK + + + Cancel + キャンセル + + + + &Add to Custom Colors + カスタムカラーに追加(&A) + + + Select color + カラーの選択 + + + + QComboBox + + + + Open + オープン + + + + False + + + + + True + + + + + Close + 閉じる + + + + QCoreApplication + + + %1: key is empty + QSystemSemaphore + %1: キーが空です + + + + %1: unable to make key + QSystemSemaphore + %1: キーを作成できません + + + + %1: ftok failed + QSystemSemaphore + %1: fork に失敗しました + + + + QDB2Driver + + + Unable to connect + 接続できません + + + + Unable to commit transaction + トランザクションをコミットできません + + + + Unable to rollback transaction + トランザクションをロールバックできません + + + + Unable to set autocommit + オートコミットを設定できません + + + + QDB2Result + + + + Unable to execute statement + ステートメントを実行できません + + + + Unable to prepare statement + プリペアステートメントを使えません + + + + Unable to bind variable + 変数をバインドできません + + + + Unable to fetch record %1 + レコード %1 をフェッチできません + + + + Unable to fetch next + 次のレコードをフェッチできません + + + + Unable to fetch first + 最初のレコードをフェッチできません + + + + QDateTimeEdit + + + AM + AM + + + + am + am + + + + PM + PM + + + + pm + pm + + + + QDial + + + QDial + ダイヤル + + + + SpeedoMeter + スピードメータ + + + + SliderHandle + スライダハンドル + + + + QDialog + + + What's This? + ヒント? + + + + Done + 終了 + + + + QDialogButtonBox + + + + + OK + OK + + + + Cancel + キャンセル + + + + Apply + 適用 + + + + Ignore + 無視 + + + + Retry + 再試行 + + + + Abort + 中止 + + + + Help + ヘルプ + + + + Save + 保存 + + + + &Save + 保存(&S) + + + + Open + オープン + + + + &Cancel + キャンセル(&C) + + + + Close + 閉じる + + + + &Close + 閉じる(&C) + + + + Reset + リセット + + + + Don't Save + 保存しない + + + + Close without Saving + 保存せずに閉じる + + + + Discard + 変更を破棄 + + + + &Yes + はい(&Y) + + + + Yes to &All + 全てにはい(&A) + + + + &No + いいえ(&N) + + + + N&o to All + 全てにいいえ(&O) + + + + Save All + すべて保存 + + + + Restore Defaults + デフォルトに戻す + + + + &OK + OK(&O) + + + + QDirModel + + + Name + 名前 + + + + Size + サイズ + + + + Date Modified + 更新日 + + + + Kind + Match OS X Finder + 種類 + + + + Type + All other platforms + タイプ + + + + QDockWidget + + + Close + 閉じる + + + + Dock + ドック + + + + Float + フロート + + + + QDoubleSpinBox + + + More + 増やす + + + + Less + 減らす + + + + QErrorMessage + + + Debug Message: + デバッグメッセージ: + + + + Warning: + 警告: + + + + Fatal Error: + 致命的なエラー: + + + + &Show this message again + 次回もこのメッセージを表示する(&S) + + + + &OK + OK(&O) + + + + QFile + + + + Destination file exists + 新しい名前のファイルは既に存在します + + + + Cannot remove source file + 元のファイルを削除できません + + + + Cannot open %1 for input + コピー元ファイル %1 を読めません + + + + Cannot open for output + コピー先のファイルをオープンできません + + + + Failure to write block + 書き込みに失敗しました + + + + Cannot create %1 for output + コピー先として %1 を作成できません + + + + QFileDialog + + + + All Files (*) + すべてのファイル(*) + + + + Directories + ディレクトリ + + + + + Directory: + ディレクトリ: + + + + + File &name: + ファイル名(&N): + + + + + + + &Open + オープン(&O) + + + + + &Save + 保存(&S) + + + + Open + オープン + + + Save + 保存 + + + +File not found. +Please verify the correct file name was given + +ファイルが見つかりません。 +正しいファイル名が入力されたかどうか確認してください + + + + %1 already exists. +Do you want to replace it? + %1 はすでに存在します。 +置き換えますか? + + + + %1 +File not found. +Please verify the correct file name was given. + %1 +ファイルが見つかりません。 +正しいファイル名が入力されたかどうか確認してください。 + + + + My Computer + マイ コンピュータ + + + + + %1 +Directory not found. +Please verify the correct directory name was given. + %1 +ディレクトリが見つかりません。 +正しいディレクトリ名が入力されたかどうか確認してください。 + + + Sort + ソート + + + + &Rename + 名前の変更(&R) + + + + &Delete + 削除(&D) + + + &Reload + リロード(&R) + + + Sort by &Name + 名前順にソート(&N) + + + Sort by &Size + サイズ順にソート(&S) + + + Sort by &Date + 日付順にソート(&D) + + + &Unsorted + ソート解除(&U) + + + + Show &hidden files + 隠しファイルの表示(&H) + + + + + Back + 戻る + + + + + Parent Directory + 親ディレクトリ + + + + + Create New Folder + 新しいフォルダの作成 + + + + + List View + 一覧表示 + + + + + Detail View + 詳細表示 + + + + + Look in: + 検索する場所: + + + + + Files of type: + ファイルの種類: + + + + Drive + ドライブ + + + + + File + ファイル + + + + File Folder + Match Windows Explorer + ファイルフォルダ + + + + Folder + All other platforms + フォルダ + + + + Alias + Mac OS X Finder + エイリアス + + + + Shortcut + All other platforms + ショートカット + + + + Unknown + 不明 + + + + All Files (*.*) + すべてのファイル(*.*) + + + + Save As + 名前を付けて保存 + + + Open + オープン + + + Select a Directory + ディレクトリを選択 + + + + '%1' is write protected. +Do you want to delete it anyway? + '%1' は書き込みが禁止されています。 +本当に削除しますか? + + + + Are sure you want to delete '%1'? + '%1' を本当に削除しますか? + + + + Could not delete directory. + ディレクトリを削除できませんでした。 + + + + Find Directory + ディレクトリの検索 + + + + Show + 表示 + + + + &New Folder + 新しいフォルダ(&N) + + + + + &Choose + 選択(&C) + + + + New Folder + 新しいフォルダ + + + + Recent Places + 履歴 + + + + + Forward + 進む + + + + Remove + 削除 + + + + QFileSystemModel + + + Name + 名前 + + + + Size + サイズ + + + + Date Modified + 更新日 + + + + Kind + Match OS X Finder + 種類 + + + + Type + All other platforms + タイプ + + + + + %1 TB + %1 TB + + + + + %1 GB + %1 GB + + + + + %1 MB + %1 MB + + + + + %1 KB + %1 KB + + + + + %1 bytes + %1 バイト + + + + Invalid filename + 無効なファイル名 + + + + <b>The name "%1" can not be used.</b><p>Try using another name, with fewer characters or no punctuations marks. + <b>ファイル名 "%1" は使用できません。</b><p>名前を短くしたり、アクセント記号などを削除して再度試してください。 + + + + My Computer + マイ コンピュータ + + + + Computer + コンピュータ + + + + QFontDatabase + + + + Normal + ここはどう訳すべきか... + 明朝 + + + + + + Bold + ゴシック + + + + + Demi Bold + Demi Bold + + + + + + Black + 太字 + + + + Demi + Demi + + + + + Light + 細字 + + + + + Italic + イタリック + + + + + Oblique + 斜体 + + + + Any + すべて + + + + Latin + ラテン + + + + Greek + ギリシャ + + + + Cyrillic + キリル + + + + Armenian + アルメニア + + + + Hebrew + ヘブライ + + + + Arabic + アラビア + + + + Syriac + シリア + + + + Thaana + ターナ + + + + Devanagari + デーヴァナーガリー + + + + Bengali + ベンガル + + + + Gurmukhi + グルムキー + + + + Gujarati + グジャラート + + + + Oriya + オリヤー + + + + Tamil + タミル + + + + Telugu + テルグ + + + + Kannada + カンナダ + + + + Malayalam + マラヤーラム + + + + Sinhala + シンハラ + + + + Thai + タイ + + + + Lao + ラーオ + + + + Tibetan + チベット + + + + Myanmar + ビルマ + + + + Georgian + グルジア + + + + Khmer + クメール + + + + Simplified Chinese + 簡体中国 + + + + Traditional Chinese + 繁体中国 + + + + Japanese + 日本 + + + + Korean + ハングル + + + + Vietnamese + ベトナム + + + + Symbol + 記号 + + + + Ogham + オガム + + + + Runic + ルーン + + + + QFontDialog + + + &Font + フォント(&F) + + + + Font st&yle + フォントスタイル(&Y) + + + + &Size + サイズ(&S) + + + + Effects + 文字飾り + + + + Stri&keout + 取り消し線(&K) + + + + &Underline + 下線(&U) + + + + Sample + サンプル + + + + Wr&iting System + 言語(&I) + + + + + Select Font + フォントの選択 + + + + QFtp + + + + Not connected + 未接続です + + + + + Host %1 not found + ホスト %1 が見つかりませんでした + + + + + Connection refused to host %1 + ホスト %1 への接続が拒否されました + + + + Connection timed out to host %1 + ホスト %1 への接続がタイムアウトしました + + + + + + Connected to host %1 + ホスト %1 に接続しました + + + + + Connection refused for data connection + データ接続のための接続が拒否されました + + + + + + + Unknown error + 不明なエラー + + + + + Connecting to host failed: +%1 + ホストへの接続に失敗しました: +%1 + + + + + Login failed: +%1 + ログインに失敗しました: +%1 + + + + + Listing directory failed: +%1 + ディレクトリのリストに失敗しました: +%1 + + + + + Changing directory failed: +%1 + ディレクトリの変更に失敗しました: +%1 + + + + + Downloading file failed: +%1 + ファイルのダウンロードに失敗しました: +%1 + + + + + Uploading file failed: +%1 + ファイルのアップロードに失敗しました: +%1 + + + + + Removing file failed: +%1 + ファイルの削除に失敗しました: +%1 + + + + + Creating directory failed: +%1 + ディレクトリの作成に失敗しました: +%1 + + + + + Removing directory failed: +%1 + ディレクトリの削除に失敗しました: +%1 + + + + + + Connection closed + 接続が閉じられました + + + + Host %1 found + ホスト %1 が見つかりました + + + + Connection to %1 closed + %1 への接続が閉じられました + + + + Host found + ホストが見つかりました + + + + Connected to host + ホストに接続しました + + + + QHostInfo + + + Unknown error + 不明なエラー + + + + QHostInfoAgent + + + + + + + + + + Host not found + ホストが見つかりません + + + + + + + Unknown address type + 不明なアドレス型です + + + + + + Unknown error + 不明なエラー + + + + QHttp + + + HTTPS connection requested but SSL support not compiled in + HTTPSによる接続が要求されましたが、SSLのサポートがコンパイル時に組み込まれていないため、接続できません + + + + + + + Unknown error + 不明なエラー + + + + + Request aborted + 要求が中止されました + + + + + No server set to connect to + 接続が設定されているサーバがありません + + + + + Wrong content length + コンテンツの長さが正しくありません + + + + + Server closed connection unexpectedly + サーバの接続が予期せず閉じられました + + + + Unknown authentication method + 非対応の認証方法が要求されました + + + + Error writing response to device + デバイスへの書き込み時にエラーが発生しました + + + + + Connection refused + 接続が拒否されました + + + + + + Host %1 not found + ホスト %1 が見つかりませんでした + + + + + + + HTTP request failed + HTTP要求に失敗しました + + + + + Invalid HTTP response header + 無効なHTTP応答ヘッダです + + + + + + + Invalid HTTP chunked body + 無効なHTTPチャンクドボディです + + + + Host %1 found + ホスト %1 が見つかりました + + + + Connected to host %1 + ホスト %1 に接続しました + + + + Connection to %1 closed + %1 への接続が閉じられました + + + + Host found + ホストが見つかりました + + + + Connected to host + ホストに接続しました + + + + + Connection closed + 接続が閉じられました + + + + Proxy authentication required + プロキシーの認証が必要です + + + + Authentication required + 認証が必要です + + + + Connection refused (or timed out) + 接続が拒否されたか、タイムアウトしました + + + + Proxy requires authentication + プロキシーの認証が必要です + + + + Host requires authentication + ホストの認証が必要です + + + + Data corrupted + データが破損しています + + + + Unknown protocol specified + 未対応のプロトコルです + + + + SSL handshake failed + SSLのハンドシェークに失敗しました + + + + QHttpSocketEngine + + + Did not receive HTTP response from proxy + プロキシーからHTTPレスポンスを受信できませんでした + + + + Error parsing authentication request from proxy + プロキシーからの認証要求のパースに失敗しました + + + + Authentication required + 認証が必要です + + + + Proxy denied connection + プロキシーが接続を拒否しました + + + + Error communicating with HTTP proxy + HTTP プロキシーとの通信にて、エラーが発生しました + + + + Proxy server not found + プロキシーサーバが見つかりません + + + + Proxy connection refused + プロキシーが接続を拒否しました + + + + Proxy server connection timed out + プロキシーとの接続がタイムアウトしました + + + + Proxy connection closed prematurely + プロキシーの接続が通信の終了前に切断されました + + + + QIBaseDriver + + + Error opening database + データベースのオープンでエラーが発生しました + + + + Could not start transaction + トランザクションを開始できませんでした + + + + Unable to commit transaction + トランザクションをコミットできません + + + + Unable to rollback transaction + トランザクションをロールバックできません + + + + QIBaseResult + + + Unable to create BLOB + バイナリラージオブジェクトを作成できません + + + + Unable to write BLOB + バイナリラージオブジェクトを書き込めません + + + + Unable to open BLOB + バイナリラージオブジェクトをオープンできません + + + + Unable to read BLOB + バイナリラージオブジェクトを読み込めません + + + + + Could not find array + 配列が見つかりませんでした + + + + Could not get array data + 配列データを取得できませんでした + + + + Could not get query info + クエリー情報を取得できませんでした + + + + Could not start transaction + トランザクションを開始できませんでした + + + + Unable to commit transaction + トランザクションをコミットできません + + + + Could not allocate statement + ステートメントの領域を確保できませんでした + + + + Could not prepare statement + プリペアステートメントを使えませんでした + + + + + Could not describe input statement + INPUT ステートメントの情報を取得できませんでした + + + + Could not describe statement + ステートメントの情報を取得できませんでした + + + + Unable to close statement + ステートメントをクローズできません + + + + Unable to execute query + クエリーを実行できません + + + + Could not fetch next item + 次のレコードをフェッチできませんでした + + + + Could not get statement info + ステートメントの情報を取得できませんでした + + + + QIODevice + + + Permission denied + 許可されていません + + + + Too many open files + 開かれたファイルが多すぎます + + + + No such file or directory + そのようなファイルやディレクトリはありません + + + + No space left on device + デバイスの残り容量がありません + + + + Unknown error + 不明なエラー + + + + QInputContext + + + XIM + XIM + + + + XIM input method + XIM 入力メソッド + + + + Windows input method + Windows 入力メソッド + + + + Mac OS X input method + Mac OS X 入力メソッド + + + + QInputDialog + + + Enter a value: + 数値を入力: + + + + QLibrary + + + Could not mmap '%1': %2 + '%1' をメモリにマッピングできませんでした: %2 + + + + Plugin verification data mismatch in '%1' + '%1' でプラグイン検証データが一致しません + + + + Could not unmap '%1': %2 + '%1' のマッピングを解除できませんでした: %2 + + + + The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] + プラグイン '%1' は、互換性のない Qt ライブラリを使用しています。(%2.%3.%4) [%5] + + + + The plugin '%1' uses incompatible Qt library. Expected build key "%2", got "%3" + プラグイン '%1' は、互換性のない Qt ライブラリを使用しています。ビルドキー "%2" が必要ですが、"%3" しかありません + + + + Unknown error + 不明なエラー + + + QLibrary::load_sys: Cannot load %1 (%2) + QLibrary::load_sys: %1 をロードできません (%2) + + + QLibrary::unload_sys: Cannot unload %1 (%2) + QLibrary::unload_sys: %1 をアンロードできません (%2) + + + QLibrary::resolve_sys: Symbol "%1" undefined in %2 (%3) + QLibrary::resolve_sys: シンボル "%1" は %2 で定義されていません (%3) + + + + + The shared library was not found. + 共有ライブラリがみつかりません。 + + + + The file '%1' is not a valid Qt plugin. + ファイル '%1' は Qt プラグインではありません。 + + + + The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) + プラグイン '%1' はこの Qt と互換性のないライブラリを使用しています。 (デバック版とリリース版のライブラリを同時に使用することはできません) + + + + + Cannot load library %1: %2 + ライブラリ '%1' を読み込むことができません: %2 + + + + + Cannot unload library %1: %2 + ライブラリ %1 を解放することができません: %2 + + + + + Cannot resolve symbol "%1" in %2: %3 + '%2'に含まれる識別子 "%1" を解決できません: %3 + + + + QLineEdit + + + &Undo + 元に戻す(&U) + + + + &Redo + やり直す(&R) + + + + Cu&t + 切り取り(&T) + + + + &Copy + コピー(&C) + + + + &Paste + 貼り付け(&P) + + + + Delete + 削除 + + + + Select All + すべてを選択 + + + + QLocalServer + + + + %1: Name error + %1: 名前の解決に失敗 + + + + %1: Permission denied + %1: 許可されていません + + + + %1: Address in use + %1: アドレスは既に使用されています + + + + %1: Unknown error %2 + %1: 未知のエラー %2 + + + + QLocalSocket + + + + %1: Connection refused + %1: 接続が拒否されました + + + + + %1: Remote closed + %1: リモートにより接続が閉じられました + + + + + + + %1: Invalid name + %1: 無効な名前です + + + + + %1: Socket access error + %1: ソケットアクセスのエラーです + + + + + %1: Socket resource error + %1: ソケットリソースのエラーです + + + + + %1: Socket operation timed out + %1: ソケット操作がタイムアウトしました + + + + + %1: Datagram too large + %1: データグラムが大きすぎます + + + + + + %1: Connection error + %1: 接続のエラーが発生しました + + + + + %1: The socket operation is not supported + %1: そのソケット操作はサポートされていません + + + + %1: Unknown error + %1: 未知のエラーです + + + + + %1: Unknown error %2 + %1: 未知のエラー %2 + + + + QMYSQLDriver + + + Unable to open database ' + データベースをオープンできません ' + + + + Unable to connect + 接続できません + + + + Unable to begin transaction + トランザクションを開始できません + + + + Unable to commit transaction + トランザクションをコミットできません + + + + Unable to rollback transaction + トランザクションをロールバックできません + + + + QMYSQLResult + + + Unable to fetch data + データをフェッチできません + + + + Unable to execute query + クエリーを実行できません + + + + Unable to store result + 実行結果を記録できません + + + + + Unable to prepare statement + プリペアステートメントを使えません + + + + Unable to reset statement + ステートメントをリセットできません + + + + Unable to bind value + 値をバインドできません + + + + Unable to execute statement + ステートメントを実行できません + + + + + Unable to bind outvalues + 出力値をバインドできません + + + + Unable to store statement results + ステートメントの実行結果を記録できません + + + + Unable to execute next query + 次のクエリーを実行できません + + + + Unable to store next result + 次の結果を記録できません + + + + QMdiArea + + + (Untitled) + (タイトルなし) + + + + QMdiSubWindow + + + %1 - [%2] + %1 - [%2] + + + + Close + 閉じる + + + + Minimize + 最小化 + + + + Restore Down + 元に戻す + + + + &Restore + 元に戻す(&R) + + + + &Move + 移動(&M) + + + + &Size + サイズ(&S) + + + + Mi&nimize + 最小化(&N) + + + + Ma&ximize + 最大化(&X) + + + + Stay on &Top + 常に手前に表示(&T) + + + + &Close + 閉じる(&C) + + + + - [%1] + - [%1] + + + + Maximize + 最大化 + + + + Unshade + たぶん選択・非選択状態のウィンドウのことだと思うけど。fvwmなどのx11で使われている用語 + 非選択 + + + + Shade + 選択 + + + + Restore + 元に戻す + + + + Help + ヘルプ + + + + Menu + メニュー + + + + QMenu + + + + Close + 閉じる + + + + + Open + オープン + + + + + + Execute + 実行 + + + + QMenuBar + + About Qt + Qt について + + + + QMessageBox + + + Help + ヘルプ + + + + + + + OK + OK + + + <h3>About Qt</h3>%1<p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qtopia Core.</p><p>Qt is a Trolltech product. See <a href="http://qt.nokia.com/">qt.nokia.com</a> for more information.</p> + <h3>Qt について</h3>%1 +<p>QtはクロスプラットフォームのC++ アプリケーション開発ツールキットです。</p> +<p>Qt は MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, 商用のUnix派生版でソースコード互換を実現します。また、Qtopia Coreのように、内蔵デバイスでも利用可能です。</p> +<p>QtはTrolltechの商品です。詳細は<tt>http://qt.nokia.com/</tt>を参照してください。</p> + + + <p>This program uses Qt version %1.</p> + <p>このプログラムは Qt バージョン %1 を使用しています。</p> + + + <p>This program uses Qt Open Source Edition version %1.</p><p>Qt Open Source Edition is intended for the development of Open Source applications. You need a commercial Qt license for development of proprietary (closed source) applications.</p><p>Please see <a href="http://qt.nokia.com/company/model/">qt.nokia.com/company/model/</a> for an overview of Qt licensing.</p> + <p>このプログラムは Qt オープンソース版バージョン %1 を使用しています。</p> +<p>Qt オープンソース版はオープンソースのアプリケーションの開発用です。ソースコードを公開しない商用アプリケーションを開発するには商用版のライセンスが必要です。</p><p>Qtのライセンスについては<tt>http://qt.nokia.com/company/model.html</tt>を参照してください。</p> + + + + About Qt + Qt について + + + + Show Details... + 詳細を表示... + + + + Hide Details... + 詳細を隠す... + + + + <h3>About Qt</h3><p>This program uses Qt version %1.</p><p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qt for Embedded Linux and Qt for Windows CE.</p><p>Qt is available under three different licensing options designed to accommodate the needs of our various users.</p>Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 2.1 or GNU GPL version 3.0.</p><p>Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt applications (proprietary or open source) provided you can comply with the terms and conditions of the GNU LGPL version 2.1.</p><p>Qt licensed under the GNU General Public License version 3.0 is appropriate for the development of Qt applications where you wish to use such applications in combination with software subject to the terms of the GNU GPL version 3.0 or where you are otherwise willing to comply with the terms of the GNU GPL version 3.0.</p><p>Please see <a href="http://qt.nokia.com/products/licensing">qt.nokia.com/products/licensing</a> for an overview of Qt licensing.</p><p>Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).</p><p>Qt is a Nokia product. See <a href="http://qt.nokia.com/">qt.nokia.com</a> for more information.</p> + <h3>Qtについて</h3> +<p>このプログラムは Qt バージョン %1 を使用しています。</p> +<p>Qt は、クロスプラットホームのアプリケーション開発に使用される C++ のツールキットです。</p> +<p>Qt は、 MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, そして多数の Unix 系OS環境に対して、単一のソースからバイナリを生成します。 +また、 Linux および Windows CE を元とした組み込み環境にも対応しています。</p> +<p>Qt は様々なユーザの要望に応じるために、3つの異なるライセンスで提供されています。</p> +<p> +Qt 商用ライセンスは、プロプライエタリまたは商用ソフトウェアに適用できます。 +この場合は、他者とのソースコードの共有を拒否し、 GNU LGP バージョン 2.1 または GNU GPL バージョン 3.0 を許容できないソフトウェアにおいて Qt を使用できます。 +</p> +<p> +Qt GNU LGPL バージョン 2.1 ライセンスは、プロプライエタリまたはオープンソースソフトウェアに適用できます。 +この場合は、 GNU LGPL バージョン 2.1 に従う必要があります。 +</p> +<p> +Qt GNU General Public License バージョン 3.0 ライセンスは、GNU GPL バージョン 3.0 または GPL 3.0 と互換性のあるライセンスを採用しているソフトウェアに適用されます。 +この場合は、GNU GPL バージョン 3.0 に従う必要があります。 +</p> +<p> +ライセンスの詳細については、<a href="http://qt.nokia.com/products/licensing">qt.nokia.com/products/licensing</a> +を参照してください。</p> +<p>Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).</p> +<p>Qt は Nokia の製品です。詳細については<a href="http://qt.nokia.com/">qt.nokia.com</a> を参照してください。</p> +<p> +訳注: ライセンスはここにある翻訳は参考のためのものであり、オリジナルの(英語の)ものが正式なものとなります。 +</p> + + + + QMultiInputContext + + + Select IM + インプットメソッドを選択 + + + + QMultiInputContextPlugin + + + Multiple input method switcher + 複数のインプットメソッドを切り替え + + + + Multiple input method switcher that uses the context menu of the text widgets + テキストウィジェットのコンテキストメニューを使った複数のインプットメソッドの切り替えです + + + + QNativeSocketEngine + + + Unable to initialize non-blocking socket + 非ブロック型ソケットを初期化できません + + + + Unable to initialize broadcast socket + ブロードキャストソケットを初期化できません + + + + Attempt to use IPv6 socket on a platform with no IPv6 support + IPv6 がサポートされていないプラットフォームで IPv6 ソケットを使用しようとしています + + + + The remote host closed the connection + リモートホストは接続を閉じました + + + + Network operation timed out + ネットワーク操作がタイムアウトしました + + + + Out of resources + リソースが足りません + + + + Unsupported socket operation + サポートされていないソケット操作です + + + + Protocol type not supported + プロトコル型がサポートされていません + + + + Invalid socket descriptor + 無効なソケット記述子です + + + + Host unreachable + ホストへ到達できません + + + + Network unreachable + ネットワークへ到達できません + + + + Permission denied + 許可されていません + + + + Connection timed out + 接続がタイムアウトしました + + + + Connection refused + 接続を拒否されました + + + + The bound address is already in use + バインドアドレスは既に使われています + + + + The address is not available + そのアドレスは使用できません + + + + The address is protected + そのアドレスへのアクセス権がありません + + + + Datagram was too large to send + データグラムが大き過ぎて送信できませんでした + + + + Unable to send a message + メッセージを送信できません + + + + Unable to receive a message + メッセージを受信できません + + + + Unable to write + 書き込みができません + + + + Network error + ネットワークエラー + + + + Another socket is already listening on the same port + 別のソケットが同じポートで既に待ち受けています + + + + Operation on non-socket + 非ソケットに対する操作です + + + + Unknown error + 不明なエラー + + + + The proxy type is invalid for this operation + このプロキシーは、この操作に対応していません + + + + QNetworkAccessCacheBackend + + + Error opening %1 + オープンのエラー %1 + + + + QNetworkAccessDebugPipeBackend + + + Write error writing to %1: %2 + %1 への書き込み時にエラーが発生しました: %2 + + + + QNetworkAccessFileBackend + + + Request for opening non-local file %1 + 非ローカルファイル %1 をオープンするよう要求されましたが、ローカルファイルのみオープンできます + + + + Error opening %1: %2 + %1 をオープンする時にエラーが発生しました: %2 + + + + Write error writing to %1: %2 + %1 への書き込み時にエラーが発生しました: %2 + + + + Cannot open %1: Path is a directory + %1 をオープンできません。指定されたパスはディレクトリです + + + + Read error reading from %1: %2 + %1 を読み込み時にエラーが発生しました: %2 + + + + QNetworkAccessFtpBackend + + + No suitable proxy found + 適切なプロキシーがみつかりません + + + + Cannot open %1: is a directory + %1 をオープンできません。指定されたパスはディレクトリです + + + + Logging in to %1 failed: authentication required + %1 へのログインに失敗しました。認証が必要です + + + + Error while downloading %1: %2 + %1 をダウンロード中にエラーが発生しました: %2 + + + + Error while uploading %1: %2 + %1 をアップロード中にエラーが発生しました: %2 + + + + QNetworkAccessHttpBackend + + + No suitable proxy found + 適切なプロキシーがみつかりません + + + + QNetworkReply + + + Error downloading %1 - server replied: %2 + %1 をダウンロード中にエラーが発生しました。サーバの返答: %2 + + + + Protocol "%1" is unknown + プロトコル "%1" はサポートされていません + + + + QNetworkReplyImpl + + + + Operation canceled + 操作はキャンセルされました + + + + QOCIDriver + + + Unable to initialize + QOCIDriver + 初期化できません + + + + Unable to logon + ログオンできません + + + + Unable to begin transaction + トランザクションを開始できません + + + + Unable to commit transaction + トランザクションをコミットできません + + + + Unable to rollback transaction + トランザクションをロールバックできません + + + + QOCIResult + + + + + Unable to bind column for batch execute + バッチ処理用にフィールドをバインドできません + + + + Unable to execute batch statement + バッチステートメントを実行できません + + + + Unable to goto next + 次のレコードへ進めません + + + + Unable to alloc statement + ステートメントの領域を確保できません + + + + Unable to prepare statement + プリペアステートメントを使えません + + + + Unable to bind value + 値をバインドできません + + + Unable to execute select statement + SELECT ステートメントを実行できません + + + + Unable to execute statement + ステートメントを実行できません + + + + QODBCDriver + + + Unable to connect + 接続できません + + + + Unable to connect - Driver doesn't support all needed functionality + 接続できません - ドライバは全ての必要な機能をサポートしていません + + + + Unable to disable autocommit + オートコミットを無効にできません + + + + Unable to commit transaction + トランザクションをコミットできません + + + + Unable to rollback transaction + トランザクションをロールバックできません + + + + Unable to enable autocommit + オートコミットを有効にできません + + + + QODBCResult + + + + Unable to execute statement + ステートメントを実行できません + + + + Unable to fetch next + 次のレコードをフェッチできません + + + + Unable to prepare statement + プリペアステートメントを使えません + + + + Unable to bind variable + 変数をバインドできません + + + + + QODBCResult::reset: Unable to set 'SQL_CURSOR_STATIC' as statement attribute. Please check your ODBC driver configuration + QODBCResult::reset: ステートメントの属性として 'SQL_CURSOR_STATUS' を設定できません。ODBC ドライバの構成をチェックしてください + + + + + + Unable to fetch last + リストを取得できません + + + + Unable to fetch + フェッチできません + + + + Unable to fetch first + 最初のレコードをフェッチできません + + + + Unable to fetch previous + 前のレコードをフェッチできません + + + + QObject + + False + False + + + True + True + + + + Home + ホーム + + + + Operation not supported on %1 + %1 ではこの操作はサポートされていません + + + + Invalid URI: %1 + 無効なURIです: %1 + + + + Socket error on %1: %2 + %1 のソケットにおいてエラーが発生しました: %2 + + + + Remote host closed the connection prematurely on %1 + リモートホスト %1 との接続が通信の終了前に切断されました + + + + + No host name given + ホストネームが与えられていません + + + + QPPDOptionsModel + + + Name + 名前 + + + + Value + + + + + QPSQLDriver + + + Unable to connect + 接続できません + + + + Could not begin transaction + トランザクションを開始できませんでした + + + + Could not commit transaction + トランザクションをコミットできませんでした + + + + Could not rollback transaction + トランザクションをロールバックできませんでした + + + + Unable to subscribe + subscribe できません + + + + Unable to unsubscribe + unsubscribe できません + + + + QPSQLResult + + + Unable to create query + クエリーを作成できません + + + + Unable to prepare statement + プリペアステートメントを使えません + + + + QPageSetupWidget + + + Centimeters (cm) + センチメートル (cm) + + + + Millimeters (mm) + ミリメートル (mm) + + + + Inches (in) + インチ (in) + + + + Points (pt) + ポイント (pt) + + + + Form + 書式設定 + + + + Paper + 用紙 + + + + Page size: + ページサイズ: + + + + Width: + 幅: + + + + Height: + 高さ: + + + + Paper source: + 給紙装置: + + + + Orientation + 印刷方向 + + + + Portrait + 縦 (ポートレート) + + + + Landscape + 横 (ランドスケープ) + + + + Reverse landscape + 横 反転 (リバースランドスケープ) + + + + Reverse portrait + 縦 反転 (リバースポートレート) + + + + Margins + 余白 + + + + top margin + 上端余白 + + + + left margin + 左端余白 + + + + right margin + 右端余白 + + + + bottom margin + 下端余白 + + + + QPatternist::QtXmlPatterns + + + An %1-attribute with value %2 has already been declared. + 属性 %1 の値 %2 は既に宣言されています。 + + + + An %1-attribute must have a valid %2 as value, which %3 isn't. + 属性 %1 の値は %2 の型でなければなりませんが、 %3 が指定されました。 + + + + %1 is an unsupported encoding. + %1 はサポートされていないエンコーディングです。 + + + + %1 contains octets which are disallowed in the requested encoding %2. + エンコーディング %2 では許可されていないオクテットが %1 に含まれています。 + + + + The codepoint %1, occurring in %2 using encoding %3, is an invalid XML character. + %2 で使用されているエンコード %3 では、コードポイント %1 は有効な XML 表現ではありません。 + + + + Network timeout. + ネットワーク接続がタイムアウトしました。 + + + + Element %1 can't be serialized because it appears outside the document element. + エレメント %1 はシリアライズできません。このドキュメントの範囲を越えるエレメントを含んでいます。 + + + + Attribute %1 can't be serialized because it appears at the top level. + 属性 %1 はシリアライズできません。トップレベルに現れているためです。 + + + + Year %1 is invalid because it begins with %2. + %1 年はむこうです。%2 で始まっています。 + + + + Day %1 is outside the range %2..%3. + %1 日は、有効な範囲 %2..%3 を逸脱しています。 + + + + Month %1 is outside the range %2..%3. + %1 月は、有効な範囲 %2..%3 を逸脱しています。 + + + + Overflow: Can't represent date %1. + オーバーフロー: 日付 %1 を再現できません。 + + + + Day %1 is invalid for month %2. + %2 月には、%1 日は存在しません。 + + + + Time 24:%1:%2.%3 is invalid. Hour is 24, but minutes, seconds, and milliseconds are not all 0; + 24:%1:%2.%3 は無効です。24時0分0秒のみ使用できます + + + + Time %1:%2:%3.%4 is invalid. + 時刻 %1時%2分%3.%4秒は無効です。 + + + + Overflow: Date can't be represented. + オーバーフロー: 日付を再現できません。 + + + + + At least one component must be present. + 年、月、日のうちいずれかを指定しなければなりません。 + + + + At least one time component must appear after the %1-delimiter. + %1 の後には、時刻を指定しなければなりません。 + + + + No operand in an integer division, %1, can be %2. + ゼロ除算? NaN? + 整数の除算のためのオペランドが不足しています。%1 は %2 でなければなりません。 + + + + The first operand in an integer division, %1, cannot be infinity (%2). + 整数の除算における最初のオペランド %1 を認識できません (%2)。 + + + + The second operand in a division, %1, cannot be zero (%2). + 整数の除算における二つ目のオペランド %1 はゼロであってはいけまん(%2)。 + + + + %1 is not a valid value of type %2. + %1 は、%2 の型に対して有効な値ではありません。 + + + + When casting to %1 from %2, the source value cannot be %3. + %2 から %1 への型変換に際しては、値 %3 は有効な値ではありません。 + + + + Integer division (%1) by zero (%2) is undefined. + 整数の除算において %1 をゼロ (%2) で割った結果は定義されていません。 + + + + Division (%1) by zero (%2) is undefined. + 除算において %1 をゼロ (%2) で割った結果は定義されていません。 + + + + Modulus division (%1) by zero (%2) is undefined. + 剰余を求めるに際し、%1 をゼロ (%2) で除した結果は定義されていません。 + + + + + Dividing a value of type %1 by %2 (not-a-number) is not allowed. + 型 %1 を非数 %2 (NaN) で除すことはできません。 + + + + Dividing a value of type %1 by %2 or %3 (plus or minus zero) is not allowed. + 型 %1 を%2 または %3 (正または負のゼロ) で除することはできません。 + + + + Multiplication of a value of type %1 by %2 or %3 (plus or minus infinity) is not allowed. + 型 %1 を %2 または %3 (正または負のゼロ)で乗ずることはできません。 + + + + A value of type %1 cannot have an Effective Boolean Value. + 型 %1 は有効な論理型(bool)ではありません。 + + + + Effective Boolean Value cannot be calculated for a sequence containing two or more atomic values. + ?? + 論理型は、論理型以外の複数の値からなる計算によって求めることはできません。 + + + + Value %1 of type %2 exceeds maximum (%3). + 型 %2 の値 %1 は、上限 (%3) を越えています。 + + + + Value %1 of type %2 is below minimum (%3). + 型 %2 の値 %1 は、下限 (%3) を越えています。 + + + + A value of type %1 must contain an even number of digits. The value %2 does not. + 型 %1 の値は偶数個の十進数文字を必要とします。しかし、%2 はそうではありません。 + + + + %1 is not valid as a value of type %2. + 型 %2 に対して、値 %1 は有効ではありません。 + + + + Ambiguous rule match. + 曖昧なルールにマッチしました。 + + + + Operator %1 cannot be used on type %2. + 型 %2 に対して、オペレータ %1 は使用できません。 + + + + Operator %1 cannot be used on atomic values of type %2 and %3. + アトミックな型 %2 と %3 に対して、オペレータ %1 は使用できません。 + + + + The namespace URI in the name for a computed attribute cannot be %1. + computed attrib. ってなんてやくすのが適当かな。 + 結合された属性に対する名前空間のURIとして、%1 を使用することはできません。 + + + + The name for a computed attribute cannot have the namespace URI %1 with the local name %2. + 結合された属性の名前空間URI %1 は、ローカルな名前である %2 と併用できません。 + + + + Type error in cast, expected %1, received %2. + 型変換時のエラーです。望んでいた %1 ではなく、%2 になりました。 + + + + When casting to %1 or types derived from it, the source value must be of the same type, or it must be a string literal. Type %2 is not allowed. + %1 またはそれを継承している型への型変換においては、元の値の型は同じ型か、リテラルな文字列である必要があります。型 %2 は許可されていません。 + + + + No casting is possible with %1 as the target type. + 目標とする型に %1 を型変換することはできません。 + + + + It is not possible to cast from %1 to %2. + 型 %1 を型 %2 に型変換することはできません。 + + + + Casting to %1 is not possible because it is an abstract type, and can therefore never be instantiated. + 型 %1 への型変換はできません。抽象型であり、インスタンス化することができないからです。 + + + + It's not possible to cast the value %1 of type %2 to %3 + 型 %2 の値 %1 を、型 %3 に型変換することはできません + + + + Failure when casting from %1 to %2: %3 + %1 を %2 に型変換することができません: %3 + + + + A comment cannot contain %1 + コメントが %1 を含むことはできません + + + + A comment cannot end with a %1. + コメントは %1 で終了することはできません。 + + + + No comparisons can be done involving the type %1. + 型 %1 に対して比較を行うことはできません。 + + + + Operator %1 is not available between atomic values of type %2 and %3. + オペレータ %1 は、アトミックな型である %2 と %3 には適用できません。 + + + + In a namespace constructor, the value for a namespace cannot be an empty string. + 名前空間のスントラクトにおいて、空白の文字列を名前空間の値として使用することはできません。 + + + + The prefix must be a valid %1, which %2 is not. + プレフィックスは %1 でなければなりません。%2 は無効です。 + + + + The prefix %1 cannot be bound. + プレフィックス %1 はバウンドできません。 + + + + Only the prefix %1 can be bound to %2 and vice versa. + プレフィックス %1 は、%2 にのみバウンドできます。逆も同じです。 + + + + An attribute node cannot be a child of a document node. Therefore, the attribute %1 is out of place. + ドキュメントノードの子として属性ノードを指定することはできません。属性 %1 は誤った場所にあります。 + + + + Circularity detected + 循環を検出しました + + + + A library module cannot be evaluated directly. It must be imported from a main module. + ライブラリモジュールを直接評価することはできません。メインモジュールからインポートする必要があります。 + + + + No template by name %1 exists. + テンプレート名 %1 は存在しません。 + + + + A value of type %1 cannot be a predicate. A predicate must have either a numeric type or an Effective Boolean Value type. + 型 %1 は述部として使用できません。数値型か、論理型である必要があります。 + + + + A positional predicate must evaluate to a single numeric value. + positional? + 述部は評価されたとき、単一の数値になるようにしなければなりません。 + + + + The target name in a processing instruction cannot be %1 in any combination of upper and lower case. Therefore, is %2 invalid. + ターゲットとしている名前は、%1 であってはなりません。%2 は無効です。 + + + + %1 is not a valid target name in a processing instruction. It must be a %2 value, e.g. %3. + %1 はターゲットとして無効です。%2 である必要があります。例えば "%3" のようにです。 + + + + The last step in a path must contain either nodes or atomic values. It cannot be a mixture between the two. + バスの末端であるリーフは、単一のノードかアトミックな値である必要があります。複数の型の組み合わせであってはいけません。 + + + + The data of a processing instruction cannot contain the string %1 + 処理中のデータは、以下の文字列を含んでいてはなりません: %1 + + + + No namespace binding exists for the prefix %1 + プレフィックス %1 にバインドされたネームスペースがありません + + + + No namespace binding exists for the prefix %1 in %2 + %2 におけるプレフィックス %1 にバインディングされたネームスペースが存在しません + + + + + %1 is an invalid %2 + 型 %2 に対し、値 %1 は無効です + + + + The parameter %1 is passed, but no corresponding %2 exists. + パラメータ %1 を処理しました。しかし、対応する %2 が存在しません。 + + + + The parameter %1 is required, but no corresponding %2 is supplied. + パメータ %1 が必要です。しかし、対応する %2 がありません。 + + + + %1 takes at most %n argument(s). %2 is therefore invalid. + + %1 は、最大で %n 個の引数をとることができます。%2 は無効です。 + + + + + %1 requires at least %n argument(s). %2 is therefore invalid. + + %1 は、少くとも %n 個の引数を必要とします。%2 は無効です。 + + + + + The first argument to %1 cannot be of type %2. It must be a numeric type, xs:yearMonthDuration or xs:dayTimeDuration. + %1 への最初の引数は、型 %2 であってはなりません。数値型、xs:yerMonthDuration、xs:dayTimeDurationである必要があります。 + + + + The first argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. + %1 への最初の引数は、型 %2 であってはなりません。%3, %4, %5 のいずれかである必要があります。 + + + + The second argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. + %1 への二つ目の引数は、型 %2 であってはなりません。%3, %4, %5 のいずれかである必要があります。 + + + + %1 is not a valid XML 1.0 character. + %1 は XML 1.0 において有効な文字ではありません。 + + + + The first argument to %1 cannot be of type %2. + %1 への最初の引数は、型 %2 であってはなりません。 + + + + The root node of the second argument to function %1 must be a document node. %2 is not a document node. + %1 への二つ目の引数のルートノードは、ドキュメントノードでなければなりません。しかし、%2 はドキュメントノードではありません。 + + + + If both values have zone offsets, they must have the same zone offset. %1 and %2 are not the same. + ゾーンオフセットってなに? xmlにそんなのあったっけ? + もし二つの値がゾーンオフセットをもつ場合、両者は同じゾーンオフセットでなければなりません。%1 と %2 は同一ではありません。 + + + + %1 was called. + %1 が呼ばれました。 + + + + %1 must be followed by %2 or %3, not at the end of the replacement string. + %1 の後には、%2 か %3 が続かなければなりません。 + + + + In the replacement string, %1 must be followed by at least one digit when not escaped. + 置換操作において、%1 には少くとも一文字以上の数値が続く必要があります(エスケープされている場合を除く)。 + + + + In the replacement string, %1 can only be used to escape itself or %2, not %3 + 置換操作において、%1 はそれ自身または %2 をエスケープする為にのみ使用できます。%3 に対しては使用できません + + + + %1 matches newline characters + %1 は改行文字(列)にマッチしました + + + + %1 and %2 match the start and end of a line. + %1 と %2 は、行の先頭と末尾にマッチしました。 + + + + Matches are case insensitive + マッチは大文字小文字を区別しません + + + + Whitespace characters are removed, except when they appear in character classes + CDATA? + 空白文字は削除されました。ただし、キャラクタークラスに属するものは除きます + + + + %1 is an invalid regular expression pattern: %2 + %1 は有効な正規表現ではありません。: %2 + + + + %1 is an invalid flag for regular expressions. Valid flags are: + %1 は正規表現において無効なフラグです。使用可能なフラグは次の通りです: + + + + If the first argument is the empty sequence or a zero-length string (no namespace), a prefix cannot be specified. Prefix %1 was specified. + もし、最初の引数が空白からなる文字列か、長さが0 (名前空間をともなわない)である場合、プレフィックスを指定することはできません。しかし、プレフィックスとして %1 が指定されています。 + + + + It will not be possible to retrieve %1. + %1 を取得することはできないかもしれません。 + + + + The default collection is undefined + デフォルトのコレクションが定義されていません + + + + %1 cannot be retrieved + %1 を取得できません + + + + The normalization form %1 is unsupported. The supported forms are %2, %3, %4, and %5, and none, i.e. the empty string (no normalization). + つまり、空白の文字です、はどうでもいいよね。 + 正規化された表現 %1 はサポートされていません。サポートされている表現は、%2, %3, %4, %5 のみです。 + + + + A zone offset must be in the range %1..%2 inclusive. %3 is out of range. + ゾーンオフセットは、%1 から %2 の範囲である必要があります(境界を含む)。%3 は範囲外です。 + + + + %1 is not a whole number of minutes. + %1 は、分を現す値ではありません。 + + + + The URI cannot have a fragment + この URI はフラグメントをもつことはできません + + + + Required cardinality is %1; got cardinality %2. + カーディナリティ %1 が必要です。%2 ではありません。 + + + + The item %1 did not match the required type %2. + アイテム %1 は、要求された型 %2 にマッチしません。 + + + + Attribute %1 cannot appear on the element %2. Only the standard attributes can appear. + エレメント %2 に属性 %1 を指定することはできません。標準の属性のみが許可されています。 + + + + Attribute %1 cannot appear on the element %2. Only %3 is allowed, and the standard attributes. + エレメント %2 に属性 %1 を指定することはできません。%3 と標準の属性のみが許可されています。 + + + + Attribute %1 cannot appear on the element %2. Allowed is %3, %4, and the standard attributes. + エレメント %2 に属性 %1 を指定することはできません。%3, %4 と標準の属性のみが許可されています。 + + + + Attribute %1 cannot appear on the element %2. Allowed is %3, and the standard attributes. + エレメント %2 に %1 は指定できません。%3 と標準の属性のみが指定できます。 + + + + XSL-T attributes on XSL-T elements must be in the null namespace, not in the XSL-T namespace which %1 is. + XSLT エレメントに対するXSLT属性は、名前空間がnullでなければなりません。%1 は使用できません。 + + + + The attribute %1 must appear on element %2. + 属性 %1 は、エレメント %2 にのみ記述できます。 + + + + The element with local name %1 does not exist in XSL-T. + ローカル名 %1 のエレメントは、XSLTに存在しません。 + + + + The variable %1 is unused + 値 %1 は使用されませんでした + + + + A construct was encountered which only is allowed in XQuery. + XQuery でのみ許可されている construct に遭遇しました。 + + + + + %1 is an unknown schema type. + %1 はサポートされていないスキーマのタイプです。 + + + + A template by name %1 has already been declared. + テンプレート名 '%1' は、既に宣言されています。 + + + + %1 is not a valid numeric literal. + %1 は数値リテラルとして無効です。 + + + + Only one %1 declaration can occur in the query prolog. + クェリーのプロローグでは、%1 は一回のみ宣言できます。 + + + + The initialization of variable %1 depends on itself + 再帰? + 値 %1 の初期化は、それ自身に依存しています + + + + No variable by name %1 exists + 変数 %1 は存在しません + + + + Version %1 is not supported. The supported XQuery version is 1.0. + バージョン %1 はサポートされていません。XQuery バージョン 1.0 のみサポートされています。 + + + + The encoding %1 is invalid. It must contain Latin characters only, must not contain whitespace, and must match the regular expression %2. + エンコーディング '%1' は無効です。ラテン文字 (空白を除く) からなるもので、正規表現 '%2' にマッチするもののみ使用できます。 + + + + No function with signature %1 is available + シグネチャ %1 をもつ関数がみつかりません + + + + + A default namespace declaration must occur before function, variable, and option declarations. + 標準の名前空間の宣言は、関数、変数、オプションの宣言の前にしなければなりません。 + + + + Namespace declarations must occur before function, variable, and option declarations. + 名前空間の宣言は、関数、変数、オプションの宣言の前にしなければなりません。 + + + + Module imports must occur before function, variable, and option declarations. + モジュールのインポートは、関数、変数、オプションの宣言の前にしなければなりません。 + + + + The keyword %1 cannot occur with any other mode name. + キーワード %1 は、他の名をともなって使用することはできません。 + + + + The value of attribute %1 must of type %2, which %3 isn't. + 属性 '%1' の値として '%3' が指定されましたが、型 '%2' でなければなりません。 + + + + It is not possible to redeclare prefix %1. + プレフィックス '%1' を再定義することはできません。 + + + + The prefix %1 can not be bound. By default, it is already bound to the namespace %2. + プレフィックス '%1' はバウンドできません。デフォルトでは、それは既に名前空間 '%2' にバウンドされています。 + + + + Prefix %1 is already declared in the prolog. + プロローグ部において、プレフィックス '%1' はすでに宣言されています。 + + + + The name of an option must have a prefix. There is no default namespace for options. + オプションの名前はプレフィックスをもたなければなりません。このオプションに対するデフォルトの名前空間は存在しません。 + + + + The Schema Import feature is not supported, and therefore %1 declarations cannot occur. + このスキーマのインポート機能は使用できません。また、'%1' 宣言も使用できません。 + + + + The target namespace of a %1 cannot be empty. + 名前空間 '%1' は、空であってはなりません。 + + + + The module import feature is not supported + モジュールインポートの機能はサポートされていません + + + + A variable by name %1 has already been declared. + 名前 '%1' の変数は、すでに宣言されています。 + + + + No value is available for the external variable by name %1. + 外部変数 '%1' の値がみつかりません。 + + + + A stylesheet function must have a prefixed name. + スタイルシート関数は、プレフィックス名を持たなければなりません。 + + + + The namespace for a user defined function cannot be empty (try the predefined prefix %1 which exists for cases like this) + ユーザ定義の関数の名前空間は、空であってはなりません。(すでに定義されているプレフィックス '%1' が使用できます) + + + + The namespace %1 is reserved; therefore user defined functions may not use it. Try the predefined prefix %2, which exists for these cases. + 名前空間 '%1' は予約済です。ユーザ定義の関数では使用することはできません。プレフィックス '%2' が使用できます。 + + + + The namespace of a user defined function in a library module must be equivalent to the module namespace. In other words, it should be %1 instead of %2 + ライブラリモジュールで使用されている名前空間は、モジュールの名前空間と同一でなければなりません。つまり、'%2' ではなく、'%1' でなければなりません + + + + A function already exists with the signature %1. + シグネチャー '%1' の関数はすでに存在しています。 + + + + No external functions are supported. All supported functions can be used directly, without first declaring them as external + 外部関数はサポートされていません。すべてのサポートされている関数は、外部宣言をすることなく、直接使用することができます + + + + An argument by name %1 has already been declared. Every argument name must be unique. + 引数名 '%1' は既に宣言されています。すべての引数名はユニークである必要があります。 + + + + When function %1 is used for matching inside a pattern, the argument must be a variable reference or a string literal. + パターン一致の内側で関数 '%1' を使用する場合、引数はリテラルな文字列を参照する値でなければなりません。 + + + + In an XSL-T pattern, the first argument to function %1 must be a string literal, when used for matching. + XSL-T パターンマッチングにおいて、関数 '%1' の最初の引数は、リテラルな文字列でなければなりません。 + + + + In an XSL-T pattern, the first argument to function %1 must be a literal or a variable reference, when used for matching. + variable ref? + XSL-T パターンマッチングにおいて、関数 '%1' への最初の引数は、リテラルか変数でなければなりません。 + + + + In an XSL-T pattern, function %1 cannot have a third argument. + XSL-T パターンにおいて、関数 '%1' は三つの引数をもつことはできません。 + + + + In an XSL-T pattern, only function %1 and %2, not %3, can be used for matching. + XSL-T パターンマッチングにおいて、関数 '%1' と '%2' のみ使用できます。'%3' は使用できません。 + + + + In an XSL-T pattern, axis %1 cannot be used, only axis %2 or %3 can. + XSL-T パターンにおいて、axis %1 は使用できません。%2 または %3 のみ使用できます。 + + + + %1 is an invalid template mode name. + %1 はテンプレートモジュール名として無効です。 + + + + The name of a variable bound in a for-expression must be different from the positional variable. Hence, the two variables named %1 collide. + for 構文において使用する変数は、場所に関する変数とは異なる必要があります。つまり、'%1' が重複して使用されています。 + + + + The Schema Validation Feature is not supported. Hence, %1-expressions may not be used. + スキーマの検証機能はサポートされていません。よって、'%1' 構文は使用できません。 + + + + None of the pragma expressions are supported. Therefore, a fallback expression must be present + pragma 構文はサポートされていません。fallback 構文でなければなりません + + + + Each name of a template parameter must be unique; %1 is duplicated. + テンプレートパラメータ名はユニークである必要があります。'%1' は重複しています。 + + + + The %1-axis is unsupported in XQuery + XQuery において、%1 axis はサポートされていません + + + + No function by name %1 is available. + 関数名 '%1' はみつかりません。 + + + + The namespace URI cannot be the empty string when binding to a prefix, %1. + プレフィックス '%1' にバインディングする名前空間の URI は、空であってはなりません。 + + + + %1 is an invalid namespace URI. + %1 は名前空間 URI として無効です。 + + + + It is not possible to bind to the prefix %1 + プレフィックス %1 にバインドすることはできません + + + + Namespace %1 can only be bound to %2 (and it is, in either case, pre-declared). + ? + 名前空間 %1 は %2 にのみバウンドできます。 + + + + Prefix %1 can only be bound to %2 (and it is, in either case, pre-declared). + プリフィックス %1 は %2 にのみバウンドできます。 + + + + Two namespace declaration attributes have the same name: %1. + 二つの名前空間宣言の属性が、同じ名前 '%1' をもっています。 + + + + The namespace URI must be a constant and cannot use enclosed expressions. + 名前空間 URI は、constantでなければなりません。式を含むことはできません。 + + + + An attribute by name %1 has already appeared on this element. + 属性名 '%1' は、すでにこのエレメントで使用されています。 + + + + A direct element constructor is not well-formed. %1 is ended with %2. + 直積的な指定のエレメントがwell formedではありません。'%1' が、'%2' で終わっています。 + + + + The name %1 does not refer to any schema type. + 名前 '%1' は、なんのスキーマタイプも参照していません。 + + + + %1 is an complex type. Casting to complex types is not possible. However, casting to atomic types such as %2 works. + '%1' は complex 型です。complex 型への型変換はできません。しかし、アトミックな型である '%2' への変換はできます。 + + + + %1 is not an atomic type. Casting is only possible to atomic types. + '%1' はアトミックな型ではありません。型変換はアトミックな型に対してのみ可能です。 + + + + %1 is not a valid name for a processing-instruction. + 処理指定において、'%1' は無効です。 + + + + + %1 is not in the in-scope attribute declarations. Note that the schema import feature is not supported. + '%1' は、スコープ属性宣言ではありません。スキーマインポート機能はサポートされていません。 + + + + The name of an extension expression must be in a namespace. + 拡張式 (extension expression) の名前は、名前空間の中になければなりません。 + + + + Element %1 is not allowed at this location. + この場所にエレメント '%1' をおくことは許されていません。 + + + + Text nodes are not allowed at this location. + この場所にテキストノードをおくことは許されていません。 + + + + Parse error: %1 + パースエラー: %1 + + + + The value of the XSL-T version attribute must be a value of type %1, which %2 isn't. + XSL-T バージョン属性の値は、'%1' 型でなければなりません。'%2' はそうではありません。 + + + + Running an XSL-T 1.0 stylesheet with a 2.0 processor. + XSL-T 1.0 のスタイルシートを 2.0 のプロセッサで使用します。 + + + + Unknown XSL-T attribute %1. + 未知の XSL-T 属性 %1 があります。 + + + + Attribute %1 and %2 are mutually exclusive. + 属性 '%1' と '%2' は排他的にのみ使用できます。 + + + + In a simplified stylesheet module, attribute %1 must be present. + simplified stylesheet モジュールにおいては、属性 '%1' を指定されなければなりません。 + + + + If element %1 has no attribute %2, it cannot have attribute %3 or %4. + エレメント '%1' が属性 '%2' を持たない場合は、属性 '%3' や '%4' を使用することはできません。 + + + + Element %1 must have at least one of the attributes %2 or %3. + エレメント '%1' は、属性 '%2' か '%3' のいずれかを持たなければなりません。 + + + + At least one mode must be specified in the %1-attribute on element %2. + エレメント '%2' において、'%1' 属性は少くとも一つのモードを指定しなければなりません。 + + + + Element %1 must come last. + エレメント %1 は最後になければなりません。 + + + + At least one %1-element must occur before %2. + %2 の前に、少くとも一つは %1 エレメントが存在しなければなりません。 + + + + Only one %1-element can appear. + %1 エレメントは一つのみ存在しなければなりません。 + + + + At least one %1-element must occur inside %2. + %2 の内側には、少くとも一つの '%1' エレメントが存在しなければなりません。 + + + + When attribute %1 is present on %2, a sequence constructor cannot be used. + %2 に属性 %1 がある場合、sequence constructor は使用できません。 + + + + Element %1 must have either a %2-attribute or a sequence constructor. + エレメント %1 には、%2 属性またはsequence constructorがなければなりません。 + + + + When a parameter is required, a default value cannot be supplied through a %1-attribute or a sequence constructor. + パラメータが要求されているときには、デフォルトの値は、%1 属性または sequence constructor によって指定されていてはなりません。 + + + + Element %1 cannot have children. + エレメント %1 は、子要素を持つことができません。 + + + + Element %1 cannot have a sequence constructor. + エレメント %1 は、sequence constructor を含むことができません。 + + + + + The attribute %1 cannot appear on %2, when it is a child of %3. + %2 が %3 の子要素であるときは、属性 %1 を使用してはなりません。 + + + + A parameter in a function cannot be declared to be a tunnel. + 関数へのパラメータは、トンネルであってはなりません。 + + + + This processor is not Schema-aware and therefore %1 cannot be used. + この処理系は、Schema-aware ではありません。よって、%1 は使用できません。 + + + + Top level stylesheet elements must be in a non-null namespace, which %1 isn't. + トップレベルのスタイルシートのエレメントは、non-nullな名前空間を持っていなければなりません。しかし、%1 はそうではありません。 + + + + The value for attribute %1 on element %2 must either be %3 or %4, not %5. + エレメント %2 の属性 %1 の値は、%3 または %4 でなければなりません。%5 は異なります。 + + + + Attribute %1 cannot have the value %2. + 属性 %1 に、値 %2 を指定することはできません。 + + + + The attribute %1 can only appear on the first %2 element. + 属性 %1 は、最初の %2 エレメントにのみ指定できます。 + + + + At least one %1 element must appear as child of %2. + %2 の子要素としては、少くとも一つは %1 エレメントがなければなりません。 + + + + empty + + + + + zero or one + ゼロまたは一つ + + + + exactly one + 厳密に一つ + + + + one or more + 一つまたは複数 + + + + zero or more + ゼロまたはそれ以上 + + + + Required type is %1, but %2 was found. + 要求されている型は %1 ですが、 %2 があります。 + + + + Promoting %1 to %2 may cause loss of precision. + %1 を %2 に変換する際に、精度のロスが生じます。 + + + + The focus is undefined. + フォーカスが定義されていません。 + + + + It's not possible to add attributes after any other kind of node. + 他の種類のノードの中では、属性を追加することはできません。 + + + + An attribute by name %1 has already been created. + 名前 '%1' の属性は、すでに生成されています。 + + + + Only the Unicode Codepoint Collation is supported(%1). %2 is unsupported. + UNICODE Codepoint Collection のみ使用できます(%1)。 %2 はサポートされていません。 + + + + QPluginLoader + + + Unknown error + 不明なエラー + + + + The plugin was not loaded. + そのプラグインはロードされていません。 + + + + QPrintDialog + + Page size: + ページサイズ: + + + Orientation: + 方向: + + + Paper source: + 給紙装置: + + + + OK + OK + + + Cancel + キャンセル + + + Portrait + + + + Landscape + + + + + locally connected + ローカルに接続しています + + + + + Aliases: %1 + エイリアス: %1 + + + + + unknown + 不明 + + + Print in color if available + 可能であればカラーで印刷 + + + Print to file + ファイルに出力: + + + Browse + 参照... + + + + Print all + すべて印刷 + + + Selection + 選択した部分を印刷 + + + + Print range + 印刷範囲 + + + Pages from + 先頭のページ: + + + to + 末尾のページ: + + + Print last page first + 末尾のページから印刷 + + + Number of copies: + 部数: + + + Paper format + 用紙の形式 + + + + A0 (841 x 1189 mm) + A0 (841 x 1189mm) + + + + A1 (594 x 841 mm) + A1 (594 x 841mm) + + + + A2 (420 x 594 mm) + A2 (420 x 594mm) + + + + A3 (297 x 420 mm) + A3 (297 x 420mm) + + + + A4 (210 x 297 mm, 8.26 x 11.7 inches) + A4 (210 x 297mm、8.26 x 11.7インチ) + + + + A5 (148 x 210 mm) + A5 (148 x 210mm) + + + + A6 (105 x 148 mm) + A6 (105 x 148mm) + + + + A7 (74 x 105 mm) + A7 (74 x 105mm) + + + + A8 (52 x 74 mm) + A8 (52 x 74mm) + + + + A9 (37 x 52 mm) + A9 (37 x 52mm) + + + + B0 (1000 x 1414 mm) + B0 (1000 x 1414mm) + + + + B1 (707 x 1000 mm) + B1 (707 x 1000mm) + + + + B2 (500 x 707 mm) + B2 (500 x 707mm) + + + + B3 (353 x 500 mm) + B3 (353 x 500mm) + + + + B4 (250 x 353 mm) + B4 (250 x 353mm) + + + + B5 (176 x 250 mm, 6.93 x 9.84 inches) + B5 (176 x 250mm、6.93 x 9.84インチ) + + + + B6 (125 x 176 mm) + B6 (125 x 176mm) + + + + B7 (88 x 125 mm) + B7 (88 x 125mm) + + + + B8 (62 x 88 mm) + B8 (62 x 88mm) + + + + B9 (44 x 62 mm) + B9 (44 x 62mm) + + + + B10 (31 x 44 mm) + B10 (31 x 44mm) + + + + C5E (163 x 229 mm) + C5E (163 x 229mm) + + + + DLE (110 x 220 mm) + DLE (110 x 220mm) + + + + Executive (7.5 x 10 inches, 191 x 254 mm) + Executive (7.5 x 10インチ、191 x 254mm) + + + + Folio (210 x 330 mm) + Folio (210 x 330mm) + + + + Ledger (432 x 279 mm) + Ledger (432 x 279mm) + + + + Legal (8.5 x 14 inches, 216 x 356 mm) + Legal (8.5 x 14インチ、216 x 356mm) + + + + Letter (8.5 x 11 inches, 216 x 279 mm) + Letter (8.5 x 11インチ、216 x 279mm) + + + + Tabloid (279 x 432 mm) + Tabloid (279 x 432mm) + + + + US Common #10 Envelope (105 x 241 mm) + US Common #10 Envelope (105 x 241mm) + + + Print dialog + プリントダイアログ + + + Size: + サイズ: + + + Printer + プリンタ + + + Properties + プロパティ + + + Printer info: + プリンタ情報: + + + Copies + 印刷部数 + + + Collate + 丁合い + + + Other + その他 + + + Double side printing + 両面印刷 + + + + + + Print + 印刷 + + + File + ファイル + + + + Print To File ... + ファイルへ出力... + + + + File %1 is not writable. +Please choose a different file name. + ファイル %1 は書き込み可能ではありません。 +別のファイル名を選んでください。 + + + + %1 already exists. +Do you want to overwrite it? + %1 はすでに存在します。 +上書きしますか? + + + + File exists + ファイルは既に存在しています + + + + <qt>Do you want to overwrite it?</qt> + <qt>ファイルを上書きしてもよろしいですか?</qt> + + + + Print selection + 選択された範囲を印刷 + + + + %1 is a directory. +Please choose a different file name. + %1 はディレクトリです。 +ファイル名を指定してください。 + + + + A0 + A0 + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + A4 + A4 + + + + A5 + A5 + + + + A6 + A6 + + + + A7 + A7 + + + + A8 + A8 + + + + A9 + A9 + + + + B0 + B0 + + + + B1 + B1 + + + + B2 + B2 + + + + B3 + B3 + + + + B4 + B4 + + + + B5 + B5 + + + + B6 + B6 + + + + B7 + B7 + + + + B8 + B8 + + + + B9 + B9 + + + + B10 + B10 + + + + C5E + C5E + + + + DLE + DLE + + + + Executive + Exclusive + + + + Folio + Folio + + + + Ledger + Ledger + + + + Legal + リーガルサイズ + + + + Letter + レターサイズ + + + + Tabloid + タブロイドサイズ + + + + US Common #10 Envelope + US標準#10封筒 + + + + Custom + カスタム + + + + + &Options >> + オプション(&O) >> + + + + &Print + 印刷(&P) + + + + &Options << + オプション(&O) << + + + + Print to File (PDF) + PDFファイルに出力 + + + + Print to File (Postscript) + Postscriptファイルに出力 + + + + Local file + ローカルファイル + + + + Write %1 file + ファイル %1 に書き込みました + + + + The 'From' value cannot be greater than the 'To' value. + QPrintPropertiesWidgetにFromとToがあってそれを指している + 印刷開始ページ番号は、印刷終了ページ番号より小さくなければなりません。 + + + + QPrintPreviewDialog + + + + Page Setup + ページの設定 + + + + %1% + %1% + + + + Print Preview + 印刷のプレビュー + + + + Next page + 次のページ + + + + Previous page + 前のページ + + + + First page + 最初のページ + + + + Last page + 最後のページ + + + + Fit width + 幅をあわせる + + + + Fit page + 高さをあわせる + + + + Zoom in + 拡大 + + + + Zoom out + 縮小 + + + + Portrait + + + + + Landscape + + + + + Show single page + 一枚のページを表示する + + + + Show facing pages + 見開きのページを表示する + + + + Show overview of all pages + すべてのページを表示する + + + + Print + 印刷 + + + + Page setup + ページの設定 + + + Close + 閉じる + + + + Export to PDF + PDFに出力 + + + + Export to PostScript + Postscriptに出力 + + + + QPrintPropertiesDialog + + PPD Properties + 印刷プロパティのダイアログのプロパティ + + + Save + 保存 + + + OK + OK + + + + QPrintPropertiesWidget + + + Form + 書式 + + + + Page + ページ + + + + Advanced + 高度な設定 + + + + QPrintSettingsOutput + + + Form + 書式 + + + + Copies + 印刷部数 + + + + Print range + 印刷範囲 + + + + Print all + すべて印刷 + + + + Pages from + 先頭のページ + + + + to + 末尾のページ + + + + Selection + 選択した部分を印刷 + + + + Output Settings + 出力設定 + + + + Copies: + 印刷部数: + + + + Collate + 丁合い + + + + Reverse + 逆順 + + + + Options + オプション + + + + Color Mode + + + + + Color + カラー + + + + Grayscale + グレースケール + + + + Duplex Printing + 両面印刷 + + + + None + なし + + + + Long side + 長辺綴じ + + + + Short side + 短辺綴じ + + + + QPrintWidget + + + Form + 書式 + + + + Printer + プリンタ + + + + &Name: + 名前(&N): + + + + P&roperties + プロパティ(&r) + + + + Location: + 設置場所: + + + + Preview + プレビュー + + + + Type: + タイプ: + + + + Output &file: + 出力ファイル名(&f): + + + + ... + ... + + + + QProcess + + + + Could not open input redirection for reading + 標準入力リダイレクトを読み込みのためにオープンすることができません + + + + + Could not open output redirection for writing + 標準出力リダイレクトを書き込みのためにオープンすることができません + + + + Resource error (fork failure): %1 + リソースエラー (fork に失敗しました): %1 + + + + + + + + + + + + Process operation timed out + プロセス処理がタイムアウトしました + + + + + + + Error reading from process + プロセスからの読み込みにおいてエラーが発生しました + + + + + + Error writing to process + プロセスへの書き込みにおいてエラーが発生しました + + + + Process crashed + プロセスがクラッシュしました + + + + No program defined + プログラム名が指定されていません + + + + Process failed to start + プロセスのスタートに失敗しました + + + + QProgressDialog + + + Cancel + キャンセル + + + + QPushButton + + + Open + オープン + + + + QRadioButton + + + Check + 選択 + + + + QRegExp + + + no error occurred + エラーは発生しませんでした + + + + disabled feature used + 無効な機能が使用されました + + + + bad char class syntax + 不正なcharクラス構文 + + + + bad lookahead syntax + 不正なlookahead構文 + + + + bad repetition syntax + 不正なrepetition構文 + + + + invalid octal value + 無効な8進値 + + + + missing left delim + 左の区切り文字がありません + + + + unexpected end + 予期しない末尾です + + + + met internal limit + 内部制限を満たしました + + + + QSQLite2Driver + + + Error to open database + データベースのオープンでエラーが発生しました + + + + Unable to begin transaction + トランザクションを開始できません + + + + Unable to commit transaction + トランザクションをコミットできません + + + + Unable to rollback Transaction + トランザクションをロールバックできません + + + + QSQLite2Result + + + Unable to fetch results + 実行結果をフェッチできません + + + + Unable to execute statement + ステートメントを実行できません + + + + QSQLiteDriver + + + Error opening database + データベースのオープンでエラーが発生しました + + + + Error closing database + データベースのクローズでエラーが発生しました + + + + Unable to begin transaction + トランザクションを開始できません + + + + Unable to commit transaction + トランザクションをコミットできません + + + Unable to roll back transaction + トランザクションをロールバックできません + + + + Unable to rollback transaction + トランザクションをロールバックできません + + + + QSQLiteResult + + + + + Unable to fetch row + レコードをフェッチできません + + + + Unable to execute statement + ステートメントを実行できません + + + + Unable to reset statement + ステートメントをリセットできません + + + + Unable to bind parameters + パラメータをバインドできません + + + + Parameter count mismatch + パラメータの数が合っていません + + + + No query + クェリーがありません + + + + QScrollBar + + + Scroll here + ここにスクロール + + + + Left edge + 左端 + + + + Top + 上端 + + + + Right edge + 右端 + + + + Bottom + 下端 + + + + Page left + 1ページ左へスクロール + + + + + Page up + 1ページ戻る + + + + Page right + 1ページ右へスクロール + + + + + Page down + 1ページ進む + + + + Scroll left + 左へスクロール + + + + Scroll up + 上へスクロール + + + + Scroll right + 右へスクロール + + + + Scroll down + 下へスクロール + + + + Line up + 1行上へ + + + + Position + 位置 + + + + Line down + 1行下へ + + + + QSharedMemory + + + %1: unable to set key on lock + 共有メモリ関連 + %1: ロックするためのキーを設定できません + + + + %1: create size is less then 0 + %1: 0より小さいサイズの共有メモリは作成できません + + + + + %1: unable to lock + %1: ロックできません + + + + %1: unable to unlock + %1: アンロックできません + + + + + %1: permission denied + %1: 許可されていません + + + + + %1: already exists + %1: 既に存在します + + + + + %1: doesn't exists + %1: 存在しません + + + + + %1: out of resources + %1: リソース不足です + + + + + %1: unknown error %2 + %1: 未知のエラー %2 + + + + %1: key is empty + %1: キーが空です + + + + %1: unix key file doesn't exists + ? + %1: UNIX key file が存在しません + + + + %1: ftok failed + %1: fork に失敗しました + + + + + %1: unable to make key + %1: キーを作成できません + + + + %1: system-imposed size restrictions + EINVAL + %1: 指定されたサイズはシステムにより拒否されました + + + + %1: not attached + %1: アタッチしていません + + + + %1: invalid size + %1: 無効なサイズです + + + + %1: key error + safekey.isEmpty()==true + %1: キーかありません + + + + %1: size query failed + %1: サイズのクェリーに失敗しました + + + + QShortcut + + + Space + Space + + + + Esc + Esc + + + + Tab + Tab + + + + Backtab + Backtab + + + + Backspace + Backspace + + + + Return + Return + + + + Enter + Enter + + + + Ins + Ins + + + + Del + Del + + + + Pause + Pause + + + + Print + Print + + + + SysReq + SysReq + + + + Home + Home + + + + End + End + + + + Left + + + + + Up + + + + + Right + + + + + Down + + + + + PgUp + PgUp + + + + PgDown + PgDown + + + + CapsLock + CapsLock + + + + NumLock + NumLock + + + + ScrollLock + ScrollLock + + + + Menu + メニュー + + + + Help + ヘルプ + + + + Back + 戻る + + + + Forward + 進む + + + + Stop + 停止 + + + + Refresh + 更新間隔 + + + + Volume Down + 音量を下げる + + + + Volume Mute + 消音 + + + + Volume Up + 音量を上げる + + + + Bass Boost + 低音ブースト + + + + Bass Up + 低音を上げる + + + + Bass Down + 低音を下げる + + + + Treble Up + 高音を上げる + + + + Treble Down + 高音を下げる + + + + Media Play + メディアの再生 + + + + Media Stop + メディアの停止 + + + + Media Previous + 前のメディア + + + + Media Next + 次のメディア + + + + Media Record + メディアの録音 + + + + Home Page + ホームページ + + + + Favorites + お気に入り + + + + Search + 検索 + + + + Standby + スタンバイ + + + + Open URL + URLを開く + + + + Launch Mail + メールの起動 + + + + Launch Media + メディアの起動 + + + + Launch (0) + (0)の起動 + + + + Launch (1) + (1)の起動 + + + + Launch (2) + (2)の起動 + + + + Launch (3) + (3)の起動 + + + + Launch (4) + (4)の起動 + + + + Launch (5) + (5)の起動 + + + + Launch (6) + (6)の起動 + + + + Launch (7) + (7)の起動 + + + + Launch (8) + (8)の起動 + + + + Launch (9) + (9)の起動 + + + + Launch (A) + (A)の起動 + + + + Launch (B) + (B)の起動 + + + + Launch (C) + (C)の起動 + + + + Launch (D) + (D)の起動 + + + + Launch (E) + (E)の起動 + + + + Launch (F) + (F)の起動 + + + + Print Screen + Print Screen + + + + Page Up + Page Up + + + + Page Down + Page Down + + + + Caps Lock + Caps Lock + + + + Num Lock + Num Lock + + + + Number Lock + Number Lock + + + + Scroll Lock + Scroll Lock + + + + Insert + Insert + + + + Delete + Delete + + + + Escape + Escape + + + + System Request + System Request + + + + Select + Select + + + + Yes + はい + + + + No + いいえ + + + + Context1 + Context1 + + + + Context2 + Context2 + + + + Context3 + Context3 + + + + Context4 + Context4 + + + + Call + Call + + + + Hangup + Hangup + + + + Flip + Flip + + + + + Ctrl + Ctrl + + + + + Shift + Shift + + + + + Alt + Alt + + + + + Meta + Meta + + + + + + + + + + + F%1 + F%1 + + + + QSlider + + + Page left + 1ページ左へスクロール + + + + Page up + 1ページ戻る + + + + Position + 位置 + + + + Page right + 1ページ右へスクロール + + + + Page down + 1ページ進む + + + + QSocks5SocketEngine + + + Connection to proxy refused + プロキシーへの接続が拒否されました + + + + Connection to proxy closed prematurely + プロキシーの接続が通信の終了前に切断されました + + + + Proxy host not found + プロキシーホストが見つかりません + + + + Connection to proxy timed out + プロキシーとの接続がタイムアウトしました + + + + Proxy authentication failed + プロキシーの認証に失敗しました + + + + Proxy authentication failed: %1 + プロキシーの認証に失敗しました: %1 + + + + SOCKS version 5 protocol error + SOCKS バージョン 5 プロトコルのエラーです + + + + General SOCKSv5 server failure + SOCKS バージョン 5 サーバのエラーです + + + + Connection not allowed by SOCKSv5 server + SOCKSv5 サーバより接続を拒否されました + + + + TTL expired + 実際はホップ数です + 有効期限(TTL)がきれました + + + + SOCKSv5 command not supported + この SOCKSv5 コマンドはサポートされていません + + + + Address type not supported + 指定されたアドレスタイプはサポートされていません + + + + Unknown SOCKSv5 proxy error code 0x%1 + 未知の SOCKSv5 プロキシーエラーです: 0x%1 + + + Socks5 timeout error connecting to socks server + Socks5 はソックスサーバ接続しようとしてタイムアウトになりました + + + + Network operation timed out + ネットワーク操作がタイムアウトしました + + + + QSpinBox + + + More + 増やす + + + + Less + 減らす + + + + QSql + + + Delete + 削除 + + + + Delete this record? + このレコードを削除しますか? + + + + + + Yes + はい + + + + + + No + いいえ + + + + Insert + 挿入 + + + + Update + アップデート + + + + Save edits? + 編集内容を保存しますか? + + + + Cancel + キャンセル + + + + Confirm + 確認 + + + + Cancel your edits? + 編集をキャンセルしますか? + + + + QSslSocket + + + Error creating SSL context (%1) + SSL content の作成に失敗しました (%1) + + + + Invalid or empty cipher list (%1) + 暗号方式リストが無効または空です (%1) + + + + Cannot provide a certificate with no key, %1 + 鍵が指定されていないため、証明書を扱えません。 %1 + + + + Error loading local certificate, %1 + ローカルの証明書をロードできません。 %1 + + + + Error loading private key, %1 + プライベートキーをロードできません。 %1 + + + + Private key does not certificate public key, %1 + プライベートキーが、パブリックキーの証明書となっていません %1 + + + + Error creating SSL session, %1 + SSL セッションを作成できません。 %1 + + + + Error creating SSL session: %1 + SSL セッションを作成できません: %1 + + + + Unable to write data: %1 + 書き込みできません: %1 + + + + Error while reading: %1 + 読み込み時にエラーが発生しました: %1 + + + + Error during SSL handshake: %1 + SSL ハンドシェーク時にエラーが発生しました: %1 + + + + QSystemSemaphore + + + + %1: out of resources + %1: リソース不足です + + + + + %1: permission denied + %1: 許可されていません + + + + %1: already exists + %1: 既に存在します + + + + %1: does not exist + %1: 存在しません + + + + + %1: unknown error %2 + %1: 未知のエラーです %2 + + + + QTDSDriver + + + Unable to open connection + 接続をオープンできません + + + + Unable to use database + データベースを使用できません + + + + QTabBar + + + Scroll Left + 左へスクロール + + + + Scroll Right + 右へスクロール + + + + QTcpServer + + Socket operation unsupported + ソケット操作はサポートされていません + + + + Operation on socket is not supported + このソケットへの操作はサポートされていません + + + + QTextControl + + + &Undo + 元に戻す(&U) + + + + &Redo + やり直す(&R) + + + + Cu&t + 切り取り(&T) + + + + &Copy + コピー(&C) + + + + Copy &Link Location + リンクの場所をコピー(&L) + + + + &Paste + 貼り付け(&P) + + + + Delete + 削除 + + + + Select All + すべてを選択 + + + + QToolButton + + + + Press + 押す + + + + + Open + オープン + + + + QUdpSocket + + + This platform does not support IPv6 + このプラットフォームは IPv6 をサポートしていません + + + + QUndoGroup + + + Undo + 元に戻す + + + + Redo + やり直す + + + + QUndoModel + + + <empty> + <空> + + + + QUndoStack + + + Undo + 元に戻す + + + + Redo + やり直す + + + + QUnicodeControlCharacterMenu + + + LRM Left-to-right mark + LRM (左横書き指定) + + + + RLM Right-to-left mark + RLM (右横書き指定) + + + + ZWJ Zero width joiner + ZWJ (幅のない接続文字) + + + + ZWNJ Zero width non-joiner + ZWNJ (幅のない非接続文字) + + + + ZWSP Zero width space + ZWSP (幅の無い空白) + + + + LRE Start of left-to-right embedding + LRE (左横書き開始指定) + + + + RLE Start of right-to-left embedding + RLE (右横書き開始指定) + + + + LRO Start of left-to-right override + LRO (左横書き上書き開始指定) + + + + RLO Start of right-to-left override + RLO (右横書き上書き開始指定) + + + + PDF Pop directional formatting + PDF (方向上書きの終了指定) + + + + Insert Unicode control character + Unicode制御文字を挿入 + + + + QWebFrame + + + Request cancelled + リクエストはキャンセルされました + + + + Request blocked + リクエストはブロックされました + + + + Cannot show URL + URL を表示できません + + + + Frame load interruped by policy change + ポリシーの変更により、フレームのロードが中断しました + + + + Cannot show mimetype + MIME Type を表示できません + + + + File does not exist + ファイルが存在しません + + + + QWebPage + + + Bad HTTP request + 誤った HTTP のリクエストです + + + + Submit + default label for Submit buttons in forms on web pages + 送信 + + + + Submit + Submit (input element) alt text for <input> elements with no alt, title, or value + 送信 + + + + Reset + default label for Reset buttons in forms on web pages + リセット + + + + This is a searchable index. Enter search keywords: + text that appears at the start of nearly-obsolete web pages in the form of a 'searchable index' + 検索が可能です。検索のためのキーワードを入力してください: + + + + Choose File + title for file button used in HTML forms + ファイルを選ぶ + + + + No file selected + text to display in file button used in HTML forms when no file is selected + ファイルが選択されていません + + + + Open in New Window + Open in New Window context menu item + 新しいウィンドウで開く + + + + Save Link... + Download Linked File context menu item + リンク先を保存... + + + + Copy Link + Copy Link context menu item + リンク先をコピー + + + + Open Image + Open Image in New Window context menu item + イメージを開く + + + + Save Image + Download Image context menu item + 画像を保存 + + + + Copy Image + Copy Link context menu item + 画像をコピー + + + + Open Frame + Open Frame in New Window context menu item + フレームを新しいウィンドウで開く + + + + Copy + Copy context menu item + コピー + + + + Go Back + Back context menu item + 戻る + + + + Go Forward + Forward context menu item + 進む + + + + Stop + Stop context menu item + 停止 + + + + Reload + Reload context menu item + リロード + + + + Cut + Cut context menu item + 切り取り + + + + Paste + Paste context menu item + 貼り付け + + + + No Guesses Found + No Guesses Found context menu item + 推測候補はありません + + + + Ignore + Ignore Spelling context menu item + 無視 + + + + Add To Dictionary + Learn Spelling context menu item + 辞書に追加 + + + + Search The Web + Search The Web context menu item + Web を検索 + + + + Look Up In Dictionary + Look Up in Dictionary context menu item + 辞書から探す + + + + Open Link + Open Link context menu item + リンクを開く + + + + Ignore + Ignore Grammar context menu item + 無視 + + + + Spelling + Spelling and Grammar context sub-menu item + スペル + + + + Show Spelling and Grammar + menu item title + スペルと文法を表示 + + + + Hide Spelling and Grammar + menu item title + スペルと文法を隠す + + + + Check Spelling + Check spelling context menu item + スペルをチェックする + + + + Check Spelling While Typing + Check spelling while typing context menu item + 入力中にスペルをチェックする + + + + Check Grammar With Spelling + Check grammar with spelling context menu item + スペルおよび文法をチェックする + + + + Fonts + Font context sub-menu item + フォント + + + + Bold + Bold context menu item + 太字 + + + + Italic + Italic context menu item + イタリック + + + + Underline + Underline context menu item + 下線 + + + + Outline + Outline context menu item + アウトライン + + + + Direction + Writing direction context sub-menu item + 方向 + + + + Text Direction + Text direction context sub-menu item + テキストの方向 + + + + Default + Default writing direction context menu item + デフォルト + + + + LTR + Left to Right context menu item + 左横書き + + + + RTL + Right to Left context menu item + 右横書き + + + + Inspect + Inspect Element context menu item + ? + 検査 + + + + No recent searches + Label for only item in menu that appears when clicking on the search field image, when no searches have been performed + 検索の履歴はありません + + + + Recent searches + label for first item in the menu that appears when clicking on the search field image, used as embedded menu title + 検索の履歴 + + + + Clear recent searches + menu item in Recent Searches menu that empties menu's contents + 検索の履歴をクリア + + + + Unknown + Unknown filesize FTP directory listing item + 不明 + + + + %1 (%2x%3 pixels) + Title string for images + %1 (%2x%3 ピクセル) + + + + Web Inspector - %2 + Web の検査 - %2 + + + + Scroll here + ここにスクロール + + + + Left edge + 左端 + + + + Top + 上端 + + + + Right edge + 右端 + + + + Bottom + 下端 + + + + Page left + 1ページ左へスクロール + + + + Page up + 1ページ戻る + + + + Page right + 1ページ右へスクロール + + + + Page down + 1ページ進む + + + + Scroll left + 左へスクロール + + + + Scroll up + 上へスクロール + + + + Scroll right + 右へスクロール + + + + Scroll down + 下へスクロール + + + + %n file(s) + number of chosen file + + %n 個のファイル + + + + + JavaScript Alert - %1 + JavaScript アラート - %1 + + + + JavaScript Confirm - %1 + JavaScript 確認 - %1 + + + + JavaScript Prompt - %1 + JavaScript 質問 - %1 + + + + Move the cursor to the next character + 次の文字へカーソルを移動 + + + + Move the cursor to the previous character + 前の文字にカーソルを移動 + + + + Move the cursor to the next word + 次の単語にカーソルを移動 + + + + Move the cursor to the previous word + 前の単語にカーソルを移動 + + + + Move the cursor to the next line + 次の行にカーソルを移動 + + + + Move the cursor to the previous line + 前の行にカーソルを移動 + + + + Move the cursor to the start of the line + 文なのか行なのか + 文頭にカーソルを移動 + + + + Move the cursor to the end of the line + 文末にカーソルを移動 + + + + Move the cursor to the start of the block + ブロックの先頭にカーソルを移動 + + + + Move the cursor to the end of the block + ブロックの末尾にカーソルを移動 + + + + Move the cursor to the start of the document + 文章の先頭にカーソルを移動 + + + + Move the cursor to the end of the document + 文章の末尾にカーソルを移動 + + + + Select all + すべてを選択 + + + + Select to the next character + 次の文字を選択 + + + + Select to the previous character + 前の文字を選択 + + + + Select to the next word + 次の単語を選択 + + + + Select to the previous word + 前の単語を選択 + + + + Select to the next line + 次の行を選択 + + + + Select to the previous line + 前の行を選択 + + + + Select to the start of the line + 文頭から選択 + + + + Select to the end of the line + 文末まで選択 + + + + Select to the start of the block + ブロックの先頭から選択 + + + + Select to the end of the block + ブロックの末尾まで選択 + + + + Select to the start of the document + ドキュメントの先頭から選択 + + + + Select to the end of the document + ドキュメントの末尾まで選択 + + + + Delete to the start of the word + 単語の先頭まで削除 + + + + Delete to the end of the word + 単語の末尾まで削除 + + + + Insert a new paragraph + 新しい段落を挿入 + + + + Insert a new line + 新しい行を挿入 + + + + QWhatsThisAction + + + What's This? + ヒント? + + + + QWidget + + + * + * + + + + QWizard + + + Go Back + 戻る + + + + Continue + 続き + + + + Commit + 適用 + + + + Done + 終了 + + + + Help + ヘルプ + + + + < &Back + < 戻る(&B) + + + + &Finish + 完了(&F) + + + + Cancel + キャンセル + + + + &Help + ヘルプ(&H) + + + + &Next + 次へ(&N) + + + + &Next > + 次へ(&N) > + + + + QWorkspace + + + &Restore + 元に戻す(&R) + + + + &Move + 移動(&M) + + + + &Size + サイズを変更(&S) + + + + Mi&nimize + 最小化(&N) + + + + Ma&ximize + 最大化(&X) + + + + &Close + 閉じる(&C) + + + + Stay on &Top + 常に手前に表示(&T) + + + + + Sh&ade + シェード(&A) + + + + + %1 - [%2] + %1 - [%2] + + + + Minimize + 最小化 + + + + Restore Down + 元に戻す + + + + Close + 閉じる + + + + &Unshade + シェードを解除(&U) + + + + QXml + + + no error occurred + エラーは発生しませんでした + + + + error triggered by consumer + 消費者によってエラーが誘発されました + + + + unexpected end of file + 予期せぬファイルの終りです + + + + more than one document type definition + ドキュメントタイプの定義が複数あります + + + + error occurred while parsing element + 要素の解析中にエラーが発生しました + + + + tag mismatch + タグが一致しません + + + + error occurred while parsing content + コンテンツの解析中にエラーが発生しました + + + + unexpected character + 予期しない文字です + + + + invalid name for processing instruction + 処理の指示に無効な名前です + + + + version expected while reading the XML declaration + XML宣言を読み込むにはバージョンが必要です + + + + wrong value for standalone declaration + スタンドアロン宣言として正しくない値です + + + + encoding declaration or standalone declaration expected while reading the XML declaration + XML宣言を読み込むにはエンコーディング宣言かスタンドアローン宣言が必要です + + + + standalone declaration expected while reading the XML declaration + XML宣言を読み込むにはスタンドアローン宣言が必要です + + + + error occurred while parsing document type definition + ドキュメントタイプの定義を解析中にエラーが発生しました + + + + letter is expected + 文字が必要です + + + + error occurred while parsing comment + コメントの解析中にエラーが発生しました + + + + error occurred while parsing reference + 参照の解析中にエラーが発生しました + + + + internal general entity reference not allowed in DTD + 内部一般エンティティ参照はDTDで許されていません + + + + external parsed general entity reference not allowed in attribute value + 解析された外部一般エンティティ参照は属性値で許されていません + + + + external parsed general entity reference not allowed in DTD + 解析された外部一般エンティティ参照はDTDで許されていません + + + + unparsed entity reference in wrong context + 不正な文脈で解析されないエンティティ参照です + + + + recursive entities + 再帰的エンティティ + + + + error in the text declaration of an external entity + 外部エンティティのテキスト宣言にエラーがあります + + + + QXmlStream + + + + Extra content at end of document. + ドキュメントの末尾に余計なものがついています。 + + + + Invalid entity value. + エンティティの値が無効です。 + + + + Invalid XML character. + 無効な XML 文字です。 + + + + Sequence ']]>' not allowed in content. + このコンテキストでは、']]>' は許可されていません。 + + + + + Encountered incorrectly encoded content. + 正しくないエンコードの文脈に遭遇しました。 + + + + Namespace prefix '%1' not declared + 名前空間のブリフィックス '%1' は宣言されていません + + + + Attribute redefined. + 属性が再度指定されています。 + + + + Unexpected character '%1' in public id literal. + DTD宣言の部分 + 公開 ID 指定に使用できない文字 '%1' が使用されています。 + + + + Invalid XML version string. + 無効な XML バージョン指定です。 + + + + Unsupported XML version. + この XML のバージョンはサポートされていません。 + + + + The standalone pseudo attribute must appear after the encoding. + &ddd; は、エンコーディングを指定していないと使えないということかな。utf8だとおもうけど。 + 仮想属性指定は、エンコーディング指定の後にのみ使用できます。 + + + + %1 is an invalid encoding name. + %1 は無効なエンコーディングの名前です。 + + + + Encoding %1 is unsupported + エンコーディング '%1' はサポートされていません + + + + Standalone accepts only yes or no. + standalone の指定は yes または no のみ指定できます。 + + + + Invalid attribute in XML declaration. + XML 宣言に無効な属性がついています。 + + + + Premature end of document. + ドキュメントが途中で終わっています。 + + + + Invalid document. + 無効なドキュメントです。 + + + + Expected + 予期していた表現は、 + + + + , but got ' + ですが、取得した表現は以下のものでした ' + + + + Unexpected ' + 予期していなかった表現 ' + + + + Expected character data. + 予期していた文字列。 + + + + Recursive entity detected. + 再帰しているエンティティを発見しました。 + + + + Start tag expected. + 開始タグをよきしていましたが、みつかりません。 + + + + NDATA in parameter entity declaration. + パラメータエンティティの宣言において NDATA があります。 + + + + XML declaration not at start of document. + XML 宣言がドキュメントの先頭にありません。 + + + + %1 is an invalid processing instruction name. + XMLにそんなのあったっけ? + %1 は無効な処理指定の名前です。 + + + + Invalid processing instruction name. + 無効な処理命令です。 + + + + %1 is an invalid PUBLIC identifier. + %1 は、公開 (PUBLIC) 識別子として無効です。 + + + + + + + Illegal namespace declaration. + 無効な名前空間の指定です。 + + + + Invalid XML name. + 無効な XML 名です。 + + + + Opening and ending tag mismatch. + 開始タグと、終了タグがマッチしません。 + + + + Reference to unparsed entity '%1'. + まだパースしていないエンティティ '%1' を参照しています。 + + + + + + Entity '%1' not declared. + エンティティ '%1' は宣言されていません。 + + + + Reference to external entity '%1' in attribute value. + 属性値として、外部エンティティ '%1' を再度指定しています。 + + + + Invalid character reference. + 無効な文字への参照です。 + + + diff --git a/translations/qt_ja_JP.ts b/translations/qt_ja_JP.ts deleted file mode 100644 index e6f92b7..0000000 --- a/translations/qt_ja_JP.ts +++ /dev/null @@ -1,8070 +0,0 @@ - - - - - MAC_APPLICATION_MENU - - - Services - サービス - - - - Hide %1 - %1を隠す - - - - Hide Others - ほかを隠す - - - - Show All - すべてを表示 - - - - Preferences... - 環境設定... - - - - Quit %1 - %1 を終了 - - - - About %1 - %1 について - - - - CloseButton - - - Close Tab - ToolTip - タブを閉じる - - - - PPDOptionsModel - - Name - 名前 - - - Value - - - - - Phonon:: - - - Notifications - 通知 - - - - Music - 音楽 - - - - Video - 動画 - - - - Communication - コミュニケーション - - - - Games - ゲーム - - - - Accessibility - アクセシビリティ - - - - Phonon::AudioOutput - - - <html>The audio playback device <b>%1</b> does not work.<br/>Falling back to <b>%2</b>.</html> - <html>オーディオ再生デバイス<b>%1</b>が動作しません。<br/><b>%2</b>を使用します。</html> - - - - <html>Switching to the audio playback device <b>%1</b><br/>which just became available and has higher preference.</html> - <html>より高いパフォーマンスを得られるオーディオデバイス <b>%1</b> が使用可能となったので、使用します。</html> - - - - Revert back to device '%1' - デバイス '%1' に戻す - - - - Phonon::Gstreamer::Backend - - - Warning: You do not seem to have the package gstreamer0.10-plugins-good installed. - Some video features have been disabled. - 警告: gstreamer0.10-plugins-good がインストールされていません。幾つかの動画機能は使用できません。 - - - - Warning: You do not seem to have the base GStreamer plugins installed. - All audio and video support has been disabled - 警告: GStreamer plugin がインストールされていません。すべての音声、動画機能は使用できません - - - - Phonon::Gstreamer::MediaObject - - - Cannot start playback. - -Check your Gstreamer installation and make sure you -have libgstreamer-plugins-base installed. - 再生できません。 - -Gstreamer と libgstreamer-plugins-base が正しくインストールされているか確認してください。 - - - - A required codec is missing. You need to install the following codec(s) to play this content: %0 - 必要なコーデックがみつかりません。このコンテンツを再生するためには、以下のコーデックをインストールする必要があります: %0 - - - - - - - - - - - Could not open media source. - メディアソースを開くことができません。 - - - - Invalid source type. - 無効なソースの形式です。 - - - - Could not locate media source. - メディアソースがみつかりません。 - - - - Could not open audio device. The device is already in use. - オーディオデバイスを開くことができません。デバイスは既に他のプロセスにより使用されています。 - - - - Could not decode media source. - メディアソースを開くことができません。見つからないか、未知の形式です。 - - - - Phonon::VolumeSlider - - - - - - Volume: %1% - 音量: %1% - - - - - - Use this slider to adjust the volume. The leftmost position is 0%, the rightmost is %1% - スライダを用いて音量を指定してください。左端が0%、右端が%1%になります - - - - Muted - ミュート - - - - Q3Accel - - - %1, %2 not defined - %1, %2 は定義されていません - - - - Ambiguous %1 not handled - 曖昧な %1 は扱えません - - - - Q3DataTable - - - True - - - - - False - - - - - Insert - 挿入 - - - - Update - アップデート - - - - Delete - 削除 - - - - Q3FileDialog - - - All Files (*.*) - すべてのファイル(*.*) - - - - Open - オープン - - - - Select a Directory - ディレクトリを選択 - - - - Copy or Move a File - ファイルをコピーまたは移動 - - - - Read: %1 - 読み込み: %1 - - - - - Write: %1 - 書き込み: %1 - - - - - Cancel - キャンセル - - - - - - - All Files (*) - すべてのファイル(*) - - - - Name - 名前 - - - - Size - サイズ - - - - Type - タイプ - - - - Date - 日付 - - - - Attributes - 属性 - - - - - &OK - OK(&O) - - - - Look &in: - 検索する場所(&I): - - - - - - File &name: - ファイル名(&N): - - - - File &type: - ファイルタイプ(&T): - - - - Back - 戻る - - - - One directory up - 1つ上のディレクトリへ移動 - - - - Create New Folder - 新しいフォルダの作成 - - - - List View - 一覧表示 - - - - Detail View - 詳細表示 - - - - Preview File Info - ファイル情報のプレビュー - - - - Preview File Contents - ファイルの内容のプレビュー - - - - Read-write - 読み込み/書き込み - - - - Read-only - 読み込み専用 - - - - Write-only - 書き込み専用 - - - - Inaccessible - アクセス不可 - - - - Symlink to File - ファイルへのシンボリックリンク - - - - Symlink to Directory - ディレクトリへのシンボリックリンク - - - - Symlink to Special - スペシャルファイルへのシンボリックリンク - - - - File - ファイル - - - - Dir - ディレクトリ - - - - Special - スペシャル - - - - - - Open - オープン - - - - - Save As - 名前を付けて保存 - - - - - - &Open - オープン(&O) - - - - - &Save - 保存(&S) - - - - &Rename - 名前の変更(&R) - - - - &Delete - 削除(&D) - - - - R&eload - リロード(&E) - - - - Sort by &Name - 名前順にソート(&N) - - - - Sort by &Size - サイズ順にソート(&S) - - - - Sort by &Date - 日付順にソート(&D) - - - - &Unsorted - ソート解除(&U) - - - - Sort - ソート - - - - Show &hidden files - 隠しファイルの表示(&H) - - - - the file - ファイル - - - - the directory - ディレクトリ - - - - the symlink - シンボリックリンク - - - - Delete %1 - %1 の削除 - - - - <qt>Are you sure you wish to delete %1 "%2"?</qt> - <qt>%1 "%2" を削除しますか?</qt> - - - - &Yes - はい(&Y) - - - - &No - いいえ(&N) - - - - New Folder 1 - 新しいフォルダ1 - - - - New Folder - 新しいフォルダ - - - - New Folder %1 - 新しいフォルダ %1 - - - - Find Directory - ディレクトリの検索 - - - - - Directories - ディレクトリ - - - - Directory: - ディレクトリ: - - - - - Error - エラー - - - - %1 -File not found. -Check path and filename. - %1 -ファイルが見つかりませんでした。 -パスおよびファイル名を確認してください。 - - - - Q3LocalFs - - - - Could not read directory -%1 - ディレクトリを読み込めませんでした -%1 - - - - Could not create directory -%1 - ディレクトリを作成できませんでした -%1 - - - - Could not remove file or directory -%1 - ファイルまたはディレクトリを削除できませんでした -%1 - - - - Could not rename -%1 -to -%2 - 名前を変更できませんでした -%1 -を -%2 -へ - - - - Could not open -%1 - 開けませんでした -%1 - - - - Could not write -%1 - 書き込めませんでした -%1 - - - - Q3MainWindow - - - Line up - 整列 - - - - Customize... - カスタマイズ... - - - - Q3NetworkProtocol - - - Operation stopped by the user - 操作がユーザによって停止されました - - - - Q3ProgressDialog - - - - Cancel - キャンセル - - - - Q3TabDialog - - - - OK - OK - - - - Apply - 適用 - - - - Help - ヘルプ - - - - Defaults - デフォルト - - - - Cancel - キャンセル - - - - Q3TextEdit - - - &Undo - 元に戻す(&U) - - - - &Redo - やり直す(&R) - - - - Cu&t - 切り取り(&T) - - - - &Copy - コピー(&C) - - - - &Paste - 貼り付け(&P) - - - - Clear - 消去 - - - - - Select All - すべてを選択 - - - - Q3TitleBar - - - System - システム - - - - Restore up - 元に戻す - - - - Minimize - 最小化 - - - - Restore down - 元に戻す - - - - Maximize - 最大化 - - - - Close - 閉じる - - - - Contains commands to manipulate the window - ウィンドウを操作するコマンドを含みます - - - - Puts a minimized back to normal - 最小化されたウィンドウを元のサイズに戻します - - - - Moves the window out of the way - ウィンドウを隠します - - - - Puts a maximized window back to normal - 最大化されたウィンドウを元のサイズに戻します - - - - Makes the window full screen - ウィンドウをフルスクリーンにします - - - - Closes the window - ウィンドウを閉じます - - - - Displays the name of the window and contains controls to manipulate it - ウィンドウの名前と、ウィンドウを操作するコントロールを表示します - - - - Q3ToolBar - - - More... - その他... - - - - Q3UrlOperator - - - - - The protocol `%1' is not supported - プロトコル '%1' はサポートされていません - - - - The protocol `%1' does not support listing directories - プロトコル '%1' はディレクトリのリスティングをサポートしていません - - - - The protocol `%1' does not support creating new directories - プロトコル '%1' は新しいディレクトリの作成をサポートしていません - - - - The protocol `%1' does not support removing files or directories - プロトコル '%1' はファイルまたはディレクトリの削除をサポートしていません - - - - The protocol `%1' does not support renaming files or directories - プロトコル '%1' はファイルまたはディレクトリの名前の変更をサポートしていません - - - - The protocol `%1' does not support getting files - プロトコル '%1' はファイルの取得をサポートしていません - - - - The protocol `%1' does not support putting files - プロトコル '%1' はファイルの送信をサポートしていません - - - - - The protocol `%1' does not support copying or moving files or directories - プロトコル '%1' はファイルまたはディレクトリのコピーまたは移動をサポートしていません - - - - - (unknown) - (不明) - - - - Q3Wizard - - - &Cancel - キャンセル(&C) - - - - < &Back - < 戻る(&B) - - - - &Next > - 次へ(&N) > - - - - &Finish - 完了(&F) - - - - &Help - ヘルプ(&H) - - - - QAbstractSocket - - - - - - Host not found - ホストが見つかりませんでした - - - - - - Connection refused - 接続が拒否されました - - - - Connection timed out - 接続がタイムアウトしました - - - - - - Operation on socket is not supported - 抽象ソケットクラスでのソケットのエラー - このソケットへのこの操作はサポートされていません - - - - Socket operation timed out - ソケット操作がタイムアウトしました - - - - Socket is not connected - ソケットが接続されていません - - - - Network unreachable - ネットワークへ到達できません - - - - QAbstractSpinBox - - - &Step up - 上(&S) - - - - Step &down - 下(&D) - - - - &Select All - すべてを選択(&S) - - - - QApplication - - - Activate - アクティブに - - - - Activates the program's main window - メインウィンドウをアクティブにする - - - - Executable '%1' requires Qt %2, found Qt %3. - 実行可能ファイル '%1' には Qt %2 が必要です。Qt %3 が見つかりました。 - - - - Incompatible Qt Library Error - 互換性のないQtライブラリエラー - - - - QT_LAYOUT_DIRECTION - Translate this string to the string 'LTR' in left-to-right languages or to 'RTL' in right-to-left languages (such as Hebrew and Arabic) to get proper widget layout. - LTR - - - - QAxSelect - - - Select ActiveX Control - ActiveX Control を選択 - - - - OK - OK - - - - &Cancel - キャンセル(&C) - - - - COM &Object: - COM オブジェクト(&O): - - - - QCheckBox - - - Uncheck - 選択解除 - - - - Check - 選択 - - - - Toggle - 反転 - - - - QColorDialog - - - Hu&e: - 色相(&E): - - - - &Sat: - 彩度(&S): - - - - &Val: - 明度(&V): - - - - &Red: - 赤(&R): - - - - &Green: - 緑(&G): - - - - Bl&ue: - 青(&U): - - - - A&lpha channel: - アルファチャネル(&L): - - - - Select Color - - - - - &Basic colors - 基本的なカラー(&B) - - - - &Custom colors - カスタムカラー(&C) - - - &Define Custom Colors >> - カスタムカラーの定義(&D) >> - - - OK - OK - - - Cancel - キャンセル - - - - &Add to Custom Colors - カスタムカラーに追加(&A) - - - Select color - カラーの選択 - - - - QComboBox - - - - Open - オープン - - - - False - - - - - True - - - - - Close - 閉じる - - - - QCoreApplication - - - %1: key is empty - QSystemSemaphore - %1: キーが空です - - - - %1: unable to make key - QSystemSemaphore - %1: キーを作成できません - - - - %1: ftok failed - QSystemSemaphore - %1: fork に失敗しました - - - - QDB2Driver - - - Unable to connect - 接続できません - - - - Unable to commit transaction - トランザクションをコミットできません - - - - Unable to rollback transaction - トランザクションをロールバックできません - - - - Unable to set autocommit - オートコミットを設定できません - - - - QDB2Result - - - - Unable to execute statement - ステートメントを実行できません - - - - Unable to prepare statement - プリペアステートメントを使えません - - - - Unable to bind variable - 変数をバインドできません - - - - Unable to fetch record %1 - レコード %1 をフェッチできません - - - - Unable to fetch next - 次のレコードをフェッチできません - - - - Unable to fetch first - 最初のレコードをフェッチできません - - - - QDateTimeEdit - - - AM - AM - - - - am - am - - - - PM - PM - - - - pm - pm - - - - QDial - - - QDial - ダイヤル - - - - SpeedoMeter - スピードメータ - - - - SliderHandle - スライダハンドル - - - - QDialog - - - What's This? - ヒント? - - - - Done - 終了 - - - - QDialogButtonBox - - - - - OK - OK - - - - Cancel - キャンセル - - - - Apply - 適用 - - - - Ignore - 無視 - - - - Retry - 再試行 - - - - Abort - 中止 - - - - Help - ヘルプ - - - - Save - 保存 - - - - &Save - 保存(&S) - - - - Open - オープン - - - - &Cancel - キャンセル(&C) - - - - Close - 閉じる - - - - &Close - 閉じる(&C) - - - - Reset - リセット - - - - Don't Save - 保存しない - - - - Close without Saving - 保存せずに閉じる - - - - Discard - 変更を破棄 - - - - &Yes - はい(&Y) - - - - Yes to &All - 全てにはい(&A) - - - - &No - いいえ(&N) - - - - N&o to All - 全てにいいえ(&O) - - - - Save All - すべて保存 - - - - Restore Defaults - デフォルトに戻す - - - - &OK - OK(&O) - - - - QDirModel - - - Name - 名前 - - - - Size - サイズ - - - - Date Modified - 更新日 - - - - Kind - Match OS X Finder - 種類 - - - - Type - All other platforms - タイプ - - - - QDockWidget - - - Close - 閉じる - - - - Dock - ドック - - - - Float - フロート - - - - QDoubleSpinBox - - - More - 増やす - - - - Less - 減らす - - - - QErrorMessage - - - Debug Message: - デバッグメッセージ: - - - - Warning: - 警告: - - - - Fatal Error: - 致命的なエラー: - - - - &Show this message again - 次回もこのメッセージを表示する(&S) - - - - &OK - OK(&O) - - - - QFile - - - - Destination file exists - 新しい名前のファイルは既に存在します - - - - Cannot remove source file - 元のファイルを削除できません - - - - Cannot open %1 for input - コピー元ファイル %1 を読めません - - - - Cannot open for output - コピー先のファイルをオープンできません - - - - Failure to write block - 書き込みに失敗しました - - - - Cannot create %1 for output - コピー先として %1 を作成できません - - - - QFileDialog - - - - All Files (*) - すべてのファイル(*) - - - - Directories - ディレクトリ - - - - - Directory: - ディレクトリ: - - - - - File &name: - ファイル名(&N): - - - - - - - &Open - オープン(&O) - - - - - &Save - 保存(&S) - - - - Open - オープン - - - Save - 保存 - - - -File not found. -Please verify the correct file name was given - -ファイルが見つかりません。 -正しいファイル名が入力されたかどうか確認してください - - - - %1 already exists. -Do you want to replace it? - %1 はすでに存在します。 -置き換えますか? - - - - %1 -File not found. -Please verify the correct file name was given. - %1 -ファイルが見つかりません。 -正しいファイル名が入力されたかどうか確認してください。 - - - - My Computer - マイ コンピュータ - - - - - %1 -Directory not found. -Please verify the correct directory name was given. - %1 -ディレクトリが見つかりません。 -正しいディレクトリ名が入力されたかどうか確認してください。 - - - Sort - ソート - - - - &Rename - 名前の変更(&R) - - - - &Delete - 削除(&D) - - - &Reload - リロード(&R) - - - Sort by &Name - 名前順にソート(&N) - - - Sort by &Size - サイズ順にソート(&S) - - - Sort by &Date - 日付順にソート(&D) - - - &Unsorted - ソート解除(&U) - - - - Show &hidden files - 隠しファイルの表示(&H) - - - - - Back - 戻る - - - - - Parent Directory - 親ディレクトリ - - - - - Create New Folder - 新しいフォルダの作成 - - - - - List View - 一覧表示 - - - - - Detail View - 詳細表示 - - - - - Look in: - 検索する場所: - - - - - Files of type: - ファイルの種類: - - - - Drive - ドライブ - - - - - File - ファイル - - - - File Folder - Match Windows Explorer - ファイルフォルダ - - - - Folder - All other platforms - フォルダ - - - - Alias - Mac OS X Finder - エイリアス - - - - Shortcut - All other platforms - ショートカット - - - - Unknown - 不明 - - - - All Files (*.*) - すべてのファイル(*.*) - - - - Save As - 名前を付けて保存 - - - Open - オープン - - - Select a Directory - ディレクトリを選択 - - - - '%1' is write protected. -Do you want to delete it anyway? - '%1' は書き込みが禁止されています。 -本当に削除しますか? - - - - Are sure you want to delete '%1'? - '%1' を本当に削除しますか? - - - - Could not delete directory. - ディレクトリを削除できませんでした。 - - - - Find Directory - ディレクトリの検索 - - - - Show - 表示 - - - - &New Folder - 新しいフォルダ(&N) - - - - - &Choose - 選択(&C) - - - - New Folder - 新しいフォルダ - - - - Recent Places - 履歴 - - - - - Forward - 進む - - - - Remove - 削除 - - - - QFileSystemModel - - - Name - 名前 - - - - Size - サイズ - - - - Date Modified - 更新日 - - - - Kind - Match OS X Finder - 種類 - - - - Type - All other platforms - タイプ - - - - - %1 TB - %1 TB - - - - - %1 GB - %1 GB - - - - - %1 MB - %1 MB - - - - - %1 KB - %1 KB - - - - - %1 bytes - %1 バイト - - - - Invalid filename - 無効なファイル名 - - - - <b>The name "%1" can not be used.</b><p>Try using another name, with fewer characters or no punctuations marks. - <b>ファイル名 "%1" は使用できません。</b><p>名前を短くしたり、アクセント記号などを削除して再度試してください。 - - - - My Computer - マイ コンピュータ - - - - Computer - コンピュータ - - - - QFontDatabase - - - - Normal - ここはどう訳すべきか... - 明朝 - - - - - - Bold - ゴシック - - - - - Demi Bold - Demi Bold - - - - - - Black - 太字 - - - - Demi - Demi - - - - - Light - 細字 - - - - - Italic - イタリック - - - - - Oblique - 斜体 - - - - Any - すべて - - - - Latin - ラテン - - - - Greek - ギリシャ - - - - Cyrillic - キリル - - - - Armenian - アルメニア - - - - Hebrew - ヘブライ - - - - Arabic - アラビア - - - - Syriac - シリア - - - - Thaana - ターナ - - - - Devanagari - デーヴァナーガリー - - - - Bengali - ベンガル - - - - Gurmukhi - グルムキー - - - - Gujarati - グジャラート - - - - Oriya - オリヤー - - - - Tamil - タミル - - - - Telugu - テルグ - - - - Kannada - カンナダ - - - - Malayalam - マラヤーラム - - - - Sinhala - シンハラ - - - - Thai - タイ - - - - Lao - ラーオ - - - - Tibetan - チベット - - - - Myanmar - ビルマ - - - - Georgian - グルジア - - - - Khmer - クメール - - - - Simplified Chinese - 簡体中国 - - - - Traditional Chinese - 繁体中国 - - - - Japanese - 日本 - - - - Korean - ハングル - - - - Vietnamese - ベトナム - - - - Symbol - 記号 - - - - Ogham - オガム - - - - Runic - ルーン - - - - QFontDialog - - - &Font - フォント(&F) - - - - Font st&yle - フォントスタイル(&Y) - - - - &Size - サイズ(&S) - - - - Effects - 文字飾り - - - - Stri&keout - 取り消し線(&K) - - - - &Underline - 下線(&U) - - - - Sample - サンプル - - - - Wr&iting System - 言語(&I) - - - - - Select Font - フォントの選択 - - - - QFtp - - - - Not connected - 未接続です - - - - - Host %1 not found - ホスト %1 が見つかりませんでした - - - - - Connection refused to host %1 - ホスト %1 への接続が拒否されました - - - - Connection timed out to host %1 - ホスト %1 への接続がタイムアウトしました - - - - - - Connected to host %1 - ホスト %1 に接続しました - - - - - Connection refused for data connection - データ接続のための接続が拒否されました - - - - - - - Unknown error - 不明なエラー - - - - - Connecting to host failed: -%1 - ホストへの接続に失敗しました: -%1 - - - - - Login failed: -%1 - ログインに失敗しました: -%1 - - - - - Listing directory failed: -%1 - ディレクトリのリストに失敗しました: -%1 - - - - - Changing directory failed: -%1 - ディレクトリの変更に失敗しました: -%1 - - - - - Downloading file failed: -%1 - ファイルのダウンロードに失敗しました: -%1 - - - - - Uploading file failed: -%1 - ファイルのアップロードに失敗しました: -%1 - - - - - Removing file failed: -%1 - ファイルの削除に失敗しました: -%1 - - - - - Creating directory failed: -%1 - ディレクトリの作成に失敗しました: -%1 - - - - - Removing directory failed: -%1 - ディレクトリの削除に失敗しました: -%1 - - - - - - Connection closed - 接続が閉じられました - - - - Host %1 found - ホスト %1 が見つかりました - - - - Connection to %1 closed - %1 への接続が閉じられました - - - - Host found - ホストが見つかりました - - - - Connected to host - ホストに接続しました - - - - QHostInfo - - - Unknown error - 不明なエラー - - - - QHostInfoAgent - - - - - - - - - - Host not found - ホストが見つかりません - - - - - - - Unknown address type - 不明なアドレス型です - - - - - - Unknown error - 不明なエラー - - - - QHttp - - - HTTPS connection requested but SSL support not compiled in - HTTPSによる接続が要求されましたが、SSLのサポートがコンパイル時に組み込まれていないため、接続できません - - - - - - - Unknown error - 不明なエラー - - - - - Request aborted - 要求が中止されました - - - - - No server set to connect to - 接続が設定されているサーバがありません - - - - - Wrong content length - コンテンツの長さが正しくありません - - - - - Server closed connection unexpectedly - サーバの接続が予期せず閉じられました - - - - Unknown authentication method - 非対応の認証方法が要求されました - - - - Error writing response to device - デバイスへの書き込み時にエラーが発生しました - - - - - Connection refused - 接続が拒否されました - - - - - - Host %1 not found - ホスト %1 が見つかりませんでした - - - - - - - HTTP request failed - HTTP要求に失敗しました - - - - - Invalid HTTP response header - 無効なHTTP応答ヘッダです - - - - - - - Invalid HTTP chunked body - 無効なHTTPチャンクドボディです - - - - Host %1 found - ホスト %1 が見つかりました - - - - Connected to host %1 - ホスト %1 に接続しました - - - - Connection to %1 closed - %1 への接続が閉じられました - - - - Host found - ホストが見つかりました - - - - Connected to host - ホストに接続しました - - - - - Connection closed - 接続が閉じられました - - - - Proxy authentication required - プロキシーの認証が必要です - - - - Authentication required - 認証が必要です - - - - Connection refused (or timed out) - 接続が拒否されたか、タイムアウトしました - - - - Proxy requires authentication - プロキシーの認証が必要です - - - - Host requires authentication - ホストの認証が必要です - - - - Data corrupted - データが破損しています - - - - Unknown protocol specified - 未対応のプロトコルです - - - - SSL handshake failed - SSLのハンドシェークに失敗しました - - - - QHttpSocketEngine - - - Did not receive HTTP response from proxy - プロキシーからHTTPレスポンスを受信できませんでした - - - - Error parsing authentication request from proxy - プロキシーからの認証要求のパースに失敗しました - - - - Authentication required - 認証が必要です - - - - Proxy denied connection - プロキシーが接続を拒否しました - - - - Error communicating with HTTP proxy - HTTP プロキシーとの通信にて、エラーが発生しました - - - - Proxy server not found - プロキシーサーバが見つかりません - - - - Proxy connection refused - プロキシーが接続を拒否しました - - - - Proxy server connection timed out - プロキシーとの接続がタイムアウトしました - - - - Proxy connection closed prematurely - プロキシーの接続が通信の終了前に切断されました - - - - QIBaseDriver - - - Error opening database - データベースのオープンでエラーが発生しました - - - - Could not start transaction - トランザクションを開始できませんでした - - - - Unable to commit transaction - トランザクションをコミットできません - - - - Unable to rollback transaction - トランザクションをロールバックできません - - - - QIBaseResult - - - Unable to create BLOB - バイナリラージオブジェクトを作成できません - - - - Unable to write BLOB - バイナリラージオブジェクトを書き込めません - - - - Unable to open BLOB - バイナリラージオブジェクトをオープンできません - - - - Unable to read BLOB - バイナリラージオブジェクトを読み込めません - - - - - Could not find array - 配列が見つかりませんでした - - - - Could not get array data - 配列データを取得できませんでした - - - - Could not get query info - クエリー情報を取得できませんでした - - - - Could not start transaction - トランザクションを開始できませんでした - - - - Unable to commit transaction - トランザクションをコミットできません - - - - Could not allocate statement - ステートメントの領域を確保できませんでした - - - - Could not prepare statement - プリペアステートメントを使えませんでした - - - - - Could not describe input statement - INPUT ステートメントの情報を取得できませんでした - - - - Could not describe statement - ステートメントの情報を取得できませんでした - - - - Unable to close statement - ステートメントをクローズできません - - - - Unable to execute query - クエリーを実行できません - - - - Could not fetch next item - 次のレコードをフェッチできませんでした - - - - Could not get statement info - ステートメントの情報を取得できませんでした - - - - QIODevice - - - Permission denied - 許可されていません - - - - Too many open files - 開かれたファイルが多すぎます - - - - No such file or directory - そのようなファイルやディレクトリはありません - - - - No space left on device - デバイスの残り容量がありません - - - - Unknown error - 不明なエラー - - - - QInputContext - - - XIM - XIM - - - - XIM input method - XIM 入力メソッド - - - - Windows input method - Windows 入力メソッド - - - - Mac OS X input method - Mac OS X 入力メソッド - - - - QInputDialog - - - Enter a value: - 数値を入力: - - - - QLibrary - - - Could not mmap '%1': %2 - '%1' をメモリにマッピングできませんでした: %2 - - - - Plugin verification data mismatch in '%1' - '%1' でプラグイン検証データが一致しません - - - - Could not unmap '%1': %2 - '%1' のマッピングを解除できませんでした: %2 - - - - The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] - プラグイン '%1' は、互換性のない Qt ライブラリを使用しています。(%2.%3.%4) [%5] - - - - The plugin '%1' uses incompatible Qt library. Expected build key "%2", got "%3" - プラグイン '%1' は、互換性のない Qt ライブラリを使用しています。ビルドキー "%2" が必要ですが、"%3" しかありません - - - - Unknown error - 不明なエラー - - - QLibrary::load_sys: Cannot load %1 (%2) - QLibrary::load_sys: %1 をロードできません (%2) - - - QLibrary::unload_sys: Cannot unload %1 (%2) - QLibrary::unload_sys: %1 をアンロードできません (%2) - - - QLibrary::resolve_sys: Symbol "%1" undefined in %2 (%3) - QLibrary::resolve_sys: シンボル "%1" は %2 で定義されていません (%3) - - - - - The shared library was not found. - 共有ライブラリがみつかりません。 - - - - The file '%1' is not a valid Qt plugin. - ファイル '%1' は Qt プラグインではありません。 - - - - The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) - プラグイン '%1' はこの Qt と互換性のないライブラリを使用しています。 (デバック版とリリース版のライブラリを同時に使用することはできません) - - - - - Cannot load library %1: %2 - ライブラリ '%1' を読み込むことができません: %2 - - - - - Cannot unload library %1: %2 - ライブラリ %1 を解放することができません: %2 - - - - - Cannot resolve symbol "%1" in %2: %3 - '%2'に含まれる識別子 "%1" を解決できません: %3 - - - - QLineEdit - - - &Undo - 元に戻す(&U) - - - - &Redo - やり直す(&R) - - - - Cu&t - 切り取り(&T) - - - - &Copy - コピー(&C) - - - - &Paste - 貼り付け(&P) - - - - Delete - 削除 - - - - Select All - すべてを選択 - - - - QLocalServer - - - - %1: Name error - %1: 名前の解決に失敗 - - - - %1: Permission denied - %1: 許可されていません - - - - %1: Address in use - %1: アドレスは既に使用されています - - - - %1: Unknown error %2 - %1: 未知のエラー %2 - - - - QLocalSocket - - - - %1: Connection refused - %1: 接続が拒否されました - - - - - %1: Remote closed - %1: リモートにより接続が閉じられました - - - - - - - %1: Invalid name - %1: 無効な名前です - - - - - %1: Socket access error - %1: ソケットアクセスのエラーです - - - - - %1: Socket resource error - %1: ソケットリソースのエラーです - - - - - %1: Socket operation timed out - %1: ソケット操作がタイムアウトしました - - - - - %1: Datagram too large - %1: データグラムが大きすぎます - - - - - - %1: Connection error - %1: 接続のエラーが発生しました - - - - - %1: The socket operation is not supported - %1: そのソケット操作はサポートされていません - - - - %1: Unknown error - %1: 未知のエラーです - - - - - %1: Unknown error %2 - %1: 未知のエラー %2 - - - - QMYSQLDriver - - - Unable to open database ' - データベースをオープンできません ' - - - - Unable to connect - 接続できません - - - - Unable to begin transaction - トランザクションを開始できません - - - - Unable to commit transaction - トランザクションをコミットできません - - - - Unable to rollback transaction - トランザクションをロールバックできません - - - - QMYSQLResult - - - Unable to fetch data - データをフェッチできません - - - - Unable to execute query - クエリーを実行できません - - - - Unable to store result - 実行結果を記録できません - - - - - Unable to prepare statement - プリペアステートメントを使えません - - - - Unable to reset statement - ステートメントをリセットできません - - - - Unable to bind value - 値をバインドできません - - - - Unable to execute statement - ステートメントを実行できません - - - - - Unable to bind outvalues - 出力値をバインドできません - - - - Unable to store statement results - ステートメントの実行結果を記録できません - - - - Unable to execute next query - 次のクエリーを実行できません - - - - Unable to store next result - 次の結果を記録できません - - - - QMdiArea - - - (Untitled) - (タイトルなし) - - - - QMdiSubWindow - - - %1 - [%2] - %1 - [%2] - - - - Close - 閉じる - - - - Minimize - 最小化 - - - - Restore Down - 元に戻す - - - - &Restore - 元に戻す(&R) - - - - &Move - 移動(&M) - - - - &Size - サイズ(&S) - - - - Mi&nimize - 最小化(&N) - - - - Ma&ximize - 最大化(&X) - - - - Stay on &Top - 常に手前に表示(&T) - - - - &Close - 閉じる(&C) - - - - - [%1] - - [%1] - - - - Maximize - 最大化 - - - - Unshade - たぶん選択・非選択状態のウィンドウのことだと思うけど。fvwmなどのx11で使われている用語 - 非選択 - - - - Shade - 選択 - - - - Restore - 元に戻す - - - - Help - ヘルプ - - - - Menu - メニュー - - - - QMenu - - - - Close - 閉じる - - - - - Open - オープン - - - - - - Execute - 実行 - - - - QMenuBar - - About Qt - Qt について - - - - QMessageBox - - - Help - ヘルプ - - - - - - - OK - OK - - - <h3>About Qt</h3>%1<p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qtopia Core.</p><p>Qt is a Trolltech product. See <a href="http://qt.nokia.com/">qt.nokia.com</a> for more information.</p> - <h3>Qt について</h3>%1 -<p>QtはクロスプラットフォームのC++ アプリケーション開発ツールキットです。</p> -<p>Qt は MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, 商用のUnix派生版でソースコード互換を実現します。また、Qtopia Coreのように、内蔵デバイスでも利用可能です。</p> -<p>QtはTrolltechの商品です。詳細は<tt>http://qt.nokia.com/</tt>を参照してください。</p> - - - <p>This program uses Qt version %1.</p> - <p>このプログラムは Qt バージョン %1 を使用しています。</p> - - - <p>This program uses Qt Open Source Edition version %1.</p><p>Qt Open Source Edition is intended for the development of Open Source applications. You need a commercial Qt license for development of proprietary (closed source) applications.</p><p>Please see <a href="http://qt.nokia.com/company/model/">qt.nokia.com/company/model/</a> for an overview of Qt licensing.</p> - <p>このプログラムは Qt オープンソース版バージョン %1 を使用しています。</p> -<p>Qt オープンソース版はオープンソースのアプリケーションの開発用です。ソースコードを公開しない商用アプリケーションを開発するには商用版のライセンスが必要です。</p><p>Qtのライセンスについては<tt>http://qt.nokia.com/company/model.html</tt>を参照してください。</p> - - - - About Qt - Qt について - - - - Show Details... - 詳細を表示... - - - - Hide Details... - 詳細を隠す... - - - - <h3>About Qt</h3><p>This program uses Qt version %1.</p><p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qt for Embedded Linux and Qt for Windows CE.</p><p>Qt is available under three different licensing options designed to accommodate the needs of our various users.</p>Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 2.1 or GNU GPL version 3.0.</p><p>Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt applications (proprietary or open source) provided you can comply with the terms and conditions of the GNU LGPL version 2.1.</p><p>Qt licensed under the GNU General Public License version 3.0 is appropriate for the development of Qt applications where you wish to use such applications in combination with software subject to the terms of the GNU GPL version 3.0 or where you are otherwise willing to comply with the terms of the GNU GPL version 3.0.</p><p>Please see <a href="http://qt.nokia.com/products/licensing">qt.nokia.com/products/licensing</a> for an overview of Qt licensing.</p><p>Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).</p><p>Qt is a Nokia product. See <a href="http://qt.nokia.com/">qt.nokia.com</a> for more information.</p> - <h3>Qtについて</h3> -<p>このプログラムは Qt バージョン %1 を使用しています。</p> -<p>Qt は、クロスプラットホームのアプリケーション開発に使用される C++ のツールキットです。</p> -<p>Qt は、 MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, そして多数の Unix 系OS環境に対して、単一のソースからバイナリを生成します。 -また、 Linux および Windows CE を元とした組み込み環境にも対応しています。</p> -<p>Qt は様々なユーザの要望に応じるために、3つの異なるライセンスで提供されています。</p> -<p> -Qt 商用ライセンスは、プロプライエタリまたは商用ソフトウェアに適用できます。 -この場合は、他者とのソースコードの共有を拒否し、 GNU LGP バージョン 2.1 または GNU GPL バージョン 3.0 を許容できないソフトウェアにおいて Qt を使用できます。 -</p> -<p> -Qt GNU LGPL バージョン 2.1 ライセンスは、プロプライエタリまたはオープンソースソフトウェアに適用できます。 -この場合は、 GNU LGPL バージョン 2.1 に従う必要があります。 -</p> -<p> -Qt GNU General Public License バージョン 3.0 ライセンスは、GNU GPL バージョン 3.0 または GPL 3.0 と互換性のあるライセンスを採用しているソフトウェアに適用されます。 -この場合は、GNU GPL バージョン 3.0 に従う必要があります。 -</p> -<p> -ライセンスの詳細については、<a href="http://qt.nokia.com/products/licensing">qt.nokia.com/products/licensing</a> -を参照してください。</p> -<p>Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).</p> -<p>Qt は Nokia の製品です。詳細については<a href="http://qt.nokia.com/">qt.nokia.com</a> を参照してください。</p> -<p> -訳注: ライセンスはここにある翻訳は参考のためのものであり、オリジナルの(英語の)ものが正式なものとなります。 -</p> - - - - QMultiInputContext - - - Select IM - インプットメソッドを選択 - - - - QMultiInputContextPlugin - - - Multiple input method switcher - 複数のインプットメソッドを切り替え - - - - Multiple input method switcher that uses the context menu of the text widgets - テキストウィジェットのコンテキストメニューを使った複数のインプットメソッドの切り替えです - - - - QNativeSocketEngine - - - Unable to initialize non-blocking socket - 非ブロック型ソケットを初期化できません - - - - Unable to initialize broadcast socket - ブロードキャストソケットを初期化できません - - - - Attempt to use IPv6 socket on a platform with no IPv6 support - IPv6 がサポートされていないプラットフォームで IPv6 ソケットを使用しようとしています - - - - The remote host closed the connection - リモートホストは接続を閉じました - - - - Network operation timed out - ネットワーク操作がタイムアウトしました - - - - Out of resources - リソースが足りません - - - - Unsupported socket operation - サポートされていないソケット操作です - - - - Protocol type not supported - プロトコル型がサポートされていません - - - - Invalid socket descriptor - 無効なソケット記述子です - - - - Host unreachable - ホストへ到達できません - - - - Network unreachable - ネットワークへ到達できません - - - - Permission denied - 許可されていません - - - - Connection timed out - 接続がタイムアウトしました - - - - Connection refused - 接続を拒否されました - - - - The bound address is already in use - バインドアドレスは既に使われています - - - - The address is not available - そのアドレスは使用できません - - - - The address is protected - そのアドレスへのアクセス権がありません - - - - Datagram was too large to send - データグラムが大き過ぎて送信できませんでした - - - - Unable to send a message - メッセージを送信できません - - - - Unable to receive a message - メッセージを受信できません - - - - Unable to write - 書き込みができません - - - - Network error - ネットワークエラー - - - - Another socket is already listening on the same port - 別のソケットが同じポートで既に待ち受けています - - - - Operation on non-socket - 非ソケットに対する操作です - - - - Unknown error - 不明なエラー - - - - The proxy type is invalid for this operation - このプロキシーは、この操作に対応していません - - - - QNetworkAccessCacheBackend - - - Error opening %1 - オープンのエラー %1 - - - - QNetworkAccessDebugPipeBackend - - - Write error writing to %1: %2 - %1 への書き込み時にエラーが発生しました: %2 - - - - QNetworkAccessFileBackend - - - Request for opening non-local file %1 - 非ローカルファイル %1 をオープンするよう要求されましたが、ローカルファイルのみオープンできます - - - - Error opening %1: %2 - %1 をオープンする時にエラーが発生しました: %2 - - - - Write error writing to %1: %2 - %1 への書き込み時にエラーが発生しました: %2 - - - - Cannot open %1: Path is a directory - %1 をオープンできません。指定されたパスはディレクトリです - - - - Read error reading from %1: %2 - %1 を読み込み時にエラーが発生しました: %2 - - - - QNetworkAccessFtpBackend - - - No suitable proxy found - 適切なプロキシーがみつかりません - - - - Cannot open %1: is a directory - %1 をオープンできません。指定されたパスはディレクトリです - - - - Logging in to %1 failed: authentication required - %1 へのログインに失敗しました。認証が必要です - - - - Error while downloading %1: %2 - %1 をダウンロード中にエラーが発生しました: %2 - - - - Error while uploading %1: %2 - %1 をアップロード中にエラーが発生しました: %2 - - - - QNetworkAccessHttpBackend - - - No suitable proxy found - 適切なプロキシーがみつかりません - - - - QNetworkReply - - - Error downloading %1 - server replied: %2 - %1 をダウンロード中にエラーが発生しました。サーバの返答: %2 - - - - Protocol "%1" is unknown - プロトコル "%1" はサポートされていません - - - - QNetworkReplyImpl - - - - Operation canceled - 操作はキャンセルされました - - - - QOCIDriver - - - Unable to initialize - QOCIDriver - 初期化できません - - - - Unable to logon - ログオンできません - - - - Unable to begin transaction - トランザクションを開始できません - - - - Unable to commit transaction - トランザクションをコミットできません - - - - Unable to rollback transaction - トランザクションをロールバックできません - - - - QOCIResult - - - - - Unable to bind column for batch execute - バッチ処理用にフィールドをバインドできません - - - - Unable to execute batch statement - バッチステートメントを実行できません - - - - Unable to goto next - 次のレコードへ進めません - - - - Unable to alloc statement - ステートメントの領域を確保できません - - - - Unable to prepare statement - プリペアステートメントを使えません - - - - Unable to bind value - 値をバインドできません - - - Unable to execute select statement - SELECT ステートメントを実行できません - - - - Unable to execute statement - ステートメントを実行できません - - - - QODBCDriver - - - Unable to connect - 接続できません - - - - Unable to connect - Driver doesn't support all needed functionality - 接続できません - ドライバは全ての必要な機能をサポートしていません - - - - Unable to disable autocommit - オートコミットを無効にできません - - - - Unable to commit transaction - トランザクションをコミットできません - - - - Unable to rollback transaction - トランザクションをロールバックできません - - - - Unable to enable autocommit - オートコミットを有効にできません - - - - QODBCResult - - - - Unable to execute statement - ステートメントを実行できません - - - - Unable to fetch next - 次のレコードをフェッチできません - - - - Unable to prepare statement - プリペアステートメントを使えません - - - - Unable to bind variable - 変数をバインドできません - - - - - QODBCResult::reset: Unable to set 'SQL_CURSOR_STATIC' as statement attribute. Please check your ODBC driver configuration - QODBCResult::reset: ステートメントの属性として 'SQL_CURSOR_STATUS' を設定できません。ODBC ドライバの構成をチェックしてください - - - - - - Unable to fetch last - リストを取得できません - - - - Unable to fetch - フェッチできません - - - - Unable to fetch first - 最初のレコードをフェッチできません - - - - Unable to fetch previous - 前のレコードをフェッチできません - - - - QObject - - False - False - - - True - True - - - - Home - ホーム - - - - Operation not supported on %1 - %1 ではこの操作はサポートされていません - - - - Invalid URI: %1 - 無効なURIです: %1 - - - - Socket error on %1: %2 - %1 のソケットにおいてエラーが発生しました: %2 - - - - Remote host closed the connection prematurely on %1 - リモートホスト %1 との接続が通信の終了前に切断されました - - - - - No host name given - ホストネームが与えられていません - - - - QPPDOptionsModel - - - Name - 名前 - - - - Value - - - - - QPSQLDriver - - - Unable to connect - 接続できません - - - - Could not begin transaction - トランザクションを開始できませんでした - - - - Could not commit transaction - トランザクションをコミットできませんでした - - - - Could not rollback transaction - トランザクションをロールバックできませんでした - - - - Unable to subscribe - subscribe できません - - - - Unable to unsubscribe - unsubscribe できません - - - - QPSQLResult - - - Unable to create query - クエリーを作成できません - - - - Unable to prepare statement - プリペアステートメントを使えません - - - - QPageSetupWidget - - - Centimeters (cm) - センチメートル (cm) - - - - Millimeters (mm) - ミリメートル (mm) - - - - Inches (in) - インチ (in) - - - - Points (pt) - ポイント (pt) - - - - Form - 書式設定 - - - - Paper - 用紙 - - - - Page size: - ページサイズ: - - - - Width: - 幅: - - - - Height: - 高さ: - - - - Paper source: - 給紙装置: - - - - Orientation - 印刷方向 - - - - Portrait - 縦 (ポートレート) - - - - Landscape - 横 (ランドスケープ) - - - - Reverse landscape - 横 反転 (リバースランドスケープ) - - - - Reverse portrait - 縦 反転 (リバースポートレート) - - - - Margins - 余白 - - - - top margin - 上端余白 - - - - left margin - 左端余白 - - - - right margin - 右端余白 - - - - bottom margin - 下端余白 - - - - QPatternist::QtXmlPatterns - - - An %1-attribute with value %2 has already been declared. - 属性 %1 の値 %2 は既に宣言されています。 - - - - An %1-attribute must have a valid %2 as value, which %3 isn't. - 属性 %1 の値は %2 の型でなければなりませんが、 %3 が指定されました。 - - - - %1 is an unsupported encoding. - %1 はサポートされていないエンコーディングです。 - - - - %1 contains octets which are disallowed in the requested encoding %2. - エンコーディング %2 では許可されていないオクテットが %1 に含まれています。 - - - - The codepoint %1, occurring in %2 using encoding %3, is an invalid XML character. - %2 で使用されているエンコード %3 では、コードポイント %1 は有効な XML 表現ではありません。 - - - - Network timeout. - ネットワーク接続がタイムアウトしました。 - - - - Element %1 can't be serialized because it appears outside the document element. - エレメント %1 はシリアライズできません。このドキュメントの範囲を越えるエレメントを含んでいます。 - - - - Attribute %1 can't be serialized because it appears at the top level. - 属性 %1 はシリアライズできません。トップレベルに現れているためです。 - - - - Year %1 is invalid because it begins with %2. - %1 年はむこうです。%2 で始まっています。 - - - - Day %1 is outside the range %2..%3. - %1 日は、有効な範囲 %2..%3 を逸脱しています。 - - - - Month %1 is outside the range %2..%3. - %1 月は、有効な範囲 %2..%3 を逸脱しています。 - - - - Overflow: Can't represent date %1. - オーバーフロー: 日付 %1 を再現できません。 - - - - Day %1 is invalid for month %2. - %2 月には、%1 日は存在しません。 - - - - Time 24:%1:%2.%3 is invalid. Hour is 24, but minutes, seconds, and milliseconds are not all 0; - 24:%1:%2.%3 は無効です。24時0分0秒のみ使用できます - - - - Time %1:%2:%3.%4 is invalid. - 時刻 %1時%2分%3.%4秒は無効です。 - - - - Overflow: Date can't be represented. - オーバーフロー: 日付を再現できません。 - - - - - At least one component must be present. - 年、月、日のうちいずれかを指定しなければなりません。 - - - - At least one time component must appear after the %1-delimiter. - %1 の後には、時刻を指定しなければなりません。 - - - - No operand in an integer division, %1, can be %2. - ゼロ除算? NaN? - 整数の除算のためのオペランドが不足しています。%1 は %2 でなければなりません。 - - - - The first operand in an integer division, %1, cannot be infinity (%2). - 整数の除算における最初のオペランド %1 を認識できません (%2)。 - - - - The second operand in a division, %1, cannot be zero (%2). - 整数の除算における二つ目のオペランド %1 はゼロであってはいけまん(%2)。 - - - - %1 is not a valid value of type %2. - %1 は、%2 の型に対して有効な値ではありません。 - - - - When casting to %1 from %2, the source value cannot be %3. - %2 から %1 への型変換に際しては、値 %3 は有効な値ではありません。 - - - - Integer division (%1) by zero (%2) is undefined. - 整数の除算において %1 をゼロ (%2) で割った結果は定義されていません。 - - - - Division (%1) by zero (%2) is undefined. - 除算において %1 をゼロ (%2) で割った結果は定義されていません。 - - - - Modulus division (%1) by zero (%2) is undefined. - 剰余を求めるに際し、%1 をゼロ (%2) で除した結果は定義されていません。 - - - - - Dividing a value of type %1 by %2 (not-a-number) is not allowed. - 型 %1 を非数 %2 (NaN) で除すことはできません。 - - - - Dividing a value of type %1 by %2 or %3 (plus or minus zero) is not allowed. - 型 %1 を%2 または %3 (正または負のゼロ) で除することはできません。 - - - - Multiplication of a value of type %1 by %2 or %3 (plus or minus infinity) is not allowed. - 型 %1 を %2 または %3 (正または負のゼロ)で乗ずることはできません。 - - - - A value of type %1 cannot have an Effective Boolean Value. - 型 %1 は有効な論理型(bool)ではありません。 - - - - Effective Boolean Value cannot be calculated for a sequence containing two or more atomic values. - ?? - 論理型は、論理型以外の複数の値からなる計算によって求めることはできません。 - - - - Value %1 of type %2 exceeds maximum (%3). - 型 %2 の値 %1 は、上限 (%3) を越えています。 - - - - Value %1 of type %2 is below minimum (%3). - 型 %2 の値 %1 は、下限 (%3) を越えています。 - - - - A value of type %1 must contain an even number of digits. The value %2 does not. - 型 %1 の値は偶数個の十進数文字を必要とします。しかし、%2 はそうではありません。 - - - - %1 is not valid as a value of type %2. - 型 %2 に対して、値 %1 は有効ではありません。 - - - - Ambiguous rule match. - 曖昧なルールにマッチしました。 - - - - Operator %1 cannot be used on type %2. - 型 %2 に対して、オペレータ %1 は使用できません。 - - - - Operator %1 cannot be used on atomic values of type %2 and %3. - アトミックな型 %2 と %3 に対して、オペレータ %1 は使用できません。 - - - - The namespace URI in the name for a computed attribute cannot be %1. - computed attrib. ってなんてやくすのが適当かな。 - 結合された属性に対する名前空間のURIとして、%1 を使用することはできません。 - - - - The name for a computed attribute cannot have the namespace URI %1 with the local name %2. - 結合された属性の名前空間URI %1 は、ローカルな名前である %2 と併用できません。 - - - - Type error in cast, expected %1, received %2. - 型変換時のエラーです。望んでいた %1 ではなく、%2 になりました。 - - - - When casting to %1 or types derived from it, the source value must be of the same type, or it must be a string literal. Type %2 is not allowed. - %1 またはそれを継承している型への型変換においては、元の値の型は同じ型か、リテラルな文字列である必要があります。型 %2 は許可されていません。 - - - - No casting is possible with %1 as the target type. - 目標とする型に %1 を型変換することはできません。 - - - - It is not possible to cast from %1 to %2. - 型 %1 を型 %2 に型変換することはできません。 - - - - Casting to %1 is not possible because it is an abstract type, and can therefore never be instantiated. - 型 %1 への型変換はできません。抽象型であり、インスタンス化することができないからです。 - - - - It's not possible to cast the value %1 of type %2 to %3 - 型 %2 の値 %1 を、型 %3 に型変換することはできません - - - - Failure when casting from %1 to %2: %3 - %1 を %2 に型変換することができません: %3 - - - - A comment cannot contain %1 - コメントが %1 を含むことはできません - - - - A comment cannot end with a %1. - コメントは %1 で終了することはできません。 - - - - No comparisons can be done involving the type %1. - 型 %1 に対して比較を行うことはできません。 - - - - Operator %1 is not available between atomic values of type %2 and %3. - オペレータ %1 は、アトミックな型である %2 と %3 には適用できません。 - - - - In a namespace constructor, the value for a namespace cannot be an empty string. - 名前空間のスントラクトにおいて、空白の文字列を名前空間の値として使用することはできません。 - - - - The prefix must be a valid %1, which %2 is not. - プレフィックスは %1 でなければなりません。%2 は無効です。 - - - - The prefix %1 cannot be bound. - プレフィックス %1 はバウンドできません。 - - - - Only the prefix %1 can be bound to %2 and vice versa. - プレフィックス %1 は、%2 にのみバウンドできます。逆も同じです。 - - - - An attribute node cannot be a child of a document node. Therefore, the attribute %1 is out of place. - ドキュメントノードの子として属性ノードを指定することはできません。属性 %1 は誤った場所にあります。 - - - - Circularity detected - 循環を検出しました - - - - A library module cannot be evaluated directly. It must be imported from a main module. - ライブラリモジュールを直接評価することはできません。メインモジュールからインポートする必要があります。 - - - - No template by name %1 exists. - テンプレート名 %1 は存在しません。 - - - - A value of type %1 cannot be a predicate. A predicate must have either a numeric type or an Effective Boolean Value type. - 型 %1 は述部として使用できません。数値型か、論理型である必要があります。 - - - - A positional predicate must evaluate to a single numeric value. - positional? - 述部は評価されたとき、単一の数値になるようにしなければなりません。 - - - - The target name in a processing instruction cannot be %1 in any combination of upper and lower case. Therefore, is %2 invalid. - ターゲットとしている名前は、%1 であってはなりません。%2 は無効です。 - - - - %1 is not a valid target name in a processing instruction. It must be a %2 value, e.g. %3. - %1 はターゲットとして無効です。%2 である必要があります。例えば "%3" のようにです。 - - - - The last step in a path must contain either nodes or atomic values. It cannot be a mixture between the two. - バスの末端であるリーフは、単一のノードかアトミックな値である必要があります。複数の型の組み合わせであってはいけません。 - - - - The data of a processing instruction cannot contain the string %1 - 処理中のデータは、以下の文字列を含んでいてはなりません: %1 - - - - No namespace binding exists for the prefix %1 - プレフィックス %1 にバインドされたネームスペースがありません - - - - No namespace binding exists for the prefix %1 in %2 - %2 におけるプレフィックス %1 にバインディングされたネームスペースが存在しません - - - - - %1 is an invalid %2 - 型 %2 に対し、値 %1 は無効です - - - - The parameter %1 is passed, but no corresponding %2 exists. - パラメータ %1 を処理しました。しかし、対応する %2 が存在しません。 - - - - The parameter %1 is required, but no corresponding %2 is supplied. - パメータ %1 が必要です。しかし、対応する %2 がありません。 - - - - %1 takes at most %n argument(s). %2 is therefore invalid. - - %1 は、最大で %n 個の引数をとることができます。%2 は無効です。 - - - - - %1 requires at least %n argument(s). %2 is therefore invalid. - - %1 は、少くとも %n 個の引数を必要とします。%2 は無効です。 - - - - - The first argument to %1 cannot be of type %2. It must be a numeric type, xs:yearMonthDuration or xs:dayTimeDuration. - %1 への最初の引数は、型 %2 であってはなりません。数値型、xs:yerMonthDuration、xs:dayTimeDurationである必要があります。 - - - - The first argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. - %1 への最初の引数は、型 %2 であってはなりません。%3, %4, %5 のいずれかである必要があります。 - - - - The second argument to %1 cannot be of type %2. It must be of type %3, %4, or %5. - %1 への二つ目の引数は、型 %2 であってはなりません。%3, %4, %5 のいずれかである必要があります。 - - - - %1 is not a valid XML 1.0 character. - %1 は XML 1.0 において有効な文字ではありません。 - - - - The first argument to %1 cannot be of type %2. - %1 への最初の引数は、型 %2 であってはなりません。 - - - - The root node of the second argument to function %1 must be a document node. %2 is not a document node. - %1 への二つ目の引数のルートノードは、ドキュメントノードでなければなりません。しかし、%2 はドキュメントノードではありません。 - - - - If both values have zone offsets, they must have the same zone offset. %1 and %2 are not the same. - ゾーンオフセットってなに? xmlにそんなのあったっけ? - もし二つの値がゾーンオフセットをもつ場合、両者は同じゾーンオフセットでなければなりません。%1 と %2 は同一ではありません。 - - - - %1 was called. - %1 が呼ばれました。 - - - - %1 must be followed by %2 or %3, not at the end of the replacement string. - %1 の後には、%2 か %3 が続かなければなりません。 - - - - In the replacement string, %1 must be followed by at least one digit when not escaped. - 置換操作において、%1 には少くとも一文字以上の数値が続く必要があります(エスケープされている場合を除く)。 - - - - In the replacement string, %1 can only be used to escape itself or %2, not %3 - 置換操作において、%1 はそれ自身または %2 をエスケープする為にのみ使用できます。%3 に対しては使用できません - - - - %1 matches newline characters - %1 は改行文字(列)にマッチしました - - - - %1 and %2 match the start and end of a line. - %1 と %2 は、行の先頭と末尾にマッチしました。 - - - - Matches are case insensitive - マッチは大文字小文字を区別しません - - - - Whitespace characters are removed, except when they appear in character classes - CDATA? - 空白文字は削除されました。ただし、キャラクタークラスに属するものは除きます - - - - %1 is an invalid regular expression pattern: %2 - %1 は有効な正規表現ではありません。: %2 - - - - %1 is an invalid flag for regular expressions. Valid flags are: - %1 は正規表現において無効なフラグです。使用可能なフラグは次の通りです: - - - - If the first argument is the empty sequence or a zero-length string (no namespace), a prefix cannot be specified. Prefix %1 was specified. - もし、最初の引数が空白からなる文字列か、長さが0 (名前空間をともなわない)である場合、プレフィックスを指定することはできません。しかし、プレフィックスとして %1 が指定されています。 - - - - It will not be possible to retrieve %1. - %1 を取得することはできないかもしれません。 - - - - The default collection is undefined - デフォルトのコレクションが定義されていません - - - - %1 cannot be retrieved - %1 を取得できません - - - - The normalization form %1 is unsupported. The supported forms are %2, %3, %4, and %5, and none, i.e. the empty string (no normalization). - つまり、空白の文字です、はどうでもいいよね。 - 正規化された表現 %1 はサポートされていません。サポートされている表現は、%2, %3, %4, %5 のみです。 - - - - A zone offset must be in the range %1..%2 inclusive. %3 is out of range. - ゾーンオフセットは、%1 から %2 の範囲である必要があります(境界を含む)。%3 は範囲外です。 - - - - %1 is not a whole number of minutes. - %1 は、分を現す値ではありません。 - - - - The URI cannot have a fragment - この URI はフラグメントをもつことはできません - - - - Required cardinality is %1; got cardinality %2. - カーディナリティ %1 が必要です。%2 ではありません。 - - - - The item %1 did not match the required type %2. - アイテム %1 は、要求された型 %2 にマッチしません。 - - - - Attribute %1 cannot appear on the element %2. Only the standard attributes can appear. - エレメント %2 に属性 %1 を指定することはできません。標準の属性のみが許可されています。 - - - - Attribute %1 cannot appear on the element %2. Only %3 is allowed, and the standard attributes. - エレメント %2 に属性 %1 を指定することはできません。%3 と標準の属性のみが許可されています。 - - - - Attribute %1 cannot appear on the element %2. Allowed is %3, %4, and the standard attributes. - エレメント %2 に属性 %1 を指定することはできません。%3, %4 と標準の属性のみが許可されています。 - - - - Attribute %1 cannot appear on the element %2. Allowed is %3, and the standard attributes. - エレメント %2 に %1 は指定できません。%3 と標準の属性のみが指定できます。 - - - - XSL-T attributes on XSL-T elements must be in the null namespace, not in the XSL-T namespace which %1 is. - XSLT エレメントに対するXSLT属性は、名前空間がnullでなければなりません。%1 は使用できません。 - - - - The attribute %1 must appear on element %2. - 属性 %1 は、エレメント %2 にのみ記述できます。 - - - - The element with local name %1 does not exist in XSL-T. - ローカル名 %1 のエレメントは、XSLTに存在しません。 - - - - The variable %1 is unused - 値 %1 は使用されませんでした - - - - A construct was encountered which only is allowed in XQuery. - XQuery でのみ許可されている construct に遭遇しました。 - - - - - %1 is an unknown schema type. - %1 はサポートされていないスキーマのタイプです。 - - - - A template by name %1 has already been declared. - テンプレート名 '%1' は、既に宣言されています。 - - - - %1 is not a valid numeric literal. - %1 は数値リテラルとして無効です。 - - - - Only one %1 declaration can occur in the query prolog. - クェリーのプロローグでは、%1 は一回のみ宣言できます。 - - - - The initialization of variable %1 depends on itself - 再帰? - 値 %1 の初期化は、それ自身に依存しています - - - - No variable by name %1 exists - 変数 %1 は存在しません - - - - Version %1 is not supported. The supported XQuery version is 1.0. - バージョン %1 はサポートされていません。XQuery バージョン 1.0 のみサポートされています。 - - - - The encoding %1 is invalid. It must contain Latin characters only, must not contain whitespace, and must match the regular expression %2. - エンコーディング '%1' は無効です。ラテン文字 (空白を除く) からなるもので、正規表現 '%2' にマッチするもののみ使用できます。 - - - - No function with signature %1 is available - シグネチャ %1 をもつ関数がみつかりません - - - - - A default namespace declaration must occur before function, variable, and option declarations. - 標準の名前空間の宣言は、関数、変数、オプションの宣言の前にしなければなりません。 - - - - Namespace declarations must occur before function, variable, and option declarations. - 名前空間の宣言は、関数、変数、オプションの宣言の前にしなければなりません。 - - - - Module imports must occur before function, variable, and option declarations. - モジュールのインポートは、関数、変数、オプションの宣言の前にしなければなりません。 - - - - The keyword %1 cannot occur with any other mode name. - キーワード %1 は、他の名をともなって使用することはできません。 - - - - The value of attribute %1 must of type %2, which %3 isn't. - 属性 '%1' の値として '%3' が指定されましたが、型 '%2' でなければなりません。 - - - - It is not possible to redeclare prefix %1. - プレフィックス '%1' を再定義することはできません。 - - - - The prefix %1 can not be bound. By default, it is already bound to the namespace %2. - プレフィックス '%1' はバウンドできません。デフォルトでは、それは既に名前空間 '%2' にバウンドされています。 - - - - Prefix %1 is already declared in the prolog. - プロローグ部において、プレフィックス '%1' はすでに宣言されています。 - - - - The name of an option must have a prefix. There is no default namespace for options. - オプションの名前はプレフィックスをもたなければなりません。このオプションに対するデフォルトの名前空間は存在しません。 - - - - The Schema Import feature is not supported, and therefore %1 declarations cannot occur. - このスキーマのインポート機能は使用できません。また、'%1' 宣言も使用できません。 - - - - The target namespace of a %1 cannot be empty. - 名前空間 '%1' は、空であってはなりません。 - - - - The module import feature is not supported - モジュールインポートの機能はサポートされていません - - - - A variable by name %1 has already been declared. - 名前 '%1' の変数は、すでに宣言されています。 - - - - No value is available for the external variable by name %1. - 外部変数 '%1' の値がみつかりません。 - - - - A stylesheet function must have a prefixed name. - スタイルシート関数は、プレフィックス名を持たなければなりません。 - - - - The namespace for a user defined function cannot be empty (try the predefined prefix %1 which exists for cases like this) - ユーザ定義の関数の名前空間は、空であってはなりません。(すでに定義されているプレフィックス '%1' が使用できます) - - - - The namespace %1 is reserved; therefore user defined functions may not use it. Try the predefined prefix %2, which exists for these cases. - 名前空間 '%1' は予約済です。ユーザ定義の関数では使用することはできません。プレフィックス '%2' が使用できます。 - - - - The namespace of a user defined function in a library module must be equivalent to the module namespace. In other words, it should be %1 instead of %2 - ライブラリモジュールで使用されている名前空間は、モジュールの名前空間と同一でなければなりません。つまり、'%2' ではなく、'%1' でなければなりません - - - - A function already exists with the signature %1. - シグネチャー '%1' の関数はすでに存在しています。 - - - - No external functions are supported. All supported functions can be used directly, without first declaring them as external - 外部関数はサポートされていません。すべてのサポートされている関数は、外部宣言をすることなく、直接使用することができます - - - - An argument by name %1 has already been declared. Every argument name must be unique. - 引数名 '%1' は既に宣言されています。すべての引数名はユニークである必要があります。 - - - - When function %1 is used for matching inside a pattern, the argument must be a variable reference or a string literal. - パターン一致の内側で関数 '%1' を使用する場合、引数はリテラルな文字列を参照する値でなければなりません。 - - - - In an XSL-T pattern, the first argument to function %1 must be a string literal, when used for matching. - XSL-T パターンマッチングにおいて、関数 '%1' の最初の引数は、リテラルな文字列でなければなりません。 - - - - In an XSL-T pattern, the first argument to function %1 must be a literal or a variable reference, when used for matching. - variable ref? - XSL-T パターンマッチングにおいて、関数 '%1' への最初の引数は、リテラルか変数でなければなりません。 - - - - In an XSL-T pattern, function %1 cannot have a third argument. - XSL-T パターンにおいて、関数 '%1' は三つの引数をもつことはできません。 - - - - In an XSL-T pattern, only function %1 and %2, not %3, can be used for matching. - XSL-T パターンマッチングにおいて、関数 '%1' と '%2' のみ使用できます。'%3' は使用できません。 - - - - In an XSL-T pattern, axis %1 cannot be used, only axis %2 or %3 can. - XSL-T パターンにおいて、axis %1 は使用できません。%2 または %3 のみ使用できます。 - - - - %1 is an invalid template mode name. - %1 はテンプレートモジュール名として無効です。 - - - - The name of a variable bound in a for-expression must be different from the positional variable. Hence, the two variables named %1 collide. - for 構文において使用する変数は、場所に関する変数とは異なる必要があります。つまり、'%1' が重複して使用されています。 - - - - The Schema Validation Feature is not supported. Hence, %1-expressions may not be used. - スキーマの検証機能はサポートされていません。よって、'%1' 構文は使用できません。 - - - - None of the pragma expressions are supported. Therefore, a fallback expression must be present - pragma 構文はサポートされていません。fallback 構文でなければなりません - - - - Each name of a template parameter must be unique; %1 is duplicated. - テンプレートパラメータ名はユニークである必要があります。'%1' は重複しています。 - - - - The %1-axis is unsupported in XQuery - XQuery において、%1 axis はサポートされていません - - - - No function by name %1 is available. - 関数名 '%1' はみつかりません。 - - - - The namespace URI cannot be the empty string when binding to a prefix, %1. - プレフィックス '%1' にバインディングする名前空間の URI は、空であってはなりません。 - - - - %1 is an invalid namespace URI. - %1 は名前空間 URI として無効です。 - - - - It is not possible to bind to the prefix %1 - プレフィックス %1 にバインドすることはできません - - - - Namespace %1 can only be bound to %2 (and it is, in either case, pre-declared). - ? - 名前空間 %1 は %2 にのみバウンドできます。 - - - - Prefix %1 can only be bound to %2 (and it is, in either case, pre-declared). - プリフィックス %1 は %2 にのみバウンドできます。 - - - - Two namespace declaration attributes have the same name: %1. - 二つの名前空間宣言の属性が、同じ名前 '%1' をもっています。 - - - - The namespace URI must be a constant and cannot use enclosed expressions. - 名前空間 URI は、constantでなければなりません。式を含むことはできません。 - - - - An attribute by name %1 has already appeared on this element. - 属性名 '%1' は、すでにこのエレメントで使用されています。 - - - - A direct element constructor is not well-formed. %1 is ended with %2. - 直積的な指定のエレメントがwell formedではありません。'%1' が、'%2' で終わっています。 - - - - The name %1 does not refer to any schema type. - 名前 '%1' は、なんのスキーマタイプも参照していません。 - - - - %1 is an complex type. Casting to complex types is not possible. However, casting to atomic types such as %2 works. - '%1' は complex 型です。complex 型への型変換はできません。しかし、アトミックな型である '%2' への変換はできます。 - - - - %1 is not an atomic type. Casting is only possible to atomic types. - '%1' はアトミックな型ではありません。型変換はアトミックな型に対してのみ可能です。 - - - - %1 is not a valid name for a processing-instruction. - 処理指定において、'%1' は無効です。 - - - - - %1 is not in the in-scope attribute declarations. Note that the schema import feature is not supported. - '%1' は、スコープ属性宣言ではありません。スキーマインポート機能はサポートされていません。 - - - - The name of an extension expression must be in a namespace. - 拡張式 (extension expression) の名前は、名前空間の中になければなりません。 - - - - Element %1 is not allowed at this location. - この場所にエレメント '%1' をおくことは許されていません。 - - - - Text nodes are not allowed at this location. - この場所にテキストノードをおくことは許されていません。 - - - - Parse error: %1 - パースエラー: %1 - - - - The value of the XSL-T version attribute must be a value of type %1, which %2 isn't. - XSL-T バージョン属性の値は、'%1' 型でなければなりません。'%2' はそうではありません。 - - - - Running an XSL-T 1.0 stylesheet with a 2.0 processor. - XSL-T 1.0 のスタイルシートを 2.0 のプロセッサで使用します。 - - - - Unknown XSL-T attribute %1. - 未知の XSL-T 属性 %1 があります。 - - - - Attribute %1 and %2 are mutually exclusive. - 属性 '%1' と '%2' は排他的にのみ使用できます。 - - - - In a simplified stylesheet module, attribute %1 must be present. - simplified stylesheet モジュールにおいては、属性 '%1' を指定されなければなりません。 - - - - If element %1 has no attribute %2, it cannot have attribute %3 or %4. - エレメント '%1' が属性 '%2' を持たない場合は、属性 '%3' や '%4' を使用することはできません。 - - - - Element %1 must have at least one of the attributes %2 or %3. - エレメント '%1' は、属性 '%2' か '%3' のいずれかを持たなければなりません。 - - - - At least one mode must be specified in the %1-attribute on element %2. - エレメント '%2' において、'%1' 属性は少くとも一つのモードを指定しなければなりません。 - - - - Element %1 must come last. - エレメント %1 は最後になければなりません。 - - - - At least one %1-element must occur before %2. - %2 の前に、少くとも一つは %1 エレメントが存在しなければなりません。 - - - - Only one %1-element can appear. - %1 エレメントは一つのみ存在しなければなりません。 - - - - At least one %1-element must occur inside %2. - %2 の内側には、少くとも一つの '%1' エレメントが存在しなければなりません。 - - - - When attribute %1 is present on %2, a sequence constructor cannot be used. - %2 に属性 %1 がある場合、sequence constructor は使用できません。 - - - - Element %1 must have either a %2-attribute or a sequence constructor. - エレメント %1 には、%2 属性またはsequence constructorがなければなりません。 - - - - When a parameter is required, a default value cannot be supplied through a %1-attribute or a sequence constructor. - パラメータが要求されているときには、デフォルトの値は、%1 属性または sequence constructor によって指定されていてはなりません。 - - - - Element %1 cannot have children. - エレメント %1 は、子要素を持つことができません。 - - - - Element %1 cannot have a sequence constructor. - エレメント %1 は、sequence constructor を含むことができません。 - - - - - The attribute %1 cannot appear on %2, when it is a child of %3. - %2 が %3 の子要素であるときは、属性 %1 を使用してはなりません。 - - - - A parameter in a function cannot be declared to be a tunnel. - 関数へのパラメータは、トンネルであってはなりません。 - - - - This processor is not Schema-aware and therefore %1 cannot be used. - この処理系は、Schema-aware ではありません。よって、%1 は使用できません。 - - - - Top level stylesheet elements must be in a non-null namespace, which %1 isn't. - トップレベルのスタイルシートのエレメントは、non-nullな名前空間を持っていなければなりません。しかし、%1 はそうではありません。 - - - - The value for attribute %1 on element %2 must either be %3 or %4, not %5. - エレメント %2 の属性 %1 の値は、%3 または %4 でなければなりません。%5 は異なります。 - - - - Attribute %1 cannot have the value %2. - 属性 %1 に、値 %2 を指定することはできません。 - - - - The attribute %1 can only appear on the first %2 element. - 属性 %1 は、最初の %2 エレメントにのみ指定できます。 - - - - At least one %1 element must appear as child of %2. - %2 の子要素としては、少くとも一つは %1 エレメントがなければなりません。 - - - - empty - - - - - zero or one - ゼロまたは一つ - - - - exactly one - 厳密に一つ - - - - one or more - 一つまたは複数 - - - - zero or more - ゼロまたはそれ以上 - - - - Required type is %1, but %2 was found. - 要求されている型は %1 ですが、 %2 があります。 - - - - Promoting %1 to %2 may cause loss of precision. - %1 を %2 に変換する際に、精度のロスが生じます。 - - - - The focus is undefined. - フォーカスが定義されていません。 - - - - It's not possible to add attributes after any other kind of node. - 他の種類のノードの中では、属性を追加することはできません。 - - - - An attribute by name %1 has already been created. - 名前 '%1' の属性は、すでに生成されています。 - - - - Only the Unicode Codepoint Collation is supported(%1). %2 is unsupported. - UNICODE Codepoint Collection のみ使用できます(%1)。 %2 はサポートされていません。 - - - - QPluginLoader - - - Unknown error - 不明なエラー - - - - The plugin was not loaded. - そのプラグインはロードされていません。 - - - - QPrintDialog - - Page size: - ページサイズ: - - - Orientation: - 方向: - - - Paper source: - 給紙装置: - - - - OK - OK - - - Cancel - キャンセル - - - Portrait - - - - Landscape - - - - - locally connected - ローカルに接続しています - - - - - Aliases: %1 - エイリアス: %1 - - - - - unknown - 不明 - - - Print in color if available - 可能であればカラーで印刷 - - - Print to file - ファイルに出力: - - - Browse - 参照... - - - - Print all - すべて印刷 - - - Selection - 選択した部分を印刷 - - - - Print range - 印刷範囲 - - - Pages from - 先頭のページ: - - - to - 末尾のページ: - - - Print last page first - 末尾のページから印刷 - - - Number of copies: - 部数: - - - Paper format - 用紙の形式 - - - - A0 (841 x 1189 mm) - A0 (841 x 1189mm) - - - - A1 (594 x 841 mm) - A1 (594 x 841mm) - - - - A2 (420 x 594 mm) - A2 (420 x 594mm) - - - - A3 (297 x 420 mm) - A3 (297 x 420mm) - - - - A4 (210 x 297 mm, 8.26 x 11.7 inches) - A4 (210 x 297mm、8.26 x 11.7インチ) - - - - A5 (148 x 210 mm) - A5 (148 x 210mm) - - - - A6 (105 x 148 mm) - A6 (105 x 148mm) - - - - A7 (74 x 105 mm) - A7 (74 x 105mm) - - - - A8 (52 x 74 mm) - A8 (52 x 74mm) - - - - A9 (37 x 52 mm) - A9 (37 x 52mm) - - - - B0 (1000 x 1414 mm) - B0 (1000 x 1414mm) - - - - B1 (707 x 1000 mm) - B1 (707 x 1000mm) - - - - B2 (500 x 707 mm) - B2 (500 x 707mm) - - - - B3 (353 x 500 mm) - B3 (353 x 500mm) - - - - B4 (250 x 353 mm) - B4 (250 x 353mm) - - - - B5 (176 x 250 mm, 6.93 x 9.84 inches) - B5 (176 x 250mm、6.93 x 9.84インチ) - - - - B6 (125 x 176 mm) - B6 (125 x 176mm) - - - - B7 (88 x 125 mm) - B7 (88 x 125mm) - - - - B8 (62 x 88 mm) - B8 (62 x 88mm) - - - - B9 (44 x 62 mm) - B9 (44 x 62mm) - - - - B10 (31 x 44 mm) - B10 (31 x 44mm) - - - - C5E (163 x 229 mm) - C5E (163 x 229mm) - - - - DLE (110 x 220 mm) - DLE (110 x 220mm) - - - - Executive (7.5 x 10 inches, 191 x 254 mm) - Executive (7.5 x 10インチ、191 x 254mm) - - - - Folio (210 x 330 mm) - Folio (210 x 330mm) - - - - Ledger (432 x 279 mm) - Ledger (432 x 279mm) - - - - Legal (8.5 x 14 inches, 216 x 356 mm) - Legal (8.5 x 14インチ、216 x 356mm) - - - - Letter (8.5 x 11 inches, 216 x 279 mm) - Letter (8.5 x 11インチ、216 x 279mm) - - - - Tabloid (279 x 432 mm) - Tabloid (279 x 432mm) - - - - US Common #10 Envelope (105 x 241 mm) - US Common #10 Envelope (105 x 241mm) - - - Print dialog - プリントダイアログ - - - Size: - サイズ: - - - Printer - プリンタ - - - Properties - プロパティ - - - Printer info: - プリンタ情報: - - - Copies - 印刷部数 - - - Collate - 丁合い - - - Other - その他 - - - Double side printing - 両面印刷 - - - - - - Print - 印刷 - - - File - ファイル - - - - Print To File ... - ファイルへ出力... - - - - File %1 is not writable. -Please choose a different file name. - ファイル %1 は書き込み可能ではありません。 -別のファイル名を選んでください。 - - - - %1 already exists. -Do you want to overwrite it? - %1 はすでに存在します。 -上書きしますか? - - - - File exists - ファイルは既に存在しています - - - - <qt>Do you want to overwrite it?</qt> - <qt>ファイルを上書きしてもよろしいですか?</qt> - - - - Print selection - 選択された範囲を印刷 - - - - %1 is a directory. -Please choose a different file name. - %1 はディレクトリです。 -ファイル名を指定してください。 - - - - A0 - A0 - - - - A1 - A1 - - - - A2 - A2 - - - - A3 - A3 - - - - A4 - A4 - - - - A5 - A5 - - - - A6 - A6 - - - - A7 - A7 - - - - A8 - A8 - - - - A9 - A9 - - - - B0 - B0 - - - - B1 - B1 - - - - B2 - B2 - - - - B3 - B3 - - - - B4 - B4 - - - - B5 - B5 - - - - B6 - B6 - - - - B7 - B7 - - - - B8 - B8 - - - - B9 - B9 - - - - B10 - B10 - - - - C5E - C5E - - - - DLE - DLE - - - - Executive - Exclusive - - - - Folio - Folio - - - - Ledger - Ledger - - - - Legal - リーガルサイズ - - - - Letter - レターサイズ - - - - Tabloid - タブロイドサイズ - - - - US Common #10 Envelope - US標準#10封筒 - - - - Custom - カスタム - - - - - &Options >> - オプション(&O) >> - - - - &Print - 印刷(&P) - - - - &Options << - オプション(&O) << - - - - Print to File (PDF) - PDFファイルに出力 - - - - Print to File (Postscript) - Postscriptファイルに出力 - - - - Local file - ローカルファイル - - - - Write %1 file - ファイル %1 に書き込みました - - - - The 'From' value cannot be greater than the 'To' value. - QPrintPropertiesWidgetにFromとToがあってそれを指している - 印刷開始ページ番号は、印刷終了ページ番号より小さくなければなりません。 - - - - QPrintPreviewDialog - - - - Page Setup - ページの設定 - - - - %1% - %1% - - - - Print Preview - 印刷のプレビュー - - - - Next page - 次のページ - - - - Previous page - 前のページ - - - - First page - 最初のページ - - - - Last page - 最後のページ - - - - Fit width - 幅をあわせる - - - - Fit page - 高さをあわせる - - - - Zoom in - 拡大 - - - - Zoom out - 縮小 - - - - Portrait - - - - - Landscape - - - - - Show single page - 一枚のページを表示する - - - - Show facing pages - 見開きのページを表示する - - - - Show overview of all pages - すべてのページを表示する - - - - Print - 印刷 - - - - Page setup - ページの設定 - - - Close - 閉じる - - - - Export to PDF - PDFに出力 - - - - Export to PostScript - Postscriptに出力 - - - - QPrintPropertiesDialog - - PPD Properties - 印刷プロパティのダイアログのプロパティ - - - Save - 保存 - - - OK - OK - - - - QPrintPropertiesWidget - - - Form - 書式 - - - - Page - ページ - - - - Advanced - 高度な設定 - - - - QPrintSettingsOutput - - - Form - 書式 - - - - Copies - 印刷部数 - - - - Print range - 印刷範囲 - - - - Print all - すべて印刷 - - - - Pages from - 先頭のページ - - - - to - 末尾のページ - - - - Selection - 選択した部分を印刷 - - - - Output Settings - 出力設定 - - - - Copies: - 印刷部数: - - - - Collate - 丁合い - - - - Reverse - 逆順 - - - - Options - オプション - - - - Color Mode - - - - - Color - カラー - - - - Grayscale - グレースケール - - - - Duplex Printing - 両面印刷 - - - - None - なし - - - - Long side - 長辺綴じ - - - - Short side - 短辺綴じ - - - - QPrintWidget - - - Form - 書式 - - - - Printer - プリンタ - - - - &Name: - 名前(&N): - - - - P&roperties - プロパティ(&r) - - - - Location: - 設置場所: - - - - Preview - プレビュー - - - - Type: - タイプ: - - - - Output &file: - 出力ファイル名(&f): - - - - ... - ... - - - - QProcess - - - - Could not open input redirection for reading - 標準入力リダイレクトを読み込みのためにオープンすることができません - - - - - Could not open output redirection for writing - 標準出力リダイレクトを書き込みのためにオープンすることができません - - - - Resource error (fork failure): %1 - リソースエラー (fork に失敗しました): %1 - - - - - - - - - - - - Process operation timed out - プロセス処理がタイムアウトしました - - - - - - - Error reading from process - プロセスからの読み込みにおいてエラーが発生しました - - - - - - Error writing to process - プロセスへの書き込みにおいてエラーが発生しました - - - - Process crashed - プロセスがクラッシュしました - - - - No program defined - プログラム名が指定されていません - - - - Process failed to start - プロセスのスタートに失敗しました - - - - QProgressDialog - - - Cancel - キャンセル - - - - QPushButton - - - Open - オープン - - - - QRadioButton - - - Check - 選択 - - - - QRegExp - - - no error occurred - エラーは発生しませんでした - - - - disabled feature used - 無効な機能が使用されました - - - - bad char class syntax - 不正なcharクラス構文 - - - - bad lookahead syntax - 不正なlookahead構文 - - - - bad repetition syntax - 不正なrepetition構文 - - - - invalid octal value - 無効な8進値 - - - - missing left delim - 左の区切り文字がありません - - - - unexpected end - 予期しない末尾です - - - - met internal limit - 内部制限を満たしました - - - - QSQLite2Driver - - - Error to open database - データベースのオープンでエラーが発生しました - - - - Unable to begin transaction - トランザクションを開始できません - - - - Unable to commit transaction - トランザクションをコミットできません - - - - Unable to rollback Transaction - トランザクションをロールバックできません - - - - QSQLite2Result - - - Unable to fetch results - 実行結果をフェッチできません - - - - Unable to execute statement - ステートメントを実行できません - - - - QSQLiteDriver - - - Error opening database - データベースのオープンでエラーが発生しました - - - - Error closing database - データベースのクローズでエラーが発生しました - - - - Unable to begin transaction - トランザクションを開始できません - - - - Unable to commit transaction - トランザクションをコミットできません - - - Unable to roll back transaction - トランザクションをロールバックできません - - - - Unable to rollback transaction - トランザクションをロールバックできません - - - - QSQLiteResult - - - - - Unable to fetch row - レコードをフェッチできません - - - - Unable to execute statement - ステートメントを実行できません - - - - Unable to reset statement - ステートメントをリセットできません - - - - Unable to bind parameters - パラメータをバインドできません - - - - Parameter count mismatch - パラメータの数が合っていません - - - - No query - クェリーがありません - - - - QScrollBar - - - Scroll here - ここにスクロール - - - - Left edge - 左端 - - - - Top - 上端 - - - - Right edge - 右端 - - - - Bottom - 下端 - - - - Page left - 1ページ左へスクロール - - - - - Page up - 1ページ戻る - - - - Page right - 1ページ右へスクロール - - - - - Page down - 1ページ進む - - - - Scroll left - 左へスクロール - - - - Scroll up - 上へスクロール - - - - Scroll right - 右へスクロール - - - - Scroll down - 下へスクロール - - - - Line up - 1行上へ - - - - Position - 位置 - - - - Line down - 1行下へ - - - - QSharedMemory - - - %1: unable to set key on lock - 共有メモリ関連 - %1: ロックするためのキーを設定できません - - - - %1: create size is less then 0 - %1: 0より小さいサイズの共有メモリは作成できません - - - - - %1: unable to lock - %1: ロックできません - - - - %1: unable to unlock - %1: アンロックできません - - - - - %1: permission denied - %1: 許可されていません - - - - - %1: already exists - %1: 既に存在します - - - - - %1: doesn't exists - %1: 存在しません - - - - - %1: out of resources - %1: リソース不足です - - - - - %1: unknown error %2 - %1: 未知のエラー %2 - - - - %1: key is empty - %1: キーが空です - - - - %1: unix key file doesn't exists - ? - %1: UNIX key file が存在しません - - - - %1: ftok failed - %1: fork に失敗しました - - - - - %1: unable to make key - %1: キーを作成できません - - - - %1: system-imposed size restrictions - EINVAL - %1: 指定されたサイズはシステムにより拒否されました - - - - %1: not attached - %1: アタッチしていません - - - - %1: invalid size - %1: 無効なサイズです - - - - %1: key error - safekey.isEmpty()==true - %1: キーかありません - - - - %1: size query failed - %1: サイズのクェリーに失敗しました - - - - QShortcut - - - Space - Space - - - - Esc - Esc - - - - Tab - Tab - - - - Backtab - Backtab - - - - Backspace - Backspace - - - - Return - Return - - - - Enter - Enter - - - - Ins - Ins - - - - Del - Del - - - - Pause - Pause - - - - Print - Print - - - - SysReq - SysReq - - - - Home - Home - - - - End - End - - - - Left - - - - - Up - - - - - Right - - - - - Down - - - - - PgUp - PgUp - - - - PgDown - PgDown - - - - CapsLock - CapsLock - - - - NumLock - NumLock - - - - ScrollLock - ScrollLock - - - - Menu - メニュー - - - - Help - ヘルプ - - - - Back - 戻る - - - - Forward - 進む - - - - Stop - 停止 - - - - Refresh - 更新間隔 - - - - Volume Down - 音量を下げる - - - - Volume Mute - 消音 - - - - Volume Up - 音量を上げる - - - - Bass Boost - 低音ブースト - - - - Bass Up - 低音を上げる - - - - Bass Down - 低音を下げる - - - - Treble Up - 高音を上げる - - - - Treble Down - 高音を下げる - - - - Media Play - メディアの再生 - - - - Media Stop - メディアの停止 - - - - Media Previous - 前のメディア - - - - Media Next - 次のメディア - - - - Media Record - メディアの録音 - - - - Home Page - ホームページ - - - - Favorites - お気に入り - - - - Search - 検索 - - - - Standby - スタンバイ - - - - Open URL - URLを開く - - - - Launch Mail - メールの起動 - - - - Launch Media - メディアの起動 - - - - Launch (0) - (0)の起動 - - - - Launch (1) - (1)の起動 - - - - Launch (2) - (2)の起動 - - - - Launch (3) - (3)の起動 - - - - Launch (4) - (4)の起動 - - - - Launch (5) - (5)の起動 - - - - Launch (6) - (6)の起動 - - - - Launch (7) - (7)の起動 - - - - Launch (8) - (8)の起動 - - - - Launch (9) - (9)の起動 - - - - Launch (A) - (A)の起動 - - - - Launch (B) - (B)の起動 - - - - Launch (C) - (C)の起動 - - - - Launch (D) - (D)の起動 - - - - Launch (E) - (E)の起動 - - - - Launch (F) - (F)の起動 - - - - Print Screen - Print Screen - - - - Page Up - Page Up - - - - Page Down - Page Down - - - - Caps Lock - Caps Lock - - - - Num Lock - Num Lock - - - - Number Lock - Number Lock - - - - Scroll Lock - Scroll Lock - - - - Insert - Insert - - - - Delete - Delete - - - - Escape - Escape - - - - System Request - System Request - - - - Select - Select - - - - Yes - はい - - - - No - いいえ - - - - Context1 - Context1 - - - - Context2 - Context2 - - - - Context3 - Context3 - - - - Context4 - Context4 - - - - Call - Call - - - - Hangup - Hangup - - - - Flip - Flip - - - - - Ctrl - Ctrl - - - - - Shift - Shift - - - - - Alt - Alt - - - - - Meta - Meta - - - - + - + - - - - F%1 - F%1 - - - - QSlider - - - Page left - 1ページ左へスクロール - - - - Page up - 1ページ戻る - - - - Position - 位置 - - - - Page right - 1ページ右へスクロール - - - - Page down - 1ページ進む - - - - QSocks5SocketEngine - - - Connection to proxy refused - プロキシーへの接続が拒否されました - - - - Connection to proxy closed prematurely - プロキシーの接続が通信の終了前に切断されました - - - - Proxy host not found - プロキシーホストが見つかりません - - - - Connection to proxy timed out - プロキシーとの接続がタイムアウトしました - - - - Proxy authentication failed - プロキシーの認証に失敗しました - - - - Proxy authentication failed: %1 - プロキシーの認証に失敗しました: %1 - - - - SOCKS version 5 protocol error - SOCKS バージョン 5 プロトコルのエラーです - - - - General SOCKSv5 server failure - SOCKS バージョン 5 サーバのエラーです - - - - Connection not allowed by SOCKSv5 server - SOCKSv5 サーバより接続を拒否されました - - - - TTL expired - 実際はホップ数です - 有効期限(TTL)がきれました - - - - SOCKSv5 command not supported - この SOCKSv5 コマンドはサポートされていません - - - - Address type not supported - 指定されたアドレスタイプはサポートされていません - - - - Unknown SOCKSv5 proxy error code 0x%1 - 未知の SOCKSv5 プロキシーエラーです: 0x%1 - - - Socks5 timeout error connecting to socks server - Socks5 はソックスサーバ接続しようとしてタイムアウトになりました - - - - Network operation timed out - ネットワーク操作がタイムアウトしました - - - - QSpinBox - - - More - 増やす - - - - Less - 減らす - - - - QSql - - - Delete - 削除 - - - - Delete this record? - このレコードを削除しますか? - - - - - - Yes - はい - - - - - - No - いいえ - - - - Insert - 挿入 - - - - Update - アップデート - - - - Save edits? - 編集内容を保存しますか? - - - - Cancel - キャンセル - - - - Confirm - 確認 - - - - Cancel your edits? - 編集をキャンセルしますか? - - - - QSslSocket - - - Error creating SSL context (%1) - SSL content の作成に失敗しました (%1) - - - - Invalid or empty cipher list (%1) - 暗号方式リストが無効または空です (%1) - - - - Cannot provide a certificate with no key, %1 - 鍵が指定されていないため、証明書を扱えません。 %1 - - - - Error loading local certificate, %1 - ローカルの証明書をロードできません。 %1 - - - - Error loading private key, %1 - プライベートキーをロードできません。 %1 - - - - Private key does not certificate public key, %1 - プライベートキーが、パブリックキーの証明書となっていません %1 - - - - Error creating SSL session, %1 - SSL セッションを作成できません。 %1 - - - - Error creating SSL session: %1 - SSL セッションを作成できません: %1 - - - - Unable to write data: %1 - 書き込みできません: %1 - - - - Error while reading: %1 - 読み込み時にエラーが発生しました: %1 - - - - Error during SSL handshake: %1 - SSL ハンドシェーク時にエラーが発生しました: %1 - - - - QSystemSemaphore - - - - %1: out of resources - %1: リソース不足です - - - - - %1: permission denied - %1: 許可されていません - - - - %1: already exists - %1: 既に存在します - - - - %1: does not exist - %1: 存在しません - - - - - %1: unknown error %2 - %1: 未知のエラーです %2 - - - - QTDSDriver - - - Unable to open connection - 接続をオープンできません - - - - Unable to use database - データベースを使用できません - - - - QTabBar - - - Scroll Left - 左へスクロール - - - - Scroll Right - 右へスクロール - - - - QTcpServer - - Socket operation unsupported - ソケット操作はサポートされていません - - - - Operation on socket is not supported - このソケットへの操作はサポートされていません - - - - QTextControl - - - &Undo - 元に戻す(&U) - - - - &Redo - やり直す(&R) - - - - Cu&t - 切り取り(&T) - - - - &Copy - コピー(&C) - - - - Copy &Link Location - リンクの場所をコピー(&L) - - - - &Paste - 貼り付け(&P) - - - - Delete - 削除 - - - - Select All - すべてを選択 - - - - QToolButton - - - - Press - 押す - - - - - Open - オープン - - - - QUdpSocket - - - This platform does not support IPv6 - このプラットフォームは IPv6 をサポートしていません - - - - QUndoGroup - - - Undo - 元に戻す - - - - Redo - やり直す - - - - QUndoModel - - - <empty> - <空> - - - - QUndoStack - - - Undo - 元に戻す - - - - Redo - やり直す - - - - QUnicodeControlCharacterMenu - - - LRM Left-to-right mark - LRM (左横書き指定) - - - - RLM Right-to-left mark - RLM (右横書き指定) - - - - ZWJ Zero width joiner - ZWJ (幅のない接続文字) - - - - ZWNJ Zero width non-joiner - ZWNJ (幅のない非接続文字) - - - - ZWSP Zero width space - ZWSP (幅の無い空白) - - - - LRE Start of left-to-right embedding - LRE (左横書き開始指定) - - - - RLE Start of right-to-left embedding - RLE (右横書き開始指定) - - - - LRO Start of left-to-right override - LRO (左横書き上書き開始指定) - - - - RLO Start of right-to-left override - RLO (右横書き上書き開始指定) - - - - PDF Pop directional formatting - PDF (方向上書きの終了指定) - - - - Insert Unicode control character - Unicode制御文字を挿入 - - - - QWebFrame - - - Request cancelled - リクエストはキャンセルされました - - - - Request blocked - リクエストはブロックされました - - - - Cannot show URL - URL を表示できません - - - - Frame load interruped by policy change - ポリシーの変更により、フレームのロードが中断しました - - - - Cannot show mimetype - MIME Type を表示できません - - - - File does not exist - ファイルが存在しません - - - - QWebPage - - - Bad HTTP request - 誤った HTTP のリクエストです - - - - Submit - default label for Submit buttons in forms on web pages - 送信 - - - - Submit - Submit (input element) alt text for <input> elements with no alt, title, or value - 送信 - - - - Reset - default label for Reset buttons in forms on web pages - リセット - - - - This is a searchable index. Enter search keywords: - text that appears at the start of nearly-obsolete web pages in the form of a 'searchable index' - 検索が可能です。検索のためのキーワードを入力してください: - - - - Choose File - title for file button used in HTML forms - ファイルを選ぶ - - - - No file selected - text to display in file button used in HTML forms when no file is selected - ファイルが選択されていません - - - - Open in New Window - Open in New Window context menu item - 新しいウィンドウで開く - - - - Save Link... - Download Linked File context menu item - リンク先を保存... - - - - Copy Link - Copy Link context menu item - リンク先をコピー - - - - Open Image - Open Image in New Window context menu item - イメージを開く - - - - Save Image - Download Image context menu item - 画像を保存 - - - - Copy Image - Copy Link context menu item - 画像をコピー - - - - Open Frame - Open Frame in New Window context menu item - フレームを新しいウィンドウで開く - - - - Copy - Copy context menu item - コピー - - - - Go Back - Back context menu item - 戻る - - - - Go Forward - Forward context menu item - 進む - - - - Stop - Stop context menu item - 停止 - - - - Reload - Reload context menu item - リロード - - - - Cut - Cut context menu item - 切り取り - - - - Paste - Paste context menu item - 貼り付け - - - - No Guesses Found - No Guesses Found context menu item - 推測候補はありません - - - - Ignore - Ignore Spelling context menu item - 無視 - - - - Add To Dictionary - Learn Spelling context menu item - 辞書に追加 - - - - Search The Web - Search The Web context menu item - Web を検索 - - - - Look Up In Dictionary - Look Up in Dictionary context menu item - 辞書から探す - - - - Open Link - Open Link context menu item - リンクを開く - - - - Ignore - Ignore Grammar context menu item - 無視 - - - - Spelling - Spelling and Grammar context sub-menu item - スペル - - - - Show Spelling and Grammar - menu item title - スペルと文法を表示 - - - - Hide Spelling and Grammar - menu item title - スペルと文法を隠す - - - - Check Spelling - Check spelling context menu item - スペルをチェックする - - - - Check Spelling While Typing - Check spelling while typing context menu item - 入力中にスペルをチェックする - - - - Check Grammar With Spelling - Check grammar with spelling context menu item - スペルおよび文法をチェックする - - - - Fonts - Font context sub-menu item - フォント - - - - Bold - Bold context menu item - 太字 - - - - Italic - Italic context menu item - イタリック - - - - Underline - Underline context menu item - 下線 - - - - Outline - Outline context menu item - アウトライン - - - - Direction - Writing direction context sub-menu item - 方向 - - - - Text Direction - Text direction context sub-menu item - テキストの方向 - - - - Default - Default writing direction context menu item - デフォルト - - - - LTR - Left to Right context menu item - 左横書き - - - - RTL - Right to Left context menu item - 右横書き - - - - Inspect - Inspect Element context menu item - ? - 検査 - - - - No recent searches - Label for only item in menu that appears when clicking on the search field image, when no searches have been performed - 検索の履歴はありません - - - - Recent searches - label for first item in the menu that appears when clicking on the search field image, used as embedded menu title - 検索の履歴 - - - - Clear recent searches - menu item in Recent Searches menu that empties menu's contents - 検索の履歴をクリア - - - - Unknown - Unknown filesize FTP directory listing item - 不明 - - - - %1 (%2x%3 pixels) - Title string for images - %1 (%2x%3 ピクセル) - - - - Web Inspector - %2 - Web の検査 - %2 - - - - Scroll here - ここにスクロール - - - - Left edge - 左端 - - - - Top - 上端 - - - - Right edge - 右端 - - - - Bottom - 下端 - - - - Page left - 1ページ左へスクロール - - - - Page up - 1ページ戻る - - - - Page right - 1ページ右へスクロール - - - - Page down - 1ページ進む - - - - Scroll left - 左へスクロール - - - - Scroll up - 上へスクロール - - - - Scroll right - 右へスクロール - - - - Scroll down - 下へスクロール - - - - %n file(s) - number of chosen file - - %n 個のファイル - - - - - JavaScript Alert - %1 - JavaScript アラート - %1 - - - - JavaScript Confirm - %1 - JavaScript 確認 - %1 - - - - JavaScript Prompt - %1 - JavaScript 質問 - %1 - - - - Move the cursor to the next character - 次の文字へカーソルを移動 - - - - Move the cursor to the previous character - 前の文字にカーソルを移動 - - - - Move the cursor to the next word - 次の単語にカーソルを移動 - - - - Move the cursor to the previous word - 前の単語にカーソルを移動 - - - - Move the cursor to the next line - 次の行にカーソルを移動 - - - - Move the cursor to the previous line - 前の行にカーソルを移動 - - - - Move the cursor to the start of the line - 文なのか行なのか - 文頭にカーソルを移動 - - - - Move the cursor to the end of the line - 文末にカーソルを移動 - - - - Move the cursor to the start of the block - ブロックの先頭にカーソルを移動 - - - - Move the cursor to the end of the block - ブロックの末尾にカーソルを移動 - - - - Move the cursor to the start of the document - 文章の先頭にカーソルを移動 - - - - Move the cursor to the end of the document - 文章の末尾にカーソルを移動 - - - - Select all - すべてを選択 - - - - Select to the next character - 次の文字を選択 - - - - Select to the previous character - 前の文字を選択 - - - - Select to the next word - 次の単語を選択 - - - - Select to the previous word - 前の単語を選択 - - - - Select to the next line - 次の行を選択 - - - - Select to the previous line - 前の行を選択 - - - - Select to the start of the line - 文頭から選択 - - - - Select to the end of the line - 文末まで選択 - - - - Select to the start of the block - ブロックの先頭から選択 - - - - Select to the end of the block - ブロックの末尾まで選択 - - - - Select to the start of the document - ドキュメントの先頭から選択 - - - - Select to the end of the document - ドキュメントの末尾まで選択 - - - - Delete to the start of the word - 単語の先頭まで削除 - - - - Delete to the end of the word - 単語の末尾まで削除 - - - - Insert a new paragraph - 新しい段落を挿入 - - - - Insert a new line - 新しい行を挿入 - - - - QWhatsThisAction - - - What's This? - ヒント? - - - - QWidget - - - * - * - - - - QWizard - - - Go Back - 戻る - - - - Continue - 続き - - - - Commit - 適用 - - - - Done - 終了 - - - - Help - ヘルプ - - - - < &Back - < 戻る(&B) - - - - &Finish - 完了(&F) - - - - Cancel - キャンセル - - - - &Help - ヘルプ(&H) - - - - &Next - 次へ(&N) - - - - &Next > - 次へ(&N) > - - - - QWorkspace - - - &Restore - 元に戻す(&R) - - - - &Move - 移動(&M) - - - - &Size - サイズを変更(&S) - - - - Mi&nimize - 最小化(&N) - - - - Ma&ximize - 最大化(&X) - - - - &Close - 閉じる(&C) - - - - Stay on &Top - 常に手前に表示(&T) - - - - - Sh&ade - シェード(&A) - - - - - %1 - [%2] - %1 - [%2] - - - - Minimize - 最小化 - - - - Restore Down - 元に戻す - - - - Close - 閉じる - - - - &Unshade - シェードを解除(&U) - - - - QXml - - - no error occurred - エラーは発生しませんでした - - - - error triggered by consumer - 消費者によってエラーが誘発されました - - - - unexpected end of file - 予期せぬファイルの終りです - - - - more than one document type definition - ドキュメントタイプの定義が複数あります - - - - error occurred while parsing element - 要素の解析中にエラーが発生しました - - - - tag mismatch - タグが一致しません - - - - error occurred while parsing content - コンテンツの解析中にエラーが発生しました - - - - unexpected character - 予期しない文字です - - - - invalid name for processing instruction - 処理の指示に無効な名前です - - - - version expected while reading the XML declaration - XML宣言を読み込むにはバージョンが必要です - - - - wrong value for standalone declaration - スタンドアロン宣言として正しくない値です - - - - encoding declaration or standalone declaration expected while reading the XML declaration - XML宣言を読み込むにはエンコーディング宣言かスタンドアローン宣言が必要です - - - - standalone declaration expected while reading the XML declaration - XML宣言を読み込むにはスタンドアローン宣言が必要です - - - - error occurred while parsing document type definition - ドキュメントタイプの定義を解析中にエラーが発生しました - - - - letter is expected - 文字が必要です - - - - error occurred while parsing comment - コメントの解析中にエラーが発生しました - - - - error occurred while parsing reference - 参照の解析中にエラーが発生しました - - - - internal general entity reference not allowed in DTD - 内部一般エンティティ参照はDTDで許されていません - - - - external parsed general entity reference not allowed in attribute value - 解析された外部一般エンティティ参照は属性値で許されていません - - - - external parsed general entity reference not allowed in DTD - 解析された外部一般エンティティ参照はDTDで許されていません - - - - unparsed entity reference in wrong context - 不正な文脈で解析されないエンティティ参照です - - - - recursive entities - 再帰的エンティティ - - - - error in the text declaration of an external entity - 外部エンティティのテキスト宣言にエラーがあります - - - - QXmlStream - - - - Extra content at end of document. - ドキュメントの末尾に余計なものがついています。 - - - - Invalid entity value. - エンティティの値が無効です。 - - - - Invalid XML character. - 無効な XML 文字です。 - - - - Sequence ']]>' not allowed in content. - このコンテキストでは、']]>' は許可されていません。 - - - - - Encountered incorrectly encoded content. - 正しくないエンコードの文脈に遭遇しました。 - - - - Namespace prefix '%1' not declared - 名前空間のブリフィックス '%1' は宣言されていません - - - - Attribute redefined. - 属性が再度指定されています。 - - - - Unexpected character '%1' in public id literal. - DTD宣言の部分 - 公開 ID 指定に使用できない文字 '%1' が使用されています。 - - - - Invalid XML version string. - 無効な XML バージョン指定です。 - - - - Unsupported XML version. - この XML のバージョンはサポートされていません。 - - - - The standalone pseudo attribute must appear after the encoding. - &ddd; は、エンコーディングを指定していないと使えないということかな。utf8だとおもうけど。 - 仮想属性指定は、エンコーディング指定の後にのみ使用できます。 - - - - %1 is an invalid encoding name. - %1 は無効なエンコーディングの名前です。 - - - - Encoding %1 is unsupported - エンコーディング '%1' はサポートされていません - - - - Standalone accepts only yes or no. - standalone の指定は yes または no のみ指定できます。 - - - - Invalid attribute in XML declaration. - XML 宣言に無効な属性がついています。 - - - - Premature end of document. - ドキュメントが途中で終わっています。 - - - - Invalid document. - 無効なドキュメントです。 - - - - Expected - 予期していた表現は、 - - - - , but got ' - ですが、取得した表現は以下のものでした ' - - - - Unexpected ' - 予期していなかった表現 ' - - - - Expected character data. - 予期していた文字列。 - - - - Recursive entity detected. - 再帰しているエンティティを発見しました。 - - - - Start tag expected. - 開始タグをよきしていましたが、みつかりません。 - - - - NDATA in parameter entity declaration. - パラメータエンティティの宣言において NDATA があります。 - - - - XML declaration not at start of document. - XML 宣言がドキュメントの先頭にありません。 - - - - %1 is an invalid processing instruction name. - XMLにそんなのあったっけ? - %1 は無効な処理指定の名前です。 - - - - Invalid processing instruction name. - 無効な処理命令です。 - - - - %1 is an invalid PUBLIC identifier. - %1 は、公開 (PUBLIC) 識別子として無効です。 - - - - - - - Illegal namespace declaration. - 無効な名前空間の指定です。 - - - - Invalid XML name. - 無効な XML 名です。 - - - - Opening and ending tag mismatch. - 開始タグと、終了タグがマッチしません。 - - - - Reference to unparsed entity '%1'. - まだパースしていないエンティティ '%1' を参照しています。 - - - - - - Entity '%1' not declared. - エンティティ '%1' は宣言されていません。 - - - - Reference to external entity '%1' in attribute value. - 属性値として、外部エンティティ '%1' を再度指定しています。 - - - - Invalid character reference. - 無効な文字への参照です。 - - - diff --git a/translations/translations.pri b/translations/translations.pri index 2edc89a..37295ff 100644 --- a/translations/translations.pri +++ b/translations/translations.pri @@ -13,7 +13,7 @@ LUPDATE += -locations relative -no-ui-lines ###### Qt Libraries -QT_TS = ar cs da de es fr he hu ja_JP pl pt ru sk sl sv uk zh_CN zh_TW +QT_TS = ar cs da de es fr he hu ja pl pt ru sk sl sv uk zh_CN zh_TW ts-qt.commands = (cd $$QT_SOURCE_TREE/src && $$LUPDATE \ -I../include -I../include/Qt \ -- cgit v0.12 From bf966d125d5c5fa7719ae9f9110db8742d5a4c85 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 7 Jun 2010 17:19:31 +0200 Subject: add check-ts target to auto-asses translation completeness --- translations/check-ts.pl | 85 +++++++++++++++++++++++++++++++++++++++++++ translations/check-ts.xq | 3 ++ translations/translations.pri | 5 ++- 3 files changed, 92 insertions(+), 1 deletion(-) create mode 100755 translations/check-ts.pl create mode 100644 translations/check-ts.xq diff --git a/translations/check-ts.pl b/translations/check-ts.pl new file mode 100755 index 0000000..7b46bf5 --- /dev/null +++ b/translations/check-ts.pl @@ -0,0 +1,85 @@ +#! /usr/bin/perl -w + +use strict; + +# "qt" must come last to avoid prefix matching. +my @groups = ("assistant", "designer", "linguist", "qt_help", "qtconfig", "qvfb", "qt"); + +my %scores = (); +my %langs = (); + +my $files = join("\n", <*.ts>); +my $res = `xmlpatterns -param files=\"$files\" check-ts.xq`; +for my $i (split(/ /, $res)) { + $i =~ /^([^.]+).ts:(.*)$/; + my ($fn, $pc) = ($1, $2); + for my $g (@groups) { + if ($fn =~ /^${g}_(.*)$/) { + my $lang = $1; + $scores{$g}{$lang} = $pc; + $langs{$lang} = 1; + last; + } + } +} + +# now we move "qt" to the front, as it should be the first column. +pop @groups; +unshift @groups, "qt"; + +my $code = ""; + +print "L10n "; +for my $g (@groups) { + print " ".$g." "; +} +print "\n"; +for my $lang (sort(keys(%langs))) { + printf "%-5s ", $lang; + my $qt = 1; + my $rest = 1; + my $line = ""; + for my $g (@groups) { + my $pc = $scores{$g}{$lang}; + $pc = "0" if !defined($pc); + if (int($pc) < 98 or !$qt) { + if ($g eq "qt") { + $qt = 0; + } else { + $rest = 0; + } + } else { + $line .= " ".$g."_".$lang.".ts"; + } + printf " %-".(length($g)+1)."s", $pc; + } + if ($qt) { + $code .= " \\\n ".$line; + if (!$rest) { + print " (partial)"; + } + } else { + print " (excluded)"; + } + print "\n"; +} + +my $fn = "translations.pro"; +my $nfn = $fn."new"; +open IN, $fn or die; +open OUT, ">".$nfn or die; +while (1) { + $_ = ; + last if (/^TRANSLATIONS /); + print OUT $_; +} +while ($_ =~ /\\\n$/) { + $_ = ; +} +print OUT "TRANSLATIONS =".$code."\n"; +while () { + print OUT $_; +} +close OUT; +close IN; +rename $nfn, $fn; diff --git a/translations/check-ts.xq b/translations/check-ts.xq new file mode 100644 index 0000000..2d6404c --- /dev/null +++ b/translations/check-ts.xq @@ -0,0 +1,3 @@ +for $file in tokenize($files, codepoints-to-string(10)) + let $fresh := doc($file)/TS/context/message[not (translation/@type = 'obsolete')] + return concat($file, ":", count($fresh/translation[not (@type = 'unfinished')]) * 100 idiv count($fresh)) diff --git a/translations/translations.pri b/translations/translations.pri index 37295ff..9ab72fc 100644 --- a/translations/translations.pri +++ b/translations/translations.pri @@ -73,5 +73,8 @@ ts-qvfb.depends = sub-tools ts.depends = ts-qt ts-designer ts-linguist ts-assistant ts-qtconfig ts-qvfb +check-ts.commands = (cd $$PWD && perl check-ts.pl) +check-ts.depends = ts + QMAKE_EXTRA_TARGETS += ts-qt ts-designer ts-linguist ts-assistant ts-qtconfig ts-qvfb \ - ts + ts check-ts -- cgit v0.12 From d0a27b157c6a5d3cf4b75c6b1b71de399733f553 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Fri, 4 Jun 2010 10:28:11 +0200 Subject: Fixed GestureOverride event delivery in GraphicsView. GestureOverride event was not respected when delivering to items in GraphicsView. Task-number: QTBUG-10745 Reviewed-by: Thomas Zander --- src/gui/graphicsview/qgraphicsscene.cpp | 9 ++++- tests/auto/gestures/tst_gestures.cpp | 66 +++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 1 deletion(-) diff --git a/src/gui/graphicsview/qgraphicsscene.cpp b/src/gui/graphicsview/qgraphicsscene.cpp index 22c3f92..53a24a8 100644 --- a/src/gui/graphicsview/qgraphicsscene.cpp +++ b/src/gui/graphicsview/qgraphicsscene.cpp @@ -6088,8 +6088,15 @@ void QGraphicsScenePrivate::gestureEventHandler(QGestureEvent *event) if (ev.isAccepted() || ev.isAccepted(g)) { conflictedGestures.remove(g); // mark the item as a gesture target - if (item) + if (item) { gestureTargets.insert(g, item.data()); + QHash >::iterator it, e; + it = cachedItemGestures.begin(); + e = cachedItemGestures.end(); + for(; it != e; ++it) + it.value().remove(g); + cachedItemGestures[item.data()].insert(g); + } DEBUG() << "QGraphicsScenePrivate::gestureEventHandler:" << "override was accepted:" << g << item.data(); diff --git a/tests/auto/gestures/tst_gestures.cpp b/tests/auto/gestures/tst_gestures.cpp index 4a9f1d1..644a9b3 100644 --- a/tests/auto/gestures/tst_gestures.cpp +++ b/tests/auto/gestures/tst_gestures.cpp @@ -333,6 +333,7 @@ private slots: void gestureOverChild(); void multipleWidgetOnlyGestureInTree(); void conflictingGestures(); + void conflictingGesturesInGraphicsView(); void finishedWithoutStarted(); void unknownGesture(); void graphicsItemGesture(); @@ -2069,5 +2070,70 @@ void tst_Gestures::testQGestureRecognizerCleanup() delete w; } +void tst_Gestures::conflictingGesturesInGraphicsView() +{ + QGraphicsScene scene; + GraphicsView view(&scene); + view.setWindowFlags(Qt::X11BypassWindowManagerHint); + + GestureItem *item1 = new GestureItem("item1"); + item1->grabGesture(CustomGesture::GestureType); + item1->size = QRectF(0, 0, 100, 100); + item1->setZValue(2); + scene.addItem(item1); + + GestureItem *item2 = new GestureItem("item2"); + item2->grabGesture(CustomGesture::GestureType); + item2->size = QRectF(0, 0, 100, 100); + item2->setZValue(5); + scene.addItem(item2); + + view.show(); + QTest::qWaitForWindowShown(&view); + view.ensureVisible(scene.sceneRect()); + + static const int TotalGestureEventsCount = CustomGesture::SerialFinishedThreshold - CustomGesture::SerialStartedThreshold + 1; + + CustomEvent event; + + // nobody accepts override + item1->acceptGestureOverride = false; + item2->acceptGestureOverride = false; + event.hotSpot = mapToGlobal(item2->boundingRect().center(), item2, &view); + event.hasHotSpot = true; + sendCustomGesture(&event, item2, &scene); + QCOMPARE(item2->gestureOverrideEventsReceived, 1); + QCOMPARE(item2->gestureEventsReceived, TotalGestureEventsCount); + QCOMPARE(item1->gestureOverrideEventsReceived, 1); + QCOMPARE(item1->gestureEventsReceived, 0); + + item1->reset(); item2->reset(); + + // the original target accepts override + item1->acceptGestureOverride = false; + item2->acceptGestureOverride = true; + event.hotSpot = mapToGlobal(item2->boundingRect().center(), item2, &view); + event.hasHotSpot = true; + sendCustomGesture(&event, item2, &scene); + QCOMPARE(item2->gestureOverrideEventsReceived, 1); + QCOMPARE(item2->gestureEventsReceived, TotalGestureEventsCount); + QCOMPARE(item1->gestureOverrideEventsReceived, 0); + QCOMPARE(item1->gestureEventsReceived, 0); + + item1->reset(); item2->reset(); + + // the item behind accepts override + item1->acceptGestureOverride = true; + item2->acceptGestureOverride = false; + event.hotSpot = mapToGlobal(item2->boundingRect().center(), item2, &view); + event.hasHotSpot = true; + sendCustomGesture(&event, item2, &scene); + + QCOMPARE(item2->gestureOverrideEventsReceived, 1); + QCOMPARE(item2->gestureEventsReceived, 0); + QCOMPARE(item1->gestureOverrideEventsReceived, 1); + QCOMPARE(item1->gestureEventsReceived, TotalGestureEventsCount); +} + QTEST_MAIN(tst_Gestures) #include "tst_gestures.moc" -- cgit v0.12 From c28da4dd467c2763bed5c6b31471f078ac26cee6 Mon Sep 17 00:00:00 2001 From: Denis Dzyubenko Date: Fri, 4 Jun 2010 11:13:19 +0200 Subject: Added setting a hotspot on standard gestures In order for gestures to work in graphicsview the hotspot should be set. The fix adds the hotspot to standard gestures that are shipped with Qt. Task-number: QTBUG-10967 Task-number: QT-3406 Reviewed-by: trustme --- src/gui/kernel/qstandardgestures.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gui/kernel/qstandardgestures.cpp b/src/gui/kernel/qstandardgestures.cpp index a575717..bfcfa86 100644 --- a/src/gui/kernel/qstandardgestures.cpp +++ b/src/gui/kernel/qstandardgestures.cpp @@ -110,6 +110,7 @@ QGestureRecognizer::Result QPanGestureRecognizer::recognize(QGesture *state, p1.pos().y() - p1.startPos().y() + p2.pos().y() - p2.startPos().y()) / 2; if (d->offset.x() > 10 || d->offset.y() > 10 || d->offset.x() < -10 || d->offset.y() < -10) { + q->setHotSpot(p1.startScreenPos()); result = QGestureRecognizer::TriggerGesture; } else { result = QGestureRecognizer::MayBeGesture; @@ -439,6 +440,7 @@ QGestureRecognizer::Result QTapGestureRecognizer::recognize(QGesture *state, switch (event->type()) { case QEvent::TouchBegin: { d->position = ev->touchPoints().at(0).pos(); + q->setHotSpot(ev->touchPoints().at(0).screenPos()); result = QGestureRecognizer::TriggerGesture; break; } @@ -521,6 +523,7 @@ QTapAndHoldGestureRecognizer::recognize(QGesture *state, QObject *object, if (d->timerId) q->killTimer(d->timerId); d->timerId = q->startTimer(TimerInterval); + q->setHotSpot(ev->touchPoints().at(0).startScreenPos()); result = QGestureRecognizer::TriggerGesture; break; case QEvent::TouchEnd: -- cgit v0.12 From 0c0f22ec0e36d7001c8195dcc6e390a37118e33e Mon Sep 17 00:00:00 2001 From: Michael Hasselmann Date: Mon, 7 Jun 2010 17:18:54 +0200 Subject: Fix QApplication/QWidget to really take ownership of input contexts * src/gui/kernel/[qapplication|qwidget].cpp, tests/auto/qapplication/tst_[qapplication|qwidget].cpp (setInputContext): The documentation for [QApplication|QWidget]::setInputContext claims that the [QApplication|QWidget] instance would take ownership. This commit fixes the setter to also reparent the input context. Furthermore, the crappy test for this setter was improved. Reviewed-by: Denis Dzyubenko --- src/gui/kernel/qapplication.cpp | 1 + src/gui/kernel/qwidget.cpp | 2 ++ tests/auto/qapplication/tst_qapplication.cpp | 19 +++++++++++++------ tests/auto/qwidget/tst_qwidget.cpp | 6 +++++- 4 files changed, 21 insertions(+), 7 deletions(-) diff --git a/src/gui/kernel/qapplication.cpp b/src/gui/kernel/qapplication.cpp index a2c058a..8529615 100644 --- a/src/gui/kernel/qapplication.cpp +++ b/src/gui/kernel/qapplication.cpp @@ -5297,6 +5297,7 @@ void QApplication::setInputContext(QInputContext *inputContext) } delete QApplicationPrivate::inputContext; QApplicationPrivate::inputContext = inputContext; + QApplicationPrivate::inputContext->setParent(this); } /*! diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp index b5879ae..91dfaab 100644 --- a/src/gui/kernel/qwidget.cpp +++ b/src/gui/kernel/qwidget.cpp @@ -332,6 +332,8 @@ void QWidget::setInputContext(QInputContext *context) if (d->ic) delete d->ic; d->ic = context; + if (d->ic) + d->ic->setParent(this); #endif } diff --git a/tests/auto/qapplication/tst_qapplication.cpp b/tests/auto/qapplication/tst_qapplication.cpp index 43fbba1..1a38070 100644 --- a/tests/auto/qapplication/tst_qapplication.cpp +++ b/tests/auto/qapplication/tst_qapplication.cpp @@ -189,15 +189,22 @@ void tst_QApplication::getSetCheck() { int argc = 0; QApplication obj1(argc, 0, QApplication::GuiServer); - // QInputContext * QApplication::inputContext() - // void QApplication::setInputContext(QInputContext *) MyInputContext *var1 = new MyInputContext; + + // QApplication takes ownership, so check for reparenting: obj1.setInputContext(var1); - QCOMPARE((QInputContext *)var1, obj1.inputContext()); + QCOMPARE(var1->parent(), static_cast(&obj1)); + + // Test for self-assignment: + obj1.setInputContext(obj1.inputContext()); + QVERIFY(obj1.inputContext()); + QCOMPARE(static_cast(var1), obj1.inputContext()); + + // Resetting the input context to 0 is not allowed: QTest::ignoreMessage(QtWarningMsg, "QApplication::setInputContext: called with 0 input context"); - obj1.setInputContext((QInputContext *)0); - QCOMPARE((QInputContext *)var1, obj1.inputContext()); - // delete var1; // No delete, since QApplication takes ownership + obj1.setInputContext(0); + + QCOMPARE(static_cast(var1), obj1.inputContext()); } class CloseEventTestWindow : public QWidget diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 5d47aed..83a9e3a 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -605,10 +605,14 @@ void tst_QWidget::getSetCheck() obj1.setAttribute(Qt::WA_InputMethodEnabled); obj1.setInputContext(var13); QCOMPARE(static_cast(var13), obj1.inputContext()); + // QWidget takes ownership, so check parent + QCOMPARE(var13->parent(), static_cast(&obj1)); + // Check self assignment + obj1.setInputContext(obj1.inputContext()); + QCOMPARE(static_cast(var13), obj1.inputContext()); obj1.setInputContext((QInputContext *)0); QCOMPARE(qApp->inputContext(), obj1.inputContext()); QVERIFY(qApp->inputContext() != var13); - //delete var13; // No delete, since QWidget takes ownership // bool QWidget::autoFillBackground() // void QWidget::setAutoFillBackground(bool) -- cgit v0.12 From dfbd44c8ec75d3b0156547ef3fb5811a4548a0a5 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 7 Jun 2010 18:49:48 +0200 Subject: Unbreak Linux build when qendian.h is included before qglobal.h --- mkspecs/common/g++.conf | 2 +- mkspecs/common/linux.conf | 4 +-- src/corelib/global/qendian.h | 1 + src/gui/image/qimage.cpp | 10 ++++++ src/plugins/imageformats/gif/qgifhandler.cpp | 49 ++++++++++++++-------------- 5 files changed, 38 insertions(+), 28 deletions(-) diff --git a/mkspecs/common/g++.conf b/mkspecs/common/g++.conf index d3db24a..b3d6296 100644 --- a/mkspecs/common/g++.conf +++ b/mkspecs/common/g++.conf @@ -7,7 +7,7 @@ QMAKE_CFLAGS += -pipe QMAKE_CFLAGS_DEPS += -M QMAKE_CFLAGS_WARN_ON += -Wall -W QMAKE_CFLAGS_WARN_OFF += -w -QMAKE_CFLAGS_RELEASE += -O2 +QMAKE_CFLAGS_RELEASE += -g -O2 QMAKE_CFLAGS_DEBUG += -g QMAKE_CFLAGS_SHLIB += -fPIC QMAKE_CFLAGS_STATIC_LIB += -fPIC diff --git a/mkspecs/common/linux.conf b/mkspecs/common/linux.conf index 4fbe2dc..320ae71 100644 --- a/mkspecs/common/linux.conf +++ b/mkspecs/common/linux.conf @@ -51,8 +51,8 @@ QMAKE_COPY_DIR = $(COPY) -r QMAKE_MOVE = mv -f QMAKE_DEL_FILE = rm -f QMAKE_DEL_DIR = rmdir -QMAKE_STRIP = strip -QMAKE_STRIPFLAGS_LIB += --strip-unneeded +#QMAKE_STRIP = strip +#QMAKE_STRIPFLAGS_LIB += --strip-unneeded QMAKE_CHK_DIR_EXISTS = test -d QMAKE_MKDIR = mkdir -p QMAKE_INSTALL_FILE = install -m 644 -p diff --git a/src/corelib/global/qendian.h b/src/corelib/global/qendian.h index 353e8b9..01550cf 100644 --- a/src/corelib/global/qendian.h +++ b/src/corelib/global/qendian.h @@ -43,6 +43,7 @@ #define QENDIAN_H #ifdef Q_OS_LINUX +# include QT_BEGIN_INCLUDE_NAMESPACE # include QT_END_INCLUDE_NAMESPACE diff --git a/src/gui/image/qimage.cpp b/src/gui/image/qimage.cpp index 98f235e..6408432 100644 --- a/src/gui/image/qimage.cpp +++ b/src/gui/image/qimage.cpp @@ -245,6 +245,11 @@ QImageData * QImageData::create(const QSize &size, QImage::Format format, int nu return 0; } + if (d->nbytes == 15840000) + { + d->nbytes = 15840000; + } + d->ref.ref(); return d.take(); @@ -898,6 +903,11 @@ QImageData *QImageData::create(uchar *data, int width, int height, int bpl, QIm d->bytes_per_line = bpl; d->nbytes = d->bytes_per_line * height; + if (d->nbytes == 15840000) + { + d->nbytes = 15840000; + } + return d; } diff --git a/src/plugins/imageformats/gif/qgifhandler.cpp b/src/plugins/imageformats/gif/qgifhandler.cpp index 8abc2d1..fa89f0a 100644 --- a/src/plugins/imageformats/gif/qgifhandler.cpp +++ b/src/plugins/imageformats/gif/qgifhandler.cpp @@ -78,8 +78,8 @@ public: bool partialNewFrame; private: - void fillRect(QImage *image, int x, int y, int w, int h, QRgb col); - inline QRgb color(uchar index) const; + void fillRect(QImage *image, int x, int y, int w, int h, uchar col); + //inline uchar color(uchar index) const; // GIF specific stuff QRgb* globalcmap; @@ -197,13 +197,13 @@ void QGIFFormat::disposePrevious(QImage *image) case RestoreBackground: if (trans_index>=0) { // Easy: we use the transparent color - fillRect(image, l, t, r-l+1, b-t+1, Q_TRANSPARENT); + fillRect(image, l, t, r-l+1, b-t+1, trans_index); } else if (bgcol>=0) { // Easy: we use the bgcol given - fillRect(image, l, t, r-l+1, b-t+1, color(bgcol)); + fillRect(image, l, t, r-l+1, b-t+1, bgcol); } else { // Impossible: We don't know of a bgcol - use pixel 0 - QRgb *bits = (QRgb*)image->bits(); + const uchar *bits = image->constBits(); fillRect(image, l, t, r-l+1, b-t+1, bits[0]); } // ### Changed: QRect(l, t, r-l+1, b-t+1) @@ -211,9 +211,7 @@ void QGIFFormat::disposePrevious(QImage *image) case RestoreImage: { if (frame >= 0) { for (int ln=t; ln<=b; ln++) { - memcpy(image->scanLine(ln)+l, - backingstore.scanLine(ln-t), - (r-l+1)*sizeof(QRgb)); + memcpy(image->scanLine(ln)+l, backingstore.constScanLine(ln-t), (r-l+1)); } // ### Changed: QRect(l, t, r-l+1, b-t+1) } @@ -341,9 +339,8 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, if (sheight <= 0) sheight = newtop + newheight; - QImage::Format format = trans_index >= 0 ? QImage::Format_ARGB32 : QImage::Format_RGB32; if (image->isNull()) { - (*image) = QImage(swidth, sheight, format); + (*image) = QImage(swidth, sheight, QImage::Format_Indexed8); bpl = image->bytesPerLine(); bits = image->bits(); memset(bits, 0, image->byteCount()); @@ -377,10 +374,10 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, if (left || top || width= 0) { - fillRect(image, 0, 0, swidth, sheight, color(trans_index)); + fillRect(image, 0, 0, swidth, sheight, trans_index); // ### Changed: QRect(0, 0, swidth, sheight) } else if (bgcol>=0) { - fillRect(image, 0, 0, swidth, sheight, color(bgcol)); + fillRect(image, 0, 0, swidth, sheight, bgcol); // ### Changed: QRect(0, 0, swidth, sheight) } } @@ -399,7 +396,7 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, // We just use the backing store as a byte array backingstore = QImage(qMax(backingstore.width(), w), qMax(backingstore.height(), h), - QImage::Format_RGB32); + QImage::Format_Indexed8); memset(bits, 0, image->byteCount()); } const int dest_bpl = backingstore.bytesPerLine(); @@ -479,7 +476,7 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, if (needfirst) { firstcode=oldcode=code; if (!out_of_bounds && image->height() > y && firstcode!=trans_index) - ((QRgb*)FAST_SCAN_LINE(bits, bpl, y))[x] = color(firstcode); + FAST_SCAN_LINE(bits, bpl, y)[x] = firstcode; x++; if (x>=swidth) out_of_bounds = true; needfirst=false; @@ -909,11 +906,11 @@ void QGIFFormat::scan(QIODevice *device, QVector *imageSizes, int *loopCo return; } -void QGIFFormat::fillRect(QImage *image, int col, int row, int w, int h, QRgb color) +void QGIFFormat::fillRect(QImage *image, int col, int row, int w, int h, uchar color) { if (w>0) { for (int j=0; jscanLine(j+row); + uchar *line = (uchar*)image->scanLine(j+row); for (int i=0; i= sheight) out_of_bounds=true; //y=bottom; } -inline QRgb QGIFFormat::color(uchar index) const +#if 0 +inline uchar QGIFFormat::color(uchar index) const { if (index == trans_index || index > ncols) - return Q_TRANSPARENT; + return trans_index; - QRgb *map = lcmap ? localcmap : globalcmap; + uchar *map = lcmap ? localcmap : globalcmap; return map ? map[index] : 0; } +#endif //------------------------------------------------------------------------- //------------------------------------------------------------------------- -- cgit v0.12 From fee316304b48bb3437e122c34b2127d6ccc4f469 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 7 Jun 2010 19:08:46 +0200 Subject: Revert accidental commit of irrelevant stuff. Silly mondays.. This reverts commit dfbd44c8ec75d3b0156547ef3fb5811a4548a0a5. --- mkspecs/common/g++.conf | 2 +- mkspecs/common/linux.conf | 4 +-- src/corelib/global/qendian.h | 1 - src/gui/image/qimage.cpp | 10 ------ src/plugins/imageformats/gif/qgifhandler.cpp | 49 ++++++++++++++-------------- 5 files changed, 28 insertions(+), 38 deletions(-) diff --git a/mkspecs/common/g++.conf b/mkspecs/common/g++.conf index b3d6296..d3db24a 100644 --- a/mkspecs/common/g++.conf +++ b/mkspecs/common/g++.conf @@ -7,7 +7,7 @@ QMAKE_CFLAGS += -pipe QMAKE_CFLAGS_DEPS += -M QMAKE_CFLAGS_WARN_ON += -Wall -W QMAKE_CFLAGS_WARN_OFF += -w -QMAKE_CFLAGS_RELEASE += -g -O2 +QMAKE_CFLAGS_RELEASE += -O2 QMAKE_CFLAGS_DEBUG += -g QMAKE_CFLAGS_SHLIB += -fPIC QMAKE_CFLAGS_STATIC_LIB += -fPIC diff --git a/mkspecs/common/linux.conf b/mkspecs/common/linux.conf index 320ae71..4fbe2dc 100644 --- a/mkspecs/common/linux.conf +++ b/mkspecs/common/linux.conf @@ -51,8 +51,8 @@ QMAKE_COPY_DIR = $(COPY) -r QMAKE_MOVE = mv -f QMAKE_DEL_FILE = rm -f QMAKE_DEL_DIR = rmdir -#QMAKE_STRIP = strip -#QMAKE_STRIPFLAGS_LIB += --strip-unneeded +QMAKE_STRIP = strip +QMAKE_STRIPFLAGS_LIB += --strip-unneeded QMAKE_CHK_DIR_EXISTS = test -d QMAKE_MKDIR = mkdir -p QMAKE_INSTALL_FILE = install -m 644 -p diff --git a/src/corelib/global/qendian.h b/src/corelib/global/qendian.h index 01550cf..353e8b9 100644 --- a/src/corelib/global/qendian.h +++ b/src/corelib/global/qendian.h @@ -43,7 +43,6 @@ #define QENDIAN_H #ifdef Q_OS_LINUX -# include QT_BEGIN_INCLUDE_NAMESPACE # include QT_END_INCLUDE_NAMESPACE diff --git a/src/gui/image/qimage.cpp b/src/gui/image/qimage.cpp index 6408432..98f235e 100644 --- a/src/gui/image/qimage.cpp +++ b/src/gui/image/qimage.cpp @@ -245,11 +245,6 @@ QImageData * QImageData::create(const QSize &size, QImage::Format format, int nu return 0; } - if (d->nbytes == 15840000) - { - d->nbytes = 15840000; - } - d->ref.ref(); return d.take(); @@ -903,11 +898,6 @@ QImageData *QImageData::create(uchar *data, int width, int height, int bpl, QIm d->bytes_per_line = bpl; d->nbytes = d->bytes_per_line * height; - if (d->nbytes == 15840000) - { - d->nbytes = 15840000; - } - return d; } diff --git a/src/plugins/imageformats/gif/qgifhandler.cpp b/src/plugins/imageformats/gif/qgifhandler.cpp index fa89f0a..8abc2d1 100644 --- a/src/plugins/imageformats/gif/qgifhandler.cpp +++ b/src/plugins/imageformats/gif/qgifhandler.cpp @@ -78,8 +78,8 @@ public: bool partialNewFrame; private: - void fillRect(QImage *image, int x, int y, int w, int h, uchar col); - //inline uchar color(uchar index) const; + void fillRect(QImage *image, int x, int y, int w, int h, QRgb col); + inline QRgb color(uchar index) const; // GIF specific stuff QRgb* globalcmap; @@ -197,13 +197,13 @@ void QGIFFormat::disposePrevious(QImage *image) case RestoreBackground: if (trans_index>=0) { // Easy: we use the transparent color - fillRect(image, l, t, r-l+1, b-t+1, trans_index); + fillRect(image, l, t, r-l+1, b-t+1, Q_TRANSPARENT); } else if (bgcol>=0) { // Easy: we use the bgcol given - fillRect(image, l, t, r-l+1, b-t+1, bgcol); + fillRect(image, l, t, r-l+1, b-t+1, color(bgcol)); } else { // Impossible: We don't know of a bgcol - use pixel 0 - const uchar *bits = image->constBits(); + QRgb *bits = (QRgb*)image->bits(); fillRect(image, l, t, r-l+1, b-t+1, bits[0]); } // ### Changed: QRect(l, t, r-l+1, b-t+1) @@ -211,7 +211,9 @@ void QGIFFormat::disposePrevious(QImage *image) case RestoreImage: { if (frame >= 0) { for (int ln=t; ln<=b; ln++) { - memcpy(image->scanLine(ln)+l, backingstore.constScanLine(ln-t), (r-l+1)); + memcpy(image->scanLine(ln)+l, + backingstore.scanLine(ln-t), + (r-l+1)*sizeof(QRgb)); } // ### Changed: QRect(l, t, r-l+1, b-t+1) } @@ -339,8 +341,9 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, if (sheight <= 0) sheight = newtop + newheight; + QImage::Format format = trans_index >= 0 ? QImage::Format_ARGB32 : QImage::Format_RGB32; if (image->isNull()) { - (*image) = QImage(swidth, sheight, QImage::Format_Indexed8); + (*image) = QImage(swidth, sheight, format); bpl = image->bytesPerLine(); bits = image->bits(); memset(bits, 0, image->byteCount()); @@ -374,10 +377,10 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, if (left || top || width= 0) { - fillRect(image, 0, 0, swidth, sheight, trans_index); + fillRect(image, 0, 0, swidth, sheight, color(trans_index)); // ### Changed: QRect(0, 0, swidth, sheight) } else if (bgcol>=0) { - fillRect(image, 0, 0, swidth, sheight, bgcol); + fillRect(image, 0, 0, swidth, sheight, color(bgcol)); // ### Changed: QRect(0, 0, swidth, sheight) } } @@ -396,7 +399,7 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, // We just use the backing store as a byte array backingstore = QImage(qMax(backingstore.width(), w), qMax(backingstore.height(), h), - QImage::Format_Indexed8); + QImage::Format_RGB32); memset(bits, 0, image->byteCount()); } const int dest_bpl = backingstore.bytesPerLine(); @@ -476,7 +479,7 @@ int QGIFFormat::decode(QImage *image, const uchar *buffer, int length, if (needfirst) { firstcode=oldcode=code; if (!out_of_bounds && image->height() > y && firstcode!=trans_index) - FAST_SCAN_LINE(bits, bpl, y)[x] = firstcode; + ((QRgb*)FAST_SCAN_LINE(bits, bpl, y))[x] = color(firstcode); x++; if (x>=swidth) out_of_bounds = true; needfirst=false; @@ -906,11 +909,11 @@ void QGIFFormat::scan(QIODevice *device, QVector *imageSizes, int *loopCo return; } -void QGIFFormat::fillRect(QImage *image, int col, int row, int w, int h, uchar color) +void QGIFFormat::fillRect(QImage *image, int col, int row, int w, int h, QRgb color) { if (w>0) { for (int j=0; jscanLine(j+row); + QRgb *line = (QRgb*)image->scanLine(j+row); for (int i=0; i= sheight) out_of_bounds=true; //y=bottom; } -#if 0 -inline uchar QGIFFormat::color(uchar index) const +inline QRgb QGIFFormat::color(uchar index) const { if (index == trans_index || index > ncols) - return trans_index; + return Q_TRANSPARENT; - uchar *map = lcmap ? localcmap : globalcmap; + QRgb *map = lcmap ? localcmap : globalcmap; return map ? map[index] : 0; } -#endif //------------------------------------------------------------------------- //------------------------------------------------------------------------- -- cgit v0.12 From d70dcb5f120affb8a908d4fbcdf16eef4c51389c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 7 Jun 2010 19:10:44 +0200 Subject: Unbreak Linux build when qendian.h is included before qglobal.h --- src/corelib/global/qendian.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/corelib/global/qendian.h b/src/corelib/global/qendian.h index 353e8b9..01550cf 100644 --- a/src/corelib/global/qendian.h +++ b/src/corelib/global/qendian.h @@ -43,6 +43,7 @@ #define QENDIAN_H #ifdef Q_OS_LINUX +# include QT_BEGIN_INCLUDE_NAMESPACE # include QT_END_INCLUDE_NAMESPACE -- cgit v0.12 From 004ed1e661614273111629e932f4c1826b3cd353 Mon Sep 17 00:00:00 2001 From: David Boddie Date: Mon, 7 Jun 2010 19:58:09 +0200 Subject: Doc: Fixed whitespace in the Simplified Chinese doc configuration. Reviewed-by: Trust Me --- tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf | 52 +++++++++++++-------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf b/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf index c324926..909a2d4 100644 --- a/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf +++ b/tools/qdoc3/test/qt-build-docs_zh_CN.qdocconf @@ -30,32 +30,32 @@ qhp.Qt.customFilters.Qt.filterAttributes = qt 4.7.0 # Files not referenced in any qdoc file (last four are needed by qtdemo) # See also extraimages.HTML qhp.Qt.extraFiles = index.html \ - images/bg_l.png \ - images/bg_l_blank.png \ - images/bg_r.png \ - images/box_bg.png \ - images/breadcrumb.png \ - images/bullet_gt.png \ - images/bullet_dn.png \ - images/bullet_sq.png \ - images/bullet_up.png \ - images/feedbackground.png \ - images/horBar.png \ - images/page.png \ - images/page_bg.png \ - images/sprites-combined.png \ - images/arrow-down.png \ - images/spinner.gif \ - images/stylesheet-coffee-plastique.png \ - images/taskmenuextension-example.png \ - images/coloreditorfactoryimage.png \ - images/dynamiclayouts-example.png \ - scripts/functions.js \ - scripts/jquery.js \ - style/style_ie6.css \ - style/style_ie7.css \ - style/style_ie8.css \ - style/style.css + images/bg_l.png \ + images/bg_l_blank.png \ + images/bg_r.png \ + images/box_bg.png \ + images/breadcrumb.png \ + images/bullet_gt.png \ + images/bullet_dn.png \ + images/bullet_sq.png \ + images/bullet_up.png \ + images/feedbackground.png \ + images/horBar.png \ + images/page.png \ + images/page_bg.png \ + images/sprites-combined.png \ + images/arrow-down.png \ + images/spinner.gif \ + images/stylesheet-coffee-plastique.png \ + images/taskmenuextension-example.png \ + images/coloreditorfactoryimage.png \ + images/dynamiclayouts-example.png \ + scripts/functions.js \ + scripts/jquery.js \ + style/style_ie6.css \ + style/style_ie7.css \ + style/style_ie8.css \ + style/style.css language = Cpp -- cgit v0.12 From f2c30b0f13a4bacbb937d44c8e88ac1c202139cd Mon Sep 17 00:00:00 2001 From: David Boddie Date: Mon, 7 Jun 2010 20:45:09 +0200 Subject: Doc: Fixed whitespace in the other configuration file for zh_CN. Reviewed-by: Trust Me --- tools/qdoc3/test/qt_zh_CN.qdocconf | 44 +++++++++++++++++++------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/tools/qdoc3/test/qt_zh_CN.qdocconf b/tools/qdoc3/test/qt_zh_CN.qdocconf index e894607..4983f9e 100644 --- a/tools/qdoc3/test/qt_zh_CN.qdocconf +++ b/tools/qdoc3/test/qt_zh_CN.qdocconf @@ -32,28 +32,28 @@ qhp.Qt.customFilters.Qt.filterAttributes = qt 4.7.0 # Files not referenced in any qdoc file (last four are needed by qtdemo) # See also extraimages.HTML qhp.Qt.extraFiles = index.html \ - images/bg_l.png \ - images/bg_l_blank.png \ - images/bg_r.png \ - images/box_bg.png \ - images/breadcrumb.png \ - images/bullet_gt.png \ - images/bullet_dn.png \ - images/bullet_sq.png \ - images/bullet_up.png \ - images/feedbackground.png \ - images/horBar.png \ - images/page.png \ - images/page_bg.png \ - images/sprites-combined.png \ - images/spinner.gif \ - images/stylesheet-coffee-plastique.png \ - images/taskmenuextension-example.png \ - images/coloreditorfactoryimage.png \ - images/dynamiclayouts-example.png \ - scripts/functions.js \ - scripts/jquery.js \ - style/style.css + images/bg_l.png \ + images/bg_l_blank.png \ + images/bg_r.png \ + images/box_bg.png \ + images/breadcrumb.png \ + images/bullet_gt.png \ + images/bullet_dn.png \ + images/bullet_sq.png \ + images/bullet_up.png \ + images/feedbackground.png \ + images/horBar.png \ + images/page.png \ + images/page_bg.png \ + images/sprites-combined.png \ + images/spinner.gif \ + images/stylesheet-coffee-plastique.png \ + images/taskmenuextension-example.png \ + images/coloreditorfactoryimage.png \ + images/dynamiclayouts-example.png \ + scripts/functions.js \ + scripts/jquery.js \ + style/style.css language = Cpp -- cgit v0.12 From 249cb1cd68f9bb5417823f534b1af1f8dafccbc5 Mon Sep 17 00:00:00 2001 From: Aaron McCarthy Date: Wed, 2 Jun 2010 15:41:22 +1000 Subject: Split Symbian bearer plugin into three platform specfic plugins Symbian bearer plugin has more functionality when built for newer platforms, so split the plugin into three platform specific plugins, and deploy the correct one depending on what the device supports. Written by: Miikka Heikkinen --- src/plugins/bearer/symbian/3_1/3_1.pro | 4 +++ src/plugins/bearer/symbian/3_2/3_2.pro | 12 +++++++ src/plugins/bearer/symbian/symbian.pri | 30 ++++++++++++++++ src/plugins/bearer/symbian/symbian.pro | 42 ++-------------------- src/plugins/bearer/symbian/symbian_3/symbian_3.pro | 14 ++++++++ src/s60installs/qsymbianbearer.qtplugin | 1 + src/s60installs/s60installs.pro | 25 +++++++++---- 7 files changed, 81 insertions(+), 47 deletions(-) create mode 100644 src/plugins/bearer/symbian/3_1/3_1.pro create mode 100644 src/plugins/bearer/symbian/3_2/3_2.pro create mode 100644 src/plugins/bearer/symbian/symbian.pri create mode 100644 src/plugins/bearer/symbian/symbian_3/symbian_3.pro create mode 100644 src/s60installs/qsymbianbearer.qtplugin diff --git a/src/plugins/bearer/symbian/3_1/3_1.pro b/src/plugins/bearer/symbian/3_1/3_1.pro new file mode 100644 index 0000000..a60d18b --- /dev/null +++ b/src/plugins/bearer/symbian/3_1/3_1.pro @@ -0,0 +1,4 @@ +include(../symbian.pri) + +LIBS += -lapengine +TARGET = $${TARGET}_3_1 diff --git a/src/plugins/bearer/symbian/3_2/3_2.pro b/src/plugins/bearer/symbian/3_2/3_2.pro new file mode 100644 index 0000000..4e5b416 --- /dev/null +++ b/src/plugins/bearer/symbian/3_2/3_2.pro @@ -0,0 +1,12 @@ +include(../symbian.pri) + +exists($${EPOCROOT}epoc32/release/winscw/udeb/cmmanager.lib)| \ +exists($${EPOCROOT}epoc32/release/armv5/lib/cmmanager.lib) { + DEFINES += SNAP_FUNCTIONALITY_AVAILABLE + LIBS += -lcmmanager +} else { + # Fall back to 3_1 implementation on platforms that do not have cmmanager + LIBS += -lapengine +} + +TARGET = $${TARGET}_3_2 diff --git a/src/plugins/bearer/symbian/symbian.pri b/src/plugins/bearer/symbian/symbian.pri new file mode 100644 index 0000000..bfcd9ed --- /dev/null +++ b/src/plugins/bearer/symbian/symbian.pri @@ -0,0 +1,30 @@ +TARGET = qsymbianbearer +include(../../qpluginbase.pri) + +QT += network + +HEADERS += ../symbianengine.h \ + ../qnetworksession_impl.h + +SOURCES += ../symbianengine.cpp \ + ../qnetworksession_impl.cpp \ + ../main.cpp + +TARGET.UID3=0x20021319 + +INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE +symbian-abld:INCLUDEPATH += $$QT_BUILD_TREE/include/QtNetwork/private + +LIBS += -lcommdb \ + -lapsettingshandlerui \ + -lconnmon \ + -lcentralrepository \ + -lesock \ + -linsock \ + -lecom \ + -lefsrv \ + -lnetmeta + +QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer +target.path += $$[QT_INSTALL_PLUGINS]/bearer +INSTALLS += target diff --git a/src/plugins/bearer/symbian/symbian.pro b/src/plugins/bearer/symbian/symbian.pro index 4f1e51c..f320eb6 100644 --- a/src/plugins/bearer/symbian/symbian.pro +++ b/src/plugins/bearer/symbian/symbian.pro @@ -1,41 +1,3 @@ -TARGET = qsymbianbearer -include(../../qpluginbase.pri) +TEMPLATE = subdirs -QT += network - -HEADERS += symbianengine.h \ - qnetworksession_impl.h - -SOURCES += symbianengine.cpp \ - qnetworksession_impl.cpp \ - main.cpp - -symbian { - TARGET.UID3=0x20021319 - exists($${EPOCROOT}epoc32/release/winscw/udeb/cmmanager.lib)| \ - exists($${EPOCROOT}epoc32/release/armv5/lib/cmmanager.lib) { - message("Building with SNAP support") - DEFINES += SNAP_FUNCTIONALITY_AVAILABLE - LIBS += -lcmmanager - } else { - message("Building without SNAP support") - LIBS += -lapengine - } -} - -INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE -symbian-abld:INCLUDEPATH += $$QT_BUILD_TREE/include/QtNetwork/private - -LIBS += -lcommdb \ - -lapsettingshandlerui \ - -lconnmon \ - -lcentralrepository \ - -lesock \ - -linsock \ - -lecom \ - -lefsrv \ - -lnetmeta - -QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/bearer -target.path += $$[QT_INSTALL_PLUGINS]/bearer -INSTALLS += target +SUBDIRS += 3_1 3_2 symbian_3 \ No newline at end of file diff --git a/src/plugins/bearer/symbian/symbian_3/symbian_3.pro b/src/plugins/bearer/symbian/symbian_3/symbian_3.pro new file mode 100644 index 0000000..455aa67 --- /dev/null +++ b/src/plugins/bearer/symbian/symbian_3/symbian_3.pro @@ -0,0 +1,14 @@ +include(../symbian.pri) + +exists($${EPOCROOT}epoc32/release/winscw/udeb/cmmanager.lib)| \ +exists($${EPOCROOT}epoc32/release/armv5/lib/cmmanager.lib) { + DEFINES += SNAP_FUNCTIONALITY_AVAILABLE + LIBS += -lcmmanager + + exists($$MW_LAYER_PUBLIC_EXPORT_PATH(extendedconnpref.h)) { + DEFINES += OCC_FUNCTIONALITY_AVAILABLE + } +} else { + # Fall back to 3_1 implementation on platforms that do not have cmmanager + LIBS += -lapengine +} diff --git a/src/s60installs/qsymbianbearer.qtplugin b/src/s60installs/qsymbianbearer.qtplugin new file mode 100644 index 0000000..5c45bdd --- /dev/null +++ b/src/s60installs/qsymbianbearer.qtplugin @@ -0,0 +1 @@ +This file is a Qt plugin stub file. The real Qt plugin is located in /sys/bin. Created:2010-06-02T14:02:21 diff --git a/src/s60installs/s60installs.pro b/src/s60installs/s60installs.pro index d3d9eed..1e0e268 100644 --- a/src/s60installs/s60installs.pro +++ b/src/s60installs/s60installs.pro @@ -54,20 +54,35 @@ symbian: { symbian-abld|symbian-sbsv2 { pluginLocations = $${EPOCROOT}epoc32/release/$(PLATFORM)/$(TARGET) + bearerPluginLocation = $${EPOCROOT}epoc32/release/$(PLATFORM)/$(TARGET) + bearerStubZ = $${EPOCROOT}$${HW_ZDIR}$${QT_PLUGINS_BASE_DIR}/bearer/qsymbianbearer$${QT_LIBINFIX}.qtplugin + BLD_INF_RULES.prj_exports += \ + "qsymbianbearer.qtplugin $$bearerStubZ" \ + "qsymbianbearer.qtplugin $${EPOCROOT}/epoc32/winscw/c$${QT_PLUGINS_BASE_DIR}/bearer/qsymbianbearer$${QT_LIBINFIX}.qtplugin" } else { pluginLocations = $$QT_BUILD_TREE/plugins/s60 + bearerPluginLocation = $$QT_BUILD_TREE/plugins/bearer + bearerStubZ = $${PWD}/qsymbianbearer.qtplugin } qts60plugindeployment = \ - "IF package(0x1028315F)" \ + "IF package(0x20022E6D)" \ " \"$$pluginLocations/qts60plugin_5_0$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qts60plugin_5_0$${QT_LIBINFIX}.dll\"" \ + " \"$$bearerPluginLocation/qsymbianbearer$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qsymbianbearer$${QT_LIBINFIX}.dll\"" \ + "ELSEIF package(0x1028315F)" \ + " \"$$pluginLocations/qts60plugin_5_0$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qts60plugin_5_0$${QT_LIBINFIX}.dll\"" \ + " \"$$bearerPluginLocation/qsymbianbearer_3_2$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qsymbianbearer$${QT_LIBINFIX}.dll\"" \ "ELSEIF package(0x102752AE)" \ " \"$$pluginLocations/qts60plugin_3_2$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qts60plugin_3_2$${QT_LIBINFIX}.dll\"" \ + " \"$$bearerPluginLocation/qsymbianbearer_3_2$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qsymbianbearer$${QT_LIBINFIX}.dll\"" \ "ELSEIF package(0x102032BE)" \ " \"$$pluginLocations/qts60plugin_3_1$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qts60plugin_3_1$${QT_LIBINFIX}.dll\"" \ + " \"$$bearerPluginLocation/qsymbianbearer_3_1$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qsymbianbearer$${QT_LIBINFIX}.dll\"" \ "ELSE" \ " \"$$pluginLocations/qts60plugin_5_0$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qts60plugin_5_0$${QT_LIBINFIX}.dll\"" \ - "ENDIF" + " \"$$bearerPluginLocation/qsymbianbearer$${QT_LIBINFIX}.dll\" - \"c:\\sys\\bin\\qsymbianbearer$${QT_LIBINFIX}.dll\"" \ + "ENDIF" \ + " \"$$bearerStubZ\" - \"c:$$replace(QT_PLUGINS_BASE_DIR,/,\\)\\bearer\\qsymbianbearer$${QT_LIBINFIX}.qtplugin\" qtlibraries.pkg_postrules += qts60plugindeployment @@ -118,15 +133,11 @@ symbian: { qtbackup.sources = backup_registration.xml qtbackup.path = c:/private/10202D56/import/packages/$$replace(TARGET.UID3, 0x,) - bearer_plugins.path = c:$$QT_PLUGINS_BASE_DIR/bearer - bearer_plugins.sources += $$QT_BUILD_TREE/plugins/bearer/qsymbianbearer$${QT_LIBINFIX}.dll - DEPLOYMENT += qtlibraries \ qtbackup \ imageformats_plugins \ codecs_plugins \ - graphicssystems_plugins \ - bearer_plugins + graphicssystems_plugins contains(QT_CONFIG, svg): { qtlibraries.sources += $$QMAKE_LIBDIR_QT/QtSvg$${QT_LIBINFIX}.dll -- cgit v0.12 From c252a57f59fb6291d0e9a6b772b208bd1763779f Mon Sep 17 00:00:00 2001 From: Anders Bakken Date: Tue, 8 Jun 2010 10:16:16 +0200 Subject: Fix configure test for DirectFB The availability of directfb-config does not depend on pkg-config Merge-request: 2409 Reviewed-by: Oswald Buddenhagen --- configure | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/configure b/configure index 916b2e5..9aff8cd 100755 --- a/configure +++ b/configure @@ -5834,14 +5834,12 @@ if [ "$PLATFORM_QWS" = "yes" ]; then fi if [ "${screen}" = "directfb" ] && [ "${CFG_CONFIGURE_EXIT_ON_ERROR}" = "yes" ]; then - if [ -n "$PKG_CONFIG" ]; then - if $PKG_CONFIG --exists directfb 2>/dev/null; then - QT_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null` - QT_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null` - elif directfb-config --version >/dev/null 2>&1; then - QT_CFLAGS_DIRECTFB=`directfb-config --cflags 2>/dev/null` - QT_LIBS_DIRECTFB=`directfb-config --libs 2>/dev/null` - fi + if test -n "$PKG_CONFIG" && "$PKG_CONFIG" --exists directfb 2>/dev/null; then + QT_CFLAGS_DIRECTFB=`$PKG_CONFIG --cflags directfb 2>/dev/null` + QT_LIBS_DIRECTFB=`$PKG_CONFIG --libs directfb 2>/dev/null` + elif directfb-config --version >/dev/null 2>&1; then + QT_CFLAGS_DIRECTFB=`directfb-config --cflags 2>/dev/null` + QT_LIBS_DIRECTFB=`directfb-config --libs 2>/dev/null` fi # QMake variables set here override those in the mkspec. Therefore we only set the variables here if they are not zero. -- cgit v0.12 From 77046223395c290d18b69850ee4f05d1660b15df Mon Sep 17 00:00:00 2001 From: Anders Bakken Date: Tue, 8 Jun 2010 10:19:54 +0200 Subject: Fix a freetype link failure. qfontengine_ft.cpp uses the function FT_GlyphSlot_Embolden but ftsynth.c (where the function is implmented) isn't compiled in when QT_CONFIG contains freetype. Merge-request: 672 Reviewed-by: Oswald Buddenhagen --- src/gui/text/text.pri | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/text/text.pri b/src/gui/text/text.pri index 9ec3142..34311a9 100644 --- a/src/gui/text/text.pri +++ b/src/gui/text/text.pri @@ -138,7 +138,8 @@ contains(QT_CONFIG, freetype) { ../3rdparty/freetype/src/base/ftinit.c \ ../3rdparty/freetype/src/base/ftmm.c \ ../3rdparty/freetype/src/base/fttype1.c \ - ../3rdparty/freetype/src/base/ftbitmap.c\ + ../3rdparty/freetype/src/base/ftsynth.c \ + ../3rdparty/freetype/src/base/ftbitmap.c \ ../3rdparty/freetype/src/bdf/bdf.c \ ../3rdparty/freetype/src/cache/ftcache.c \ ../3rdparty/freetype/src/cff/cff.c \ -- cgit v0.12 From dcb9b85376718d768f538e19ae231f5e061b7b31 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 8 Jun 2010 10:31:41 +0200 Subject: I10n: Update German translations for 4.7.0 --- translations/qt_de.ts | 477 ++++++++++++++++++++++++++------------------------ 1 file changed, 253 insertions(+), 224 deletions(-) diff --git a/translations/qt_de.ts b/translations/qt_de.ts index 226b7da..7d32ead 100644 --- a/translations/qt_de.ts +++ b/translations/qt_de.ts @@ -4,7 +4,7 @@ CloseButton - + Close Tab Schließen @@ -12,7 +12,7 @@ FakeReply - + Fake error ! Fake error ! @@ -25,7 +25,7 @@ MAC_APPLICATION_MENU - + Services Dienste @@ -1275,7 +1275,7 @@ nach Diese Socket-Operation wird nicht unterstützt - + Socket operation timed out Das Zeitlimit für die Operation wurde überschritten @@ -1597,7 +1597,7 @@ nach QDeclarativeAbstractAnimation - + Cannot animate non-existent property "%1" Die Eigenschaft '%1" existiert nicht und kann daher nicht animiert werden @@ -1606,11 +1606,24 @@ nach Cannot animate read-only property "%1" Die Eigenschaft '%1" ist schreibgeschützt und kann daher nicht animiert werden + + + Animation is an abstract class + Die Klasse Animation ist abstrakt + + + + QDeclarativeAnchorAnimation + + + Cannot set a duration of < 0 + Es kann keine Zeitdauer <0 gesetzt werden + QDeclarativeAnchors - + Possible anchor loop detected on fill. Bei der Fülloperation wurde eine potentielle Endlosschleife der Anker festgestellt. @@ -1676,9 +1689,17 @@ nach + QDeclarativeAnimatedImage + + + Qt was built without support for QMovie + Diese Version der Qt-Bibliothek wurde ohne Unterstützung für die Klasse QMovie erstellt + + + QDeclarativeBehavior - + Cannot change the animation assigned to a Behavior. Die zu einem Behavior-Element gehörende Animation kann nicht geändert werden. @@ -1686,7 +1707,7 @@ nach QDeclarativeBinding - + Binding loop detected for property "%1" Bei der für die Eigenschaft "%1" angegebenen Bindung wurde eine Endlosschleife festgestellt @@ -1694,7 +1715,7 @@ nach QDeclarativeCompiledBindings - + Binding loop detected for property "%1" Bei der für die Eigenschaft "%1" angegebenen Bindung wurde eine Endlosschleife festgestellt @@ -1703,16 +1724,16 @@ nach QDeclarativeCompiler - - - + + + - + Invalid property assignment: "%1" is a read-only property Ungültige Zuweisung bei Eigenschaft: "%1" ist schreibgeschützt - + Invalid property assignment: unknown enumeration Ungültige Zuweisung bei Eigenschaft: Ungültiger Aufzählungswert @@ -1727,32 +1748,32 @@ nach Ungültige Zuweisung bei Eigenschaft: Es wird eine URL erwartet - + Invalid property assignment: unsigned int expected Ungültige Zuweisung bei Eigenschaft: Es wird eine vorzeichenloser Ganzzahlwert erwartet - + Invalid property assignment: int expected Ungültige Zuweisung bei Eigenschaft: Es wird ein Ganzzahlwert erwartet - + Invalid property assignment: float expected Ungültige Zuweisung bei Eigenschaft: Es wird eine Gleitkommazahl erwartet - + Invalid property assignment: double expected Ungültige Zuweisung bei Eigenschaft: Es wird eine Gleitkommazahl (double) erwartet - + Invalid property assignment: color expected Ungültige Zuweisung bei Eigenschaft: Es wird eine Farbspezifikation erwartet - + Invalid property assignment: date expected Ungültige Zuweisung bei Eigenschaft: Es wird eine Datumsangabe erwartet @@ -1767,7 +1788,7 @@ nach Ungültige Zuweisung bei Eigenschaft: Es wird eine Datumsangabe erwartet - + Invalid property assignment: point expected Ungültige Zuweisung bei Eigenschaft: Es wird eine Koordinatenangabe für einen Punkt erwartet @@ -1797,63 +1818,38 @@ nach Ungültige Zuweisung bei Eigenschaft: Der Typ "%1" ist nicht unterstützt - + Element is not creatable. Das Element kann nicht erzeugt werden. - + Component elements may not contain properties other than id Komponenten dürfen außer id keine weiteren Eigenschaften enthalten. - - Component elements may not contain script blocks - Komponenten dürfen keine Skripte enthalten - - Invalid component id specification Ungültige Komponentenspezifikation - + id is not unique ID-Wert nicht eindeutig - + Invalid component body specification Inhalt der Komponente ungültig - + Cannot create empty component specification Es kann keine leere Komponentenangabe erzeugt werden - - Invalid Script block. Specify either the source property or inline script - Ungültiges Skript. Es muss die Eigenschaft oder ein eingebettetes Skript angegeben werden - - - - Invalid Script source value - Ungültige Angabe für Skript - - - - Properties cannot be set on Script block - Für ein Skript können keine Eigenschaften angegeben werden - - - - Invalid Script block - Ungültiges Skript - - - + Empty signal assignment Leere Signalzuweisung @@ -1869,29 +1865,29 @@ nach - + Non-existent attached object Es existiert kein Bezugselement für die Eigenschaft - - + + Invalid attached object assignment Ungültige Zuweisung des Bezugselements - + Cannot assign to non-existent default property Es kann keine Zuweisung erfolgen, da keine Vorgabe-Eigenschaft existiert - + Cannot assign to non-existent property "%1" Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens '%1" existiert - + Invalid use of namespace Ungültige Verwendung eines Namensraums @@ -1901,24 +1897,44 @@ nach Kein gültiger Name einer Eigenschaft des Typs 'attached' - + Invalid use of id property Ungültige Verwendung einer Eigenschaft des Typs 'Id' - + Incorrectly specified signal assignment - + + Component objects cannot declare new properties. + Komponentenobjekte können keine neuen Eigenschaften deklarieren. + + + + Component objects cannot declare new signals. + Komponentenobjekte können keine neuen Signale deklarieren. + + + + Component objects cannot declare new functions. + Komponentenobjekte können keine neuen Funktionen deklarieren. + + + + Cannot assign a value to a signal (expecting a script to be run) + Einem Signal können keine Werte zugewiesen werden (es wird ein Skript erwartet) + + + Property has already been assigned a value Der Eigenschaft wurde bereits ein Wert zugewiesen - + Invalid grouped property access Falsche Gruppierung bei Zugriff auf Eigenschaft @@ -1973,7 +1989,7 @@ nach Ungültige Zuweisung bei Eigenschaft: Es wird ein Skript erwartet - + Cannot assign object to property Zuweisung eines Objekts an eine Eigenschaft nicht zulässig @@ -2033,7 +2049,7 @@ nach Eine als 'FINAL' ausgewiesene Eigenschaft kann nicht überschrieben werden - + Invalid property type Ungültiger Typ der Eigenschaft @@ -2088,7 +2104,7 @@ nach QDeclarativeComponent - + Invalid empty URL Ungültige (leere) URL @@ -2096,23 +2112,23 @@ nach QDeclarativeCompositeTypeManager - - + + Resource %1 unavailable Auf die Ressource %1 konnte nicht zugegriffen werden - + Namespace %1 cannot be used as a type Der Namensraum %1 kann nicht als Typangabe verwendet werden - %1 is not a type - %1 ist keine Typangabe + %1 %2 + %1 %2 - + Type %1 unavailable Der Typ %1 ist nicht verfügbar @@ -2120,14 +2136,13 @@ nach QDeclarativeConnections - - - + + Cannot assign to non-existent property "%1" Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens '%1" existiert - + Connections: nested objects not allowed Verbindungen: Verschachtelte Objekte sind nicht zulässig @@ -2175,13 +2190,29 @@ nach SQL: database version mismatch SQL: Die Version der Datenbank entspricht nicht der erwarteten Version + + + QDeclarativeFlipable + + + front is a write-once property + 'front' kann nur einmal zugewiesen werden + + + + back is a write-once property + 'back' kann nur einmal zugewiesen werden + + + + QDeclarativeImportDatabase - + module "%1" definition "%2" not readable Modul "%1" Definition "%2" kann nicht gelesen werden - + plugin cannot be loaded for module "%1": %2 Das Plugin des Moduls "%1" konnte nicht geladen werden: %2 @@ -2191,7 +2222,7 @@ nach Modul "%1" Plugin "%2" konnte nicht gefunden werden - + module "%1" version %2.%3 is not installed Modul "%1" Version %2.%3 ist nicht installiert @@ -2210,29 +2241,59 @@ nach import "%1" has no qmldir and no namespace - "qmldir" und Namensraum fehlt bei Import "%1" + "qmldir" und Namensraum fehlen bei dem Import "%1" - - - QDeclarativeFlipable - - front is a write-once property - 'front' kann nur einmal zugewiesen werden + + - %1 is not a namespace + - %1 ist kein gültiger Namensraum - - back is a write-once property - 'back' kann nur einmal zugewiesen werden + + - nested namespaces not allowed + - geschachtelte Namensräume sind nicht zulässig + + + + + local directory + Lokales Verzeichnis' + + + + is ambiguous. Found in %1 and in %2 + ist mehrdeutig. Es kommt in %1 und in %2 vor + + + + is ambiguous. Found in %1 in version %2.%3 and %4.%5 + ist mehrdeutig. Es kommt in %1 in den Version %2.%3 und %4.%5 vor + + + + is instantiated recursively + wird rekursiv instanziiert + + + + is not a type + ist kein Typ - QDeclarativeInfo + QDeclarativeKeyNavigationAttached - - - unknown location - Unbekannter Ort + + KeyNavigation is only available via attached properties + Tastennavigation ist nur über Eigenschaften des Typs 'attached' verfügbar + + + + QDeclarativeKeysAttached + + + Keys is only available via attached properties + Die Unterstützung für Tasten ist nur über Eigenschaften des Typs 'attached' verfügbar @@ -2263,12 +2324,7 @@ nach append: Der Wert ist kein Objekt - - get: index %1 out of range - get: Der Index %1 ist außerhalb des gültigen Bereichs - - - + set: value is not an object set: Der Wert ist kein Objekt @@ -2303,7 +2359,7 @@ nach QDeclarativeLoader - + Loader does not support loading non-visual elements. Das Laden nicht-visueller Elemente ist nicht unterstützt. @@ -2311,7 +2367,7 @@ nach QDeclarativeParentAnimation - + Unable to preserve appearance under complex transform Das Erscheinungsbild kann bei einer komplexen Transformation nicht beibehalten werden @@ -2330,7 +2386,7 @@ nach QDeclarativeParentChange - + Unable to preserve appearance under complex transform Das Erscheinungsbild kann bei einer komplexen Transformation nicht beibehalten werden @@ -2349,7 +2405,7 @@ nach QDeclarativeParser - + Illegal character Ungültiges Zeichen @@ -2364,17 +2420,19 @@ nach Ungültiges Escape-Sequenz - + + + Illegal unicode escape sequence Ungültige Unicode-Escape-Sequenz - + Unclosed comment at end of file Kommentar am Dateiende nicht abgeschlossen - + Illegal syntax for exponential number Ungültige Syntax des Exponenten @@ -2384,16 +2442,27 @@ nach Ein Bezeichner darf nicht mit einem numerischen Literal beginnen - + Unterminated regular expression literal Regulärer Ausdruck nicht abgeschlossen - + Invalid regular expression flag '%0' Ungültiger Modifikator '%0' bei regulärem Ausdruck + + + Unterminated regular expression backslash sequence + Regulärer Ausdruck nicht abgeschlossen + + + + Unterminated regular expression class + Klasse im regulären Ausdruck nicht abgeschlossen + + Syntax error @@ -2411,28 +2480,28 @@ nach Es wird das Element '%1' erwartet - - + + Property value set multiple times Mehrfache Zuweisung eines Wertes an eine Eigenschaft - + Expected type name Es wird ein Typname erwartet - - Invalid use of Script block - Ungültige Verwendung von Skript-Blöcken - - - + Invalid import qualifier ID Ungültige Id-Angabe bei Import + + Reserved name "Qt" cannot be used as an qualifier + Der reservierte Name "Qt" kann nicht als Bezeichner verwendet werden + + Script import qualifiers must be unique. Der für den Skript-Import angegebene Qualifizierer muss eindeutig sein. @@ -2448,7 +2517,7 @@ nach Der Import einer Bibliothek erfordert eine Versionsangabe - + Expected parameter type Es wird eine Typangabe für den Parameter erwartet @@ -2473,20 +2542,15 @@ nach 'read-only' wird an dieser Stelle noch nicht unterstützt - + JavaScript declaration outside Script element Eine JavaScript-Deklaration ist außerhalb eines Skriptelementes nicht zulässig - - - Variable declarations not allow in inline Script blocks - Variablendeklarationen sind in eingebetteten Script-Blöcken nicht zulässig - QDeclarativePauseAnimation - + Cannot set a duration of < 0 Es kann keine Zeitdauer <0 gesetzt werden @@ -2494,7 +2558,7 @@ nach QDeclarativePixmapCache - + Error decoding: %1: %2 Fehler beim Decodieren: %1: %2 @@ -2505,7 +2569,7 @@ nach - + Cannot open: %1 Fehlschlag beim Öffnen: %1 @@ -2518,7 +2582,7 @@ nach QDeclarativePropertyAnimation - + Cannot set a duration of < 0 Es kann keine Zeitdauer <0 gesetzt werden @@ -2526,12 +2590,12 @@ nach QDeclarativePropertyChanges - + PropertyChanges does not support creating state-specific objects. Die Erzeugung von Objekten, die einem Zustand zugeordnet sind, wird von PropertyChanges nicht unterstützt. - + Cannot assign to non-existent property "%1" Es kann keine Zuweisung erfolgen, da keine Eigenschaft des Namens '%1" existiert @@ -2544,13 +2608,13 @@ nach QDeclarativeTextInput - - + + Could not load cursor delegate Cursor-Delegate konnte nicht geladen werden - + Could not instantiate cursor delegate Cursor-Delegate konnte angelegt werden @@ -2563,7 +2627,7 @@ nach Es konnte kein Objekt des Typs %1 erzeugt werden - + Cannot assign value %1 to property %2 Der Wert '%1' kann nicht der Eigenschaft %2 zugewiesen werden @@ -2583,7 +2647,7 @@ nach Der Signal-Eigenschaft %1 kann kein Objekt zugewiesen werden - + Cannot assign object to list Zuweisung eines Objekts an eine Liste nicht zulässig @@ -2606,15 +2670,24 @@ nach QDeclarativeVisualDataModel - + Delegate component must be Item type. Delegate-Komponente muss vom Typ 'Item' sein + QDeclarativeXmlListModel + + + + Qt was built without support for xmlpatterns + Diese Version der Qt-Bibliothek wurde ohne Unterstützung für xmlpatterns erstellt + + + QDeclarativeXmlListModelRole - + An XmlRole query must not start with '/' Eine XmlRole-Abfrage darf nicht mit '/' beginnen @@ -2622,7 +2695,7 @@ nach QDeclarativeXmlRoleList - + An XmlListModel query must start with '/' or "//" Eine XmlListModel-Abfrage muss mit '/' oder "//" beginnen @@ -3690,7 +3763,7 @@ Möchten Sie die Datei trotzdem löschen? Unbekannter Fehler - + No host name given Es wurde kein Hostname angegeben @@ -3698,9 +3771,9 @@ Möchten Sie die Datei trotzdem löschen? QHostInfoAgent - + - + Host not found Rechner konnte nicht gefunden werden @@ -4051,7 +4124,7 @@ Möchten Sie die Datei trotzdem löschen? QIODevice - + Permission denied Zugriff verweigert @@ -4071,7 +4144,7 @@ Möchten Sie die Datei trotzdem löschen? Kein freier Speicherplatz auf dem Gerät vorhanden - + Unknown error Unbekannter Fehler @@ -4188,7 +4261,7 @@ Möchten Sie die Datei trotzdem löschen? QLineEdit - + Select All Alles auswählen @@ -4509,39 +4582,6 @@ Möchten Sie die Datei trotzdem löschen? - QMediaPlayer - - - The QMediaPlayer object does not have a valid service - Das QMediaPlayer-Objekt verfügt über keinen gültigen Dienst - - - - QMediaPlaylist - - - - Could not add items to read only playlist. - Es konnten keine Einträge zur Wiedergabeliste hinzugefügt werden, da sie schreibgeschützt ist. - - - - - Playlist format is not supported - Das Format der Wiedergabeliste ist nicht unterstützt - - - - The file could not be accessed. - Auf die Datei konnte nicht zugegriffen werden. - - - - Playlist format is not supported. - Das Format der Wiedergabeliste ist nicht unterstützt. - - - QMenu @@ -4566,7 +4606,7 @@ Möchten Sie die Datei trotzdem löschen? QMenuBar - + Actions Optionen @@ -4867,7 +4907,7 @@ Möchten Sie die Datei trotzdem löschen? QNetworkAccessHttpBackend - + No suitable proxy found Es konnte kein geeigneter Proxy-Server gefunden werden @@ -4875,7 +4915,7 @@ Möchten Sie die Datei trotzdem löschen? QNetworkAccessManager - + Network access is disabled. Der Zugriff auf das Netzwerk ist nicht gestattet. @@ -4883,12 +4923,12 @@ Möchten Sie die Datei trotzdem löschen? QNetworkReply - + Error downloading %1 - server replied: %2 Beim Herunterladen von %1 trat ein Fehler auf - Die Antwort des Servers ist: %2 - + Protocol "%1" is unknown Das Protokoll "%1" ist unbekannt @@ -4898,7 +4938,7 @@ Möchten Sie die Datei trotzdem löschen? Fehler bei Netzwerkverbindung. - + Temporary network failure. Das Netzwerk ist zur Zeit ausgefallen. @@ -4906,7 +4946,7 @@ Möchten Sie die Datei trotzdem löschen? QNetworkReplyImpl - + Operation canceled Operation abgebrochen @@ -4924,7 +4964,7 @@ Möchten Sie die Datei trotzdem löschen? QNetworkSessionPrivateImpl - + Unknown session error. Unbekannter Fehler bei Netzwerkverbindung. @@ -5130,11 +5170,17 @@ Möchten Sie die Datei trotzdem löschen? QObject - + "%1" duplicates a previous role name and will be disabled. "%1" ist bereits als Name einer Rolle vergeben und wird daher deaktiviert. + + + invalid query: "%1" + Ungültige Abfrage: "%1" + + PulseAudio Sound Server @@ -6212,7 +6258,7 @@ Bitte wählen Sie einen anderen Dateinamen. QSQLiteDriver - + Error opening database Die Datenbankverbindung konnte nicht geöffnet werden @@ -6240,8 +6286,8 @@ Bitte wählen Sie einen anderen Dateinamen. QSQLiteResult - - + + Unable to fetch row Der Datensatz konnte nicht abgeholt werden @@ -6267,7 +6313,7 @@ Bitte wählen Sie einen anderen Dateinamen. Die Anzahl der Parameter ist falsch - + No query Kein Abfrage @@ -6810,8 +6856,9 @@ Bitte wählen Sie einen anderen Dateinamen. QShortcut - + Space + 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. Leertaste @@ -7999,7 +8046,7 @@ Bitte wählen Sie einen anderen Dateinamen. Abbrechen - + Exit Beenden @@ -8343,7 +8390,7 @@ Bitte wählen Sie einen anderen Dateinamen. QTextControl - + &Undo &Rückgängig @@ -9056,7 +9103,7 @@ Bitte wählen Sie einen anderen Dateinamen. Unbekannt - + Web Inspector - %2 Web Inspector - %2 @@ -9067,7 +9114,12 @@ Bitte wählen Sie einen anderen Dateinamen. %1 (%2x%3 Pixel) - + + Redirection limit reached + Maximal Anzahl von Weiterleitungen wurde erreicht + + + Bad HTTP request Ungültige HTTP-Anforderung @@ -9152,7 +9204,7 @@ Bitte wählen Sie einen anderen Dateinamen. - + JavaScript Alert - %1 JavaScript-Hinweis - %1 @@ -9177,7 +9229,7 @@ Bitte wählen Sie einen anderen Dateinamen. Das Skript dieser Webseite ist fehlerhaft. Möchten Sie es anhalten? - + Move the cursor to the next character Positionsmarke auf folgendes Zeichen setzen @@ -9398,7 +9450,7 @@ Bitte wählen Sie einen anderen Dateinamen. QWidget - + * * @@ -11303,13 +11355,13 @@ Bitte wählen Sie einen anderen Dateinamen. - + Type %1 of %2 element cannot be resolved. Der Typ %1 des Elements %2 kann nicht aufgelöst werden. - + Base type %1 of complex type cannot be resolved. Der Basistyp %1 des komplexen Typs kann nicht aufgelöst werden. @@ -11319,7 +11371,7 @@ Bitte wählen Sie einen anderen Dateinamen. %1 kann keinen komplexen Basistyp haben, der '%2' spezifiziert. - + Content model of complex type %1 contains %2 element so it cannot be derived by extension from a non-empty type. Das Inhaltsmodell des komplexen Typs %1enthält ein Element '%2'; es kann daher nicht durch Erweiterung von einem Typ abgeleitet werden, der nicht leer ist. @@ -12229,27 +12281,4 @@ Bitte wählen Sie einen anderen Dateinamen. Das Attribut '%1' enthält einen ungültigen qualifizierten Namen: %2. - - Widget - - - Widget - Widget - - - - about:blank - about:blank - - - - Image from Qt to HTML - Bild von Qt zu HTML - - - - Pixmap from Qt to HTML - Pixmap von Qt zu HTML - - -- cgit v0.12