diff --git a/.drone.yml b/.drone.yml index 4475c63..638d928 100644 --- a/.drone.yml +++ b/.drone.yml @@ -2,7 +2,7 @@ kind: pipeline type: docker environment: - BUILD_TYPE: "REL" + BUILD_TYPE: "DEV" steps: - name: Windows Installer diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7c5f0d6..d6296a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ stages: - build variables: - BUILD_TYPE: "REL" + BUILD_TYPE: "DEV" Windows Installer: stage: build diff --git a/.travis.yml b/.travis.yml index b46e77d..1f5d670 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ service: env: global: - - BUILD_TYPE=REL + - BUILD_TYPE=DEV matrix: include: diff --git a/CMakeLists.txt b/CMakeLists.txt index 9001bc3..c146b5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,13 +11,20 @@ set(CMAKE_AUTORCC ON) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) -find_package(Qt5 COMPONENTS Network Svg Widgets REQUIRED) -find_package(Qt5 COMPONENTS LinguistTools QUIET) +option(QT6_BUILD "Build gta5view with Qt6" OFF) +if(QT6_BUILD) + set(QT_VERSION_MAJOR 6) +else() + set(QT_VERSION_MAJOR 5) +endif() + +find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Network Svg Widgets REQUIRED) +find_package(Qt${QT_VERSION_MAJOR} COMPONENTS LinguistTools QUIET) if(WIN32) - find_package(Qt5 COMPONENTS WinExtras REQUIRED) + find_package(Qt${QT_VERSION_MAJOR} COMPONENTS WinExtras REQUIRED) list(APPEND GTA5VIEW_LIBS - Qt5::WinExtras + Qt${QT_VERSION_MAJOR}::WinExtras ) list(APPEND GTA5VIEW_DEFINES -DUNICODE @@ -179,7 +186,7 @@ if(QCONF_BUILD) else() list(APPEND GTA5VIEW_RESOURCES res/tr_g5p.qrc - res/tr_qt5.qrc + res/tr_qt${QT_VERSION_MAJOR}.qrc ) endif() @@ -194,6 +201,7 @@ endif() option(WITH_MOTD "Developer message system directed to users" OFF) if(WITH_MOTD) + set(MOTD_WEBURL "" CACHE STRING "Messages WebURL") list(APPEND GTA5VIEW_HEADERS MessageThread.h ) @@ -212,6 +220,11 @@ endif() option(WITH_TELEMETRY "Hardware survey and basic telemetry system" OFF) if(WITH_TELEMETRY) + set(TELEMETRY_AUTHID "" CACHE STRING "Telemetry AuthID") + set(TELEMETRY_AUTHPW "" CACHE STRING "Telemetry AuthPW") + set(TELEMETRY_PUSHURL "" CACHE STRING "Telemetry PushURL") + set(TELEMETRY_REGURL "" CACHE STRING "Telemetry RegURL") + set(TELEMETRY_WEBURL "" CACHE STRING "Telemetry WebURL") list(APPEND GTA5VIEW_HEADERS TelemetryClass.h tmext/TelemetryClassAuthenticator.h @@ -332,11 +345,13 @@ endif() if(Qt5Core_VERSION VERSION_GREATER_EQUAL "5.14.0") qt5_import_plugins(gta5view INCLUDE Qt5::QSvgPlugin) +elseif(Qt6Core_VERSION VERSION_GREATER_EQUAL "6.0") + qt6_import_plugins(gta5view INCLUDE Qt6::QSvgPlugin) endif() target_compile_definitions(gta5view PRIVATE ${GTA5VIEW_DEFINES}) target_include_directories(gta5view PRIVATE ${GTA5VIEW_INCLUDEDIR}) -target_link_libraries(gta5view PRIVATE Qt5::Network Qt5::Svg Qt5::Widgets ${GTA5VIEW_LIBS}) +target_link_libraries(gta5view PRIVATE Qt${QT_VERSION_MAJOR}::Network Qt${QT_VERSION_MAJOR}::Svg Qt${QT_VERSION_MAJOR}::Widgets ${GTA5VIEW_LIBS}) install(TARGETS gta5view DESTINATION bin) install(FILES res/de.syping.gta5view.desktop DESTINATION share/applications) diff --git a/config.h b/config.h index 4d8f504..c070563 100644 --- a/config.h +++ b/config.h @@ -44,7 +44,7 @@ #endif #ifndef GTA5SYNC_APPVER -#define GTA5SYNC_APPVER "1.8.0" +#define GTA5SYNC_APPVER "1.9.0" #endif #if __cplusplus diff --git a/gta5view.pro b/gta5view.pro index 95b2ed5..537835c 100644 --- a/gta5view.pro +++ b/gta5view.pro @@ -217,6 +217,10 @@ isEqual(QT_MAJOR_VERSION, 5): RESOURCES += res/tr_qt5.qrc greaterThan(QT_MAJOR_VERSION, 4): GTA5SYNC_RCC = $$[QT_HOST_BINS]/rcc +# QT6 ONLY STUFF + +isEqual(QT_MAJOR_VERSION, 6): RESOURCES += res/tr_qt6.qrc + # RESOURCE COMPILATION system($$GTA5SYNC_RCC -threshold 0 -compress 9 $$PWD/res/global.qrc -o $$OUT_PWD/qrc_global.cpp) { @@ -241,6 +245,7 @@ INSTALLS += target pixmaps appfiles contains(DEFINES, GTA5SYNC_QCONF) { isEqual(QT_MAJOR_VERSION, 4): RESOURCES -= res/tr_qt4.qrc isEqual(QT_MAJOR_VERSION, 5): RESOURCES -= res/tr_qt5.qrc + isEqual(QT_MAJOR_VERSION, 6): RESOURCES -= res/tr_qt6.qrc !contains(DEFINES, GTA5SYNC_QCONF_IN) { RESOURCES -= res/tr_g5p.qrc langfiles.path = $$GTA5SYNC_PREFIX/share/gta5view/translations diff --git a/res/app.rc b/res/app.rc index 933d799..b089122 100644 --- a/res/app.rc +++ b/res/app.rc @@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "5sync.ico" CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "gta5view.exe.manifest" #include VS_VERSION_INFO VERSIONINFO -FILEVERSION 1, 8, 0, 0 -PRODUCTVERSION 1, 8, 0, 0 +FILEVERSION 1, 9, 0, 0 +PRODUCTVERSION 1, 9, 0, 0 FILEFLAGSMASK 0x3fL FILEFLAGS 0 FILEOS VOS_NT_WINDOWS32 @@ -22,12 +22,12 @@ BEGIN BEGIN VALUE "CompanyName", "Syping" VALUE "FileDescription", "gta5view" - VALUE "FileVersion", "1.8.0" + VALUE "FileVersion", "1.9.0" VALUE "InternalName", "gta5view" VALUE "LegalCopyright", "Copyright © 2016-2020 Syping" VALUE "OriginalFilename", "gta5view.exe" VALUE "ProductName", "gta5view" - VALUE "ProductVersion", "1.8.0" + VALUE "ProductVersion", "1.9.0" END END END diff --git a/res/qtbase_de.qm b/res/qt5/qtbase_de.qm similarity index 100% rename from res/qtbase_de.qm rename to res/qt5/qtbase_de.qm diff --git a/res/qtbase_fr.qm b/res/qt5/qtbase_fr.qm similarity index 100% rename from res/qtbase_fr.qm rename to res/qt5/qtbase_fr.qm diff --git a/res/qtbase_ko.qm b/res/qt5/qtbase_ko.qm similarity index 100% rename from res/qtbase_ko.qm rename to res/qt5/qtbase_ko.qm diff --git a/res/qtbase_ru.qm b/res/qt5/qtbase_ru.qm similarity index 100% rename from res/qtbase_ru.qm rename to res/qt5/qtbase_ru.qm diff --git a/res/qtbase_uk.qm b/res/qt5/qtbase_uk.qm similarity index 100% rename from res/qtbase_uk.qm rename to res/qt5/qtbase_uk.qm diff --git a/res/qtbase_zh_TW.qm b/res/qt5/qtbase_zh_TW.qm similarity index 100% rename from res/qtbase_zh_TW.qm rename to res/qt5/qtbase_zh_TW.qm diff --git a/res/qt6/qtbase_de.qm b/res/qt6/qtbase_de.qm new file mode 100644 index 0000000..4a4c988 Binary files /dev/null and b/res/qt6/qtbase_de.qm differ diff --git a/res/qt6/qtbase_fr.qm b/res/qt6/qtbase_fr.qm new file mode 100644 index 0000000..009fb5a Binary files /dev/null and b/res/qt6/qtbase_fr.qm differ diff --git a/res/qt6/qtbase_ko.qm b/res/qt6/qtbase_ko.qm new file mode 100644 index 0000000..20e4661 Binary files /dev/null and b/res/qt6/qtbase_ko.qm differ diff --git a/res/qt6/qtbase_ru.qm b/res/qt6/qtbase_ru.qm new file mode 100644 index 0000000..c1a2286 Binary files /dev/null and b/res/qt6/qtbase_ru.qm differ diff --git a/res/qt6/qtbase_uk.qm b/res/qt6/qtbase_uk.qm new file mode 100644 index 0000000..21a3038 Binary files /dev/null and b/res/qt6/qtbase_uk.qm differ diff --git a/res/qt6/qtbase_zh_TW.qm b/res/qt6/qtbase_zh_TW.qm new file mode 100644 index 0000000..6205298 Binary files /dev/null and b/res/qt6/qtbase_zh_TW.qm differ diff --git a/res/qtbase_en_GB.qm b/res/qtbase_en_GB.qm index f88ef88..8a7e376 100644 Binary files a/res/qtbase_en_GB.qm and b/res/qtbase_en_GB.qm differ diff --git a/res/qtbase_en_GB.ts b/res/qtbase_en_GB.ts index 33da638..0fbfffd 100644 --- a/res/qtbase_en_GB.ts +++ b/res/qtbase_en_GB.ts @@ -1,6645 +1,6 @@ - - - - Intro - - - - Introx - - - - - AddDialog - - Add a Contact - - - - - AddTorrentDialog - - Choose a torrent file - - - - Torrents (*.torrent);; All files (*.*) - - - - Choose a destination directory - - - - - AddTorrentFile - - Add a torrent - - - - Select a torrent source - - - - Destination: - - - - Tracker URL: - - - - Browse - - - - File(s): - - - - Size: - - - - Creator: - - - - <none> - - - - Torrent file: - - - - Comment: - - - - 0 - - - - &OK - - - - &Cancel - - - - - AddressBook - - Name: - - - - Address: - - - - Simple Address Book - - - - &Add - - - - &Submit - - - - &Cancel - - - - Empty Field - - - - Please enter a name and address. - - - - Add Successful - - - - "%1" has been added to your address book. - - - - Add Unsuccessful - - - - Sorry, "%1" is already in your address book. - - - - &Next - - - - &Previous - - - - &Edit - - - - &Remove - - - - Edit Successful - - - - "%1" has been edited in your address book. - - - - Edit Unsuccessful - - - - Confirm Remove - - - - Are you sure you want to remove "%1"? - - - - Remove Successful - - - - "%1" has been removed from your address book. - - - - &Find - - - - Contact Not Found - - - - Sorry, "%1" is not in your address book. - - - - &Load... - - - - Load contacts from a file - - - - &Save... - - - - Save contacts to a file - - - - Save Address Book - - - - Address Book (*.abk);;All Files (*) - - - - Unable to open file - - - - Open Address Book - - - - No contacts in file - - - - The file you are attempting to open contains no contacts. - - - - E&xport - - - - Export as vCard - - - - Export Contact - - - - vCard Files (*.vcf);;All Files (*) - - - - Export Successful - - - - "%1" has been exported as a vCard. - - - - - AddressWidget - - Duplicate Name - - - - The name "%1" already exists. - - - - Edit a Contact - - - - Unable to open file - - - - No contacts in file - - - - The file you are attempting to open contains no contacts. - - - - - AnalogClock - - Analog Clock - - - - - ApplicationsTab - - Open with: - - - - Application %1 - - - - Always use this application to open this type of file - - - - Always use this application to open files with the extension '%1' - - - - - BasicToolsPlugin - - Pencil - - - - Air Brush - - - - Random Letters - - - - Circle - - - - Star - - - - Text... - - - - Text Shape - - - - Enter text: - - - - Qt - - - - Invert Pixels - - - - Swap RGB - - - - Grayscale - - - - - BearerMonitor - - BearerMonitor - - - - System State - - - - Online State: - - - - Configurations - - - - Name: - - - - State: - - - - Type: - - - - Invalid - - - - Purpose: - - - - Unknown - - - - Identifier: - - - - Roaming: - - - - Children: - - - - Network Location Awareness - - - - Register - - - - Unregister - - - - New Session - - - - Delete Session - - - - Scan - - - - %p% - - - - 1 - - - - Sessions - - - - Session 1 - - - - Online - - - - Offline - - - - Active - - - - Discovered - - - - Defined - - - - Undefined - - - - Internet Access Point - - - - Service Network - - - - User Choice - - - - Public - - - - Private - - - - Service Specific - - - - Available - - - - Not available - - - - - BlockingClient - - &Server name: - - - - S&erver port: - - - - This examples requires that you run the Fortune Server example as well. - - - - Get Fortune - - - - Quit - - - - Blocking Fortune Client - - - - The host was not found. Please check the host and port settings. - - - - The connection was refused by the peer. Make sure the fortune server is running, and check that the host name and port settings are correct. - - - - The following error occurred: %1. - - - - - BookWindow - - Books - - - - Details - - - - <b>Title:</b> - - - - <b>Author: </b> - - - - <b>Genre:</b> - - - - <b>Year:</b> - - - - <b>Rating:</b> - - - - Author Name - - - - Genre - - - - Title - - - - Year - - - - Rating - - - - - Browser - - Qt SQL Browser - - - - SQL Query - - - - &Clear - - - - &Submit - - - - &Insert Row - - - - Inserts a new Row - - - - &Delete Row - - - - Deletes the current Row - - - - Submit on &Field Change - - - - Commit on Field Change - - - - Submit on &Row Change - - - - Commit on Row Change - - - - Submit &Manually - - - - Commit Manually - - - - &Submit All - - - - Submit Changes - - - - &Revert All - - - - Revert - - - - S&elect - - - - Refresh Data from Database - - - - No database drivers found - - - - This demo requires at least one Qt database driver. Please check the documentation how to build the Qt SQL plugins. - - - - Ready. - - - - Query OK. - - - - Query OK, number of affected rows: %1 - - - - Unable to open database - - - - An error occurred while opening the connection: - - - - About - - - - The SQL Browser demonstration shows how a data browser can be used to visualize the results of SQLstatements on a live database - - - - - Calculator - - . - - - - ± - - - - Backspace - - - - Clear - - - - Clear All - - - - MC - - - - MR - - - - MS - - - - M+ - - - - ÷ - - - - × - - - - - - - - - + - - - - Sqrt - - - - x² - - - - 1/x - - - - = - - - - Calculator - - - - #### - - - - - CertificateInfo - - Display Certificate Information - - - - Certification Path - - - - Certificate Information - - - - %1%2 (%3) - - - - Issued by: - - - - Organization: %1 - - - - Subunit: %1 - - - - Country: %1 - - - - Locality: %1 - - - - State/Province: %1 - - - - Common Name: %1 - - - - Issuer Organization: %1 - - - - Issuer Unit Name: %1 - - - - Issuer Country: %1 - - - - Issuer Locality: %1 - - - - Issuer State/Province: %1 - - - - Issuer Common Name: %1 - - - - - ChatDialog - - Chat - - - - Message: - - - - ! Unknown command: %1 - - - - * %1 has joined - - - - * %1 has left - - - - Launch several instances of this program on your local network and start chatting! - - - - - ChatMainWindow - - Qt D-Bus Chat - - - - Messages sent and received from other users - - - - Message: - - - - Sends a message to other people - - - - Send - - - - Help - - - - File - - - - Quit - - - - Ctrl+Q - - - - About Qt... - - - - Change nickname... - - - - Ctrl+N - - - - - ChipTester - - Chip Example - - - - - ClassInfoPage - - Class Information - - - - Specify basic information about the class for which you want to generate skeleton source code files. - - - - &Class name: - - - - B&ase class: - - - - Generate Q_OBJECT &macro - - - - C&onstructor - - - - &QObject-style constructor - - - - Q&Widget-style constructor - - - - &Default constructor - - - - &Generate copy constructor and operator= - - - - - ClassWizard - - Class Wizard - - - - - Client - - &Server name: - - - - This examples requires that you run the Fortune Server example as well. - - - - Get Fortune - - - - Quit - - - - Fortune Client - - - - The host was not found. Please check the host name and port settings. - - - - The connection was refused by the peer. Make sure the fortune server is running, and check that the host name and port settings are correct. - - - - The following error occurred: %1. - - - - S&erver port: - - - - Opening network session. - - - - - CloseButton - - Close Tab - - - - - CodeStylePage - - Code Style Options - - - - Choose the formatting of the generated code. - - - - &Start generated files with a comment - - - - &Protect header file against multiple inclusions - - - - &Macro name: - - - - &Include base class definition - - - - Base class include: - - - - - ColorDock - - Size Hint: - - - - Min Size Hint: - - - - Max Size: - - - - Dock Widget Max Size: - - - - - ColorSwatch - - Closable - - - - Movable - - - - Floatable - - - - Vertical title bar - - - - Floating - - - - Allow on Left - - - - Allow on Right - - - - Allow on Top - - - - Allow on Bottom - - - - Place on Left - - - - Place on Right - - - - Place on Top - - - - Place on Bottom - - - - Tab into - - - - Split horizontally into - - - - Split vertically into - - - - Modified - - - - Raise - - - - Change Size Hints... - - - - - CompositionWidget - - Composition Modes - - - - Mode - - - - Clear - - - - Source - - - - Destination - - - - Source Over - - - - Destination Over - - - - Source In - - - - Dest In - - - - Source Out - - - - Dest Out - - - - Source Atop - - - - Dest Atop - - - - Xor - - - - Plus - - - - Multiply - - - - Screen - - - - Overlay - - - - Darken - - - - Lighten - - - - Color Dodge - - - - Color Burn - - - - Hard Light - - - - Soft Light - - - - Difference - - - - Exclusion - - - - Circle color - - - - Circle alpha - - - - Show Source - - - - Use OpenGL - - - - What's This? - - - - Animated - - - - - ConclusionPage - - Conclusion - - - - Click %1 to generate the class skeleton. - - - - Complete Your Registration - - - - I agree to the terms of the license - - - - <u>Evaluation License Agreement:</u> You can use this software for 30 days and make one backup, but you are not allowed to distribute it. - - - - <u>First-Time License Agreement:</u> You can use this software subject to the license you will receive by email. - - - - <u>Upgrade License Agreement:</u> This software is licensed under the terms of your current license. - - - - &Print - - - - Print License - - - - As an environmentally friendly measure, the license text will not actually be printed. - - - - - ConfigDialog - - Close - - - - Config Dialog - - - - Configuration - - - - Update - - - - Query - - - - - ConfigurationPage - - Server configuration - - - - Server: - - - - Qt (Australia) - - - - Qt (Germany) - - - - Qt (Norway) - - - - Qt (People's Republic of China) - - - - Qt (USA) - - - - - Connection - - undefined - - - - unknown - - - - - ConnectionWidget - - database - - - - Refresh - - - - Show Schema - - - - - Controller - - Controller - - - - Decelerate - - - - Accelerate - - - - Right - - - - Left - - - - - ControllerWindow - - &Quit - - - - Window Flags - - - - Type - - - - Window - - - - Dialog - - - - Sheet - - - - Drawer - - - - Popup - - - - Tool - - - - Tooltip - - - - Splash screen - - - - Hints - - - - MS Windows fixed size dialog - - - - X11 bypass window manager - - - - Frameless window - - - - No drop shadow - - - - Window title - - - - Window system menu - - - - Window minimize button - - - - Window maximize button - - - - Window close button - - - - Window context help button - - - - Window shade button - - - - Window stays on top - - - - Window stays on bottom - - - - Customize window - - - - - CreateDockWidgetDialog - - Add Dock Widget - - - - Object name: - - - - Location: - - - - Top - - - - Left - - - - Right - - - - Bottom - - - - Restore - - - - - DetailsDialog - - Name: - - - - Address: - - - - Send information about products and special offers - - - - T-shirt - - - - Badge - - - - Reference book - - - - Coffee cup - - - - Incomplete Form - - - - The form does not contain all the necessary information. -Do you want to discard it? - - - - - DetailsPage - - Fill In Your Details - - - - Please fill all three fields. Make sure to provide a valid email address (e.g., tanaka.aya@example.co.jp). - - - - &Company name: - - - - &Email address: - - - - &Postal address: - - - - - Dialog - - Dialog - - - - Load Image From File... - - - - Launch two of these dialogs. In the first, press the top button and load an image from a file. In the second, press the bottom button and display the loaded image from shared memory. - - - - Display Image From Shared Memory - - - - SharedMemory Example - - - - Select an image file - - - - Images (*.png *.xpm *.jpg) - - - - Selected file is not an image, please select another. - - - - Unable to create shared memory segment. - - - - Unable to attach to shared memory segment. -Load an image first. - - - - Unable to detach from shared memory. - - - - Http authentication required - - - - You need to supply a Username and a Password to access this site - - - - Username: - - - - Password: - - - - Site: - - - - %1 at %2 - - - - Client ready - - - - Server ready - - - - &Start - - - - &Quit - - - - Loopback - - - - Unable to start the test: %1. - - - - Listening - - - - Connecting - - - - Accepted connection - - - - Connected - - - - Received %1MB - - - - Sent %1MB - - - - Network error - - - - The following error occurred: %1. - - - - Quit - - - - Threaded Fortune Server - - - - Unable to start the server: %1. - - - - The server is running on - -IP: %1 -port: %2 - -Run the Fortune Client example now. - - - - Add Album - - - - Please provide both the name of the artist and the title of the album. - - - - Artist: - - - - Title: - - - - Year: - - - - Tracks (separated by comma): - - - - &Close - - - - &Revert - - - - &Submit - - - - <p>Message boxes have a caption, a text, and any number of buttons, each with standard or custom texts.<p>Click a button to close the message box. Pressing the Esc button will activate the detected escape button (if any). - - - - If a message box has detailed text, the user can reveal it by pressing the Show Details... button. - - - - Options - - - - QInputDialog::get&Int() - - - - QInputDialog::get&Double() - - - - QInputDialog::getIte&m() - - - - QInputDialog::get&Text() - - - - QInputDialog::get&MultiLineText() - - - - QColorDialog::get&Color() - - - - QFontDialog::get&Font() - - - - QFileDialog::getE&xistingDirectory() - - - - QFileDialog::get&OpenFileName() - - - - QFileDialog::&getOpenFileNames() - - - - QFileDialog::get&SaveFileName() - - - - QMessageBox::critica&l() - - - - QMessageBox::i&nformation() - - - - QMessageBox::&question() - - - - QMessageBox::&warning() - - - - QErrorMessage::showM&essage() - - - - Input Dialogs - - - - Do not use native dialog - - - - Show alpha channel - - - - No buttons - - - - Color Dialog - - - - Show scalable fonts - - - - Show non scalable fonts - - - - Show monospaced fonts - - - - Show proportional fonts - - - - Font Dialog - - - - Show directories only - - - - Do not resolve symlinks - - - - Do not confirm overwrite - - - - Do not use sheet - - - - Readonly - - - - Hide name filter details - - - - Do not use custom directory icons (Windows) - - - - File Dialogs - - - - Message Boxes - - - - QInputDialog::getInteger() - - - - Percentage: - - - - %1% - - - - QInputDialog::getDouble() - - - - Amount: - - - - Spring - - - - Summer - - - - Fall - - - - Winter - - - - QInputDialog::getItem() - - - - Season: - - - - QInputDialog::getText() - - - - User name: - - - - QInputDialog::getMultiLineText() - - - - Address: - - - - QFileDialog::getExistingDirectory() - - - - QFileDialog::getOpenFileName() - - - - All Files (*);;Text Files (*.txt) - - - - QFileDialog::getOpenFileNames() - - - - QFileDialog::getSaveFileName() - - - - QMessageBox::critical() - - - - Abort - - - - Retry - - - - Ignore - - - - QMessageBox::information() - - - - OK - - - - Escape - - - - QMessageBox::question() - - - - Yes - - - - No - - - - Cancel - - - - QMessageBox::warning() - - - - Save &Again - - - - &Continue - - - - Save Again - - - - Continue - - - - This dialog shows and remembers error messages. If the checkbox is checked (as it is by default), the shown message will be shown again, but if the user unchecks the box the message will not appear again if QErrorMessage::showMessage() is called with the same message. - - - - If the box is unchecked, the message won't appear again. - - - - Standard Dialogs - - - - SIP Dialog Example - - - - Open and close the SIP - - - - This dialog resizes if the SIP is opened - - - - Close Dialog - - - - This widget takes up all the remaining space in the top-level layout. - - - - Basic Layouts - - - - &File - - - - E&xit - - - - Horizontal layout - - - - Button %1 - - - - Grid layout - - - - Line %1: - - - - This widget takes up about two thirds of the grid layout. - - - - Form layout - - - - Line 1: - - - - Line 2, long text: - - - - Line 3: - - - - Dynamic Layouts - - - - Dynamic Layouts Help - - - - This example shows how to change layouts dynamically. - - - - Rotable Widgets - - - - Orientation of buttons: - - - - Horizontal - - - - Vertical - - - - Rotate &Widgets - - - - Hello world! - - - - Wiggly - - - - - Dials - - Form - - - - - DigitalClock - - Digital Clock - - - - - DomModel - - Name - - - - Attributes - - - - Value - - - - - DragWidget - - Draggable Text - - - - Fridge Magnets - - - - - DropArea - - <drop content> - - - - Cannot display data - - - - - DropSiteWindow - - This example accepts drags from other applications and displays the MIME types provided by the drag object. - - - - Format - - - - Content - - - - Clear - - - - Quit - - - - Drop Site - - - - - EchoWindow - - Send Message - - - - Message: - - - - Answer: - - - - - EmbeddedDialog - - Embedded Dialog - - - - Layout Direction: - - - - Left to Right - - - - Right to Left - - - - Select Font: - - - - Style: - - - - Layout spacing: - - - - - EvaluatePage - - Evaluate <i>Super Product One</i>&trade; - - - - Please fill both fields. Make sure to provide a valid email address (e.g., john.smith@example.com). - - - - N&ame: - - - - &Email address: - - - - - ExtraFiltersPlugin - - Flip Horizontally - - - - Flip Vertically - - - - Smudge... - - - - Threshold... - - - - Smudge Filter - - - - Enter number of iterations: - - - - Threshold Filter - - - - Enter threshold: - - - - - FadeMessage - - Press me - - - - - FileManager - - Failed to create directory %1 - - - - Failed to open/create file %1: %2 - - - - Failed to resize file %1: %2 - - - - Failed to read from file %1: %2 - - - - Failed to read from file %1 (read %3 bytes): %2 - - - - Failed to write to file %1: %2 - - - - - FilterWidget - - Case Sensitive - - - - - FindDialog - - Find &what: - - - - Match &case - - - - Search from &start - - - - &Find - - - - &More - - - - &Whole words - - - - Search &backward - - - - Search se&lection - - - - Extension - - - - Enter the name of a contact: - - - - Find a Contact - - - - Empty Field - - - - Please enter a name. - - - - - Form - - Form - - - - QFrame { -background-color: #45629a; -} - -QLabel { -color: white; -} - - - - Powered by FlightView - - - - background-color: white; -color: #45629a; - - - - Ready - - - - color: black; -border: 1px solid black; -background: white; -selection-background-color: lightgray; - - - - color: rgb(255, 255, 255); -background-color: rgb(85, 85, 255); -padding: 2px; -border: 2px solid rgb(0, 0, 127); - - - - Search - - - - QFrame { border: 2px solid white; -border-radius: 10px; -margin: 5px; -background-color: rgba(69, 98, 154, 192); } - - - - color: white; -border: none; -background-color: none; - - - - Secure Socket Client - - - - Host name: - - - - www.qt.io - - - - Port: - - - - Active session - - - - Connect to host - - - - Cryptographic Cipher: - - - - <none> - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"></p></body></html> - - - - Input: - - - - &Send - - - - Easing curves - - - - Path type - - - - Line - - - - buttonGroup - - - - Circle - - - - Properties - - - - Period - - - - Overshoot - - - - Amplitude - - - - BackSide - - - - Settings - - - - Title: - - - - Pad Navigator Example - - - - Modified: - - - - Extent - - - - Other input - - - - Widgets On Graphics View - - - - QGraphicsProxyWidget - - - - QGraphicsWidget - - - - QObject - - - - QGraphicsItem - - - - QGraphicsLayoutItem - - - - QGraphicsGridLayout - - - - QGraphicsLayout - - - - QGraphicsLinearLayout - - - - - FortuneServer - - You've been leading a dog's life. Stay off the furniture. - - - - You've got to think about tomorrow. - - - - You will be surprised by a loud noise. - - - - You will feel hungry again in another hour. - - - - You might have mail. - - - - You cannot kill time without injuring eternity. - - - - Computers are not intelligent. They only think they are. - - - - - GeneralTab - - File Name: - - - - Path: - - - - Size: - - - - %1 K - - - - Last Read: - - - - Last Modified: - - - - - GradientWidget - - Gradients - - - - Color Editor - - - - Gradient Type - - - - Linear Gradient - - - - Radial Gradient - - - - Conical Gradient - - - - Spread Method - - - - Pad Spread - - - - Reflect Spread - - - - Repeat Spread - - - - Defaults - - - - 1 - - - - 2 - - - - 3 - - - - Reset - - - - Show Source - - - - Use OpenGL - - - - What's This? - - - - - GraphWidget - - Elastic Nodes - - - - Click and drag the nodes around, and zoom with the mouse wheel or the '+' and '-' keys - - - - - GraphicsView - - Boxes - - - - - HttpWindow - - Please enter the URL of a file you want to download. - - - - - - Download - - - - HTTP - - - - &URL: - - - - &Download directory: - - - - Default &file: - - - - Quit - - - - Downloading %1... - - - - Error - - - - Invalid URL: %1: %2 - - - - Overwrite Existing File - - - - There already exists a file called %1 in the current directory. Overwrite? - - - - Unable to save the file %1: %2. - - - - Download canceled. - - - - Download failed: -%1. - - - - Redirect - - - - Redirect to %1 ? - - - - Downloaded %1 bytes to %2 -in -%3 - - - - %1 at %2 - - - - SSL Errors - - - - One or more SSL errors has occurred: -%1 - - - - - IconPreviewArea - - Normal - - - - Active - - - - Disabled - - - - Selected - - - - Off - - - - On - - - - <b>%1</b> - - - - Size: %1x%2 -Actual size: %3x%4 -Device pixel ratio: %5 - - - - - IconSizeSpinBox - - (\d+)(\s*[xx]\s*\d+)? - - - - %1 x %1 - - - - - ImageComposer - - SourceOver - - - - DestinationOver - - - - Clear - - - - Source - - - - Destination - - - - SourceIn - - - - DestinationIn - - - - SourceOut - - - - DestinationOut - - - - SourceAtop - - - - DestinationAtop - - - - Xor - - - - Plus - - - - Multiply - - - - Screen - - - - Overlay - - - - Darken - - - - Lighten - - - - ColorDodge - - - - ColorBurn - - - - HardLight - - - - SoftLight - - - - Difference - - - - Exclusion - - - - = - - - - Image Composition - - - - Choose Source Image - - - - Choose Destination Image - - - - - ImageViewer - - Cannot load %1: %2 - - - - Opened "%1", %2x%3, Depth: %4 - - - - Cannot write %1: %2 - - - - Wrote "%1" - - - - Open File - - - - Save File As - - - - No image in clipboard - - - - Obtained image from clipboard, %1x%2, Depth: %3 - - - - About Image Viewer - - - - <p>The <b>Image Viewer</b> example shows how to combine QLabel and QScrollArea to display an image. QLabel is typically used for displaying a text, but it can also display an image. QScrollArea provides a scrolling view around another widget. If the child widget exceeds the size of the frame, QScrollArea automatically provides scroll bars. </p><p>The example demonstrates how QLabel's ability to scale its contents (QLabel::scaledContents), and QScrollArea's ability to automatically resize its contents (QScrollArea::widgetResizable), can be used to implement zooming and scaling features. </p><p>In addition the example shows how to use QPainter to print an image.</p> - - - - &File - - - - &Open... - - - - &Save As... - - - - &Print... - - - - E&xit - - - - Ctrl+Q - - - - &Edit - - - - &Copy - - - - &Paste - - - - &View - - - - Zoom &In (25%) - - - - Zoom &Out (25%) - - - - &Normal Size - - - - Ctrl+S - - - - &Fit to Window - - - - Ctrl+F - - - - &Help - - - - &About - - - - About &Qt - - - - Image Viewer - - - - [file] - - - - Image file to open. - - - - - Images - - Image loading and scaling example - - - - Open Images - - - - Cancel - - - - Pause/Resume - - - - Select Images - - - - - InformationWindow - - Item: - - - - Description: - - - - Image file: - - - - &Close - - - - &Revert - - - - &Submit - - - - - IntroPage - - Introduction - - - - This wizard will generate a skeleton C++ class definition, including a few functions. You simply need to specify the class name and set a few options to produce a header file and an implementation file for your new C++ class. - - - - This wizard will help you register your copy of <i>Super Product One</i>&trade; or start evaluating the product. - - - - &Register your copy - - - - &Evaluate the product for 30 days - - - - - ItemDialog - - Items (double click to flip) - - - - Add Qt box - - - - Add circle - - - - Add square - - - - - LicenseWizard - - License Wizard - - - - The decision you make here will affect which page you get to see next. - - - - Make sure to provide a valid email address, such as toni.buddenbrook@example.de. - - - - If you don't provide an upgrade key, you will be asked to fill in your details. - - - - Make sure to provide a valid email address, such as thomas.gradgrind@example.co.uk. - - - - You must accept the terms and conditions of the license to proceed. - - - - This help is likely not to be of any help. - - - - Sorry, I already gave what help I could. Maybe you should try asking a human? - - - - License Wizard Help - - - - - LocationDialog - - Native - - - - INI - - - - User - - - - System - - - - QtProject - - - - Any - - - - Qt Creator - - - - Application Example - - - - Assistant - - - - Designer - - - - Linguist - - - - &Format: - - - - &Scope: - - - - &Organization: - - - - &Application: - - - - Setting Locations - - - - Location - - - - Access - - - - Open Application Settings - - - - Read-write - - - - Read-only - - - - Read-only fallback - - - - - MAC_APPLICATION_MENU - - Services - - - - Hide %1 - - - - Hide Others - - - - Show All - - - - Preferences... - - - - Quit %1 - - - - About %1 - - - - - MainWindow - - Torrent - - - - Peers/Seeds - - - - Progress - - - - Down rate - - - - Up rate - - - - Status - - - - Downloading - - - - Add &new torrent - - - - &Pause torrent - - - - &Remove torrent - - - - &File - - - - E&xit - - - - &Help - - - - &About - - - - About &Qt - - - - Tools - - - - :/icons/1downarrow.png - - - - Move down - - - - :/icons/1uparrow.png - - - - Move up - - - - Rate control - - - - Max download: - - - - 0 KB/s - - - - 99999 KB/s - - - - Max upload: - - - - Torrent Client - - - - Choose a torrent file - - - - Torrents (*.torrent);; All files (*.*) - - - - Error - - - - An error occurred while downloading %0: %1 - - - - Already downloading - - - - The torrent file %1 is already being downloaded. - - - - The torrent file %1 cannot not be opened/resumed. - - - - Torrent: %1<br>Destination: %2 - - - - 0/0 - - - - Idle - - - - Torrent: %1<br>Destination: %2<br>State: %3 - - - - %1/%2 - - - - Resume torrent - - - - Pause torrent - - - - %1 KB/s - - - - About Torrent Client - - - - Disconnecting from trackers - - - - Abort - - - - Music Archive - - - - Artist : %1 -Number of Albums: %2 - - - - Title: %1 (%2) - - - - Delete Album - - - - Are you sure you want to delete '%1' by '%2'? - - - - Select the album you want to delete. - - - - Artist - - - - Album - - - - Details - - - - &Add album... - - - - &Delete album... - - - - &Quit - - - - Ctrl+A - - - - Ctrl+D - - - - About Music Archive - - - - <p>The <b>Music Archive</b> example shows how to present data from different data sources in the same application. The album titles, and the corresponding artists and release dates, are kept in a database, while each album's tracks are stored in an XML file. </p><p>The example also shows how to add as well as remove data from both the database and the associated XML file using the API provided by the Qt SQL and Qt XML modules, respectively.</p> - - - - Finger Paint - - - - Open File - - - - About Scribble - - - - <p>The <b>Scribble</b> example shows how to use QMainWindow as the base widget for an application, and how to reimplement some of QWidget's event handlers to receive the events generated for the application's widgets:</p><p> We reimplement the mouse event handlers to facilitate drawing, the paint event handler to update the application and the resize event handler to optimize the application's appearance. In addition we reimplement the close event handler to intercept the close events before terminating the application.</p><p> The example also demonstrates how to use QPainter to draw an image in real time, as well as to repaint widgets.</p> - - - - &Open... - - - - Ctrl+O - - - - %1... - - - - &Print... - - - - Ctrl+Q - - - - &Clear Screen - - - - Ctrl+L - - - - &Save As - - - - &Options - - - - Scribble - - - - The image has been modified. -Do you want to save your changes? - - - - Save As - - - - %1 Files (*.%2);;All Files (*) - - - - New Game - - - - Quit - - - - Puzzle - - - - Open Image - - - - Image Files (*.png *.jpg *.bmp) - - - - The image file could not be loaded. - - - - Puzzle Completed - - - - Congratulations! You have completed the puzzle! -Click OK to start again. - - - - &Game - - - - &Restart - - - - Chip Example - - - - Diagramscene - - - - Blue Grid - - - - White Grid - - - - Gray Grid - - - - % - - - - About Diagram Scene - - - - The <b>Diagram Scene</b> example shows use of the graphics framework. - - - - Conditional - - - - Process - - - - Input/Output - - - - Text - - - - No Grid - - - - Basic Flowchart Shapes - - - - Backgrounds - - - - Bring to &Front - - - - Ctrl+F - - - - Bring item to front - - - - Send to &Back - - - - Ctrl+T - - - - Send item to back - - - - &Delete - - - - Delete - - - - Delete item from diagram - - - - Quit Scenediagram example - - - - Bold - - - - Ctrl+B - - - - Italic - - - - Ctrl+I - - - - Underline - - - - Ctrl+U - - - - A&bout - - - - F1 - - - - &Item - - - - Edit - - - - Font - - - - Color - - - - 50% - - - - 75% - - - - 100% - - - - 125% - - - - 150% - - - - Pointer type - - - - black - - - - white - - - - red - - - - blue - - - - yellow - - - - Address Book - - - - &Save As... - - - - &Tools - - - - &Add Entry... - - - - &Edit Entry... - - - - &Remove Entry - - - - Chart - - - - Label - - - - Quantity - - - - Choose a data file - - - - Loaded %1 - - - - Save file as - - - - Saved %1 - - - - Editable Tree Model - - - - &Actions - - - - Insert Row - - - - Ctrl+I, R - - - - Remove Row - - - - Ctrl+R, R - - - - Insert Column - - - - Ctrl+I, C - - - - Remove Column - - - - Ctrl+R, C - - - - Insert Child - - - - Ctrl+N - - - - Title - - - - Description - - - - Position: (%1,%2) - - - - Position: (%1,%2) in top level - - - - Pixel size: - - - - Pixelator - - - - Choose an image - - - - %1 - Pixelator - - - - Large Image Size - - - - The printed image may be very large. Are you sure that you want to print it? - - - - Print Image - - - - Printing... - - - - Cancel - - - - Printing canceled - - - - The printing process was canceled. - - - - Printing is not supported on this Qt build - - - - About the Pixelator example - - - - This example demonstrates how a standard view and a custom -delegate can be used to produce a specialized representation -of data in a simple custom model. - - - - Simple DOM Model - - - - XML files (*.xml);;HTML files (*.html);;SVG files (*.svg);;User Interface files (*.ui) - - - - About Application - - - - The <b>Application</b> example demonstrates how to write modern GUI applications using Qt, with a menu bar, toolbars, and a status bar. - - - - File - - - - &New - - - - Create a new file - - - - Open an existing file - - - - &Save - - - - Save the document to disk - - - - Save &As... - - - - Save the document under a new name - - - - Exit the application - - - - &Edit - - - - Cu&t - - - - Cut the current selection's contents to the clipboard - - - - &Copy - - - - Copy the current selection's contents to the clipboard - - - - &Paste - - - - Paste the clipboard's contents into the current selection - - - - Show the application's About box - - - - Show the Qt library's About box - - - - Ready - - - - Application - - - - The document has been modified. -Do you want to save your changes? - - - - Cannot read file %1: -%2. - - - - File loaded - - - - Cannot write file %1: -%2. - - - - File saved - - - - Dock Widgets - - - - Yours sincerely, - - - - Choose a file name - - - - Saved '%1' - - - - About Dock Widgets - - - - The <b>Dock Widgets</b> example demonstrates how to use Qt's dock widgets. You can enter your own text, click a customer to add a customer name and address, and click standard paragraphs to add them. - - - - &New Letter - - - - Create a new form letter - - - - &Save... - - - - Save the current form letter - - - - Print the current form letter - - - - Quit the application - - - - &Undo - - - - Undo the last editing action - - - - &View - - - - Customers - - - - Paragraphs - - - - Status Bar - - - - Save layout... - - - - Load layout... - - - - Switch layout direction - - - - Main window - - - - Animated docks - - - - Allow nested docks - - - - Allow tabbed docks - - - - Force tabbed docks - - - - Vertical tabs - - - - Grouped dragging - - - - Tool bars - - - - Unified - - - - &Dock Widgets - - - - Save layout - - - - Failed to open %1 -%2 - - - - Error writing to %1 -%2 - - - - Load layout - - - - Error reading %1 - - - - Top left corner - - - - Top dock area - - - - Left dock area - - - - Top right corner - - - - Right dock area - - - - Bottom left corner - - - - Bottom dock area - - - - Bottom right corner - - - - Destroy dock widget - - - - Add dock widget... - - - - Failed to restore dock widget - - - - MDI - - - - &%1 %2 - - - - About MDI - - - - The <b>MDI</b> example demonstrates how to write multiple document interface applications using Qt. - - - - %1 %2 - - - - Recent... - - - - &Window - - - - Cl&ose - - - - Close the active window - - - - Close &All - - - - Close all the windows - - - - &Tile - - - - Tile the windows - - - - &Cascade - - - - Cascade the windows - - - - Ne&xt - - - - Move the focus to the next window - - - - Pre&vious - - - - Move the focus to the previous window - - - - <i>Choose a menu option, or right-click to invoke a context menu</i> - - - - A context menu is available by right-clicking - - - - Menus - - - - Invoked <b>File|New</b> - - - - Invoked <b>File|Open</b> - - - - Invoked <b>File|Save</b> - - - - Invoked <b>File|Print</b> - - - - Invoked <b>Edit|Undo</b> - - - - Invoked <b>Edit|Redo</b> - - - - Invoked <b>Edit|Cut</b> - - - - Invoked <b>Edit|Copy</b> - - - - Invoked <b>Edit|Paste</b> - - - - Invoked <b>Edit|Format|Bold</b> - - - - Invoked <b>Edit|Format|Italic</b> - - - - Invoked <b>Edit|Format|Left Align</b> - - - - Invoked <b>Edit|Format|Right Align</b> - - - - Invoked <b>Edit|Format|Justify</b> - - - - Invoked <b>Edit|Format|Center</b> - - - - Invoked <b>Edit|Format|Set Line Spacing</b> - - - - Invoked <b>Edit|Format|Set Paragraph Spacing</b> - - - - Invoked <b>Help|About</b> - - - - About Menu - - - - The <b>Menu</b> example shows how to create menu-bar menus and context menus. - - - - Invoked <b>Help|About Qt</b> - - - - Print the document - - - - Undo the last operation - - - - &Redo - - - - Redo the last operation - - - - &Bold - - - - Make the text bold - - - - &Italic - - - - Make the text italic - - - - Set &Line Spacing... - - - - Change the gap between the lines of a paragraph - - - - Set &Paragraph Spacing... - - - - Change the gap between paragraphs - - - - &Left Align - - - - Left align the selected text - - - - &Right Align - - - - Ctrl+R - - - - Right align the selected text - - - - &Justify - - - - Ctrl+J - - - - Justify the selected text - - - - &Center - - - - Ctrl+E - - - - Center the selected text - - - - &Format - - - - Alignment - - - - About SDI - - - - The <b>SDI</b> example demonstrates how to write single document interface applications using Qt. - - - - &Close - - - - Ctrl+W - - - - Close this window - - - - SDI - - - - document%1.txt - - - - Preparing font samples... - - - - &Cancel - - - - Font Sampler - - - - Date: - - - - Font size: - - - - Calendar for %1 %2 - - - - &New... - - - - Order Form - - - - Date: %1 - - - - I would like to place an order for the following items: - - - - Product - - - - Please update my records to take account of the following privacy information: - - - - I want to receive more information about your company's products and special offers. - - - - I do not want to receive any promotional information from your company. - - - - Sincerely, - - - - Enter Customer Details - - - - Print Document - - - - Syntax Highlighter - - - - About Syntax Highlighter - - - - <p>The <b>Syntax Highlighter</b> example shows how to perform simple syntax highlighting by subclassing the QSyntaxHighlighter class and describing highlighting rules using regular expressions.</p> - - - - Gesture example - - - - Codecs - - - - Cannot read file %1: -%2 - - - - Choose Encoding for %1 - - - - Save As (%1) - - - - Cannot write file %1: -%2 - - - - About Codecs - - - - The <b>Codecs</b> example demonstrates how to read and write files using various encodings. - - - - Model - - - - QFileSytemModel - - - - QFileSytemModel that shows full path - - - - Country list - - - - Word list - - - - Completion Mode - - - - Inline - - - - Filtered Popup - - - - Unfiltered Popup - - - - Case Sensitivity - - - - Case Insensitive - - - - Case Sensitive - - - - Max Visible Items - - - - Wrap around completions - - - - Completer - - - - Exit - - - - About - - - - About Qt - - - - Enter file path - - - - Enter name of your country - - - - Enter a word - - - - This example demonstrates the different features of the QCompleter class. - - - - Plug & Paint - - - - Cannot load %1. - - - - Select brush width: - - - - About Plug & Paint - - - - The <b>Plug & Paint</b> example demonstrates how to write Qt applications that can be extended through plugins. - - - - &Brush Color... - - - - &Brush Width... - - - - About &Plugins - - - - &Brush - - - - &Shapes - - - - &Filter - - - - Open INI File - - - - INI Files (*.ini *.conf) - - - - Open Property List - - - - Property List Files (*.plist) - - - - Open Registry Path - - - - Enter the path in the Windows registry: - - - - About Settings Editor - - - - The <b>Settings Editor</b> example shows how to access application settings using Qt. - - - - &Open Application Settings... - - - - Open I&NI File... - - - - Open Apple &Property List... - - - - Ctrl+P - - - - Open Windows &Registry Path... - - - - Ctrl+G - - - - &Refresh - - - - &Auto-Refresh - - - - &Fallbacks - - - - %1 (read only) - - - - %1 - %2 - - - - Opened "%1" - - - - Tree Model<br>(Double click items to edit) - - - - Tree Separator - - - - Tree Model Completer - - - - This example demonstrates how to use a QCompleter with a custom tree model. - - - - Type path from model above with items at each level separated by a '%1' - - - - Tab 1 - - - - Macros - - - - Help - - - - File actions - - - - Shape actions - - - - Undo Stack - - - - Undo limit - - - - &Open - - - - Red - - - - Green - - - - Blue - - - - Add Rectangle - - - - Add Circle - - - - Remove Shape - - - - Add robot - - - - Add snowan - - - - addTriangle - - - - File error - - - - Failed to open -%1 - - - - Parse error - - - - Failed to parse -%1 - - - - Unnamed - - - - Unsaved changes - - - - Would you like to save this document? - - - - Add snowman - - - - About Undo - - - - The Undo demonstration shows how to use the Qt Undo framework. - - - - Command List - - - - &Delete Item - - - - Del - - - - Add &Box - - - - Add &Triangle - - - - The <b>Undo</b> example demonstrates how to use Qt's undo framework. - - - - Show Font Info - - - - Filter: - - - - All - - - - Scalable - - - - Monospaced - - - - Proportional - - - - Font: - - - - Size: - - - - Style: - - - - Automatic Font Merging: - - - - &To clipboard - - - - Character Map - - - - %n font(s) found - - - - - - - Fonts - - - - Icons - - - - [file] - - - - Icon file(s) to open. - - - - Preview - - - - About Icons - - - - The <b>Icons</b> example illustrates how Qt renders an icon in different modes (active, normal, disabled, and selected) and states (on and off) based on a set of images. - - - - Small (%1 x %1) - - - - Large (%1 x %1) - - - - Toolbars (%1 x %1) - - - - List views (%1 x %1) - - - - Icon views (%1 x %1) - - - - Tab bars (%1 x %1) - - - - Open Images - - - - Directory: %1 -File: %2 -File@2x: %3 -Size: %4x%5 - - - - <None> - - - - Images - - - - Image - - - - Mode - - - - State - - - - Icon Size - - - - Other: - - - - Enter a custom size within %1..%2 - - - - "%1" (%2x%3) - - - - High DPI Scaling - - - - Screen: - - - - Device pixel ratio: - - - - Add &Sample Images... - - - - &Add Images... - - - - &Remove All Images - - - - %1 Style - - - - &Settings - - - - &Guess Image Mode/State - - - - &Use Native File Dialog - - - - Select pen width: - - - - &Pen Color... - - - - Pen &Width... - - - - Style Sheet - - - - Please read the LICENSE file before checking - - - - I accept the terms and &conditions - - - - Profession: - - - - &Name: - - - - Check this if you are male - - - - &Male - - - - &Password: - - - - Specify country of origin - - - - Egypt - - - - France - - - - Germany - - - - India - - - - Italy - - - - Norway - - - - Pakistan - - - - &Age: - - - - Country: - - - - Gender: - - - - Specify your password - - - - Password - - - - Check this if you are female - - - - &Female - - - - Specify your age - - - - Specify your name - - - - Select your profession - - - - Specify your name here - - - - Developer - - - - Student - - - - Fisherman - - - - &Exit - - - - Edit &Style... - - - - About Style sheet - - - - The <b>Style Sheet</b> example shows how widgets can be styled using <a href="http://doc.qt.io/qt-5/stylesheet.html">Qt Style Sheets</a>. Click <b>File|Edit Style Sheet</b> to pop up the style editor, and either choose an existing style sheet or design your own. - - - - Tablet Example - - - - Save Picture - - - - Open Picture - - - - About Tablet Example - - - - This example shows how to use a graphics drawing tablet in Qt. - - - - &Tablet - - - - &Line Width - - - - &Pressure - - - - &Tilt - - - - &Fixed - - - - &Alpha Channel - - - - T&angential Pressure - - - - No Alpha Channel - - - - &Color Saturation - - - - &Vertical Tilt - - - - &Horizontal Tilt - - - - &No Color Saturation - - - - DOM Bookmarks - - - - Open Bookmark File - - - - XBEL Files (*.xbel *.xml) - - - - SAX Bookmarks - - - - Save Bookmark File - - - - About DOM Bookmarks - - - - The <b>DOM Bookmarks</b> example demonstrates how to use Qt's DOM classes to read and write XML documents. - - - - Location - - - - About SAX Bookmarks - - - - The <b>SAX Bookmarks</b> example demonstrates how to use Qt's SAX classes to read XML documents and how to generate XML by hand. - - - - QXmlStream Bookmarks - - - - Parse error in file %1: - -%2 - - - - About QXmlStream Bookmarks - - - - The <b>QXmlStream Bookmarks</b> example demonstrates how to use Qt's QXmlStream classes to read and write XML documents. - - - - Add new - - - - Cannot add new window - - - - Already occupied. Undock first. - - - - - MainWindowBase - - Font Sampler - - - - &Selection - - - - &File - - - - Available Fonts - - - - &Print... - - - - Ctrl+P - - - - E&xit - - - - Ctrl+Q - - - - &Mark - - - - Ctrl+M - - - - &Unmark - - - - Ctrl+U - - - - &Clear - - - - Print Preview... - - - - - MandelbrotWidget - - Mandelbrot - - - - Rendering initial image, please wait... - - - - Use mouse wheel or the '+' and '-' keys to zoom. Press and hold left mouse button to scroll. - - - - - MapZoom - - &Oslo - - - - &Berlin - - - - &Jakarta - - - - Night Mode - - - - About OpenStreetMap - - - - &Options - - - - Light Maps - - - - - MdiChild - - document%1.txt - - - - MDI - - - - Cannot read file %1: -%2. - - - - Save As - - - - Cannot write file %1: -%2. - - - - '%1' has been modified. -Do you want to save your changes? - - - - - MoviePlayer - - No movie loaded - - - - Movie Player - - - - Open a Movie - - - - Fit to Window - - - - Current frame: - - - - Speed: - - - - % - - - - Open File - - - - Play - - - - Pause - - - - Stop - - - - Quit - - - - - NewAddressTab - - There are currently no contacts in your address book. -Click Add to add new contacts. - - - - Add - - - - - NicknameDialog - - Set nickname - - - - New nickname: - - - - OK - - - - Cancel - - - - - Notepad - - Quit - - - - Notepad - - - - Do you really want to quit? - - - - &Load - - - - &Save - - - - E&xit - - - - &File - - - - Open File - - - - Text Files (*.txt);;C++ Files (*.cpp *.h) - - - - Error - - - - Could not open file - - - - Save File - - - - - OutputFilesPage - - Output Files - - - - Specify where you want the wizard to put the generated skeleton code. - - - - &Output directory: - - - - &Header file name: - - - - &Implementation file name: - - - - - PathDeformControls - - Controls - - - - Lens Radius - - - - Deformation - - - - Font Size - - - - Text - - - - Animated - - - - Show Source - - - - Use OpenGL - - - - What's This? - - - - Qt - - - - Lens Radius: - - - - Deformation: - - - - Font Size: - - - - Quit - - - - OK - - - - - PathDeformWidget - - Vector Deformation - - - - - PathStrokeControls - - Cap Style - - - - Flat - - - - Square - - - - Round - - - - Join Style - - - - Bevel - - - - Miter - - - - Pen Style - - - - Custom - - - - Line Style - - - - Curves - - - - Lines - - - - Path Stroking - - - - Pen Width - - - - Animate - - - - Show Source - - - - Use OpenGL - - - - What's This? - - - - OK - - - - Quit - - - - Width: - - - - - PathStrokeWidget - - Path Stroking - - - - - PermissionsTab - - Permissions - - - - Readable - - - - Writable - - - - Executable - - - - Ownership - - - - Owner - - - - Group - - - - - PluginDialog - - OK - - - - Plugin Information - - - - Plug & Paint found the following plugins -(looked in %1): - - - - %1 (Static Plugin) - - - - - PreviewForm - - &Encoding: - - - - Preview - - - - Hex Dump - - - - %1: conversion error at character %2 - - - - %1: %n invalid characters - - - - - - - %1: %n bytes converted - - - - - - - - PreviewWindow - - &Close - - - - Preview - - - - - ProgressDialog - - Download Progress - - - - Downloading %1. - - - - - QAbstractSocket - - Socket operation timed out - - - - Operation on socket is not supported - - - - Host not found - - - - Connection refused - - - - Connection timed out - - - - Trying to connect while connection is in progress - - - - Socket is not connected - - - - Network unreachable - - - - - QAbstractSpinBox - - &Select All - - - - &Step up - - - - Step &down - - - - - QAccessibleActionInterface - - Press - - - - Increase - - - - Decrease - - - - ShowMenu - - - - SetFocus - - - - Toggle - - - - Scroll Left - - - - Scroll Right - - - - Scroll Up - - - - Scroll Down - - - - Previous Page - - - - Next Page - - - - Triggers the action - - - - Increase the value - - - - Decrease the value - - - - Shows the menu - - - - Sets the focus - - - - Toggles the state - - - - Scrolls to the left - - - - Scrolls to the right - - - - Scrolls up - - - - Scrolls down - - - - Goes back a page - - - - Goes to the next page - - - - - QAndroidPlatformTheme - - Yes - - - - Yes to All - - - - No - - - - No to All - - - - - QApplication - - Executable '%1' requires Qt %2, found Qt %3. - - - - Incompatible Qt Library Error - - - - - QCocoaMenuItem - - About Qt - - - - About - - - - Config - - - - Preference - - - - Options - - - - Setting - - - - Setup - - - - Quit - - - - Exit - - - - Cut - - - - Copy - - - - Paste - - - - Select All - - - - - QCocoaTheme - - Don't Save - - - QColorDialog @@ -6677,7 +38,8 @@ Click Add to add new contacts. Cursor at %1, %2 Press ESC to cancel - + Cursour at %1, %2 +Press ESC to cancel Select Color @@ -6700,9751 +62,4 @@ Press ESC to cancel &Pick Screen Colour - - QComboBox - - Open the combo box selection popup - - - - False - - - - True - - - - - QCommandLineParser - - Displays version information. - - - - Displays this help. - - - - Unknown option '%1'. - - - - Unknown options: %1. - - - - Missing value after '%1'. - - - - Unexpected value after '%1'. - - - - [options] - - - - Usage: %1 - - - - Options: - - - - Arguments: - - - - - QCoreApplication - - %1: key is empty - QSystemSemaphore - - - - %1: unable to make key - QSystemSemaphore - - - - %1: ftok failed - QSystemSemaphore - - - - - QCupsJobWidget - - Job - - - - Job Control - - - - Scheduled printing: - - - - Billing information: - - - - Job priority: - - - - Banner Pages - - - - End: - Banner page at end - - - - Start: - Banner page at start - - - - Print Immediately - - - - Hold Indefinitely - - - - Day (06:00 to 17:59) - - - - Night (18:00 to 05:59) - - - - Second Shift (16:00 to 23:59) - - - - Third Shift (00:00 to 07:59) - - - - Weekend (Saturday to Sunday) - - - - Specific Time - - - - None - CUPS Banner page - - - - Standard - CUPS Banner page - - - - Unclassified - CUPS Banner page - - - - Confidential - CUPS Banner page - - - - Classified - CUPS Banner page - - - - Secret - CUPS Banner page - - - - Top Secret - CUPS Banner page - - - - - 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 - - - - Unable to fetch next - - - - Unable to fetch first - - - - - QDBusTrayIcon - - OK - - - - - QDateTimeParser - - AM - - - - am - - - - PM - - - - pm - - - - - QDialog - - What's This? - - - - - QDialogButtonBox - - OK - - - - - QDirModel - - Name - - - - Size - - - - Kind - Match OS X Finder - - - - Type - All other platforms - - - - Date Modified - - - - - QDnsLookup - - Operation cancelled - - - - - QDnsLookupExample - - DNS Lookup Example - - - - An example demonstrating the class QDnsLookup. - - - - - QDnsLookupRunnable - - IPv6 addresses for nameservers are currently not supported - - - - Invalid domain name - - - - Not yet supported on Android - - - - Resolver functions not found - - - - Resolver initialization failed - - - - Server could not process query - - - - Server failure - - - - Non existent domain - - - - Server refused to answer - - - - Invalid reply received - - - - Could not expand domain name - - - - Invalid IPv4 address record - - - - Invalid IPv6 address record - - - - Invalid canonical name record - - - - Invalid name server record - - - - Invalid pointer record - - - - Invalid mail exchange record - - - - Invalid service record - - - - Invalid text record - - - - Resolver library can't be loaded: No runtime library loading support - - - - No hostname given - - - - Invalid hostname - - - - Host %1 could not be found. - - - - Unknown error - - - - - QDockWidget - - Float - Accessible name for button undocking a dock widget (floating state) - - - - Undocks and re-attaches the dock widget - - - - Close - Accessible name for button closing a dock widget - - - - Closes the dock widget - - - - - QErrorMessage - - Debug Message: - - - - Warning: - - - - Fatal Error: - - - - &Show this message again - - - - &OK - - - - - QFile - - Destination file is the same file. - - - - Source file does not exist. - - - - Destination file exists - - - - Error while renaming. - - - - Unable to restore from %1: %2 - - - - Will not rename sequential file using block copy - - - - Cannot remove source file - - - - Cannot open %1 for input - - - - Cannot open for output - - - - Failure to write block - - - - Cannot create %1 for output - - - - - QFileDevice - - No file engine available or engine does not support UnMapExtension - - - - - QFileDialog - - Look in: - - - - Back - - - - Go back - - - - Alt+Left - - - - Forward - - - - Go forward - - - - Alt+Right - - - - Parent Directory - - - - Go to the parent directory - - - - Alt+Up - - - - Create New Folder - - - - Create a New Folder - - - - List View - - - - Change to list view mode - - - - Detail View - - - - Change to detail view mode - - - - Sidebar - - - - List of places and bookmarks - - - - Files - - - - Files of type: - - - - Find Directory - - - - Open - - - - Save As - - - - Directory: - - - - File &name: - - - - &Open - - - - &Choose - - - - &Save - - - - All Files (*) - - - - Show - - - - &Rename - - - - &Delete - - - - Show &hidden files - - - - &New Folder - - - - All files (*) - - - - Directories - - - - %1 -Directory not found. -Please verify the correct directory name was given. - - - - %1 already exists. -Do you want to replace it? - - - - %1 -File not found. -Please verify the correct file name was given. - - - - New Folder - - - - Delete - - - - '%1' is write protected. -Do you want to delete it anyway? - - - - Are you sure you want to delete '%1'? - - - - Could not delete directory. - - - - Recent Places - - - - Remove - - - - My Computer - - - - Drive - - - - %1 File - %1 is a file name suffix, for example txt - - - - File - - - - File Folder - Match Windows Explorer - - - - Folder - All other platforms - - - - Alias - OS X Finder - - - - Shortcut - All other platforms - - - - Unknown - - - - - QFileSystemModel - - %1 TB - - - - %1 GB - - - - %1 MB - - - - %1 KB - - - - %1 bytes - - - - Invalid filename - - - - <b>The name "%1" can not be used.</b><p>Try using another name, with fewer characters or no punctuations marks. - - - - Name - - - - Size - - - - Kind - Match OS X Finder - - - - Type - All other platforms - - - - Date Modified - - - - My Computer - - - - Computer - - - - %1 byte(s) - - - - - QFontDatabase - - Normal - The Normal or Regular font weight - - - - Bold - - - - Demi Bold - - - - Medium - The Medium font weight - - - - Black - - - - Light - - - - Thin - - - - Extra Light - - - - Extra Bold - - - - Extra - The word for "Extra" as in "Extra Bold, Extra Thin" used as a pattern for string searches - - - - Demi - The word for "Demi" as in "Demi Bold" used as a pattern for string searches - - - - 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 - - - - N'Ko - - - - - QFontDialog - - Select Font - - - - &Font - - - - Font st&yle - - - - &Size - - - - Effects - - - - Stri&keout - - - - &Underline - - - - Sample - - - - Wr&iting System - - - - - QFtp - - Not connected - - - - Host %1 not found - - - - Connection refused to host %1 - - - - Connection timed out to host %1 - - - - Connected to host %1 - - - - Data Connection refused - - - - Unknown error - - - - Connecting to host failed: -%1 - - - - Login failed: -%1 - - - - Listing directory failed: -%1 - - - - Changing directory failed: -%1 - - - - Downloading file failed: -%1 - - - - Uploading file failed: -%1 - - - - Removing file failed: -%1 - - - - Creating directory failed: -%1 - - - - Removing directory failed: -%1 - - - - Connection closed - - - - - QGnomeTheme - - &OK - - - - &Save - - - - &Cancel - - - - &Close - - - - Close without Saving - - - - - QGuiApplication - - 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. - - - - - QHostInfo - - No host name given - - - - Unknown error - - - - - QHostInfoAgent - - No host name given - - - - Invalid hostname - - - - Unknown address type - - - - Host not found - - - - Unknown error - - - - Unknown error (%1) - - - - - QHttp - - Host %1 not found - - - - Connection refused - - - - Connection closed - - - - Proxy requires authentication - - - - Host requires authentication - - - - Data corrupted - - - - Unknown protocol specified - - - - SSL handshake failed - - - - Too many redirects - - - - Insecure redirect - - - - - QHttpSocketEngine - - Did not receive HTTP response from proxy - - - - Error parsing authentication request from proxy - - - - Authentication required - - - - Proxy denied connection - - - - Error communicating with HTTP proxy - - - - 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 - - - - 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 - - - - file to open is a directory - - - - Unknown error - - - - - QImageReader - - Invalid device - - - - File not found - - - - Unsupported image format - - - - Unable to read image data - - - - Unknown error - - - - - QImageWriter - - Unknown error - - - - Device is not set - - - - Device not writable - - - - Unsupported image format - - - - - QInputDialog - - Enter a value: - - - - - QJsonParseError - - no error occurred - - - - unterminated object - - - - missing name separator - - - - unterminated array - - - - missing value separator - - - - illegal value - - - - invalid termination by number - - - - illegal number - - - - invalid escape sequence - - - - invalid UTF8 string - - - - unterminated string - - - - object is missing after a comma - - - - too deeply nested document - - - - too large document - - - - garbage at the end of the document - - - - - QKeySequenceEdit - - Press shortcut - - - - %1, ... - This text is an "unfinished" shortcut, expands like "Ctrl+A, ..." - - - - - QLibrary - - '%1' is not an ELF object (%2) - - - - '%1' is not an ELF object - - - - '%1' is an invalid ELF object (%2) - - - - Failed to extract plugin meta data from '%1' - - - - The shared library was not found. - - - - The file '%1' is not a valid Qt plugin. - - - - The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] - - - - The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) - - - - Unknown error - - - - Cannot load library %1: %2 - - - - Cannot unload library %1: %2 - - - - Cannot resolve symbol "%1" in %2: %3 - - - - '%1' is not a valid Mach-O binary (%2) - - - - file is corrupt - - - - file too small - - - - no suitable architecture in fat binary - - - - invalid magic %1 - - - - wrong architecture - - - - not a dynamic library - - - - '%1' is not a Qt plugin - - - - - QLineEdit - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - - - Delete - - - - Select All - - - - - QLocalServer - - %1: Name error - - - - %1: Permission denied - - - - %1: Address in use - - - - %1: Unknown error %2 - - - - - QLocalSocket - - %1: Connection refused - - - - %1: Remote closed - - - - %1: Invalid name - - - - %1: Socket access error - - - - %1: Socket resource error - - - - %1: Socket operation timed out - - - - %1: Datagram too large - - - - %1: Connection error - - - - %1: The socket operation is not supported - - - - %1: Operation not permitted when socket is in this state - - - - %1: Unknown error - - - - Trying to connect while connection is in progress - - - - %1: Unknown error %2 - - - - %1: Access denied - - - - - QMYSQLDriver - - Unable to allocate a MYSQL object - - - - Unable to open database '%1' - - - - 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 execute next query - - - - Unable to store next 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 - - - - - QMdiArea - - (Untitled) - - - - - QMdiSubWindow - - - [%1] - - - - %1 - [%2] - - - - Minimize - - - - Maximize - - - - Unshade - - - - Shade - - - - Restore Down - - - - Restore - - - - Close - - - - Help - - - - Menu - - - - &Restore - - - - &Move - - - - &Size - - - - Mi&nimize - - - - Ma&ximize - - - - Stay on &Top - - - - &Close - - - - - QMessageBox - - Show Details... - - - - Hide Details... - - - - OK - - - - Help - - - - <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 all major desktop operating systems. It is also available for embedded Linux and other embedded and mobile operating systems.</p><p>Qt is available under three different licensing options designed to accommodate the needs of our various users.</p><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 3 or GNU LGPL version 2.1.</p><p>Qt licensed under the GNU LGPL version 3 is appropriate for the development of Qt&nbsp;applications provided you can comply with the terms and conditions of the GNU LGPL version 3.</p><p>Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt&nbsp;applications provided you can comply with the terms and conditions of the GNU LGPL version 2.1.</p><p>Please see <a href="http://%2/">%2</a> for an overview of Qt licensing.</p><p>Copyright (C) %1 The Qt Company Ltd and other contributors.</p><p>Qt and the Qt logo are trademarks of The Qt Company Ltd.</p><p>Qt is The Qt Company Ltd product developed as an open source project. See <a href="http://%3/">%3</a> for more information.</p> - - - - About Qt - - - - - QNativeSocketEngine - - Unable to initialize non-blocking socket - - - - Unable to initialize broadcast socket - - - - Attempt to use IPv6 socket on a platform with no IPv6 support - - - - 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 - - - - The proxy type is invalid for this operation - - - - Temporary error - - - - Network dropped connection on reset - - - - Connection reset by peer - - - - Unknown error - - - - - QNetworkAccessCacheBackend - - Error opening %1 - - - - - QNetworkAccessDataBackend - - Invalid URI: %1 - - - - - QNetworkAccessDebugPipeBackend - - Write error writing to %1: %2 - - - - Socket error on %1: %2 - - - - Remote host closed the connection prematurely on %1 - - - - - QNetworkAccessFileBackend - - Request for opening non-local file %1 - - - - Error opening %1: %2 - - - - Write error writing to %1: %2 - - - - Cannot open %1: Path is a directory - - - - Read error reading from %1: %2 - - - - - QNetworkAccessFtpBackend - - No suitable proxy found - - - - Cannot open %1: is a directory - - - - Logging in to %1 failed: authentication required - - - - Error while downloading %1: %2 - - - - Error while uploading %1: %2 - - - - - QNetworkAccessManager - - Network access is disabled. - - - - - QNetworkReply - - Error transferring %1 - server replied: %2 - - - - Background request not allowed. - - - - Network session error. - - - - backend start error. - - - - Temporary network failure. - - - - Protocol "%1" is unknown - - - - - QNetworkReplyHttpImpl - - Operation canceled - - - - No suitable proxy found - - - - - QNetworkReplyImpl - - Operation canceled - - - - - QNetworkSession - - Invalid configuration. - - - - - QNetworkSessionPrivateImpl - - Unknown session error. - - - - The session was aborted by the user or system. - - - - The requested operation is not supported by the system. - - - - The specified configuration cannot be used. - - - - Roaming was aborted or is not possible. - - - - - 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 get statement type - - - - Unable to bind value - - - - Unable to execute statement - - - - - QODBCDriver - - Unable to connect - - - - Unable to connect - Driver doesn't support all functionality required - - - - Unable to disable autocommit - - - - Unable to commit transaction - - - - Unable to rollback transaction - - - - Unable to enable autocommit - - - - - QODBCResult - - Unable to fetch last - - - - QODBCResult::reset: Unable to set 'SQL_CURSOR_STATIC' as statement attribute. Please check your ODBC driver configuration - - - - Unable to execute statement - - - - Unable to fetch - - - - Unable to fetch next - - - - Unable to fetch first - - - - Unable to fetch previous - - - - Unable to prepare statement - - - - Unable to bind variable - - - - - QObject - - ID - - - - Name - - - - City - - - - Country - - - - Relational Table Model - - - - First name - - - - Last name - - - - Plain Query Model - - - - Editable Query Model - - - - Custom Query Model - - - - Table Model (View 1) - - - - Table Model (View 2) - - - - Qt SQL Browser - - - - &File - - - - Add &Connection... - - - - &Quit - - - - &Help - - - - About - - - - About Qt - - - - Systray - - - - I couldn't detect any system tray on this system. - - - - Simple Wizard - - - - Cannot write file %1: -%2 - - - - Draggable Icons - - - - Invalid enum. - - - - Invalid value. - - - - Invalid operation. - - - - Stack overflow. - - - - Stack underflow. - - - - Out of memory. - - - - Unknown error. - - - - Subject - - - - Sender - - - - Date - - - - Dir View - - - - Frozen Column Example - - - - Simple Tree Model - - - - Spin Box Delegate - - - - Add %1 - - - - Remove %1 - - - - Set %1's color - - - - Change %1's geometry - - - - Move %1 - - - - Delete %1 - - - - %1 at (%2, %3) - - - - Code Editor Example - - - - Folder - - - - The file is not an XBEL file. - - - - The file is not an XBEL version 1.0 file. - - - - Unknown title - - - - SAX Bookmarks - - - - Parse error at line %1, column %2: -%3 - - - - %1 -Line %2, column %3 - - - - - QPSQLDriver - - Unable to connect - - - - Could not begin transaction - - - - Could not commit transaction - - - - Could not rollback transaction - - - - Unable to subscribe - - - - Unable to unsubscribe - - - - - QPSQLResult - - Unable to create query - - - - Unable to prepare statement - - - - - QPageSetupWidget - - Form - - - - Paper - - - - Page size: - - - - Width: - - - - Height: - - - - Paper source: - - - - Orientation - - - - Portrait - - - - Landscape - - - - Reverse landscape - - - - Reverse portrait - - - - Margins - - - - top margin - - - - left margin - - - - right margin - - - - bottom margin - - - - Page Layout - - - - Page order: - - - - Pages per sheet: - - - - Millimeters (mm) - - - - Inches (in) - - - - Points (pt) - - - - Pica (P̸) - - - - Didot (DD) - - - - Cicero (CC) - - - - Custom - - - - mm - Unit 'Millimeter' - - - - pt - Unit 'Points' - - - - in - Unit 'Inch' - - - - P̸ - Unit 'Pica' - - - - DD - Unit 'Didot' - - - - CC - Unit 'Cicero' - - - - - QPageSize - - Custom (%1mm x %2mm) - Custom size name in millimeters - - - - Custom (%1pt x %2pt) - Custom size name in points - - - - Custom (%1in x %2in) - Custom size name in inches - - - - Custom (%1pc x %2pc) - Custom size name in picas - - - - Custom (%1DD x %2DD) - Custom size name in didots - - - - Custom (%1CC x %2CC) - Custom size name in ciceros - - - - %1 x %2 in - Page size in 'Inch'. - - - - A0 - - - - A1 - - - - A2 - - - - A3 - - - - A4 - - - - A5 - - - - A6 - - - - A7 - - - - A8 - - - - A9 - - - - A10 - - - - B0 - - - - B1 - - - - B2 - - - - B3 - - - - B4 - - - - B5 - - - - B6 - - - - B7 - - - - B8 - - - - B9 - - - - B10 - - - - Executive (7.5 x 10 in) - - - - Executive (7.25 x 10.5 in) - - - - Folio (8.27 x 13 in) - - - - Legal - - - - Letter / ANSI A - - - - Tabloid / ANSI B - - - - Ledger / ANSI B - - - - Custom - - - - A3 Extra - - - - A4 Extra - - - - A4 Plus - - - - A4 Small - - - - A5 Extra - - - - B5 Extra - - - - JIS B0 - - - - JIS B1 - - - - JIS B2 - - - - JIS B3 - - - - JIS B4 - - - - JIS B5 - - - - JIS B6 - - - - JIS B7 - - - - JIS B8 - - - - JIS B9 - - - - JIS B10 - - - - ANSI C - - - - ANSI D - - - - ANSI E - - - - Legal Extra - - - - Letter Extra - - - - Letter Plus - - - - Letter Small - - - - Tabloid Extra - - - - Architect A - - - - Architect B - - - - Architect C - - - - Architect D - - - - Architect E - - - - Note - - - - Quarto - - - - Statement - - - - Super A - - - - Super B - - - - Postcard - - - - Double Postcard - - - - PRC 16K - - - - PRC 32K - - - - PRC 32K Big - - - - Fan-fold US (14.875 x 11 in) - - - - Fan-fold German (8.5 x 12 in) - - - - Fan-fold German Legal (8.5 x 13 in) - - - - Envelope B4 - - - - Envelope B5 - - - - Envelope B6 - - - - Envelope C0 - - - - Envelope C1 - - - - Envelope C2 - - - - Envelope C3 - - - - Envelope C4 - - - - Envelope C5 - - - - Envelope C6 - - - - Envelope C65 - - - - Envelope C7 - - - - Envelope DL - - - - Envelope US 9 - - - - Envelope US 10 - - - - Envelope US 11 - - - - Envelope US 12 - - - - Envelope US 14 - - - - Envelope Monarch - - - - Envelope Personal - - - - Envelope Chou 3 - - - - Envelope Chou 4 - - - - Envelope Invite - - - - Envelope Italian - - - - Envelope Kaku 2 - - - - Envelope Kaku 3 - - - - Envelope PRC 1 - - - - Envelope PRC 2 - - - - Envelope PRC 3 - - - - Envelope PRC 4 - - - - Envelope PRC 5 - - - - Envelope PRC 6 - - - - Envelope PRC 7 - - - - Envelope PRC 8 - - - - Envelope PRC 9 - - - - Envelope PRC 10 - - - - Envelope You 4 - - - - - QPlatformTheme - - OK - - - - Save - - - - Save All - - - - Open - - - - &Yes - - - - Yes to &All - - - - &No - - - - N&o to All - - - - Abort - - - - Retry - - - - Ignore - - - - Close - - - - Cancel - - - - Discard - - - - Help - - - - Apply - - - - Reset - - - - Restore Defaults - - - - - QPluginLoader - - The plugin was not loaded. - - - - Unknown error - - - - - QPrintDialog - - Print - - - - Left to Right, Top to Bottom - - - - Left to Right, Bottom to Top - - - - Right to Left, Bottom to Top - - - - Right to Left, Top to Bottom - - - - Bottom to Top, Left to Right - - - - Bottom to Top, Right to Left - - - - Top to Bottom, Left to Right - - - - Top to Bottom, Right to Left - - - - 1 (1x1) - - - - 2 (2x1) - - - - 4 (2x2) - - - - 6 (2x3) - - - - 9 (3x3) - - - - 16 (4x4) - - - - All Pages - - - - Odd Pages - - - - Even Pages - - - - &Options >> - - - - &Print - - - - &Options << - - - - Print to File (PDF) - - - - Local file - - - - Write PDF file - - - - Print To File ... - - - - %1 is a directory. -Please choose a different file name. - - - - File %1 is not writable. -Please choose a different file name. - - - - %1 already exists. -Do you want to overwrite it? - - - - Options 'Pages Per Sheet' and 'Page Set' cannot be used together. -Please turn one of those options off. - - - - The 'From' value cannot be greater than the 'To' value. - - - - OK - - - - Automatic - - - - - QPrintPreviewDialog - - Page Setup - - - - %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 - - - - Export to PDF - - - - - QPrintPropertiesDialog - - Printer Properties - - - - Job Options - - - - - QPrintPropertiesWidget - - Form - - - - Page - - - - - QPrintSettingsOutput - - Form - - - - Copies - - - - Print range - - - - Print all - - - - Pages from - - - - to - - - - Current Page - - - - Selection - - - - Page Set: - - - - Output Settings - - - - Copies: - - - - Collate - - - - Reverse - - - - Options - - - - Color Mode - - - - Color - - - - Grayscale - - - - Duplex Printing - - - - None - - - - Long side - - - - Short side - - - - - QPrintWidget - - Form - - - - Printer - - - - &Name: - - - - P&roperties - - - - Location: - - - - Preview - - - - Type: - - - - Output &file: - - - - ... - - - - - QProcess - - Process failed to start - - - - Process crashed - - - - Process operation timed out - - - - Error reading from process - - - - Error writing to process - - - - No program defined - - - - Could not open input redirection for reading - - - - Resource error (fork failure): %1 - - - - Could not open output redirection for writing - - - - Process failed to start: %1 - - - - - QProgressDialog - - Cancel - - - - - QPushButton - - Hello world! - - - - Hello %n world(s)! - - - - - - - It's a small world - - - - - QQnxFileDialogHelper - - All files (*.*) - - - - - QQnxFilePicker - - Pick a file - - - - - QRegExp - - no error occurred - - - - disabled feature used - - - - bad char class syntax - - - - bad lookahead syntax - - - - lookbehinds not supported, see QTBUG-2371 - - - - bad repetition syntax - - - - invalid octal value - - - - missing left delim - - - - unexpected end - - - - met internal limit - - - - invalid interval - - - - invalid category - - - - - QRegularExpression - - no error - - - - \ at end of pattern - - - - \c at end of pattern - - - - unrecognized character follows \ - - - - numbers out of order in {} quantifier - - - - number too big in {} quantifier - - - - missing terminating ] for character class - - - - invalid escape sequence in character class - - - - range out of order in character class - - - - nothing to repeat - - - - internal error: unexpected repeat - - - - unrecognized character after (? or (?- - - - - POSIX named classes are supported only within a class - - - - missing ) - - - - reference to non-existent subpattern - - - - erroffset passed as NULL - - - - unknown option bit(s) set - - - - missing ) after comment - - - - regular expression is too large - - - - failed to get memory - - - - unmatched parentheses - - - - internal error: code overflow - - - - unrecognized character after (?< - - - - lookbehind assertion is not fixed length - - - - malformed number or name after (?( - - - - conditional group contains more than two branches - - - - assertion expected after (?( - - - - (?R or (?[+-]digits must be followed by ) - - - - unknown POSIX class name - - - - POSIX collating elements are not supported - - - - this version of PCRE is not compiled with PCRE_UTF8 support - - - - character value in \x{...} sequence is too large - - - - invalid condition (?(0) - - - - \C not allowed in lookbehind assertion - - - - PCRE does not support \L, \l, \N{name}, \U, or \u - - - - number after (?C is > 255 - - - - closing ) for (?C expected - - - - recursive call could loop indefinitely - - - - unrecognized character after (?P - - - - syntax error in subpattern name (missing terminator) - - - - two named subpatterns have the same name - - - - invalid UTF-8 string - - - - support for \P, \p, and \X has not been compiled - - - - malformed \P or \p sequence - - - - unknown property name after \P or \p - - - - subpattern name is too long (maximum 32 characters) - - - - too many named subpatterns (maximum 10000) - - - - octal value is greater than \377 (not in UTF-8 mode) - - - - internal error: overran compiling workspace - - - - internal error: previously-checked referenced subpattern not found - - - - DEFINE group contains more than one branch - - - - repeating a DEFINE group is not allowed - - - - inconsistent NEWLINE options - - - - \g is not followed by a braced, angle-bracketed, or quoted name/number or by a plain number - - - - a numbered reference must not be zero - - - - an argument is not allowed for (*ACCEPT), (*FAIL), or (*COMMIT) - - - - (*VERB) not recognized - - - - number is too big - - - - subpattern name expected - - - - digit expected after (?+ - - - - ] is an invalid data character in JavaScript compatibility mode - - - - different names for subpatterns of the same number are not allowed - - - - (*MARK) must have an argument - - - - this version of PCRE is not compiled with PCRE_UCP support - - - - \c must be followed by an ASCII character - - - - \k is not followed by a braced, angle-bracketed, or quoted name - - - - internal error: unknown opcode in find_fixedlength() - - - - \N is not supported in a class - - - - too many forward references - - - - disallowed Unicode code point (>= 0xd800 && <= 0xdfff) - - - - invalid UTF-16 string - - - - name is too long in (*MARK), (*PRUNE), (*SKIP), or (*THEN) - - - - character value in \u.... sequence is too large - - - - invalid UTF-32 string - - - - setting UTF is disabled by the application - - - - non-hex character in \x{} (closing brace missing?) - - - - non-octal character in \o{} (closing brace missing?) - - - - missing opening brace after \o - - - - parentheses are too deeply nested - - - - invalid range in character class - - - - group name must start with a non-digit - - - - parentheses are too deeply nested (stack check) - - - - digits missing in \x{} or \o{} - - - - - QSQLite2Driver - - Error opening 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 rollback transaction - - - - - QSQLiteResult - - Unable to fetch row - - - - No query - - - - Unable to execute statement - - - - Unable to execute multiple statements at a time - - - - Unable to reset statement - - - - Unable to bind parameters - - - - Parameter count mismatch - - - - - QSaveFile - - Existing file %1 is not writable - - - - Filename refers to a directory - - - - Writing canceled by application - - - - - QScrollBar - - Scroll here - - - - Left edge - - - - Top - - - - Right edge - - - - Bottom - - - - Page left - - - - Page up - - - - Page right - - - - Page down - - - - Scroll left - - - - Scroll up - - - - Scroll right - - - - Scroll down - - - - - QSharedMemory - - %1: unable to set key on lock - - - - %1: create size is less then 0 - - - - %1: unable to lock - - - - %1: unable to unlock - - - - %1: key is empty - - - - %1: bad name - - - - %1: UNIX key file doesn't exist - - - - %1: ftok failed - - - - %1: unable to make key - - - - %1: system-imposed size restrictions - - - - %1: not attached - - - - %1: permission denied - - - - %1: already exists - - - - %1: doesn't exist - - - - %1: out of resources - - - - %1: unknown error %2 - - - - %1: invalid size - - - - %1: key error - - - - %1: size query failed - - - - - 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. - - - - Esc - - - - Tab - - - - Backtab - - - - Backspace - - - - Return - - - - Enter - - - - Ins - - - - Del - - - - Pause - - - - Print - - - - SysReq - - - - Home - - - - End - - - - Left - - - - Up - - - - Right - - - - Down - - - - PgUp - - - - PgDown - - - - CapsLock - - - - NumLock - - - - 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 - - - - Media Pause - Media player pause button - - - - Toggle Media Play/Pause - Media player button to toggle between playing and paused - - - - Home Page - - - - Favorites - - - - Search - - - - Standby - - - - Open URL - - - - Launch Mail - - - - Launch Media - - - - Launch (0) - - - - Launch (1) - - - - Launch (2) - - - - Launch (3) - - - - Launch (4) - - - - Launch (5) - - - - Launch (6) - - - - Launch (7) - - - - Launch (8) - - - - Launch (9) - - - - Launch (A) - - - - Launch (B) - - - - Launch (C) - - - - Launch (D) - - - - Launch (E) - - - - Launch (F) - - - - Monitor Brightness Up - - - - Monitor Brightness Down - - - - Keyboard Light On/Off - - - - Keyboard Brightness Up - - - - Keyboard Brightness Down - - - - Power Off - - - - Wake Up - - - - Eject - - - - Screensaver - - - - WWW - - - - Sleep - - - - LightBulb - - - - Shop - - - - History - - - - Add Favorite - - - - Hot Links - - - - Adjust Brightness - - - - Finance - - - - Community - - - - Media Rewind - - - - Back Forward - - - - Application Left - - - - Application Right - - - - Book - - - - CD - - - - Calculator - - - - Clear - - - - Clear Grab - - - - Close - - - - Copy - - - - Cut - - - - Display - - - - DOS - - - - Documents - - - - Spreadsheet - - - - Browser - - - - Game - - - - Go - - - - iTouch - - - - Logoff - - - - Market - - - - Meeting - - - - Keyboard Menu - - - - Menu PB - - - - My Sites - - - - News - - - - Home Office - - - - Option - - - - Paste - - - - Phone - - - - Reply - - - - Reload - - - - Rotate Windows - - - - Rotation PB - - - - Rotation KB - - - - Save - - - - Send - - - - Spellchecker - - - - Split Screen - - - - Support - - - - Task Panel - - - - Terminal - - - - Tools - - - - Travel - - - - Video - - - - Word Processor - - - - XFer - - - - Zoom In - - - - Zoom Out - - - - Away - - - - Messenger - - - - WebCam - - - - Mail Forward - - - - Pictures - - - - Music - - - - Battery - - - - Bluetooth - - - - Wireless - - - - Ultra Wide Band - - - - Media Fast Forward - - - - Audio Repeat - - - - Audio Random Play - - - - Subtitle - - - - Audio Cycle Track - - - - Time - - - - Hibernate - - - - View - - - - Top Menu - - - - Power Down - - - - Suspend - - - - Microphone Mute - - - - Red - - - - Green - - - - Yellow - - - - Blue - - - - Channel Up - - - - Channel Down - - - - Guide - - - - Info - - - - Settings - - - - Microphone Volume Up - - - - Microphone Volume Down - - - - New - - - - Open - - - - Find - - - - Undo - - - - Redo - - - - Print Screen - - - - Page Up - - - - Page Down - - - - Caps Lock - - - - Num Lock - - - - Number Lock - - - - Scroll Lock - - - - Insert - - - - Delete - - - - Escape - - - - System Request - - - - Select - - - - Yes - - - - No - - - - Context1 - - - - Context2 - - - - Context3 - - - - Context4 - - - - Call - Button to start a call (note: a separate button is used to end the call) - - - - Hangup - Button to end a call (note: a separate button is used to start the call) - - - - Toggle Call/Hangup - Button that will hang up if we're in call, or make a call if we're not. - - - - Flip - - - - Voice Dial - Button to trigger voice dialing - - - - Last Number Redial - Button to redial the last number called - - - - Camera Shutter - Button to trigger the camera shutter (take a picture) - - - - Camera Focus - Button to focus the camera - - - - Kanji - - - - Muhenkan - - - - Henkan - - - - Romaji - - - - Hiragana - - - - Katakana - - - - Hiragana Katakana - - - - Zenkaku - - - - Hankaku - - - - Zenkaku Hankaku - - - - Touroku - - - - Massyo - - - - Kana Lock - - - - Kana Shift - - - - Eisu Shift - - - - Eisu toggle - - - - Code input - - - - Multiple Candidate - - - - Previous Candidate - - - - Hangul - - - - Hangul Start - - - - Hangul End - - - - Hangul Hanja - - - - Hangul Jamo - - - - Hangul Romaja - - - - Hangul Jeonja - - - - Hangul Banja - - - - Hangul PreHanja - - - - Hangul PostHanja - - - - Hangul Special - - - - Cancel - - - - Printer - - - - Execute - - - - Play - - - - Zoom - - - - Exit - - - - Touchpad Toggle - - - - Touchpad On - - - - Touchpad Off - - - - Ctrl - - - - Shift - - - - Alt - - - - Meta - - - - Num - - - - + - - - - F%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 - - - - SOCKS version 5 protocol error - - - - General SOCKSv5 server failure - - - - Connection not allowed by SOCKSv5 server - - - - TTL expired - - - - SOCKSv5 command not supported - - - - Address type not supported - - - - Unknown SOCKSv5 proxy error code 0x%1 - - - - Network operation timed out - - - - - QSpiAccessibleBridge - - invalid role - Role of an accessible object - the object is in an invalid state or could not be constructed - - - - title bar - Role of an accessible object - - - - menu bar - Role of an accessible object - - - - scroll bar - Role of an accessible object - - - - grip - Role of an accessible object - the grip is usually used for resizing another object - - - - sound - Role of an accessible object - - - - cursor - Role of an accessible object - - - - text caret - Role of an accessible object - - - - alert message - Role of an accessible object - - - - frame - Role of an accessible object: a window with frame and title ----------- -Role of an accessible object - - - - filler - Role of an accessible object - - - - popup menu - Role of an accessible object - - - - menu item - Role of an accessible object - - - - tool tip - Role of an accessible object - - - - application - Role of an accessible object - - - - document - Role of an accessible object - - - - panel - Role of an accessible object - - - - chart - Role of an accessible object - - - - dialog - Role of an accessible object - - - - separator - Role of an accessible object - - - - tool bar - Role of an accessible object - - - - status bar - Role of an accessible object - - - - table - Role of an accessible object - - - - column header - Role of an accessible object - part of a table - - - - row header - Role of an accessible object - part of a table - - - - column - Role of an accessible object - part of a table - - - - row - Role of an accessible object - part of a table - - - - cell - Role of an accessible object - part of a table - - - - link - Role of an accessible object - - - - help balloon - Role of an accessible object - - - - assistant - Role of an accessible object - a helper dialog - - - - list - Role of an accessible object - - - - list item - Role of an accessible object - - - - tree - Role of an accessible object - - - - tree item - Role of an accessible object - - - - page tab - Role of an accessible object - - - - property page - Role of an accessible object - - - - indicator - Role of an accessible object - - - - graphic - Role of an accessible object - - - - label - Role of an accessible object - - - - text - Role of an accessible object - - - - push button - Role of an accessible object - - - - check box - Role of an accessible object - - - - radio button - Role of an accessible object - - - - combo box - Role of an accessible object - - - - progress bar - Role of an accessible object - - - - dial - Role of an accessible object - - - - hotkey field - Role of an accessible object - - - - slider - Role of an accessible object - - - - spin box - Role of an accessible object - - - - canvas - Role of an accessible object - - - - animation - Role of an accessible object - - - - equation - Role of an accessible object - - - - button with drop down - Role of an accessible object - - - - button menu - Role of an accessible object - - - - button with drop down grid - Role of an accessible object - a button that expands a grid. - - - - space - Role of an accessible object - blank space between other objects. - - - - page tab list - Role of an accessible object - - - - clock - Role of an accessible object - - - - splitter - Role of an accessible object - - - - layered pane - Role of an accessible object - - - - web document - Role of an accessible object - - - - paragraph - Role of an accessible object - - - - section - Role of an accessible object - - - - color chooser - Role of an accessible object - - - - footer - Role of an accessible object - - - - form - Role of an accessible object - - - - heading - Role of an accessible object - - - - note - Role of an accessible object - - - - complementary content - Role of an accessible object - - - - unknown - Role of an accessible object - - - - - QSqlConnectionDialog - - No database driver selected - - - - Please select a database driver - - - - - QSqlConnectionDialogUi - - Connect... - - - - Connection settings - - - - &Username: - - - - D&river - - - - Default - - - - Database Name: - - - - &Hostname: - - - - P&ort: - - - - &Password: - - - - Us&e predefined in-memory database - - - - &OK - - - - &Cancel - - - - - QSslSocket - - Error when setting the elliptic curves (%1) - - - - Error creating SSL context (%1) - - - - unsupported protocol - - - - Invalid or empty cipher list (%1) - - - - Cannot provide a certificate with no key, %1 - - - - Error loading local certificate, %1 - - - - Error loading private key, %1 - - - - Private key does not certify public key, %1 - - - - OpenSSL version too old, need at least v1.0.2 - - - - No error - - - - The issuer certificate could not be found - - - - The certificate signature could not be decrypted - - - - The public key in the certificate could not be read - - - - The signature of the certificate is invalid - - - - The certificate is not yet valid - - - - The certificate has expired - - - - The certificate's notBefore field contains an invalid time - - - - The certificate's notAfter field contains an invalid time - - - - The certificate is self-signed, and untrusted - - - - The root certificate of the certificate chain is self-signed, and untrusted - - - - The issuer certificate of a locally looked up certificate could not be found - - - - No certificates could be verified - - - - One of the CA certificates is invalid - - - - The basicConstraints path length parameter has been exceeded - - - - The supplied certificate is unsuitable for this purpose - - - - The root CA certificate is not trusted for this purpose - - - - The root CA certificate is marked to reject the specified purpose - - - - The current candidate issuer certificate was rejected because its subject name did not match the issuer name of the current certificate - - - - The current candidate issuer certificate was rejected because its issuer name and serial number was present and did not match the authority key identifier of the current certificate - - - - The peer did not present any certificate - - - - The host name did not match any of the valid hosts for this certificate - - - - The peer certificate is blacklisted - - - - Unknown error - - - - The TLS/SSL connection has been closed - - - - Error creating SSL session, %1 - - - - Error creating SSL session: %1 - - - - Unable to init SSL Context: %1 - - - - Unable to write data: %1 - - - - Unable to decrypt data: %1 - - - - Error while reading: %1 - - - - Error during SSL handshake: %1 - - - - - QStandardPaths - - Desktop - - - - Documents - - - - Fonts - - - - Applications - - - - Music - - - - Movies - - - - Pictures - - - - Temporary Directory - - - - Home - - - - Cache - - - - Shared Data - - - - Runtime - - - - Configuration - - - - Shared Configuration - - - - Shared Cache - - - - Download - - - - Application Data - - - - Application Configuration - - - - - QStateMachine - - Missing initial state in compound state '%1' - - - - Missing default state in history state '%1' - - - - No common ancestor for targets and source of transition from state '%1' - - - - Unknown error - - - - - QSystemSemaphore - - %1: permission denied - - - - %1: already exists - - - - %1: does not exist - - - - %1: out of resources - - - - %1: unknown error %2 - - - - - QTDSDriver - - Unable to open connection - - - - Unable to use database - - - - - QTabBar - - Scroll Left - - - - Scroll Right - - - - - QTcpServer - - Operation on socket is not supported - - - - - QUndoGroup - - Undo %1 - - - - Undo - Default text for undo action - - - - Redo %1 - - - - Redo - Default text for redo action - - - - - QUndoModel - - <empty> - - - - - QUndoStack - - Undo %1 - - - - Undo - Default text for undo action - - - - Redo %1 - - - - Redo - Default text for redo action - - - - - QUnicodeControlCharacterMenu - - LRM Left-to-right mark - - - - RLM Right-to-left mark - - - - ZWJ Zero width joiner - - - - ZWNJ Zero width non-joiner - - - - ZWSP Zero width space - - - - LRE Start of left-to-right embedding - - - - RLE Start of right-to-left embedding - - - - LRO Start of left-to-right override - - - - RLO Start of right-to-left override - - - - PDF Pop directional formatting - - - - LRI Left-to-right isolate - - - - RLI Right-to-left isolate - - - - FSI First strong isolate - - - - PDI Pop directional isolate - - - - Insert Unicode control character - - - - - QWhatsThisAction - - What's This? - - - - - QWidget - - * - - - - - QWidgetTextControl - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - Copy &Link Location - - - - &Paste - - - - Delete - - - - Select All - - - - - QWindowsDirect2DIntegration - - Qt cannot load the direct2d platform plugin because the Direct2D version on this system is too old. The minimum system requirement for this platform plugin is Windows 7 SP1 with Platform Update. - -The minimum Direct2D version required is %1.%2.%3.%4. The Direct2D version on this system is %5.%6.%7.%8. - - - - Cannot load direct2d platform plugin - - - - - QWizard - - Go Back - - - - < &Back - - - - Continue - - - - &Next - - - - &Next > - - - - Commit - - - - Done - - - - &Finish - - - - Cancel - - - - Help - - - - &Help - - - - - 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 - - - - wrong value for standalone declaration - - - - encoding declaration or standalone declaration expected while reading the XML declaration - - - - standalone declaration expected while reading the XML declaration - - - - 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 - - - - external parsed general entity reference not allowed in attribute value - - - - external parsed general entity reference not allowed in 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. - - - - Sequence ']]>' not allowed in content. - - - - Encountered incorrectly encoded content. - - - - Namespace prefix '%1' not declared - - - - Illegal namespace declaration. - - - - Attribute '%1' redefined. - - - - Unexpected character '%1' in public id literal. - - - - Invalid XML version string. - - - - Unsupported XML version. - - - - The standalone pseudo attribute must appear after the encoding. - - - - %1 is an invalid encoding name. - - - - Encoding %1 is unsupported - - - - Standalone accepts only yes or no. - - - - Invalid attribute in XML declaration. - - - - Premature end of document. - - - - Invalid document. - - - - Expected - - - - , but got ' - - - - Unexpected ' - - - - Expected character data. - - - - Recursive entity detected. - - - - Start tag expected. - - - - NDATA in parameter entity declaration. - - - - XML declaration not at start of document. - - - - %1 is an invalid processing instruction name. - - - - Invalid processing instruction name. - - - - %1 is an invalid PUBLIC identifier. - - - - Invalid XML name. - - - - Opening and ending tag mismatch. - - - - Entity '%1' not declared. - - - - Reference to unparsed entity '%1'. - - - - Reference to external entity '%1' in attribute value. - - - - Invalid character reference. - - - - - QueryPage - - Look for packages - - - - Name: - - - - Released after: - - - - Releases - - - - Upgrades - - - - Return up to - - - - results - - - - Return only the first result - - - - Start query - - - - - RSSListing - - Fetch - - - - Title - - - - Link - - - - RSS listing example - - - - - Receiver - - Listening for broadcasted messages - - - - &Quit - - - - Broadcast Receiver - - - - Received datagram: "%1" - - - - Listening for multicasted messages - - - - Multicast Receiver - - - - - RegExpDialog - - &Pattern: - - - - &Escaped Pattern: - - - - Regular expression v1 - - - - Regular expression v2 - - - - Wildcard - - - - Fixed string - - - - W3C Xml Schema 1.1 - - - - &Pattern Syntax: - - - - &Text: - - - - Case &Sensitive - - - - &Minimal - - - - Index of Match: - - - - Matched Length: - - - - Capture %1: - - - - Match: - - - - [A-Za-z_]+([A-Za-z_0-9]*) - - - - (10 + delta4) * 32 - - - - RegExp - - - - - RegisterPage - - Register Your Copy of <i>Super Product One</i>&trade; - - - - If you have an upgrade key, please fill in the appropriate field. - - - - N&ame: - - - - &Upgrade key: - - - - - RegularExpressionDialog - - QRegularExpression Example - - - - (\+?\d+)-(?<prefix>\d+)-(?<number>\w+) - - - - My office number is +43-152-0123456, my mobile is 001-41-255512 instead. - - - - Valid - - - - <no name> - - - - Invalid: syntax error at position %1 (%2) - - - - <h3>Regular expression and text input</h3> - - - - &Pattern: - - - - Copy to clipboard - - - - &Escaped pattern: - - - - &Subject text: - - - - Case insensitive (/i) - - - - Dot matches everything (/s) - - - - Multiline (/m) - - - - Extended pattern (/x) - - - - Inverted greediness - - - - Don't capture - - - - Use unicode properties (/u) - - - - Optimize on first usage - - - - Don't automatically optimize - - - - Pattern options: - - - - Match &offset: - - - - Normal - - - - Partial prefer complete - - - - Partial prefer first - - - - No match - - - - Match &type: - - - - Don't check subject string - - - - Anchored match - - - - Match options: - - - - <h3>Match information</h3> - - - - Match index - - - - Group index - - - - Captured string - - - - Match details: - - - - <h3>Regular expression information</h3> - - - - Pattern status: - - - - Index - - - - Named group - - - - Named groups: - - - - - RenderArea - - Qt by -The Qt Company - - - - x - - - - y - - - - - RenderOptionsDialog - - Options (double click to flip) - - - - Dynamic cube map - - - - Texture: - - - - Shader: - - - - - RenderWindow - - makeCurrent() failed - - - - - Screenshot - - Options - - - - s - - - - Hide This Window - - - - Screenshot Delay: - - - - New Screenshot - - - - Save Screenshot - - - - Quit - - - - Screenshot - - - - /untitled. - - - - Save As - - - - Save Error - - - - The image could not be saved to "%1". - - - - - Sender - - Ready to broadcast datagrams on port 45454 - - - - &Start - - - - &Quit - - - - Broadcast Sender - - - - Now broadcasting datagram %1 - - - - Ready to multicast datagrams to group %1 on port 45454 - - - - TTL for multicast datagrams: - - - - Multicast Sender - - - - Now sending datagram %1 - - - - - Server - - Quit - - - - Fortune Server - - - - Unable to start the server: %1. - - - - The server is running. -Run the Fortune Client example now. - - - - You've been leading a dog's life. Stay off the furniture. - - - - You've got to think about tomorrow. - - - - You will be surprised by a loud noise. - - - - You will feel hungry again in another hour. - - - - You might have mail. - - - - You cannot kill time without injuring eternity. - - - - Computers are not intelligent. They only think they are. - - - - Opening network session. - - - - The server is running on - -IP: %1 -port: %2 - -Run the Fortune Client example now. - - - - - SessionWidget - - Session Details - - - - Session ID: - - - - Session State: - - - - Invalid - - - - Configuration: - - - - Bearer: - - - - Interface Name: - - - - Interface GUID: - - - - Last Error: - - - - Error String: - - - - 0 - - - - Active Time: - - - - 0 seconds - - - - Open - - - - Blocking Open - - - - Close - - - - Stop - - - - %1 (%2) - - - - Not Available - - - - Connecting - - - - Connected - - - - Closing - - - - Disconnected - - - - Roaming - - - - Unknown - - - - Closed - - - - - SettingsTree - - Setting - - - - Type - - - - Value - - - - - ShapedClock - - E&xit - - - - Ctrl+Q - - - - Drag the clock with the left mouse button. -Use the right mouse button to open a context menu. - - - - Shaped Analog Clock - - - - - SortingBox - - New Circle - - - - New Square - - - - New Triangle - - - - Tool Tips - - - - Circle - - - - Square - - - - Triangle - - - - Circle <%1> - - - - Square <%1> - - - - Triangle <%1> - - - - - SplashItem - - Welcome to the Pad Navigator Example. You can use the keyboard arrows to navigate the icons, and press enter to activate an item. Press any key to begin. - - - - - SpreadSheet - - Spreadsheet - - - - Sum - - - - &Add - - - - &Subtract - - - - &Multiply - - - - &Divide - - - - Font... - - - - Background &Color... - - - - Clear - - - - About Spreadsheet - - - - E&xit - - - - &Print - - - - &File - - - - &Cell - - - - &Help - - - - Cell: (%1) - - - - Cancel - - - - OK - - - - Sum cells - - - - First cell: - - - - Last cell: - - - - Output to: - - - - sum %1 %2 - - - - Cell 1 - - - - Cell 2 - - - - %1 %2 %3 - - - - Addition - - - - Subtraction - - - - Multiplication - - - - Division - - - - - SslClient - - &lt;not connected&gt; - - - - <none> - - - - Display encryption details. - - - - Connection error - - - - - SslErrors - - Unable To Validate The Connection - - - - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600; color:#ff0000;">Warning</span><span style=" color:#ff0000;">:</span><span style=" color:#000000;"> One or more errors with this connection prevent validating the authenticity of the host you are connecting to. Please review the following list of errors, and click </span><span style=" color:#000000;">Ignore</span><span style=" color:#000000;"> to continue, or </span><span style=" color:#000000;">Cancel</span><span style=" color:#000000;"> to abort the connection.</span></p></body></html> - - - - View Certificate Chain - - - - Ignore - - - - Cancel - - - - - StorageModel - - 0 b - - - - %1 %2 - this should expand to "1.23 GB" - - - - Root path : %1 -Name: %2 -Display Name: %3 -Device: %4 -FileSystem: %5 -Total size: %6 -Free size: %7 -Available size: %8 -Is Ready: %9 -Is Read-only: %10 -Is Valid: %11 -Is Root: %12 - - - - true - - - - false - - - - Root path - - - - Volume Name - - - - Device - - - - File system - - - - Total - - - - Free - - - - Available - - - - Ready - - - - Read-only - - - - Valid - - - - - StyleSheetEditor - - Style Editor - - - - Default - - - - Coffee - - - - Pagefold - - - - Style: - - - - &Apply - - - - Style Sheet: - - - - - StyleWidget - - Form - - - - Styles - - - - Transp. - - - - Blue - - - - Khaki - - - - None - - - - Value: - - - - Show - - - - Enable - - - - Close - - - - - StyleWindow - - Big Red Button - - - - A simple style button - - - - Style Plugin Example - - - - - TabDialog - - General - - - - Permissions - - - - Applications - - - - Tab Dialog - - - - - TableEditor - - ID - - - - First name - - - - Last name - - - - Submit - - - - &Revert - - - - Quit - - - - Cached Table - - - - The database reported an error: %1 - - - - - TableModel - - Name - - - - Address - - - - - TabletCanvas - - This input device is not supported by the example. - - - - Unknown tablet device - treating as stylus - - - - - TestWidget - - But soft, what light through yonder window breaks? / It is the east, and Juliet is the sun. / Arise, fair sun, and kill the envious moon, / Who is already sick and pale with grief / That thou, her maid, art far more fair than she. - - - - To-morrow, and to-morrow, and to-morrow, / Creeps in this petty pace from day to day, / To the last syllable of recorded time; / And all our yesterdays have lighted fools / The way to dusty death. Out, out, brief candle! / Life's but a walking shadow, a poor player, / That struts and frets his hour upon the stage, / And then is heard no more. It is a tale / Told by an idiot, full of sound and fury, / Signifying nothing. - - - - Feeling lucky, punk? - - - - Switch text - - - - Exit - - - - Elided - - - - - TetrixBoard - - Pause - - - - - TetrixWindow - - &Start - - - - &Quit - - - - &Pause - - - - NEXT - - - - LEVEL - - - - SCORE - - - - LINES REMOVED - - - - Tetrix - - - - - TextEdit - - Help - - - - About - - - - About &Qt - - - - File Actions - - - - &File - - - - &New - - - - &Open... - - - - &Save - - - - Save &As... - - - - &Print... - - - - Print Preview... - - - - &Export PDF... - - - - &Quit - - - - Edit Actions - - - - &Edit - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - - - Format Actions - - - - F&ormat - - - - &Bold - - - - &Italic - - - - &Underline - - - - &Left - - - - C&enter - - - - &Right - - - - &Justify - - - - &Color... - - - - The document has been modified. -Do you want to save your changes? - - - - %1[*] - %2 - - - - Open File... - - - - Opened "%1" - - - - Could not open "%1" - - - - Wrote "%1" - - - - Could not write to file "%1" - - - - Save as... - - - - Print Document - - - - Export PDF - - - - Exported "%1" - - - - This example demonstrates Qt's rich text editing facilities in action, providing an example document for you to experiment with. - - - - This TextEdit provides autocompletions for words that have more than 3 characters. You can trigger autocompletion using - - - - - ToolBar - - Order Items in Tool Bar - - - - Randomize Items in Tool Bar - - - - Add Spin Box - - - - Remove Spin Box - - - - Movable - - - - Allow on Left - - - - Allow on Right - - - - Allow on Top - - - - Allow on Bottom - - - - Place on Left - - - - Place on Right - - - - Place on Top - - - - Place on Bottom - - - - Insert break - - - - - UpdatePage - - Package selection - - - - Update system - - - - Update applications - - - - Update documentation - - - - Existing packages - - - - Qt - - - - QSA - - - - Teambuilder - - - - Start update - - - - - ValidatorsForm - - Validators - - - - QIntValidator - - - - Min: - - - - Max: - - - - editingFinished() - - - - QDoubleValidator - - - - Format: - - - - Standard - - - - Scientific - - - - Decimals: - - - - Quit - - - - - View - - 0 - - - - Pointer Mode - - - - Select - - - - Drag - - - - Antialiasing - - - - OpenGL - - - - - Widget - - Context &version: - - - - Create context - - - - Profile - - - - Options - - - - Renderable type - - - - Failed to create context - - - - OpenGL version: %1.%2 - - - - Profile: %1 - - - - Options: %1 - - - - Renderable type: %1 - - - - Depth buffer size: %1 - - - - Stencil buffer size: %1 - - - - Samples: %1 - - - - Red buffer size: %1 - - - - Green buffer size: %1 - - - - Blue buffer size: %1 - - - - Alpha buffer size: %1 - - - - Swap interval: %1 - - - - *** Context information *** - - - - Vendor: %1 - - - - Renderer: %1 - - - - OpenGL version: %1 - - - - GLSL version: %1 - - - - -*** QSurfaceFormat from context *** - - - - -*** QSurfaceFormat from window surface *** - - - - -*** Qt build information *** - - - - Qt OpenGL configuration: %1 - - - - Qt OpenGL library handle: %1 - - - - Found %1 extensions: - - - - An error has occurred: -%1 - - - - - WidgetGallery - - &Style: - - - - &Use style's standard palette - - - - &Disable widgets - - - - Styles - - - - Group 1 - - - - Radio button 1 - - - - Radio button 2 - - - - Radio button 3 - - - - Tri-state check box - - - - Group 2 - - - - Default Push Button - - - - Toggle Push Button - - - - Flat Push Button - - - - Twinkle, twinkle, little star, -How I wonder what you are. -Up above the world so high, -Like a diamond in the sky. -Twinkle, twinkle, little star, -How I wonder what you are! - - - - - &Table - - - - Text &Edit - - - - Group 3 - - - - - Window - - &Load image... - - - - &Stop - - - - Queued Custom Type - - - - Open Image - - - - Image files (%1) - - - - &Send message - - - - Custom Type Sending - - - - Na&me: - - - - &Address: - - - - &Type: - - - - &Next - - - - &Previous - - - - SQL Widget Mapper - - - - Cannot open database - - - - Unable to establish a database connection. -This example needs SQLite support. Please read the Qt SQL driver documentation for information how to build it. - - - - Systray - - - - The program will keep running in the system tray. To terminate the program, choose <b>Quit</b> in the context menu of the system tray entry. - - - - Sorry, I already gave what help I could. -Maybe you should try asking a human? - - - - Tray Icon - - - - Bad - - - - Heart - - - - Trash - - - - Show icon - - - - Balloon Message - - - - Type: - - - - None - - - - Information - - - - Warning - - - - Critical - - - - Duration: - - - - (some systems might ignore this hint) - - - - Title: - - - - Cannot connect to network - - - - Body: - - - - Don't believe me. Honestly, I don't have a clue. -Click this balloon for details. - - - - Show Message - - - - Mi&nimize - - - - Ma&ximize - - - - &Restore - - - - &Quit - - - - &Browse... - - - - &Find - - - - * - - - - Named: - - - - Containing text: - - - - In directory: - - - - Find Files - - - - &Cancel - - - - Searching file number %1 of %n... - - - - - - - %1 KB - - - - %n file(s) found (Double click on a file to open it) - - - - - - - Filename - - - - Size - - - - Basic Graphics Layouts Example - - - - Case sensitive sorting - - - - Case sensitive filter - - - - &Filter pattern: - - - - Regular expression - - - - Wildcard - - - - Fixed string - - - - Filter &syntax: - - - - Subject - - - - Sender - - - - Date - - - - Filter &column: - - - - Original Model - - - - Sorted/Filtered Model - - - - Basic Sort/Filter Model - - - - Alice - - - - Neptun - - - - Ferdinand - - - - Name - - - - Hair Color - - - - Color Editor Factory - - - - Delegate Widget Mapper - - - - Home - - - - Work - - - - Other - - - - F&rom: - - - - &To: - - - - Custom Sort/Filter Model - - - - &Directory: - - - - Fetch More Example - - - - %1 items added. - - - - A&ge (in years): - - - - Simple Widget Mapper - - - - Central widget - - - - Border Layout - - - - Short - - - - Longer - - - - Different text - - - - More text - - - - Even longer button text - - - - Flow Layout - - - - Polygon - - - - Rectangle - - - - Rounded Rectangle - - - - Ellipse - - - - Pie - - - - Chord - - - - Path - - - - Line - - - - Polyline - - - - Arc - - - - Points - - - - Text - - - - Pixmap - - - - &Shape: - - - - 0 (cosmetic pen) - - - - Pen &Width: - - - - Solid - - - - Dash - - - - Dot - - - - Dash Dot - - - - Dash Dot Dot - - - - &Pen Style: - - - - Flat - - - - Square - - - - Round - - - - Pen &Cap: - - - - Miter - - - - Bevel - - - - Pen &Join: - - - - Linear Gradient - - - - Radial Gradient - - - - Conical Gradient - - - - Texture - - - - Horizontal - - - - Vertical - - - - Cross - - - - Backward Diagonal - - - - Forward Diagonal - - - - Diagonal Cross - - - - Dense 1 - - - - Dense 2 - - - - Dense 3 - - - - Dense 4 - - - - Dense 5 - - - - Dense 6 - - - - Dense 7 - - - - &Brush: - - - - Options: - - - - &Antialiasing - - - - &Transformations - - - - Basic Drawing - - - - Aliased - - - - Antialiased - - - - Int - - - - Float - - - - Concentric Circles - - - - Qt - - - - Odd Even - - - - Winding - - - - Fill &Rule: - - - - &Fill Gradient: - - - - to - - - - &Pen Width: - - - - Pen &Color: - - - - &Rotation Angle: - - - - Painter Paths - - - - Clock - - - - House - - - - Truck - - - - No transformation - - - - Rotate by 60° - - - - Scale to 75% - - - - Translate by (50, 50) - - - - Transformations - - - - Calendar Widget - - - - Bold - - - - Italic - - - - Green - - - - Preview - - - - General Options - - - - &Locale - - - - Sunday - - - - Monday - - - - Tuesday - - - - Wednesday - - - - Thursday - - - - Friday - - - - Saturday - - - - Wee&k starts on: - - - - Single selection - - - - &Selection mode: - - - - &Grid - - - - &Navigation bar - - - - Single letter day names - - - - Short day names - - - - &Horizontal header: - - - - ISO week numbers - - - - &Vertical header: - - - - Dates - - - - &Minimum Date: - - - - &Current Date: - - - - Ma&ximum Date: - - - - Text Formats - - - - Black - - - - &Weekday color: - - - - Red - - - - Week&end color: - - - - Plain - - - - &Header text: - - - - &First Friday in blue - - - - May &1 in red - - - - Blue - - - - Magenta - - - - Group Boxes - - - - Exclusive Radio Buttons - - - - &Radio button 1 - - - - R&adio button 2 - - - - Ra&dio button 3 - - - - E&xclusive Radio Buttons - - - - Rad&io button 1 - - - - Radi&o button 2 - - - - Radio &button 3 - - - - Ind&ependent checkbox - - - - Non-Exclusive Checkboxes - - - - &Checkbox 1 - - - - C&heckbox 2 - - - - Tri-&state button - - - - &Push Buttons - - - - &Normal Button - - - - &Toggle Button - - - - &Flat Button - - - - Pop&up Button - - - - &First Item - - - - &Second Item - - - - &Third Item - - - - F&ourth Item - - - - Submenu - - - - Popup Submenu - - - - Item 1 - - - - Item 2 - - - - Item 3 - - - - Echo - - - - Mode: - - - - Normal - - - - Password - - - - PasswordEchoOnEdit - - - - No Echo - - - - Validator - - - - No validator - - - - Integer validator - - - - Double validator - - - - Alignment - - - - Left - - - - Centered - - - - Right - - - - Input mask - - - - No mask - - - - Phone number - - - - ISO date - - - - License key - - - - Access - - - - Read-only: - - - - False - - - - True - - - - Line Edits - - - - Controls - - - - Sliders - - - - Minimum value: - - - - Maximum value: - - - - Current value: - - - - Inverted appearance - - - - Inverted key bindings - - - - Horizontal slider-like widgets - - - - Vertical slider-like widgets - - - - Spin Boxes - - - - Spinboxes - - - - Enter a value between %1 and %2: - - - - Enter a zoom value between %1 and %2: - - - - Automatic - - - - Enter a price between %1 and %2: - - - - Show group separator - - - - Date and time spin boxes - - - - Appointment date (between %0 and %1): - - - - Appointment time (between %0 and %1): - - - - Format string for the meeting date and time: - - - - Meeting date (between %0 and %1): - - - - Meeting time (between %0 and %1): - - - - Double precision spinboxes - - - - Number of decimal places to show: - - - - Enter a scale factor between %1 and %2: - - - - No scaling - - - - 2D Painting on Native and OpenGL Widgets - - - - Native - - - - OpenGL - - - - Undock - - - - Hello GL - - - - Dock - - - - Cannot dock - - - - Main window already closed - - - - Main window already occupied - - - - Textures - - - - - XFormWidget - - Affine Transformations - - - - Rotate - - - - Scale - - - - Shear - - - - Type - - - - Vector Image - - - - Pixmap - - - - Text - - - - Reset Transform - - - - Animate - - - - Show Source - - - - Use OpenGL - - - - What's This? - - - - - XbelTree - - Title - - - - Location - - - - DOM Bookmarks - - - - Parse error at line %1, column %2: -%3 - - - - The file is not an XBEL file. - - - - The file is not an XBEL version 1.0 file. - - - - - XmlStreamLint - - Usage: xmlstreamlint <path to XML file> - - - - - File %1 does not exist. - - - - - Failed to open file %1. - - - - - Failed to open stdout. - - - - Error: %1 in file %2 at line %3, column %4. - - - - - - childwidget - - Child widget - - - - Press me - - - - - contekst - - Intro - - - - Introx - - - - - nestedlayouts - - Query: - - - - Name - - - - Office - - - - Nested layouts - - - - - simpleanchorlayout - - QGraphicsAnchorLayout in use - - - - Simple Anchor Layout - - - - - toplevel - - Top-level widget - - - - - tst_QKeySequence - - Shift++ - - - - Ctrl++ - - - - Alt++ - - - - Meta++ - - - - Shift+,, Shift++ - - - - Shift+,, Ctrl++ - - - - Shift+,, Alt++ - - - - Shift+,, Meta++ - - - - Ctrl+,, Shift++ - - - - Ctrl+,, Ctrl++ - - - - Ctrl+,, Alt++ - - - - Ctrl+,, Meta++ - - - - - tst_QLocale - - tr_TR - - - - - windowlayout - - Name: - - - - Window layout - - - diff --git a/res/tr_qt5.qrc b/res/tr_qt5.qrc index 7bfe7cc..7cfd46a 100644 --- a/res/tr_qt5.qrc +++ b/res/tr_qt5.qrc @@ -1,11 +1,11 @@ qtbase_en_GB.qm - qtbase_de.qm - qtbase_fr.qm - qtbase_ko.qm - qtbase_ru.qm - qtbase_uk.qm - qtbase_zh_TW.qm + qt5/qtbase_de.qm + qt5/qtbase_fr.qm + qt5/qtbase_ko.qm + qt5/qtbase_ru.qm + qt5/qtbase_uk.qm + qt5/qtbase_zh_TW.qm diff --git a/res/tr_qt6.qrc b/res/tr_qt6.qrc new file mode 100644 index 0000000..a8adf50 --- /dev/null +++ b/res/tr_qt6.qrc @@ -0,0 +1,11 @@ + + + qtbase_en_GB.qm + qt6/qtbase_de.qm + qt6/qtbase_fr.qm + qt6/qtbase_ko.qm + qt6/qtbase_ru.qm + qt6/qtbase_uk.qm + qt6/qtbase_zh_TW.qm + +