summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.pc/.quilt_patches1
-rw-r--r--.pc/.quilt_series1
-rw-r--r--.pc/.version1
-rw-r--r--.pc/applied-patches2
-rwxr-xr-x.pc/disable_check_for_update.patch/src/UiGuiSettings.cpp688
-rwxr-xr-x.pc/qsci_rename.patch/UniversalIndentGUI.pro201
-rwxr-xr-x.pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj741
-rwxr-xr-xUniversalIndentGUI.pro2
-rwxr-xr-xUniversalIndentGUI.sln31
-rwxr-xr-xUniversalIndentGUI.xcodeproj/project.pbxproj741
-rwxr-xr-xUniversalIndentGUI.xcodeproj/qt_makeqmake.mak73
-rwxr-xr-xUniversalIndentGUI.xcodeproj/qt_preprocess.mak116
-rwxr-xr-xUniversalIndentGUI.xcodeproj/thomas.pbxuser433
-rwxr-xr-xUniversalIndentGUI.xcodeproj/thomas.perspectivev31487
-rwxr-xr-xVS8QtRules.rules41
-rw-r--r--debian/patches/disable_check_for_update.patch15
-rw-r--r--debian/patches/qsci_rename.patch40
-rw-r--r--debian/patches/series2
-rw-r--r--debian/universalindentgui.lintian-overrides4
-rwxr-xr-xsrc/UniversalIndentGUI.vcproj549
-rwxr-xr-xsrc/tclap/Makefile.in387
-rwxr-xr-xtranslations/universalindent.ts1095
-rwxr-xr-xtranslations/universalindent_de.ts1131
-rwxr-xr-xtranslations/universalindent_fr.ts1119
-rwxr-xr-xtranslations/universalindent_ja.ts1095
-rwxr-xr-xtranslations/universalindent_ru.ts1132
-rwxr-xr-xtranslations/universalindent_uk.ts1132
-rwxr-xr-xtranslations/universalindent_zh_TW.ts1132
28 files changed, 1 insertions, 13391 deletions
diff --git a/.pc/.quilt_patches b/.pc/.quilt_patches
deleted file mode 100644
index 6857a8d..0000000
--- a/.pc/.quilt_patches
+++ /dev/null
@@ -1 +0,0 @@
-debian/patches
diff --git a/.pc/.quilt_series b/.pc/.quilt_series
deleted file mode 100644
index c206706..0000000
--- a/.pc/.quilt_series
+++ /dev/null
@@ -1 +0,0 @@
-series
diff --git a/.pc/.version b/.pc/.version
deleted file mode 100644
index 0cfbf08..0000000
--- a/.pc/.version
+++ /dev/null
@@ -1 +0,0 @@
-2
diff --git a/.pc/applied-patches b/.pc/applied-patches
deleted file mode 100644
index 3b81d2d..0000000
--- a/.pc/applied-patches
+++ /dev/null
@@ -1,2 +0,0 @@
-disable_check_for_update.patch
-qsci_rename.patch
diff --git a/.pc/disable_check_for_update.patch/src/UiGuiSettings.cpp b/.pc/disable_check_for_update.patch/src/UiGuiSettings.cpp
deleted file mode 100755
index 3aacf1f..0000000
--- a/.pc/disable_check_for_update.patch/src/UiGuiSettings.cpp
+++ /dev/null
@@ -1,688 +0,0 @@
-/***************************************************************************
-* Copyright (C) 2006-2012 by Thomas Schweitzer *
-* thomas-schweitzer(at)arcor.de *
-* *
-* This program is free software; you can redistribute it and/or modify *
-* it under the terms of the GNU General Public License version 2.0 as *
-* published by the Free Software Foundation. *
-* *
-* This program is distributed in the hope that it will be useful, *
-* but WITHOUT ANY WARRANTY; without even the implied warranty of *
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
-* GNU General Public License for more details. *
-* *
-* You should have received a copy of the GNU General Public License *
-* along with this program in the file LICENSE.GPL; if not, write to the *
-* Free Software Foundation, Inc., *
-* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
-***************************************************************************/
-
-#include "UiGuiSettings.h"
-
-#include "SettingsPaths.h"
-
-#include <QSettings>
-#include <QPoint>
-#include <QSize>
-#include <QDir>
-#include <QDate>
-#include <QStringList>
-#include <QCoreApplication>
-#include <QMetaMethod>
-#include <QMetaProperty>
-#include <QWidget>
-
-//! \defgroup grp_Settings All concerning the settings.
-
-/*!
- \class UiGuiSettings
- \ingroup grp_Settings
- \brief Handles the settings of the program. Reads them on startup and saves them on exit.
- Is a singleton class and can only be accessed via getInstance().
-*/
-
-// Inits the single class instance pointer.
-QWeakPointer<UiGuiSettings> UiGuiSettings::_instance;
-
-
-/*!
- \brief The constructor for the settings.
-*/
-UiGuiSettings::UiGuiSettings() : QObject() {
- // Create the main application settings object from the UniversalIndentGUI.ini file.
- _qsettings = new QSettings(SettingsPaths::getSettingsPath() + "/UniversalIndentGUI.ini", QSettings::IniFormat, this);
-
- _indenterDirctoryStr = SettingsPaths::getGlobalFilesPath() + "/indenters";
- readAvailableTranslations();
- initSettings();
-}
-
-
-/*!
- \brief Returns the instance of the settings class. If no instance exists, ONE will be created.
- */
-QSharedPointer<UiGuiSettings> UiGuiSettings::getInstance() {
- QSharedPointer<UiGuiSettings> sharedInstance = _instance.toStrongRef();
- if ( sharedInstance.isNull() ) {
- // Create the settings object, which loads all UiGui settings from a file.
- sharedInstance = QSharedPointer<UiGuiSettings>(new UiGuiSettings());
- _instance = sharedInstance.toWeakRef();
- }
-
- return sharedInstance;
-}
-
-
-/*!
- \brief The destructor saves the settings to a file.
- */
-UiGuiSettings::~UiGuiSettings() {
- // Convert the language setting from an integer index to a string.
- int index = _qsettings->value("UniversalIndentGUI/language", 0).toInt();
- if ( index < 0 || index >= _availableTranslations.size() )
- index = 0;
-
- _qsettings->setValue( "UniversalIndentGUI/language", _availableTranslations.at(index) );
-}
-
-
-/*!
- \brief Scans the translations directory for available translation files and
- stores them in the QList \a _availableTranslations.
- */
-void UiGuiSettings::readAvailableTranslations() {
- QString languageShort;
- QStringList languageFileList;
-
- // English is the default language. A translation file does not exist but to have a menu entry, added here.
- languageFileList << "universalindent_en.qm";
-
- // Find all translation files in the "translations" directory.
- QDir translationDirectory = QDir( SettingsPaths::getGlobalFilesPath() + "/translations" );
- languageFileList << translationDirectory.entryList( QStringList("universalindent_*.qm") );
-
- // Loop for each found translation file
- foreach ( languageShort, languageFileList ) {
- // Remove the leading string "universalindent_" from the filename.
- languageShort.remove(0,16);
- // Remove trailing file extension ".qm".
- languageShort.chop(3);
-
- _availableTranslations.append(languageShort);
- }
-}
-
-
-/*!
- \brief Returns a list of the mnemonics of the available translations.
- */
-QStringList UiGuiSettings::getAvailableTranslations() {
- return _availableTranslations;
-}
-
-
-/*!
- \brief Returns the value of the by \a settingsName defined setting as QVariant.
-
- If the named setting does not exist, 0 is being returned.
-*/
-QVariant UiGuiSettings::getValueByName(QString settingName) {
- return _qsettings->value("UniversalIndentGUI/" + settingName);
-}
-
-
-/*!
- \brief Loads the settings for the main application.
-
- Settings are for example last selected indenter, last loaded source code file and so on.
-*/
-bool UiGuiSettings::initSettings()
-{
- // Read the version string saved in the settings file.
- _qsettings->setValue( "UniversalIndentGUI/version", _qsettings->value("UniversalIndentGUI/version", "") );
-
- // Read windows last size and position from the settings file.
- _qsettings->setValue( "UniversalIndentGUI/maximized", _qsettings->value("UniversalIndentGUI/maximized", false) );
- _qsettings->setValue( "UniversalIndentGUI/position", _qsettings->value("UniversalIndentGUI/position", QPoint(50, 50)) );
- _qsettings->setValue( "UniversalIndentGUI/size", _qsettings->value("UniversalIndentGUI/size", QSize(800, 600)) );
-
- // Read last selected encoding for the opened source code file.
- _qsettings->setValue( "UniversalIndentGUI/encoding", _qsettings->value("UniversalIndentGUI/encoding", "UTF-8") );
-
- // Read maximum length of list for recently opened files.
- _qsettings->setValue( "UniversalIndentGUI/recentlyOpenedListSize", _qsettings->value("UniversalIndentGUI/recentlyOpenedListSize", 5) );
-
- // Read if last opened source code file should be loaded on startup.
- _qsettings->setValue( "UniversalIndentGUI/loadLastSourceCodeFileOnStartup", _qsettings->value("UniversalIndentGUI/loadLastSourceCodeFileOnStartup", true) );
-
- // Read last opened source code file from the settings file.
- _qsettings->setValue( "UniversalIndentGUI/lastSourceCodeFile", _qsettings->value("UniversalIndentGUI/lastSourceCodeFile", _indenterDirctoryStr+"/example.cpp") );
-
- // Read last selected indenter from the settings file.
- int selectedIndenter = _qsettings->value("UniversalIndentGUI/selectedIndenter", 0).toInt();
- if ( selectedIndenter < 0 ) {
- selectedIndenter = 0;
- }
- _qsettings->setValue( "UniversalIndentGUI/selectedIndenter", selectedIndenter );
-
- // Read if syntax highlighting is enabled.
- _qsettings->setValue( "UniversalIndentGUI/SyntaxHighlightingEnabled", _qsettings->value("UniversalIndentGUI/SyntaxHighlightingEnabled", true) );
-
- // Read if white space characters should be displayed.
- _qsettings->setValue( "UniversalIndentGUI/whiteSpaceIsVisible", _qsettings->value("UniversalIndentGUI/whiteSpaceIsVisible", false) );
-
- // Read if indenter parameter tool tips are enabled.
- _qsettings->setValue( "UniversalIndentGUI/indenterParameterTooltipsEnabled", _qsettings->value("UniversalIndentGUI/indenterParameterTooltipsEnabled", true) );
-
- // Read the tab width from the settings file.
- _qsettings->setValue( "UniversalIndentGUI/tabWidth", _qsettings->value("UniversalIndentGUI/tabWidth", 4) );
-
- // Read the last selected language and stores the index it has in the list of available translations.
- _qsettings->setValue( "UniversalIndentGUI/language", _availableTranslations.indexOf( _qsettings->value("UniversalIndentGUI/language", "").toString() ) );
-
- // Read the update check settings from the settings file.
- _qsettings->setValue( "UniversalIndentGUI/CheckForUpdate", _qsettings->value("UniversalIndentGUI/CheckForUpdate", true) );
- _qsettings->setValue( "UniversalIndentGUI/LastUpdateCheck", _qsettings->value("UniversalIndentGUI/LastUpdateCheck", QDate(1900,1,1)) );
-
- // Read the main window state.
- _qsettings->setValue( "UniversalIndentGUI/MainWindowState", _qsettings->value("UniversalIndentGUI/MainWindowState", QByteArray()) );
-
- return true;
-}
-
-
-/*!
- \brief Register the by \a propertyName defined property of \a obj to be connected to the setting defined by \a settingName.
-
- The \a propertyName must be one of those that are listed in the Qt "Properties" documentation section of a Qt Object.
- All further needed info is retrieved via the \a obj's MetaObject, like the to the property bound signal.
- */
-bool UiGuiSettings::registerObjectProperty( QObject *obj, const QString &propertyName, const QString &settingName )
-{
- const QMetaObject *metaObject = obj->metaObject();
- bool connectSuccess = false;
-
- // Connect to the objects destroyed signal, so that it will be correctly unregistered.
- connectSuccess = connect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectProperty(QObject*)));
-
- int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
- if ( connectSuccess && indexOfProp > -1 ) {
- QMetaProperty mProp = metaObject->property(indexOfProp);
-
- // Connect to the property's value changed signal.
- if ( mProp.hasNotifySignal() ) {
- QMetaMethod signal = mProp.notifySignal();
- //QString teststr = qPrintable(SIGNAL() + QString(signal.signature()));
- // The command "SIGNAL() + QString(signal.signature())" assembles the signal methods signature to a valid Qt SIGNAL.
- connectSuccess = connect(obj, qPrintable(SIGNAL() + QString(signal.signature())), this, SLOT(handleObjectPropertyChange()));
- }
-
- if ( connectSuccess ) {
- _registeredObjectProperties[obj] = QStringList() << propertyName << settingName;
- }
- else {
- //TODO: Write a debug warning to the log.
- disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectProperty(QObject*)));
- return false;
- }
-
- // If setting already exists, set the objects property to the setting value.
- if ( _qsettings->contains("UniversalIndentGUI/" + settingName) ) {
- mProp.write(obj, _qsettings->value("UniversalIndentGUI/" + settingName));
- }
- // Otherwise add the setting and set it to the value of the objects property.
- else {
- _qsettings->setValue("UniversalIndentGUI/" + settingName, mProp.read(obj));
- }
- }
- else {
- //TODO: Write a debug warning to the log.
- disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectProperty(QObject*)));
- return false;
- }
-
- return true;
-}
-
-
-/*!
- \brief Searches the child QObjects of \a obj for a property name and setting name definition within
- their custom properties and registers this property name to that setting name if both were found.
-
- The custom properties, for which are searched, are "connectedPropertyName" and "connectedSettingName",
- where "connectedPropertyName" is the name of a QObject property as it is documented in the QtDocs, and
- "connectedSettingName" is the name of a setting here within UiGuiSettings. If the mentioned setting
- name doesn't exist, it will be created.
-
- Returns true, if all found property and setting definitions could be successfully registered.
- Returns false, if any of those registrations fails.
- */
-bool UiGuiSettings::registerObjectPropertyRecursive(QObject *obj) {
- return checkCustomPropertiesAndCallFunction(obj, &UiGuiSettings::registerObjectProperty);
-}
-
-
-/*!
- \brief Assigns the by \a settingName defined setting value to the by \a propertyName defined property of \a obj.
-
- Returns true, if the value could be assigned, otherwise returns false, which is the case if settingName doesn't exist
- within the settings or if the mentioned propertyName wasn't found for the \a obj.
- */
-bool UiGuiSettings::setObjectPropertyToSettingValue( QObject *obj, const QString &propertyName, const QString &settingName )
-{
- const QMetaObject *metaObject = obj->metaObject();
-
- int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
- if ( indexOfProp > -1 ) {
- QMetaProperty mProp = metaObject->property(indexOfProp);
-
- // If setting already exists, set the objects property to the setting value.
- if ( _qsettings->contains("UniversalIndentGUI/" + settingName) ) {
- mProp.write(obj, _qsettings->value("UniversalIndentGUI/" + settingName));
- }
- // The setting didn't exist so return that setting the objects property failed.
- else {
- //TODO: Write a debug warning to the log.
- return false;
- }
- }
- else {
- //TODO: Write a debug warning to the log.
- return false;
- }
-
- return true;
-}
-
-
-/*!
- \brief Searches the child QObjects of \a obj for a property name and setting name definition within
- their custom properties and sets each property to settings value.
-
- The custom properties, for which are searched, are "connectedPropertyName" and "connectedSettingName",
- where "connectedPropertyName" is the name of a QObject property as it is documented in the QtDocs, and
- "connectedSettingName" is the name of a setting here within UiGuiSettings.
-
- Returns true, if all found property and setting definitions could be successfully registered.
- Returns false, if any of those registrations fails.
- */
-bool UiGuiSettings::setObjectPropertyToSettingValueRecursive(QObject *obj) {
- return checkCustomPropertiesAndCallFunction(obj, &UiGuiSettings::setObjectPropertyToSettingValue);
-}
-
-
-/*!
- \brief Assigns the by \a propertyName defined property's value of \a obj to the by \a settingName defined setting.
-
- If the \a settingName didn't exist yet, it will be created.
-
- Returns true, if the value could be assigned, otherwise returns false, which is the case if the mentioned
- propertyName wasn't found for the \a obj.
- */
-bool UiGuiSettings::setSettingToObjectPropertyValue( QObject *obj, const QString &propertyName, const QString &settingName )
-{
- const QMetaObject *metaObject = obj->metaObject();
-
- int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
- if ( indexOfProp > -1 ) {
- QMetaProperty mProp = metaObject->property(indexOfProp);
-
- setValueByName(settingName, mProp.read(obj));
- }
- else {
- //TODO: Write a debug warning to the log.
- return false;
- }
-
- return true;
-}
-
-
-/*!
- \brief Searches the child QObjects of \a obj for a property name and setting name definition within
- their custom properties and sets each setting to the property value.
-
- The custom properties, for which are searched, are "connectedPropertyName" and "connectedSettingName",
- where "connectedPropertyName" is the name of a QObject property as it is documented in the QtDocs, and
- "connectedSettingName" is the name of a setting here within UiGuiSettings. If the settingName
- didn't exist yet, it will be created.
-
- Returns true, if all found property and setting definitions could be successfully registered.
- Returns false, if any of those registrations fails.
- */
-bool UiGuiSettings::setSettingToObjectPropertyValueRecursive(QObject *obj) {
- return checkCustomPropertiesAndCallFunction(obj, &UiGuiSettings::setSettingToObjectPropertyValue);
-}
-
-
-/*!
- \brief Iterates over all \a objs child QObjects and checks whether they have the custom properties
- "connectedPropertyName" and "connectedSettingName" set. If both are set, it invokes the \a callBackFunc
- with both.
- */
-bool UiGuiSettings::checkCustomPropertiesAndCallFunction(QObject *obj, bool (UiGuiSettings::*callBackFunc)(QObject *obj, const QString &propertyName, const QString &settingName)) {
- bool success = true;
-
- // Find all widgets that have PropertyName and SettingName defined in their style sheet.
- QList<QObject *> allObjects = obj->findChildren<QObject *>();
- foreach (QObject *object, allObjects) {
- QString propertyName = object->property("connectedPropertyName").toString();
- QString settingName = object->property("connectedSettingName").toString();
-
- // If property and setting name were found, register that widget with the settings.
- if ( !propertyName.isEmpty() && !settingName.isEmpty() ) {
- success &= (this->*callBackFunc)( object, propertyName, settingName );
- }
- }
-
- return success;
-}
-
-
-/*!
- \brief The with a certain property registered \a obj gets unregistered.
- */
-void UiGuiSettings::unregisterObjectProperty(QObject *obj) {
- if ( _registeredObjectProperties.contains(obj) ) {
- const QMetaObject *metaObject = obj->metaObject();
- QString propertyName = _registeredObjectProperties[obj].first();
- QString settingName = _registeredObjectProperties[obj].last();
-
- bool connectSuccess = false;
- int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
- if ( indexOfProp > -1 ) {
- QMetaProperty mProp = metaObject->property(indexOfProp);
-
- // Disconnect to the property's value changed signal.
- if ( mProp.hasNotifySignal() ) {
- QMetaMethod signal = mProp.notifySignal();
- // The command "SIGNAL() + QString(signal.signature())" assembles the signal methods signature to a valid Qt SIGNAL.
- connectSuccess = disconnect(obj, qPrintable(SIGNAL() + QString(signal.signature())), this, SLOT(handleObjectPropertyChange()));
- }
- }
- _registeredObjectProperties.remove(obj);
- }
-}
-
-
-/*!
- \brief Registers a slot form the \a obj by its \a slotName to be invoked, if the by \a settingName defined
- setting changes.
-
- The registered slot may have no parameters or exactly one. If it accepts one parameter, whenever the setting
- \a settingName changes the slot gets tried to be invoked with the settings value as parameter. This only works,
- if the slot parameter is of the same type as the setting.
- */
-bool UiGuiSettings::registerObjectSlot(QObject *obj, const QString &slotName, const QString &settingName) {
-
- const QMetaObject *metaObject = obj->metaObject();
-
- bool connectSuccess = false;
- // Connect to the objects destroyed signal, so that it will be correctly unregistered.
- connectSuccess = connect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectSlot(QObject*)));
-
- QString normalizedSlotName = QMetaObject::normalizedSignature( qPrintable(slotName) );
- int indexOfMethod = metaObject->indexOfMethod( qPrintable(normalizedSlotName) );
- if ( connectSuccess && indexOfMethod > -1 ) {
- QMetaMethod mMethod = metaObject->method(indexOfMethod);
- //QMetaMethod::Access access = mMethod.access();
- //QMetaMethod::MethodType methType = mMethod.methodType();
-
- // Since the method can at maximum be invoked with the setting value as argument,
- // only methods taking max one argument are allowed.
- if ( mMethod.parameterTypes().size() <= 1 ) {
- _registeredObjectSlots.insert(obj, QStringList() << normalizedSlotName << settingName);
- }
- else {
- //TODO: Write a debug warning to the log.
- disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectSlot(QObject*)));
- return false;
- }
- }
- else {
- //TODO: Write a debug warning to the log.
- disconnect(obj, SIGNAL(destroyed(QObject*)), this, SLOT(unregisterObjectSlot(QObject*)));
- return false;
- }
-
- return true;
-}
-
-
-/*!
- \brief If \a obj, \a slotName and \a settingName are given, that certain connection is unregistered.
- If only \a obj is given, all to this object registered slot-setting connections are unregistered.
- */
-void UiGuiSettings::unregisterObjectSlot(QObject *obj, const QString &slotName, const QString &settingName) {
- //const QMetaObject *metaObject = obj->metaObject();
- QString normalizedSlotName = QMetaObject::normalizedSignature( qPrintable(slotName) );
- QMutableMapIterator<QObject*, QStringList> it(_registeredObjectSlots);
- while (it.hasNext()) {
- it.next();
- if (it.key() == obj && slotName.isEmpty() && settingName.isEmpty())
- it.remove();
- else if (it.key() == obj && it.value().first() == slotName && it.value().last() == settingName)
- it.remove();
- }
-}
-
-
-/*!
- \brief This private slot gets invoked whenever a registered objects property changes
- and distributes the new value to all other to the same settingName registered objects.
- */
-void UiGuiSettings::handleObjectPropertyChange() {
- QObject *obj = QObject::sender();
- QString className = obj->metaObject()->className();
- const QMetaObject *metaObject = obj->metaObject();
- QString propertyName = _registeredObjectProperties[obj].first();
- QString settingName = _registeredObjectProperties[obj].last();
-
- int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
- if ( indexOfProp > -1 ) {
- QMetaProperty mProp = metaObject->property(indexOfProp);
- setValueByName(settingName, mProp.read(obj));
- }
-}
-
-
-/*!
- \brief Sets the setting defined by \a settingName to \a value.
-
- When setting a changed value, all to this settingName registered objects get
- the changed value set too.
- If the \a settingName didn't exist yet, it will be created.
- */
-void UiGuiSettings::setValueByName(const QString &settingName, const QVariant &value) {
- // Do the updating only, if the setting was really changed.
- if ( _qsettings->value("UniversalIndentGUI/" + settingName) != value ) {
- _qsettings->setValue("UniversalIndentGUI/" + settingName, value);
-
- // Set the new value for all registered object properties for settingName.
- for ( QMap<QObject*, QStringList>::ConstIterator it = _registeredObjectProperties.begin(); it != _registeredObjectProperties.end(); ++it ) {
- if ( it.value().last() == settingName ) {
- QObject *obj = it.key();
- const QMetaObject *metaObject = obj->metaObject();
- QString propertyName = it.value().first();
-
- int indexOfProp = metaObject->indexOfProperty( qPrintable(propertyName) );
- if ( indexOfProp > -1 ) {
- QMetaProperty mProp = metaObject->property(indexOfProp);
- mProp.write(obj, value);
- }
- }
- }
-
- // Invoke all registered object methods for settingName.
- for ( QMap<QObject*, QStringList>::ConstIterator it = _registeredObjectSlots.begin(); it != _registeredObjectSlots.end(); ++it ) {
- if ( it.value().last() == settingName ) {
- QObject *obj = it.key();
- const QMetaObject *metaObject = obj->metaObject();
- QString slotName = it.value().first();
-
- int indexOfMethod = metaObject->indexOfMethod( qPrintable(slotName) );
- if ( indexOfMethod > -1 ) {
- QMetaMethod mMethod = metaObject->method(indexOfMethod);
- //QMetaMethod::Access access = mMethod.access();
- //QMetaMethod::MethodType methType = mMethod.methodType();
-
- bool success = false;
-
- // Handle registered slots taking one parameter.
- if ( mMethod.parameterTypes().size() == 1 ) {
- if ( mMethod.parameterTypes().first() == value.typeName() ) {
- success = invokeMethodWithValue(obj, mMethod, value);
- }
- }
- // Handle registered slots taking zero parameters.
- else {
- success = mMethod.invoke( obj, Qt::DirectConnection );
- }
-
- if ( success == false ) {
- // TODO: Write a warning to the log if no success.
- }
- }
- }
- }
- }
-}
-
-
-#include <QBitArray>
-#include <QBitmap>
-#include <QBrush>
-#include <QCursor>
-#include <QDateTime>
-#include <QFont>
-#include <QIcon>
-#include <QKeySequence>
-#include <QLocale>
-#include <QPalette>
-#include <QPen>
-#include <QSizePolicy>
-#include <QTextFormat>
-#include <QTextLength>
-#include <QUrl>
-#if QT_VERSION >= 0x040600
-#include <QMatrix4x4>
-#include <QVector2D>
-#endif
-
-bool UiGuiSettings::invokeMethodWithValue( QObject *obj, QMetaMethod mMethod, QVariant value )
-{
- switch (value.type()) {
- case QVariant::BitArray :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QBitArray, value.toBitArray()) );
- case QVariant::Bitmap :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QBitmap, value.value<QBitmap>()) );
- case QVariant::Bool :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(bool, value.toBool()) );
- case QVariant::Brush :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QBrush, value.value<QBrush>()) );
- case QVariant::ByteArray :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QByteArray, value.toByteArray()) );
- case QVariant::Char :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QChar, value.toChar()) );
- case QVariant::Color :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QColor, value.value<QColor>()) );
- case QVariant::Cursor :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QCursor, value.value<QCursor>()) );
- case QVariant::Date :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QDate, value.toDate()) );
- case QVariant::DateTime :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QDateTime, value.toDateTime()) );
- case QVariant::Double :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(double, value.toDouble()) );
- case QVariant::Font :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QFont, value.value<QFont>()) );
- case QVariant::Hash :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVariantHash, value.toHash()) );
- case QVariant::Icon :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QIcon, value.value<QIcon>()) );
- case QVariant::Image :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QImage, value.value<QImage>()) );
- case QVariant::Int :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(int, value.toInt()) );
- case QVariant::KeySequence :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QKeySequence, value.value<QKeySequence>()) );
- case QVariant::Line :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QLine, value.toLine()) );
- case QVariant::LineF :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QLineF, value.toLineF()) );
- case QVariant::List :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVariantList, value.toList()) );
- case QVariant::Locale :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QLocale, value.toLocale()) );
- case QVariant::LongLong :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(qlonglong, value.toLongLong()) );
- case QVariant::Map :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVariantMap, value.toMap()) );
- case QVariant::Matrix :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QMatrix, value.value<QMatrix>()) );
- case QVariant::Transform :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTransform, value.value<QTransform>()) );
-#if QT_VERSION >= 0x040600
- case QVariant::Matrix4x4 :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QMatrix4x4, value.value<QMatrix4x4>()) );
-#endif
- case QVariant::Palette :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPalette, value.value<QPalette>()) );
- case QVariant::Pen :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPen, value.value<QPen>()) );
- case QVariant::Pixmap :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPixmap, value.value<QPixmap>()) );
- case QVariant::Point :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPoint, value.toPoint()) );
- // case QVariant::PointArray :
- // return Q_ARG(QPointArray, value.value<QPointArray>()) );
- case QVariant::PointF :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPointF, value.toPointF()) );
- case QVariant::Polygon :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QPolygon, value.value<QPolygon>()) );
-#if QT_VERSION >= 0x040600
- case QVariant::Quaternion :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QQuaternion, value.value<QQuaternion>()) );
-#endif
- case QVariant::Rect :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRect, value.toRect()) );
- case QVariant::RectF :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRectF, value.toRectF()) );
- case QVariant::RegExp :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRegExp, value.toRegExp()) );
- case QVariant::Region :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QRegion, value.value<QRegion>()) );
- case QVariant::Size :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QSize, value.toSize()) );
- case QVariant::SizeF :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QSizeF, value.toSizeF()) );
- case QVariant::SizePolicy :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QSizePolicy, value.value<QSizePolicy>()) );
- case QVariant::String :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QString, value.toString()) );
- case QVariant::StringList :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QStringList, value.toStringList()) );
- case QVariant::TextFormat :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTextFormat, value.value<QTextFormat>()) );
- case QVariant::TextLength :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTextLength, value.value<QTextLength>()) );
- case QVariant::Time :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QTime, value.toTime()) );
- case QVariant::UInt :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(uint, value.toUInt()) );
- case QVariant::ULongLong :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(qulonglong, value.toULongLong()) );
- case QVariant::Url :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QUrl, value.toUrl()) );
-#if QT_VERSION >= 0x040600
- case QVariant::Vector2D :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector2D, value.value<QVector2D>()) );
- case QVariant::Vector3D :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector3D, value.value<QVector3D>()) );
- case QVariant::Vector4D :
- return mMethod.invoke( obj, Qt::DirectConnection, Q_ARG(QVector4D, value.value<QVector4D>()) );
-#endif
- default:
- return false;
- }
-}
diff --git a/.pc/qsci_rename.patch/UniversalIndentGUI.pro b/.pc/qsci_rename.patch/UniversalIndentGUI.pro
deleted file mode 100755
index 67f4f95..0000000
--- a/.pc/qsci_rename.patch/UniversalIndentGUI.pro
+++ /dev/null
@@ -1,201 +0,0 @@
-TEMPLATE = app
-QT += network
-QT += script
-
-unix:TARGET = universalindentgui
-win32:TARGET = UniversalIndentGUI
-macx:TARGET = UniversalIndentGUI
-
-DEPENDPATH += resources \
- src \
- debug \
- release
-
-INCLUDEPATH += src
-
-CONFIG += debug_and_release
-
-macx {
- # If using as framework qscintilla needs to be build with:
- # qmake -spec macx-g++ CONFIG+=sdk CONFIG+=x86_64 CONFIG+=x86 CONFIG+=lib_bundle qscintilla.pro && make && sudo make install
- #LIBS += -framework qscintilla2
- LIBS += -lqscintilla2
- ICON = resources/UniversalIndentGUI.icns
-}
-else {
- LIBS += -lqscintilla2
-}
-
-CONFIG(release, debug|release) {
-
-win32:pipe2nul = ">NUL"
-unix:pipe2nul = "&> /dev/null"
-macx:pipe2nul = "&> /dev/null"
-
-
-# Language file processing
-##########################
-message(Updating language files)
-lupdate = lupdate
-unix:lupdate = lupdate-qt4
-macx:lupdate = lupdate
-lrelease = lrelease
-unix:lrelease = lrelease-qt4
-macx:lrelease = lrelease
-# Update translation files
-message ( Updating universalindent.ts )
-system($${lupdate} src -ts ./translations/universalindent.ts -silent)
-message ( Updating universalindent_de.ts )
-system($${lupdate} src -ts ./translations/universalindent_de.ts -silent)
-message ( Updating universalindent_fr.ts )
-system($${lupdate} src -ts ./translations/universalindent_fr.ts -silent)
-message ( Updating universalindent_ja.ts )
-system($${lupdate} src -ts ./translations/universalindent_ja.ts -silent)
-message ( Updating universalindent_ru.ts )
-system($${lupdate} src -ts ./translations/universalindent_ru.ts -silent)
-message ( Updating universalindent_uk.ts )
-system($${lupdate} src -ts ./translations/universalindent_uk.ts -silent)
-message ( Updating universalindent_zh_TW.ts )
-system($${lupdate} src -ts ./translations/universalindent_zh_TW.ts -silent)
-
-
-# Create translation binaries
-message ( Creating translation binaries )
-system($${lrelease} ./translations/universalindent_de.ts -qm ./translations/universalindent_de.qm -silent)
-system($${lrelease} ./translations/universalindent_fr.ts -qm ./translations/universalindent_fr.qm -silent)
-system($${lrelease} ./translations/universalindent_ja.ts -qm ./translations/universalindent_ja.qm -silent)
-system($${lrelease} ./translations/universalindent_ru.ts -qm ./translations/universalindent_ru.qm -silent)
-system($${lrelease} ./translations/universalindent_uk.ts -qm ./translations/universalindent_uk.qm -silent)
-system($${lrelease} ./translations/universalindent_zh_TW.ts -qm ./translations/universalindent_zh_TW.qm -silent)
-
-# Copy Qts own translation files to the local translation directory
-message ( Copy Qts own translation files to the local translation directory )
-qtTranslationInstallDir = $$[QT_INSTALL_TRANSLATIONS]
-win32:qtTranslationInstallDir = $$replace(qtTranslationInstallDir, /, \\)
-unix:system(cp $${qtTranslationInstallDir}/qt_de.qm ./translations/ $$pipe2nul)
-unix:system(cp $${qtTranslationInstallDir}/qt_fr.qm ./translations/ $$pipe2nul)
-unix:system(cp $${qtTranslationInstallDir}/qt_ja.qm ./translations/ $$pipe2nul)
-unix:system(cp $${qtTranslationInstallDir}/qt_ru.qm ./translations/ $$pipe2nul)
-unix:system(cp $${qtTranslationInstallDir}/qt_uk.qm ./translations/ $$pipe2nul)
-unix:system(cp $${qtTranslationInstallDir}/qt_zh_TW.qm ./translations/ $$pipe2nul)
-win32:system(copy $${qtTranslationInstallDir}\\qt_de.qm .\\translations\\ /Y $$pipe2nul)
-win32:system(copy $${qtTranslationInstallDir}\\qt_fr.qm .\\translations\\ /Y $$pipe2nul)
-win32:system(copy $${qtTranslationInstallDir}\\qt_ja.qm .\\translations\\ /Y $$pipe2nul)
-win32:system(copy $${qtTranslationInstallDir}\\qt_ru.qm .\\translations\\ /Y $$pipe2nul)
-win32:system(copy $${qtTranslationInstallDir}\\qt_uk.qm .\\translations\\ /Y $$pipe2nul)
-win32:system(copy $${qtTranslationInstallDir}\\qt_zh_TW.qm .\\translations\\ /Y $$pipe2nul)
-
-# Defining files that shall be installed when calling "make install"
-####################################################################
-# Create and install man page
-exists( ./doc/universalindentgui.1* ) {
- unix:system(rm ./doc/universalindentgui.1*)
-}
-unix:system(cp ./doc/universalindentgui.man ./doc/universalindentgui.1)
-unix:system(gzip -9 ./doc/universalindentgui.1)
-unix:documentation.path = /usr/share/man/man1
-unix:documentation.files = doc/universalindentgui.1.gz
-
-# Install indenter ini files, examples and some indenters
-unix:indenters.path = /usr/share/universalindentgui/indenters
-unix:indenters.files = indenters/uigui_*.ini
-unix:indenters.files += indenters/example.*
-unix:indenters.files += indenters/JsDecoder.js
-unix:indenters.files += indenters/phpStylist.php
-unix:indenters.files += indenters/phpStylist.txt
-unix:indenters.files += indenters/pindent.py
-unix:indenters.files += indenters/pindent.txt
-unix:indenters.files += indenters/rbeautify.rb
-unix:indenters.files += indenters/ruby_formatter.rb
-unix:indenters.files += indenters/shellindent.awk
-
-# Install translation files
-unix:translation.path = /usr/share/universalindentgui/translations
-unix:translation.files = translations/*.qm
-
-# Install highlighter default config
-unix:highlighterconfig.path = /usr/share/universalindentgui/config
-unix:highlighterconfig.files = config/UiGuiSyntaxHighlightConfig.ini
-
-# Install binary
-unix:target.path = /usr/bin
-
-# Set everything that shall be installed
-unix:INSTALLS += target \
- highlighterconfig \
- indenters \
- translation \
- documentation
-
-}
-
-CONFIG(debug, debug|release) {
- DESTDIR = ./debug
- DEFINES += _DEBUG DEBUG
-} else {
- DESTDIR = ./release
-}
-
-MOC_DIR = $${DESTDIR}/moc
-UI_DIR = $${DESTDIR}/uic
-OBJECTS_DIR = $${DESTDIR}/obj
-RCC_DIR = $${DESTDIR}/qrc
-
-#message ( destdir is $${DESTDIR}. uic is $${UI_DIR}. moc is $${MOC_DIR})
-
-# Input
-HEADERS += src/AboutDialog.h \
- src/AboutDialogGraphicsView.h \
- src/IndentHandler.h \
- src/MainWindow.h \
- src/SettingsPaths.h \
- src/TemplateBatchScript.h \
- src/UiGuiErrorMessage.h \
- src/UiGuiHighlighter.h \
- src/UiGuiIndentServer.h \
- src/UiGuiIniFileParser.h \
- src/UiGuiSettings.h \
- src/UiGuiSettingsDialog.h \
- src/UiGuiSystemInfo.h \
- src/UiGuiVersion.h \
- src/UpdateCheckDialog.h \
- src/debugging/TSLogger.h
-
-
-FORMS += src/MainWindow.ui \
- src/ToolBarWidget.ui \
- src/UiGuiSettingsDialog.ui \
- src/AboutDialog.ui \
- src/UpdateCheckDialog.ui \
- src/debugging/TSLoggerDialog.ui
-
-SOURCES += src/AboutDialog.cpp \
- src/AboutDialogGraphicsView.cpp \
- src/IndentHandler.cpp \
- src/main.cpp \
- src/MainWindow.cpp \
- src/SettingsPaths.cpp \
- src/TemplateBatchScript.cpp \
- src/UiGuiErrorMessage.cpp \
- src/UiGuiHighlighter.cpp \
- src/UiGuiIndentServer.cpp \
- src/UiGuiIniFileParser.cpp \
- src/UiGuiSettings.cpp \
- src/UiGuiSettingsDialog.cpp \
- src/UiGuiSystemInfo.cpp \
- src/UiGuiVersion.cpp \
- src/UpdateCheckDialog.cpp \
- src/debugging/TSLogger.cpp
-
-RESOURCES += resources/Icons.qrc
-RC_FILE = resources/programicon.rc
-
-
-
-#message(Creating symbolic links within target dir for debugging)
-#macx:system(ln -s $$PWD/config ./debug/config)
-#macx:system(ln -s $$PWD/indenters ./debug/indenters)
-#macx:system(ln -s $$PWD/translations ./debug/translations)
-#macx:system(ln -s $$PWD/config ./release/config)
-#macx:system(ln -s $$PWD/indenters ./release/indenters)
-#macx:system(ln -s $$PWD/translations ./release/translations)
diff --git a/.pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj b/.pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj
deleted file mode 100755
index 80c1ae0..0000000
--- a/.pc/qsci_rename.patch/UniversalIndentGUI.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,741 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 42;
- objects = {
-
-/* Begin PBXBuildFile section */
- 033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
- 10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
- 1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
- 157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
- 204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = FC65490F7BEA4427C242848C /* QtCore */; };
- 2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
- 32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 9EF9FEB32A7980D519425A9E /* QtScript */; };
- 358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */ = {isa = PBXBuildFile; fileRef = A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */; settings = {ATTRIBUTES = (); }; };
- 3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 6988CE9D964BC66484DA49D5 /* QtGui */; };
- 4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
- 447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
- 45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */; settings = {ATTRIBUTES = (); }; };
- 4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1BB748495103B59368976F44 /* qrc_Icons.cpp */; settings = {ATTRIBUTES = (); }; };
- 54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */; settings = {ATTRIBUTES = (); }; };
- 83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
- 86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
- 8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
- 8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
- 9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
- A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */; settings = {ATTRIBUTES = (); }; };
- A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D038693E47A07F84995184E5 /* UiGuiVersion.cpp */; settings = {ATTRIBUTES = (); }; };
- AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
- B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = B235A8A774654CA992F5A861 /* QtNetwork */; };
- C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
- CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
- D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */; settings = {ATTRIBUTES = (); }; };
- E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */ = {isa = PBXBuildFile; fileRef = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */; };
- ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
- F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7EC3C68A81EFFF79B6CA22AC /* main.cpp */; settings = {ATTRIBUTES = (); }; };
-/* End PBXBuildFile section */
-
-/* Begin PBXCopyFilesBuildPhase section */
- F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release;
- dstSubfolderSpec = 0;
- files = (
- E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */,
- );
- name = "Project Copy";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
- 01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIniFileParser.h; path = src/UiGuiIniFileParser.h; sourceTree = "<group>"; };
- 0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsPaths.h; path = src/SettingsPaths.h; sourceTree = "<group>"; };
- 04EC27988BE80C166C06D386 /* ui_AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_AboutDialog.h; path = release/uic/ui_AboutDialog.h; sourceTree = "<group>"; };
- 0501473B7E166B9D10974B09 /* AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialog.h; path = src/AboutDialog.h; sourceTree = "<group>"; };
- 0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiHighlighter.h; path = src/UiGuiHighlighter.h; sourceTree = "<group>"; };
- 19D832A234461F61E597073E /* UiGuiErrorMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiErrorMessage.h; path = src/UiGuiErrorMessage.h; sourceTree = "<group>"; };
- 1BB748495103B59368976F44 /* qrc_Icons.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = qrc_Icons.cpp; path = release/qrc/qrc_Icons.cpp; sourceTree = "<group>"; };
- 1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainWindow.cpp; path = src/MainWindow.cpp; sourceTree = "<group>"; };
- 234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIndentServer.h; path = src/UiGuiIndentServer.h; sourceTree = "<group>"; };
- 2365565B0E8281A9A554DE48 /* IndentHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IndentHandler.h; path = src/IndentHandler.h; sourceTree = "<group>"; };
- 240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UpdateCheckDialog.h; path = src/UpdateCheckDialog.h; sourceTree = "<group>"; };
- 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettingsDialog.cpp; path = src/UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
- 290E702759265E2A11910569 /* UpdateCheckDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UpdateCheckDialog.ui; path = src/UpdateCheckDialog.ui; sourceTree = "<group>"; };
- 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettingsDialog.h; path = src/UiGuiSettingsDialog.h; sourceTree = "<group>"; };
- 3E78CB522F65C3B2CD054660 /* AboutDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = AboutDialog.ui; path = src/AboutDialog.ui; sourceTree = "<group>"; };
- 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_TSLogger.cpp; path = release/moc/moc_TSLogger.cpp; sourceTree = "<group>"; };
- 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UpdateCheckDialog.cpp; path = src/UpdateCheckDialog.cpp; sourceTree = "<group>"; };
- 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_MainWindow.cpp; path = release/moc/moc_MainWindow.cpp; sourceTree = "<group>"; };
- 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TSLogger.cpp; path = src/debugging/TSLogger.cpp; sourceTree = "<group>"; };
- 5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSystemInfo.h; path = src/UiGuiSystemInfo.h; sourceTree = "<group>"; };
- 6988CE9D964BC66484DA49D5 /* QtGui */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtGui; path = /opt/local/lib/libQtGui.4.7.4.dylib; sourceTree = "<absolute>"; };
- 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiHighlighter.cpp; path = release/moc/moc_UiGuiHighlighter.cpp; sourceTree = "<group>"; };
- 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialog.cpp; path = release/moc/moc_AboutDialog.cpp; sourceTree = "<group>"; };
- 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IndentHandler.cpp; path = src/IndentHandler.cpp; sourceTree = "<group>"; };
- 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = Icons.qrc; path = resources/Icons.qrc; sourceTree = "<group>"; };
- 7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = "<group>"; };
- 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiIndentServer.cpp; path = release/moc/moc_UiGuiIndentServer.cpp; sourceTree = "<group>"; };
- 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialog.cpp; path = src/AboutDialog.cpp; sourceTree = "<group>"; };
- 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSystemInfo.cpp; path = src/UiGuiSystemInfo.cpp; sourceTree = "<group>"; };
- 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettings.cpp; path = src/UiGuiSettings.cpp; sourceTree = "<group>"; };
- 957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_TSLoggerDialog.h; path = release/uic/ui_TSLoggerDialog.h; sourceTree = "<group>"; };
- 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiHighlighter.cpp; path = src/UiGuiHighlighter.cpp; sourceTree = "<group>"; };
- 97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_MainWindow.h; path = release/uic/ui_MainWindow.h; sourceTree = "<group>"; };
- 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIndentServer.cpp; path = src/UiGuiIndentServer.cpp; sourceTree = "<group>"; };
- 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiErrorMessage.cpp; path = release/moc/moc_UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
- 9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialogGraphicsView.h; path = src/AboutDialogGraphicsView.h; sourceTree = "<group>"; };
- 9EF9FEB32A7980D519425A9E /* QtScript */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtScript; path = /opt/local/lib/libQtScript.4.7.4.dylib; sourceTree = "<absolute>"; };
- 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = TSLoggerDialog.ui; path = src/debugging/TSLoggerDialog.ui; sourceTree = "<group>"; };
- A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_ToolBarWidget.h; path = release/uic/ui_ToolBarWidget.h; sourceTree = "<group>"; };
- A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = UniversalIndentGUI.icns; path = resources/UniversalIndentGUI.icns; sourceTree = "<group>"; };
- A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TemplateBatchScript.h; path = src/TemplateBatchScript.h; sourceTree = "<group>"; };
- A7CBECAE098937E7541F811C /* MainWindow.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = MainWindow.ui; path = src/MainWindow.ui; sourceTree = "<group>"; };
- A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettingsDialog.cpp; path = release/moc/moc_UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
- AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SettingsPaths.cpp; path = src/SettingsPaths.cpp; sourceTree = "<group>"; };
- AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettings.h; path = src/UiGuiSettings.h; sourceTree = "<group>"; };
- B235A8A774654CA992F5A861 /* QtNetwork */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtNetwork; path = /opt/local/lib/libQtNetwork.4.7.4.dylib; sourceTree = "<absolute>"; };
- B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UiGuiSettingsDialog.ui; path = src/UiGuiSettingsDialog.ui; sourceTree = "<group>"; };
- B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ToolBarWidget.ui; path = src/ToolBarWidget.ui; sourceTree = "<group>"; };
- BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIniFileParser.cpp; path = src/UiGuiIniFileParser.cpp; sourceTree = "<group>"; };
- C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UpdateCheckDialog.h; path = release/uic/ui_UpdateCheckDialog.h; sourceTree = "<group>"; };
- D038693E47A07F84995184E5 /* UiGuiVersion.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiVersion.cpp; path = src/UiGuiVersion.cpp; sourceTree = "<group>"; };
- D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialogGraphicsView.cpp; path = src/AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
- D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UpdateCheckDialog.cpp; path = release/moc/moc_UpdateCheckDialog.cpp; sourceTree = "<group>"; };
- D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainWindow.h; path = src/MainWindow.h; sourceTree = "<group>"; };
- DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UiGuiSettingsDialog.h; path = release/uic/ui_UiGuiSettingsDialog.h; sourceTree = "<group>"; };
- DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_IndentHandler.cpp; path = release/moc/moc_IndentHandler.cpp; sourceTree = "<group>"; };
- E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */ = {isa = PBXFileReference; lastKnownFileType = text; path = UniversalIndentGUI.pro; sourceTree = "<group>"; };
- E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UniversalIndentGUI.app; sourceTree = BUILT_PRODUCTS_DIR; };
- E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TemplateBatchScript.cpp; path = src/TemplateBatchScript.cpp; sourceTree = "<group>"; };
- EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiErrorMessage.cpp; path = src/UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
- F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiVersion.h; path = src/UiGuiVersion.h; sourceTree = "<group>"; };
- F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettings.cpp; path = release/moc/moc_UiGuiSettings.cpp; sourceTree = "<group>"; };
- F5BD042A2B240A02A39C20AC /* TSLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TSLogger.h; path = src/debugging/TSLogger.h; sourceTree = "<group>"; };
- F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialogGraphicsView.cpp; path = release/moc/moc_AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
- FC65490F7BEA4427C242848C /* QtCore */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtCore; path = /opt/local/lib/libQtCore.4.7.4.dylib; sourceTree = "<absolute>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 2A1043669E6E5A7426EA502A /* Frameworks & Libraries */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */,
- 3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */,
- B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */,
- 204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */,
- );
- name = "Frameworks & Libraries";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 05596AB53D8D521C69802C27 /* UniversalIndentGUI */ = {
- isa = PBXGroup;
- children = (
- FB61758D0F0FDA4BA867C3D5 /* Sources */,
- 46E892BBB6BB6952967E0561 /* Temporary Sources */,
- 883D7615C4D2DE3FA1218F12 /* Headers */,
- 7CABE3C80E79AD2B307756D2 /* Sources [qmake] */,
- 52C235EBF1C9B07808119459 /* Sources [RCC] */,
- EEC299C65D5017EB9DD513B0 /* Sources [UIC] */,
- ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */,
- E938E42D14AC74220066EAA2 /* Products */,
- );
- name = UniversalIndentGUI;
- sourceTree = "<group>";
- };
- 06674E1DE8D3EB6E763DFFDA /* src */ = {
- isa = PBXGroup;
- children = (
- 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */,
- D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */,
- 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */,
- 7EC3C68A81EFFF79B6CA22AC /* main.cpp */,
- 1C0B64226A129D35F02DC004 /* MainWindow.cpp */,
- AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */,
- E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */,
- EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */,
- 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */,
- 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */,
- BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */,
- 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */,
- 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */,
- 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */,
- D038693E47A07F84995184E5 /* UiGuiVersion.cpp */,
- 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */,
- 682C39EDA1B6CDF80B0D9214 /* debugging */,
- );
- name = src;
- sourceTree = "<group>";
- };
- 16A82DA2701971900CCC9274 /* resources */ = {
- isa = PBXGroup;
- children = (
- 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */,
- );
- name = resources;
- sourceTree = "<group>";
- };
- 17088D39164D72415814D3CE /* moc */ = {
- isa = PBXGroup;
- children = (
- 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */,
- F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */,
- DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */,
- 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */,
- 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */,
- 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */,
- 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */,
- F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */,
- A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */,
- D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */,
- 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */,
- );
- name = moc;
- sourceTree = "<group>";
- };
- 46E892BBB6BB6952967E0561 /* Temporary Sources */ = {
- isa = PBXGroup;
- children = (
- BC7AF8B1E3D64E5DB82A180B /* release */,
- );
- name = "Temporary Sources";
- sourceTree = "<group>";
- };
- 52C235EBF1C9B07808119459 /* Sources [RCC] */ = {
- isa = PBXGroup;
- children = (
- 16A82DA2701971900CCC9274 /* resources */,
- );
- name = "Sources [RCC]";
- sourceTree = "<group>";
- };
- 682C39EDA1B6CDF80B0D9214 /* debugging */ = {
- isa = PBXGroup;
- children = (
- 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */,
- );
- name = debugging;
- sourceTree = "<group>";
- };
- 7CABE3C80E79AD2B307756D2 /* Sources [qmake] */ = {
- isa = PBXGroup;
- children = (
- E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */,
- );
- name = "Sources [qmake]";
- sourceTree = "<group>";
- };
- 8161BBD1CA4ABAD2BDCD1290 /* debugging */ = {
- isa = PBXGroup;
- children = (
- 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */,
- );
- name = debugging;
- sourceTree = "<group>";
- };
- 883D7615C4D2DE3FA1218F12 /* Headers */ = {
- isa = PBXGroup;
- children = (
- F4AF6147B42623F6B3284738 /* src */,
- );
- name = Headers;
- sourceTree = "<group>";
- };
- A1B6D1488110DA0868414A40 /* src */ = {
- isa = PBXGroup;
- children = (
- A7CBECAE098937E7541F811C /* MainWindow.ui */,
- B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */,
- B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */,
- 3E78CB522F65C3B2CD054660 /* AboutDialog.ui */,
- 290E702759265E2A11910569 /* UpdateCheckDialog.ui */,
- 8161BBD1CA4ABAD2BDCD1290 /* debugging */,
- );
- name = src;
- sourceTree = "<group>";
- };
- A742563A513C5350203403C2 /* uic */ = {
- isa = PBXGroup;
- children = (
- 97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */,
- A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */,
- DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */,
- 04EC27988BE80C166C06D386 /* ui_AboutDialog.h */,
- C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */,
- 957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */,
- );
- name = uic;
- sourceTree = "<group>";
- };
- B06B937E4E5DB1B571475081 /* resources */ = {
- isa = PBXGroup;
- children = (
- A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */,
- );
- name = resources;
- sourceTree = "<group>";
- };
- BC7AF8B1E3D64E5DB82A180B /* release */ = {
- isa = PBXGroup;
- children = (
- 17088D39164D72415814D3CE /* moc */,
- E60B3FBF3190558138C79865 /* qrc */,
- A742563A513C5350203403C2 /* uic */,
- );
- name = release;
- sourceTree = "<group>";
- };
- CAC892C702EF9F77734C8010 /* debugging */ = {
- isa = PBXGroup;
- children = (
- F5BD042A2B240A02A39C20AC /* TSLogger.h */,
- );
- name = debugging;
- sourceTree = "<group>";
- };
- E60B3FBF3190558138C79865 /* qrc */ = {
- isa = PBXGroup;
- children = (
- 1BB748495103B59368976F44 /* qrc_Icons.cpp */,
- );
- name = qrc;
- sourceTree = "<group>";
- };
- E938E42D14AC74220066EAA2 /* Products */ = {
- isa = PBXGroup;
- children = (
- E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 9EF9FEB32A7980D519425A9E /* QtScript */,
- 6988CE9D964BC66484DA49D5 /* QtGui */,
- B235A8A774654CA992F5A861 /* QtNetwork */,
- FC65490F7BEA4427C242848C /* QtCore */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- EEC299C65D5017EB9DD513B0 /* Sources [UIC] */ = {
- isa = PBXGroup;
- children = (
- A1B6D1488110DA0868414A40 /* src */,
- );
- name = "Sources [UIC]";
- sourceTree = "<group>";
- };
- F4AF6147B42623F6B3284738 /* src */ = {
- isa = PBXGroup;
- children = (
- 0501473B7E166B9D10974B09 /* AboutDialog.h */,
- 9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */,
- 2365565B0E8281A9A554DE48 /* IndentHandler.h */,
- D807F0DE3110F0AD45593FA7 /* MainWindow.h */,
- 0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */,
- A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */,
- 19D832A234461F61E597073E /* UiGuiErrorMessage.h */,
- 0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */,
- 234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */,
- 01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */,
- AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */,
- 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */,
- 5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */,
- F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */,
- 240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */,
- CAC892C702EF9F77734C8010 /* debugging */,
- );
- name = src;
- sourceTree = "<group>";
- };
- FB61758D0F0FDA4BA867C3D5 /* Sources */ = {
- isa = PBXGroup;
- children = (
- 06674E1DE8D3EB6E763DFFDA /* src */,
- B06B937E4E5DB1B571475081 /* resources */,
- );
- name = Sources;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */;
- buildPhases = (
- D7BA7D76DAB5DD13389D6332 /* Qt Qmake */,
- A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */,
- F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */,
- C29B8785722055ED95EF7B57 /* Build Sources */,
- 2A1043669E6E5A7426EA502A /* Frameworks & Libraries */,
- 3787F99312C85FF0073FD7BA /* Bundle Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = UniversalIndentGUI;
- productInstallPath = release/;
- productName = UniversalIndentGUI;
- productReference = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */;
- productType = "com.apple.product-type.application";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 91B15E841AA80083484172DE /* Project object */ = {
- isa = PBXProject;
- buildConfigurationList = 2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */;
- compatibilityVersion = "Xcode 2.4";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 05596AB53D8D521C69802C27 /* UniversalIndentGUI */;
- productRefGroup = E938E42D14AC74220066EAA2 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 3787F99312C85FF0073FD7BA /* Bundle Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */,
- );
- name = "Bundle Resources";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- name = "Qt Preprocessors";
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_preprocess.mak'";
- };
- D7BA7D76DAB5DD13389D6332 /* Qt Qmake */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- name = "Qt Qmake";
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_makeqmake.mak'";
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- C29B8785722055ED95EF7B57 /* Build Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */,
- 157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */,
- CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */,
- FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */,
- AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */,
- 64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */,
- 45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */,
- 2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */,
- ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */,
- 83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */,
- D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */,
- 8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */,
- 07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */,
- A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */,
- A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */,
- F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */,
- 0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */,
- 033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */,
- 86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */,
- 447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */,
- 1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */,
- 4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */,
- 10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */,
- 8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */,
- 9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */,
- 2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */,
- 54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */,
- C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */,
- 4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */,
- );
- name = "Build Sources";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- 8DB1DD96F65B1BF1FFC506E0 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COPY_PHASE_STRIP = NO;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- };
- name = Debug;
- };
- 95E1EB2E5DDD587BE5B3E548 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COPY_PHASE_STRIP = YES;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- };
- name = Release;
- };
- E938E43414AC74230066EAA2 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = x86_64;
- BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
- COPY_PHASE_STRIP = NO;
- DYLIB_COMPATIBILITY_VERSION = 1.0;
- DYLIB_CURRENT_VERSION = 1.0.0;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- HEADER_SEARCH_PATHS = (
- release/moc,
- src,
- /opt/local/include/QtScript,
- /opt/local/include/QtGui,
- /opt/local/include/QtNetwork,
- /opt/local/include/QtCore,
- /opt/local/include,
- release/uic,
- /usr/local/include,
- /System/Library/Frameworks/CarbonCore.framework/Headers,
- "/opt/local/share/qt4/mkspecs/macx-xcode",
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
- LEXFLAGS = "";
- LIBRARY_SEARCH_PATHS = /opt/local/lib;
- MACOSX_DEPLOYMENT_TARGET = 10.6;
- OBJROOT = release/obj/;
- OTHER_CFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
- "-lqscintilla2",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
- PREBINDING = NO;
- PRODUCT_NAME = UniversalIndentGUI;
- SECTORDER_FLAGS = "";
- WARNING_CFLAGS = "";
- YACCFLAGS = "-d";
- };
- name = Debug;
- };
- E938E43514AC74230066EAA2 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = x86_64;
- BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
- COPY_PHASE_STRIP = YES;
- DYLIB_COMPATIBILITY_VERSION = 1.0;
- DYLIB_CURRENT_VERSION = 1.0.0;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- HEADER_SEARCH_PATHS = (
- release/moc,
- src,
- /opt/local/include/QtScript,
- /opt/local/include/QtGui,
- /opt/local/include/QtNetwork,
- /opt/local/include/QtCore,
- /opt/local/include,
- release/uic,
- /usr/local/include,
- /System/Library/Frameworks/CarbonCore.framework/Headers,
- "/opt/local/share/qt4/mkspecs/macx-xcode",
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
- LEXFLAGS = "";
- LIBRARY_SEARCH_PATHS = /opt/local/lib;
- MACOSX_DEPLOYMENT_TARGET = 10.6;
- OBJROOT = release/obj/;
- OTHER_CFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
- "-lqscintilla2",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
- PREBINDING = NO;
- PRODUCT_NAME = UniversalIndentGUI;
- SECTORDER_FLAGS = "";
- WARNING_CFLAGS = "";
- YACCFLAGS = "-d";
- };
- name = Release;
- };
- E938E43614AC74230066EAA2 /* Default */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = x86_64;
- BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
- DYLIB_COMPATIBILITY_VERSION = 1.0;
- DYLIB_CURRENT_VERSION = 1.0.0;
- HEADER_SEARCH_PATHS = (
- release/moc,
- src,
- /opt/local/include/QtScript,
- /opt/local/include/QtGui,
- /opt/local/include/QtNetwork,
- /opt/local/include/QtCore,
- /opt/local/include,
- release/uic,
- /usr/local/include,
- /System/Library/Frameworks/CarbonCore.framework/Headers,
- "/opt/local/share/qt4/mkspecs/macx-xcode",
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
- LEXFLAGS = "";
- LIBRARY_SEARCH_PATHS = /opt/local/lib;
- MACOSX_DEPLOYMENT_TARGET = 10.6;
- OBJROOT = release/obj/;
- OTHER_CFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
- "-lqscintilla2",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
- PREBINDING = NO;
- PRODUCT_NAME = UniversalIndentGUI;
- SECTORDER_FLAGS = "";
- WARNING_CFLAGS = "";
- YACCFLAGS = "-d";
- };
- name = Default;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 8DB1DD96F65B1BF1FFC506E0 /* Debug */,
- 95E1EB2E5DDD587BE5B3E548 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- E938E43414AC74230066EAA2 /* Debug */,
- E938E43514AC74230066EAA2 /* Release */,
- E938E43614AC74230066EAA2 /* Default */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Default;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 91B15E841AA80083484172DE /* Project object */;
-}
diff --git a/UniversalIndentGUI.pro b/UniversalIndentGUI.pro
index 339835c..67f4f95 100755
--- a/UniversalIndentGUI.pro
+++ b/UniversalIndentGUI.pro
@@ -23,7 +23,7 @@ macx {
ICON = resources/UniversalIndentGUI.icns
}
else {
- LIBS += -lqscintilla2_qt4
+ LIBS += -lqscintilla2
}
CONFIG(release, debug|release) {
diff --git a/UniversalIndentGUI.sln b/UniversalIndentGUI.sln
deleted file mode 100755
index 63a2fd3..0000000
--- a/UniversalIndentGUI.sln
+++ /dev/null
@@ -1,31 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual C++ Express 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UniversalIndentGUI", "src\UniversalIndentGUI.vcproj", "{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UniversalIndentGUI_NPP", "src\UniversalIndentGUI_NPP\UniversalIndentGUI_NPP.vcproj", "{0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UiGUI_Server_Test_Client", "src\UiGUI_Server_Test_Client\UiGUI_Server_Test_Client.vcproj", "{DE19ED58-2330-4B86-AFD1-18A4A037E488}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Win32 = Debug|Win32
- Release|Win32 = Release|Win32
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Debug|Win32.ActiveCfg = Debug|Win32
- {CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Debug|Win32.Build.0 = Debug|Win32
- {CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Release|Win32.ActiveCfg = Release|Win32
- {CF521500-824E-4DB7-A7FA-F4A8B6BB008A}.Release|Win32.Build.0 = Release|Win32
- {0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Debug|Win32.ActiveCfg = Debug|Win32
- {0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Debug|Win32.Build.0 = Debug|Win32
- {0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Release|Win32.ActiveCfg = Release|Win32
- {0A9F9D63-C282-4AE8-9F80-A6D5F541AD12}.Release|Win32.Build.0 = Release|Win32
- {DE19ED58-2330-4B86-AFD1-18A4A037E488}.Debug|Win32.ActiveCfg = Debug|Win32
- {DE19ED58-2330-4B86-AFD1-18A4A037E488}.Debug|Win32.Build.0 = Debug|Win32
- {DE19ED58-2330-4B86-AFD1-18A4A037E488}.Release|Win32.ActiveCfg = Release|Win32
- {DE19ED58-2330-4B86-AFD1-18A4A037E488}.Release|Win32.Build.0 = Release|Win32
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
-EndGlobal
diff --git a/UniversalIndentGUI.xcodeproj/project.pbxproj b/UniversalIndentGUI.xcodeproj/project.pbxproj
deleted file mode 100755
index 64d6391..0000000
--- a/UniversalIndentGUI.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,741 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 42;
- objects = {
-
-/* Begin PBXBuildFile section */
- 033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
- 10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
- 1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
- 157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
- 204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = FC65490F7BEA4427C242848C /* QtCore */; };
- 2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
- 32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 9EF9FEB32A7980D519425A9E /* QtScript */; };
- 358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */ = {isa = PBXBuildFile; fileRef = A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */; settings = {ATTRIBUTES = (); }; };
- 3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = 6988CE9D964BC66484DA49D5 /* QtGui */; };
- 4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */; settings = {ATTRIBUTES = (); }; };
- 447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
- 45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */; settings = {ATTRIBUTES = (); }; };
- 4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1BB748495103B59368976F44 /* qrc_Icons.cpp */; settings = {ATTRIBUTES = (); }; };
- 54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- 64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */; settings = {ATTRIBUTES = (); }; };
- 83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
- 86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */; settings = {ATTRIBUTES = (); }; };
- 8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */; settings = {ATTRIBUTES = (); }; };
- 8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
- 9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */; settings = {ATTRIBUTES = (); }; };
- A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */; settings = {ATTRIBUTES = (); }; };
- A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = D038693E47A07F84995184E5 /* UiGuiVersion.cpp */; settings = {ATTRIBUTES = (); }; };
- AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */; settings = {ATTRIBUTES = (); }; };
- B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */ = {isa = PBXBuildFile; fileRef = B235A8A774654CA992F5A861 /* QtNetwork */; };
- C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */; settings = {ATTRIBUTES = (); }; };
- CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */; settings = {ATTRIBUTES = (); }; };
- D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */; settings = {ATTRIBUTES = (); }; };
- E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */ = {isa = PBXBuildFile; fileRef = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */; };
- ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */; settings = {ATTRIBUTES = (); }; };
- F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */; settings = {ATTRIBUTES = (); }; };
- FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */ = {isa = PBXBuildFile; fileRef = 7EC3C68A81EFFF79B6CA22AC /* main.cpp */; settings = {ATTRIBUTES = (); }; };
-/* End PBXBuildFile section */
-
-/* Begin PBXCopyFilesBuildPhase section */
- F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release;
- dstSubfolderSpec = 0;
- files = (
- E938E42F14AC74220066EAA2 /* UniversalIndentGUI.app in Project Copy */,
- );
- name = "Project Copy";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
- 01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIniFileParser.h; path = src/UiGuiIniFileParser.h; sourceTree = "<group>"; };
- 0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SettingsPaths.h; path = src/SettingsPaths.h; sourceTree = "<group>"; };
- 04EC27988BE80C166C06D386 /* ui_AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_AboutDialog.h; path = release/uic/ui_AboutDialog.h; sourceTree = "<group>"; };
- 0501473B7E166B9D10974B09 /* AboutDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialog.h; path = src/AboutDialog.h; sourceTree = "<group>"; };
- 0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiHighlighter.h; path = src/UiGuiHighlighter.h; sourceTree = "<group>"; };
- 19D832A234461F61E597073E /* UiGuiErrorMessage.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiErrorMessage.h; path = src/UiGuiErrorMessage.h; sourceTree = "<group>"; };
- 1BB748495103B59368976F44 /* qrc_Icons.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = qrc_Icons.cpp; path = release/qrc/qrc_Icons.cpp; sourceTree = "<group>"; };
- 1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = MainWindow.cpp; path = src/MainWindow.cpp; sourceTree = "<group>"; };
- 234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiIndentServer.h; path = src/UiGuiIndentServer.h; sourceTree = "<group>"; };
- 2365565B0E8281A9A554DE48 /* IndentHandler.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IndentHandler.h; path = src/IndentHandler.h; sourceTree = "<group>"; };
- 240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UpdateCheckDialog.h; path = src/UpdateCheckDialog.h; sourceTree = "<group>"; };
- 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettingsDialog.cpp; path = src/UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
- 290E702759265E2A11910569 /* UpdateCheckDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UpdateCheckDialog.ui; path = src/UpdateCheckDialog.ui; sourceTree = "<group>"; };
- 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettingsDialog.h; path = src/UiGuiSettingsDialog.h; sourceTree = "<group>"; };
- 3E78CB522F65C3B2CD054660 /* AboutDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = AboutDialog.ui; path = src/AboutDialog.ui; sourceTree = "<group>"; };
- 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_TSLogger.cpp; path = release/moc/moc_TSLogger.cpp; sourceTree = "<group>"; };
- 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UpdateCheckDialog.cpp; path = src/UpdateCheckDialog.cpp; sourceTree = "<group>"; };
- 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_MainWindow.cpp; path = release/moc/moc_MainWindow.cpp; sourceTree = "<group>"; };
- 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TSLogger.cpp; path = src/debugging/TSLogger.cpp; sourceTree = "<group>"; };
- 5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSystemInfo.h; path = src/UiGuiSystemInfo.h; sourceTree = "<group>"; };
- 6988CE9D964BC66484DA49D5 /* QtGui */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtGui; path = /opt/local/lib/libQtGui.4.7.4.dylib; sourceTree = "<absolute>"; };
- 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiHighlighter.cpp; path = release/moc/moc_UiGuiHighlighter.cpp; sourceTree = "<group>"; };
- 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialog.cpp; path = release/moc/moc_AboutDialog.cpp; sourceTree = "<group>"; };
- 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = IndentHandler.cpp; path = src/IndentHandler.cpp; sourceTree = "<group>"; };
- 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */ = {isa = PBXFileReference; lastKnownFileType = text; name = Icons.qrc; path = resources/Icons.qrc; sourceTree = "<group>"; };
- 7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = src/main.cpp; sourceTree = "<group>"; };
- 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiIndentServer.cpp; path = release/moc/moc_UiGuiIndentServer.cpp; sourceTree = "<group>"; };
- 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialog.cpp; path = src/AboutDialog.cpp; sourceTree = "<group>"; };
- 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSystemInfo.cpp; path = src/UiGuiSystemInfo.cpp; sourceTree = "<group>"; };
- 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiSettings.cpp; path = src/UiGuiSettings.cpp; sourceTree = "<group>"; };
- 957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_TSLoggerDialog.h; path = release/uic/ui_TSLoggerDialog.h; sourceTree = "<group>"; };
- 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiHighlighter.cpp; path = src/UiGuiHighlighter.cpp; sourceTree = "<group>"; };
- 97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_MainWindow.h; path = release/uic/ui_MainWindow.h; sourceTree = "<group>"; };
- 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIndentServer.cpp; path = src/UiGuiIndentServer.cpp; sourceTree = "<group>"; };
- 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiErrorMessage.cpp; path = release/moc/moc_UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
- 9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AboutDialogGraphicsView.h; path = src/AboutDialogGraphicsView.h; sourceTree = "<group>"; };
- 9EF9FEB32A7980D519425A9E /* QtScript */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtScript; path = /opt/local/lib/libQtScript.4.7.4.dylib; sourceTree = "<absolute>"; };
- 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = TSLoggerDialog.ui; path = src/debugging/TSLoggerDialog.ui; sourceTree = "<group>"; };
- A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_ToolBarWidget.h; path = release/uic/ui_ToolBarWidget.h; sourceTree = "<group>"; };
- A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; name = UniversalIndentGUI.icns; path = resources/UniversalIndentGUI.icns; sourceTree = "<group>"; };
- A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TemplateBatchScript.h; path = src/TemplateBatchScript.h; sourceTree = "<group>"; };
- A7CBECAE098937E7541F811C /* MainWindow.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = MainWindow.ui; path = src/MainWindow.ui; sourceTree = "<group>"; };
- A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettingsDialog.cpp; path = release/moc/moc_UiGuiSettingsDialog.cpp; sourceTree = "<group>"; };
- AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = SettingsPaths.cpp; path = src/SettingsPaths.cpp; sourceTree = "<group>"; };
- AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiSettings.h; path = src/UiGuiSettings.h; sourceTree = "<group>"; };
- B235A8A774654CA992F5A861 /* QtNetwork */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtNetwork; path = /opt/local/lib/libQtNetwork.4.7.4.dylib; sourceTree = "<absolute>"; };
- B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = UiGuiSettingsDialog.ui; path = src/UiGuiSettingsDialog.ui; sourceTree = "<group>"; };
- B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = ToolBarWidget.ui; path = src/ToolBarWidget.ui; sourceTree = "<group>"; };
- BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiIniFileParser.cpp; path = src/UiGuiIniFileParser.cpp; sourceTree = "<group>"; };
- C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UpdateCheckDialog.h; path = release/uic/ui_UpdateCheckDialog.h; sourceTree = "<group>"; };
- D038693E47A07F84995184E5 /* UiGuiVersion.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiVersion.cpp; path = src/UiGuiVersion.cpp; sourceTree = "<group>"; };
- D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = AboutDialogGraphicsView.cpp; path = src/AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
- D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UpdateCheckDialog.cpp; path = release/moc/moc_UpdateCheckDialog.cpp; sourceTree = "<group>"; };
- D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MainWindow.h; path = src/MainWindow.h; sourceTree = "<group>"; };
- DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ui_UiGuiSettingsDialog.h; path = release/uic/ui_UiGuiSettingsDialog.h; sourceTree = "<group>"; };
- DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_IndentHandler.cpp; path = release/moc/moc_IndentHandler.cpp; sourceTree = "<group>"; };
- E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */ = {isa = PBXFileReference; lastKnownFileType = text; path = UniversalIndentGUI.pro; sourceTree = "<group>"; };
- E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UniversalIndentGUI.app; sourceTree = BUILT_PRODUCTS_DIR; };
- E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = TemplateBatchScript.cpp; path = src/TemplateBatchScript.cpp; sourceTree = "<group>"; };
- EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = UiGuiErrorMessage.cpp; path = src/UiGuiErrorMessage.cpp; sourceTree = "<group>"; };
- F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = UiGuiVersion.h; path = src/UiGuiVersion.h; sourceTree = "<group>"; };
- F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_UiGuiSettings.cpp; path = release/moc/moc_UiGuiSettings.cpp; sourceTree = "<group>"; };
- F5BD042A2B240A02A39C20AC /* TSLogger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = TSLogger.h; path = src/debugging/TSLogger.h; sourceTree = "<group>"; };
- F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = moc_AboutDialogGraphicsView.cpp; path = release/moc/moc_AboutDialogGraphicsView.cpp; sourceTree = "<group>"; };
- FC65490F7BEA4427C242848C /* QtCore */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = QtCore; path = /opt/local/lib/libQtCore.4.7.4.dylib; sourceTree = "<absolute>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 2A1043669E6E5A7426EA502A /* Frameworks & Libraries */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 32D9B1CB3877EF0A567B997D /* QtScript in Frameworks & Libraries */,
- 3B7E26C095F17917F557F0BB /* QtGui in Frameworks & Libraries */,
- B3D97A9EF6FD086AC8AA1400 /* QtNetwork in Frameworks & Libraries */,
- 204EDFAF3269B294371D7373 /* QtCore in Frameworks & Libraries */,
- );
- name = "Frameworks & Libraries";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 05596AB53D8D521C69802C27 /* UniversalIndentGUI */ = {
- isa = PBXGroup;
- children = (
- FB61758D0F0FDA4BA867C3D5 /* Sources */,
- 46E892BBB6BB6952967E0561 /* Temporary Sources */,
- 883D7615C4D2DE3FA1218F12 /* Headers */,
- 7CABE3C80E79AD2B307756D2 /* Sources [qmake] */,
- 52C235EBF1C9B07808119459 /* Sources [RCC] */,
- EEC299C65D5017EB9DD513B0 /* Sources [UIC] */,
- ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */,
- E938E42D14AC74220066EAA2 /* Products */,
- );
- name = UniversalIndentGUI;
- sourceTree = "<group>";
- };
- 06674E1DE8D3EB6E763DFFDA /* src */ = {
- isa = PBXGroup;
- children = (
- 8B5B29CE11F2EFCD1C93EB6C /* AboutDialog.cpp */,
- D3A96D6E7DF8830490467C04 /* AboutDialogGraphicsView.cpp */,
- 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */,
- 7EC3C68A81EFFF79B6CA22AC /* main.cpp */,
- 1C0B64226A129D35F02DC004 /* MainWindow.cpp */,
- AAFD01B4A071D73CD002C7FD /* SettingsPaths.cpp */,
- E9B6F1DAFB4C5CD5E9C4C02C /* TemplateBatchScript.cpp */,
- EB9AF2B1C20FF4B1225EA3FB /* UiGuiErrorMessage.cpp */,
- 95C394A7DB7625A6018F145F /* UiGuiHighlighter.cpp */,
- 9840C47AE913CA84966C04AE /* UiGuiIndentServer.cpp */,
- BAC68B56402ED1C21C4A4561 /* UiGuiIniFileParser.cpp */,
- 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */,
- 26383A497B0CC65909DA431D /* UiGuiSettingsDialog.cpp */,
- 8CE031E032D58BFFADB163E3 /* UiGuiSystemInfo.cpp */,
- D038693E47A07F84995184E5 /* UiGuiVersion.cpp */,
- 4B2D11C739E037330FF187DB /* UpdateCheckDialog.cpp */,
- 682C39EDA1B6CDF80B0D9214 /* debugging */,
- );
- name = src;
- sourceTree = "<group>";
- };
- 16A82DA2701971900CCC9274 /* resources */ = {
- isa = PBXGroup;
- children = (
- 7DBF76AABA74FE9F8ACD5DB5 /* Icons.qrc */,
- );
- name = resources;
- sourceTree = "<group>";
- };
- 17088D39164D72415814D3CE /* moc */ = {
- isa = PBXGroup;
- children = (
- 71D24B3D256D9E9FC90EEDF7 /* moc_AboutDialog.cpp */,
- F84894CE7D4FF11845C5DEC1 /* moc_AboutDialogGraphicsView.cpp */,
- DEDA4624B80C4136C3D118C2 /* moc_IndentHandler.cpp */,
- 59F78802D4802B940EA308A0 /* moc_MainWindow.cpp */,
- 998C921BBFDF579B258C28EA /* moc_UiGuiErrorMessage.cpp */,
- 705CF7C739E81ED3345C9F41 /* moc_UiGuiHighlighter.cpp */,
- 836D42CF391C82A0B70687F3 /* moc_UiGuiIndentServer.cpp */,
- F4DF9DB04F138672E3CB95D5 /* moc_UiGuiSettings.cpp */,
- A7DD7C62D24BBDB386C3840D /* moc_UiGuiSettingsDialog.cpp */,
- D4515A4B9864E652FE65CBDE /* moc_UpdateCheckDialog.cpp */,
- 4082D6E68F89F86822C28CAE /* moc_TSLogger.cpp */,
- );
- name = moc;
- sourceTree = "<group>";
- };
- 46E892BBB6BB6952967E0561 /* Temporary Sources */ = {
- isa = PBXGroup;
- children = (
- BC7AF8B1E3D64E5DB82A180B /* release */,
- );
- name = "Temporary Sources";
- sourceTree = "<group>";
- };
- 52C235EBF1C9B07808119459 /* Sources [RCC] */ = {
- isa = PBXGroup;
- children = (
- 16A82DA2701971900CCC9274 /* resources */,
- );
- name = "Sources [RCC]";
- sourceTree = "<group>";
- };
- 682C39EDA1B6CDF80B0D9214 /* debugging */ = {
- isa = PBXGroup;
- children = (
- 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */,
- );
- name = debugging;
- sourceTree = "<group>";
- };
- 7CABE3C80E79AD2B307756D2 /* Sources [qmake] */ = {
- isa = PBXGroup;
- children = (
- E457C7C0F6FE92258C9ABDE6 /* UniversalIndentGUI.pro */,
- );
- name = "Sources [qmake]";
- sourceTree = "<group>";
- };
- 8161BBD1CA4ABAD2BDCD1290 /* debugging */ = {
- isa = PBXGroup;
- children = (
- 9FAD1502AC6B577554578224 /* TSLoggerDialog.ui */,
- );
- name = debugging;
- sourceTree = "<group>";
- };
- 883D7615C4D2DE3FA1218F12 /* Headers */ = {
- isa = PBXGroup;
- children = (
- F4AF6147B42623F6B3284738 /* src */,
- );
- name = Headers;
- sourceTree = "<group>";
- };
- A1B6D1488110DA0868414A40 /* src */ = {
- isa = PBXGroup;
- children = (
- A7CBECAE098937E7541F811C /* MainWindow.ui */,
- B3E50F5A6CE91D794A9AE2AA /* ToolBarWidget.ui */,
- B3201EB1AA113D49631A1BC2 /* UiGuiSettingsDialog.ui */,
- 3E78CB522F65C3B2CD054660 /* AboutDialog.ui */,
- 290E702759265E2A11910569 /* UpdateCheckDialog.ui */,
- 8161BBD1CA4ABAD2BDCD1290 /* debugging */,
- );
- name = src;
- sourceTree = "<group>";
- };
- A742563A513C5350203403C2 /* uic */ = {
- isa = PBXGroup;
- children = (
- 97D35E3EB9A27948A62C0C38 /* ui_MainWindow.h */,
- A1FD7528F1BA6EC4A87E142A /* ui_ToolBarWidget.h */,
- DCEF1F98F703B62597F530A9 /* ui_UiGuiSettingsDialog.h */,
- 04EC27988BE80C166C06D386 /* ui_AboutDialog.h */,
- C2D745F51D062CD6409FA16C /* ui_UpdateCheckDialog.h */,
- 957A01A17EA639CF3AC8D438 /* ui_TSLoggerDialog.h */,
- );
- name = uic;
- sourceTree = "<group>";
- };
- B06B937E4E5DB1B571475081 /* resources */ = {
- isa = PBXGroup;
- children = (
- A6C4B7ADC28FF6F9840A9319 /* UniversalIndentGUI.icns */,
- );
- name = resources;
- sourceTree = "<group>";
- };
- BC7AF8B1E3D64E5DB82A180B /* release */ = {
- isa = PBXGroup;
- children = (
- 17088D39164D72415814D3CE /* moc */,
- E60B3FBF3190558138C79865 /* qrc */,
- A742563A513C5350203403C2 /* uic */,
- );
- name = release;
- sourceTree = "<group>";
- };
- CAC892C702EF9F77734C8010 /* debugging */ = {
- isa = PBXGroup;
- children = (
- F5BD042A2B240A02A39C20AC /* TSLogger.h */,
- );
- name = debugging;
- sourceTree = "<group>";
- };
- E60B3FBF3190558138C79865 /* qrc */ = {
- isa = PBXGroup;
- children = (
- 1BB748495103B59368976F44 /* qrc_Icons.cpp */,
- );
- name = qrc;
- sourceTree = "<group>";
- };
- E938E42D14AC74220066EAA2 /* Products */ = {
- isa = PBXGroup;
- children = (
- E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- ED1E82605DD74B483AF3C982 /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 9EF9FEB32A7980D519425A9E /* QtScript */,
- 6988CE9D964BC66484DA49D5 /* QtGui */,
- B235A8A774654CA992F5A861 /* QtNetwork */,
- FC65490F7BEA4427C242848C /* QtCore */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- EEC299C65D5017EB9DD513B0 /* Sources [UIC] */ = {
- isa = PBXGroup;
- children = (
- A1B6D1488110DA0868414A40 /* src */,
- );
- name = "Sources [UIC]";
- sourceTree = "<group>";
- };
- F4AF6147B42623F6B3284738 /* src */ = {
- isa = PBXGroup;
- children = (
- 0501473B7E166B9D10974B09 /* AboutDialog.h */,
- 9B1A8589DE3DB63FE9FEADAD /* AboutDialogGraphicsView.h */,
- 2365565B0E8281A9A554DE48 /* IndentHandler.h */,
- D807F0DE3110F0AD45593FA7 /* MainWindow.h */,
- 0405CDFCAFF3A176EB7C5B2B /* SettingsPaths.h */,
- A77AB8EA63A1F08C970A0DB1 /* TemplateBatchScript.h */,
- 19D832A234461F61E597073E /* UiGuiErrorMessage.h */,
- 0D2093D6D7971F9434E27A2D /* UiGuiHighlighter.h */,
- 234F1B047D06A4E84A3BA652 /* UiGuiIndentServer.h */,
- 01A925071F5E8C4DEAA029A7 /* UiGuiIniFileParser.h */,
- AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */,
- 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */,
- 5FDBC0A18FE03C4893ABD97E /* UiGuiSystemInfo.h */,
- F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */,
- 240575E52D89C74CAFF8C83F /* UpdateCheckDialog.h */,
- CAC892C702EF9F77734C8010 /* debugging */,
- );
- name = src;
- sourceTree = "<group>";
- };
- FB61758D0F0FDA4BA867C3D5 /* Sources */ = {
- isa = PBXGroup;
- children = (
- 06674E1DE8D3EB6E763DFFDA /* src */,
- B06B937E4E5DB1B571475081 /* resources */,
- );
- name = Sources;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */;
- buildPhases = (
- D7BA7D76DAB5DD13389D6332 /* Qt Qmake */,
- A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */,
- F6069D5A5DA8AA28EDB8B3C6 /* Project Copy */,
- C29B8785722055ED95EF7B57 /* Build Sources */,
- 2A1043669E6E5A7426EA502A /* Frameworks & Libraries */,
- 3787F99312C85FF0073FD7BA /* Bundle Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = UniversalIndentGUI;
- productInstallPath = release/;
- productName = UniversalIndentGUI;
- productReference = E938E42C14AC74220066EAA2 /* UniversalIndentGUI.app */;
- productType = "com.apple.product-type.application";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 91B15E841AA80083484172DE /* Project object */ = {
- isa = PBXProject;
- buildConfigurationList = 2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */;
- compatibilityVersion = "Xcode 2.4";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 05596AB53D8D521C69802C27 /* UniversalIndentGUI */;
- productRefGroup = E938E42D14AC74220066EAA2 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 3787F99312C85FF0073FD7BA /* Bundle Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 358CDAA858B633E7AD0B6646 /* UniversalIndentGUI.icns in Bundle Resources */,
- );
- name = "Bundle Resources";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXShellScriptBuildPhase section */
- A0A52A2ADF7A1E2A99738674 /* Qt Preprocessors */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- name = "Qt Preprocessors";
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_preprocess.mak'";
- };
- D7BA7D76DAB5DD13389D6332 /* Qt Qmake */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- name = "Qt Qmake";
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "make -C /Volumes/SHARED/Programming/uigui/universalindent/trunk -f 'UniversalIndentGUI.xcodeproj/qt_makeqmake.mak'";
- };
-/* End PBXShellScriptBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- C29B8785722055ED95EF7B57 /* Build Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2B7F90DE44210DB9F5D23F0C /* AboutDialog.cpp in Build Sources */,
- 157D8322CB15EB4B4B698465 /* AboutDialogGraphicsView.cpp in Build Sources */,
- CE0306F2BD402BE1CC71BA98 /* IndentHandler.cpp in Build Sources */,
- FD1638E377D97C82BDB438FB /* main.cpp in Build Sources */,
- AAC1168526D0C37A3F415917 /* MainWindow.cpp in Build Sources */,
- 64CDA74634FD0C1F9265CF5F /* SettingsPaths.cpp in Build Sources */,
- 45FD613422A15DDFF65F07EB /* TemplateBatchScript.cpp in Build Sources */,
- 2E0B7B483AE3DAFB774883DC /* UiGuiErrorMessage.cpp in Build Sources */,
- ED461CD43406DFA44318404B /* UiGuiHighlighter.cpp in Build Sources */,
- 83EFC8071DE20B90AE46E0A1 /* UiGuiIndentServer.cpp in Build Sources */,
- D05E9C8E00DF8978FAD6C45F /* UiGuiIniFileParser.cpp in Build Sources */,
- 8DFAEC14C5621835B85BDBBB /* UiGuiSettings.cpp in Build Sources */,
- 07182A1FDE8301C8D9EAF7F5 /* UiGuiSettingsDialog.cpp in Build Sources */,
- A56B320001BC86C5B01B08D0 /* UiGuiSystemInfo.cpp in Build Sources */,
- A87876F3A24FCE545FEAFB05 /* UiGuiVersion.cpp in Build Sources */,
- F42AF6C1FF5FF9F82C3E049D /* UpdateCheckDialog.cpp in Build Sources */,
- 0794A9D3A24B32A06CD8CA37 /* TSLogger.cpp in Build Sources */,
- 033FA4A2951F6995E4B52E75 /* moc_AboutDialog.cpp in Build Sources */,
- 86D03C28F9A095696FA4C465 /* moc_AboutDialogGraphicsView.cpp in Build Sources */,
- 447799AD66EF47D36B5A72E3 /* moc_IndentHandler.cpp in Build Sources */,
- 1446C37D55222BE8281C2D84 /* moc_MainWindow.cpp in Build Sources */,
- 4393711A82B0A27E8301FEB8 /* moc_UiGuiErrorMessage.cpp in Build Sources */,
- 10D0CC7BD2D2E5A3A90EEF25 /* moc_UiGuiHighlighter.cpp in Build Sources */,
- 8DCA76267BA4834F731C5BAB /* moc_UiGuiIndentServer.cpp in Build Sources */,
- 9892D98357F2D175D03F6488 /* moc_UiGuiSettings.cpp in Build Sources */,
- 2CE072BF0886F682F0FE8266 /* moc_UiGuiSettingsDialog.cpp in Build Sources */,
- 54824FDC5DD27B6216E263F5 /* moc_UpdateCheckDialog.cpp in Build Sources */,
- C61FC1CBE0E603A32A3D1D8E /* moc_TSLogger.cpp in Build Sources */,
- 4DAB46634D6A37252BC2E3D4 /* qrc_Icons.cpp in Build Sources */,
- );
- name = "Build Sources";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin XCBuildConfiguration section */
- 8DB1DD96F65B1BF1FFC506E0 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COPY_PHASE_STRIP = NO;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- };
- name = Debug;
- };
- 95E1EB2E5DDD587BE5B3E548 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COPY_PHASE_STRIP = YES;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- };
- name = Release;
- };
- E938E43414AC74230066EAA2 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = x86_64;
- BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
- COPY_PHASE_STRIP = NO;
- DYLIB_COMPATIBILITY_VERSION = 1.0;
- DYLIB_CURRENT_VERSION = 1.0.0;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- HEADER_SEARCH_PATHS = (
- release/moc,
- src,
- /opt/local/include/QtScript,
- /opt/local/include/QtGui,
- /opt/local/include/QtNetwork,
- /opt/local/include/QtCore,
- /opt/local/include,
- release/uic,
- /usr/local/include,
- /System/Library/Frameworks/CarbonCore.framework/Headers,
- "/opt/local/share/qt4/mkspecs/macx-xcode",
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
- LEXFLAGS = "";
- LIBRARY_SEARCH_PATHS = /opt/local/lib;
- MACOSX_DEPLOYMENT_TARGET = 10.6;
- OBJROOT = release/obj/;
- OTHER_CFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
- "-lqscintilla2_qt4",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
- PREBINDING = NO;
- PRODUCT_NAME = UniversalIndentGUI;
- SECTORDER_FLAGS = "";
- WARNING_CFLAGS = "";
- YACCFLAGS = "-d";
- };
- name = Debug;
- };
- E938E43514AC74230066EAA2 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = x86_64;
- BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
- COPY_PHASE_STRIP = YES;
- DYLIB_COMPATIBILITY_VERSION = 1.0;
- DYLIB_CURRENT_VERSION = 1.0.0;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- HEADER_SEARCH_PATHS = (
- release/moc,
- src,
- /opt/local/include/QtScript,
- /opt/local/include/QtGui,
- /opt/local/include/QtNetwork,
- /opt/local/include/QtCore,
- /opt/local/include,
- release/uic,
- /usr/local/include,
- /System/Library/Frameworks/CarbonCore.framework/Headers,
- "/opt/local/share/qt4/mkspecs/macx-xcode",
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
- LEXFLAGS = "";
- LIBRARY_SEARCH_PATHS = /opt/local/lib;
- MACOSX_DEPLOYMENT_TARGET = 10.6;
- OBJROOT = release/obj/;
- OTHER_CFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
- "-lqscintilla2_qt4",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
- PREBINDING = NO;
- PRODUCT_NAME = UniversalIndentGUI;
- SECTORDER_FLAGS = "";
- WARNING_CFLAGS = "";
- YACCFLAGS = "-d";
- };
- name = Release;
- };
- E938E43614AC74230066EAA2 /* Default */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ARCHS = x86_64;
- BUILD_ROOT = /Volumes/SHARED/Programming/uigui/universalindent/trunk;
- DYLIB_COMPATIBILITY_VERSION = 1.0;
- DYLIB_CURRENT_VERSION = 1.0.0;
- HEADER_SEARCH_PATHS = (
- release/moc,
- src,
- /opt/local/include/QtScript,
- /opt/local/include/QtGui,
- /opt/local/include/QtNetwork,
- /opt/local/include/QtCore,
- /opt/local/include,
- release/uic,
- /usr/local/include,
- /System/Library/Frameworks/CarbonCore.framework/Headers,
- "/opt/local/share/qt4/mkspecs/macx-xcode",
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_DIR = /Volumes/SHARED/Programming/uigui/universalindent/trunk/release/;
- LEXFLAGS = "";
- LIBRARY_SEARCH_PATHS = /opt/local/lib;
- MACOSX_DEPLOYMENT_TARGET = 10.6;
- OBJROOT = release/obj/;
- OTHER_CFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_CPLUSPLUSFLAGS = (
- "-pipe",
- "-O2",
- "-Wall",
- "-W",
- "-DQT_NO_DEBUG",
- "-DQT_SCRIPT_LIB",
- "-DQT_GUI_LIB",
- "-DQT_NETWORK_LIB",
- "-DQT_CORE_LIB",
- "-DQT_SHARED",
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
- "-lqscintilla2_qt4",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
- PREBINDING = NO;
- PRODUCT_NAME = UniversalIndentGUI;
- SECTORDER_FLAGS = "";
- WARNING_CFLAGS = "";
- YACCFLAGS = "-d";
- };
- name = Default;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 2A951308CDB28F104D0A4BD2 /* Build configuration list for PBXProject "UniversalIndentGUI" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 8DB1DD96F65B1BF1FFC506E0 /* Debug */,
- 95E1EB2E5DDD587BE5B3E548 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- E938E43C14AC74310066EAA2 /* Build configuration list for PBXNativeTarget "UniversalIndentGUI" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- E938E43414AC74230066EAA2 /* Debug */,
- E938E43514AC74230066EAA2 /* Release */,
- E938E43614AC74230066EAA2 /* Default */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Default;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 91B15E841AA80083484172DE /* Project object */;
-}
diff --git a/UniversalIndentGUI.xcodeproj/qt_makeqmake.mak b/UniversalIndentGUI.xcodeproj/qt_makeqmake.mak
deleted file mode 100755
index 99849c2..0000000
--- a/UniversalIndentGUI.xcodeproj/qt_makeqmake.mak
+++ /dev/null
@@ -1,73 +0,0 @@
-#############################################################################
-# Makefile for building: release/UniversalIndentGUI.app/Contents/MacOS/UniversalIndentGUI
-# Generated by qmake (2.01a) (Qt 4.7.4) on: Do. Dez 29 11:10:32 2011
-# Project: UniversalIndentGUI.pro
-# Template: app
-# Command: /opt/local/bin/qmake -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
-#############################################################################
-
-QMAKE = /opt/local/bin/qmake
-UniversalIndentGUI.xcodeproj/project.pbxproj: UniversalIndentGUI.pro /opt/local/share/qt4/mkspecs/macx-xcode/qmake.conf /opt/local/share/qt4/mkspecs/common/unix.conf \
- /opt/local/share/qt4/mkspecs/common/mac.conf \
- /opt/local/share/qt4/mkspecs/common/mac-g++.conf \
- /opt/local/share/qt4/mkspecs/qconfig.pri \
- /opt/local/share/qt4/mkspecs/modules/qt_webkit_version.pri \
- /opt/local/share/qt4/mkspecs/features/qt_functions.prf \
- /opt/local/share/qt4/mkspecs/features/qt_config.prf \
- /opt/local/share/qt4/mkspecs/features/exclusive_builds.prf \
- /opt/local/share/qt4/mkspecs/features/default_pre.prf \
- /opt/local/share/qt4/mkspecs/features/mac/default_pre.prf \
- /opt/local/share/qt4/mkspecs/features/release.prf \
- /opt/local/share/qt4/mkspecs/features/debug_and_release.prf \
- /opt/local/share/qt4/mkspecs/features/default_post.prf \
- /opt/local/share/qt4/mkspecs/features/mac/default_post.prf \
- /opt/local/share/qt4/mkspecs/features/mac/x86_64.prf \
- /opt/local/share/qt4/mkspecs/features/mac/objective_c.prf \
- /opt/local/share/qt4/mkspecs/features/warn_on.prf \
- /opt/local/share/qt4/mkspecs/features/qt.prf \
- /opt/local/share/qt4/mkspecs/features/unix/thread.prf \
- /opt/local/share/qt4/mkspecs/features/moc.prf \
- /opt/local/share/qt4/mkspecs/features/mac/rez.prf \
- /opt/local/share/qt4/mkspecs/features/mac/sdk.prf \
- /opt/local/share/qt4/mkspecs/features/resources.prf \
- /opt/local/share/qt4/mkspecs/features/uic.prf \
- /opt/local/share/qt4/mkspecs/features/yacc.prf \
- /opt/local/share/qt4/mkspecs/features/lex.prf \
- /opt/local/lib/libQtScript.prl \
- /opt/local/lib/libQtCore.prl \
- /opt/local/lib/libQtGui.prl \
- /opt/local/lib/libQtNetwork.prl
- $(QMAKE) -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
-/opt/local/share/qt4/mkspecs/common/unix.conf:
-/opt/local/share/qt4/mkspecs/common/mac.conf:
-/opt/local/share/qt4/mkspecs/common/mac-g++.conf:
-/opt/local/share/qt4/mkspecs/qconfig.pri:
-/opt/local/share/qt4/mkspecs/modules/qt_webkit_version.pri:
-/opt/local/share/qt4/mkspecs/features/qt_functions.prf:
-/opt/local/share/qt4/mkspecs/features/qt_config.prf:
-/opt/local/share/qt4/mkspecs/features/exclusive_builds.prf:
-/opt/local/share/qt4/mkspecs/features/default_pre.prf:
-/opt/local/share/qt4/mkspecs/features/mac/default_pre.prf:
-/opt/local/share/qt4/mkspecs/features/release.prf:
-/opt/local/share/qt4/mkspecs/features/debug_and_release.prf:
-/opt/local/share/qt4/mkspecs/features/default_post.prf:
-/opt/local/share/qt4/mkspecs/features/mac/default_post.prf:
-/opt/local/share/qt4/mkspecs/features/mac/x86_64.prf:
-/opt/local/share/qt4/mkspecs/features/mac/objective_c.prf:
-/opt/local/share/qt4/mkspecs/features/warn_on.prf:
-/opt/local/share/qt4/mkspecs/features/qt.prf:
-/opt/local/share/qt4/mkspecs/features/unix/thread.prf:
-/opt/local/share/qt4/mkspecs/features/moc.prf:
-/opt/local/share/qt4/mkspecs/features/mac/rez.prf:
-/opt/local/share/qt4/mkspecs/features/mac/sdk.prf:
-/opt/local/share/qt4/mkspecs/features/resources.prf:
-/opt/local/share/qt4/mkspecs/features/uic.prf:
-/opt/local/share/qt4/mkspecs/features/yacc.prf:
-/opt/local/share/qt4/mkspecs/features/lex.prf:
-/opt/local/lib/libQtScript.prl:
-/opt/local/lib/libQtCore.prl:
-/opt/local/lib/libQtGui.prl:
-/opt/local/lib/libQtNetwork.prl:
-qmake: FORCE
- @$(QMAKE) -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
-
diff --git a/UniversalIndentGUI.xcodeproj/qt_preprocess.mak b/UniversalIndentGUI.xcodeproj/qt_preprocess.mak
deleted file mode 100755
index 763659b..0000000
--- a/UniversalIndentGUI.xcodeproj/qt_preprocess.mak
+++ /dev/null
@@ -1,116 +0,0 @@
-#############################################################################
-# Makefile for building: release/UniversalIndentGUI.app/Contents/MacOS/UniversalIndentGUI
-# Generated by qmake (2.01a) (Qt 4.7.4) on: Do. Dez 29 11:10:32 2011
-# Project: UniversalIndentGUI.pro
-# Template: app
-# Command: /opt/local/bin/qmake -spec /opt/local/share/qt4/mkspecs/macx-xcode -o UniversalIndentGUI.xcodeproj/project.pbxproj UniversalIndentGUI.pro
-#############################################################################
-
-MOC = /opt/local/bin/moc
-UIC = /opt/local/bin/uic
-LEX = flex
-LEXFLAGS =
-YACC = yacc
-YACCFLAGS = -d
-DEFINES = -DQT_NO_DEBUG -DQT_SCRIPT_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED
-INCPATH = -I/opt/local/share/qt4/mkspecs/macx-xcode -I. -Irelease/moc -Isrc -I/opt/local/include/QtScript -I/opt/local/include/QtGui -I/opt/local/include/QtNetwork -I/opt/local/include/QtCore -I/opt/local/include -Irelease/uic -I/usr/local/include -I/System/Library/Frameworks/CarbonCore.framework/Headers
-DEL_FILE = rm -f
-MOVE = mv -f
-
-IMAGES =
-PARSERS =
-preprocess: $(PARSERS) compilers
-clean preprocess_clean: parser_clean compiler_clean
-
-parser_clean:
-check: first
-
-mocclean: compiler_moc_header_clean compiler_moc_source_clean
-
-mocables: compiler_moc_header_make_all compiler_moc_source_make_all
-
-compilers: ./release/moc/moc_AboutDialog.cpp ./release/moc/moc_AboutDialogGraphicsView.cpp ./release/moc/moc_IndentHandler.cpp\
- ./release/moc/moc_MainWindow.cpp ./release/moc/moc_UiGuiErrorMessage.cpp ./release/moc/moc_UiGuiHighlighter.cpp\
- ./release/moc/moc_UiGuiIndentServer.cpp ./release/moc/moc_UiGuiSettings.cpp ./release/moc/moc_UiGuiSettingsDialog.cpp\
- ./release/moc/moc_UpdateCheckDialog.cpp ./release/moc/moc_TSLogger.cpp ./release/qrc/qrc_Icons.cpp ./release/uic/ui_MainWindow.h ./release/uic/ui_ToolBarWidget.h ./release/uic/ui_UiGuiSettingsDialog.h\
- ./release/uic/ui_AboutDialog.h ./release/uic/ui_UpdateCheckDialog.h ./release/uic/ui_TSLoggerDialog.h
-compiler_objective_c_make_all:
-compiler_objective_c_clean:
-compiler_moc_header_make_all: release/moc/moc_AboutDialog.cpp release/moc/moc_AboutDialogGraphicsView.cpp release/moc/moc_IndentHandler.cpp release/moc/moc_MainWindow.cpp release/moc/moc_UiGuiErrorMessage.cpp release/moc/moc_UiGuiHighlighter.cpp release/moc/moc_UiGuiIndentServer.cpp release/moc/moc_UiGuiSettings.cpp release/moc/moc_UiGuiSettingsDialog.cpp release/moc/moc_UpdateCheckDialog.cpp release/moc/moc_TSLogger.cpp
-compiler_moc_header_clean:
- -$(DEL_FILE) release/moc/moc_AboutDialog.cpp release/moc/moc_AboutDialogGraphicsView.cpp release/moc/moc_IndentHandler.cpp release/moc/moc_MainWindow.cpp release/moc/moc_UiGuiErrorMessage.cpp release/moc/moc_UiGuiHighlighter.cpp release/moc/moc_UiGuiIndentServer.cpp release/moc/moc_UiGuiSettings.cpp release/moc/moc_UiGuiSettingsDialog.cpp release/moc/moc_UpdateCheckDialog.cpp release/moc/moc_TSLogger.cpp
-release/moc/moc_AboutDialog.cpp: src/AboutDialog.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/AboutDialog.h -o release/moc/moc_AboutDialog.cpp
-
-release/moc/moc_AboutDialogGraphicsView.cpp: src/AboutDialogGraphicsView.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/AboutDialogGraphicsView.h -o release/moc/moc_AboutDialogGraphicsView.cpp
-
-release/moc/moc_IndentHandler.cpp: src/IndentHandler.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/IndentHandler.h -o release/moc/moc_IndentHandler.cpp
-
-release/moc/moc_MainWindow.cpp: src/MainWindow.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/MainWindow.h -o release/moc/moc_MainWindow.cpp
-
-release/moc/moc_UiGuiErrorMessage.cpp: src/UiGuiErrorMessage.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiErrorMessage.h -o release/moc/moc_UiGuiErrorMessage.cpp
-
-release/moc/moc_UiGuiHighlighter.cpp: src/UiGuiHighlighter.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiHighlighter.h -o release/moc/moc_UiGuiHighlighter.cpp
-
-release/moc/moc_UiGuiIndentServer.cpp: src/UiGuiIndentServer.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiIndentServer.h -o release/moc/moc_UiGuiIndentServer.cpp
-
-release/moc/moc_UiGuiSettings.cpp: src/UiGuiSettings.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiSettings.h -o release/moc/moc_UiGuiSettings.cpp
-
-release/moc/moc_UiGuiSettingsDialog.cpp: src/UiGuiSettingsDialog.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UiGuiSettingsDialog.h -o release/moc/moc_UiGuiSettingsDialog.cpp
-
-release/moc/moc_UpdateCheckDialog.cpp: src/UpdateCheckDialog.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/UpdateCheckDialog.h -o release/moc/moc_UpdateCheckDialog.cpp
-
-release/moc/moc_TSLogger.cpp: src/debugging/TSLogger.h
- /opt/local/bin/moc $(DEFINES) $(INCPATH) -D__APPLE__ -D__GNUC__ src/debugging/TSLogger.h -o release/moc/moc_TSLogger.cpp
-
-compiler_rcc_make_all: release/qrc/qrc_Icons.cpp
-compiler_rcc_clean:
- -$(DEL_FILE) release/qrc/qrc_Icons.cpp
-release/qrc/qrc_Icons.cpp: resources/Icons.qrc
- /opt/local/bin/rcc -name Icons resources/Icons.qrc -o release/qrc/qrc_Icons.cpp
-
-compiler_image_collection_make_all: release/uic/qmake_image_collection.cpp
-compiler_image_collection_clean:
- -$(DEL_FILE) release/uic/qmake_image_collection.cpp
-compiler_moc_source_make_all:
-compiler_moc_source_clean:
-compiler_rez_source_make_all:
-compiler_rez_source_clean:
-compiler_uic_make_all: release/uic/ui_MainWindow.h release/uic/ui_ToolBarWidget.h release/uic/ui_UiGuiSettingsDialog.h release/uic/ui_AboutDialog.h release/uic/ui_UpdateCheckDialog.h release/uic/ui_TSLoggerDialog.h
-compiler_uic_clean:
- -$(DEL_FILE) release/uic/ui_MainWindow.h release/uic/ui_ToolBarWidget.h release/uic/ui_UiGuiSettingsDialog.h release/uic/ui_AboutDialog.h release/uic/ui_UpdateCheckDialog.h release/uic/ui_TSLoggerDialog.h
-release/uic/ui_MainWindow.h: src/MainWindow.ui
- /opt/local/bin/uic src/MainWindow.ui -o release/uic/ui_MainWindow.h
-
-release/uic/ui_ToolBarWidget.h: src/ToolBarWidget.ui
- /opt/local/bin/uic src/ToolBarWidget.ui -o release/uic/ui_ToolBarWidget.h
-
-release/uic/ui_UiGuiSettingsDialog.h: src/UiGuiSettingsDialog.ui
- /opt/local/bin/uic src/UiGuiSettingsDialog.ui -o release/uic/ui_UiGuiSettingsDialog.h
-
-release/uic/ui_AboutDialog.h: src/AboutDialog.ui
- /opt/local/bin/uic src/AboutDialog.ui -o release/uic/ui_AboutDialog.h
-
-release/uic/ui_UpdateCheckDialog.h: src/UpdateCheckDialog.ui
- /opt/local/bin/uic src/UpdateCheckDialog.ui -o release/uic/ui_UpdateCheckDialog.h
-
-release/uic/ui_TSLoggerDialog.h: src/debugging/TSLoggerDialog.ui
- /opt/local/bin/uic src/debugging/TSLoggerDialog.ui -o release/uic/ui_TSLoggerDialog.h
-
-compiler_yacc_decl_make_all:
-compiler_yacc_decl_clean:
-compiler_yacc_impl_make_all:
-compiler_yacc_impl_clean:
-compiler_lex_make_all:
-compiler_lex_clean:
-compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_uic_clean
-
diff --git a/UniversalIndentGUI.xcodeproj/thomas.pbxuser b/UniversalIndentGUI.xcodeproj/thomas.pbxuser
deleted file mode 100755
index a12338e..0000000
--- a/UniversalIndentGUI.xcodeproj/thomas.pbxuser
+++ /dev/null
@@ -1,433 +0,0 @@
-// !$*UTF8*$!
-{
- 1C0B64226A129D35F02DC004 /* MainWindow.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1040, 18980}}";
- sepNavSelRange = "{3643, 0}";
- sepNavVisRange = "{3137, 827}";
- };
- };
- 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1040, 702}}";
- sepNavSelRange = "{1518, 0}";
- sepNavVisRange = "{1431, 541}";
- };
- };
- 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1040, 3419}}";
- sepNavSelRange = "{3754, 9}";
- sepNavVisRange = "{3868, 1309}";
- };
- };
- 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1475, 23205}}";
- sepNavSelRange = "{79164, 0}";
- sepNavVisRange = "{78562, 741}";
- };
- };
- 7EC3C68A81EFFF79B6CA22AC /* main.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1055, 3458}}";
- sepNavSelRange = "{9296, 0}";
- sepNavVisRange = "{8787, 1089}";
- };
- };
- 91B15E841AA80083484172DE /* Project object */ = {
- activeBuildConfigurationName = Release;
- activeExecutable = E938E42E14AC74220066EAA2 /* UniversalIndentGUI */;
- activeTarget = A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */;
- breakpoints = (
- E938E45B14AC75750066EAA2 /* MainWindow.cpp:101 */,
- E938E46114AC75930066EAA2 /* MainWindow.cpp:104 */,
- E938E46914AC760C0066EAA2 /* UiGuiSettings.cpp:65 */,
- E938E46B14AC76120066EAA2 /* UiGuiSettings.cpp:81 */,
- );
- codeSenseManager = E938E40714AC700F0066EAA2 /* Code sense */;
- executables = (
- E938E42E14AC74220066EAA2 /* UniversalIndentGUI */,
- );
- perUserDictionary = {
- PBXConfiguration.PBXFileTableDataSource3.PBXExecutablesDataSource = {
- PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
- PBXFileTableDataSourceColumnSortingKey = PBXExecutablesDataSource_NameID;
- PBXFileTableDataSourceColumnWidthsKey = (
- 22,
- 300,
- 750,
- );
- PBXFileTableDataSourceColumnsKey = (
- PBXExecutablesDataSource_ActiveFlagID,
- PBXExecutablesDataSource_NameID,
- PBXExecutablesDataSource_CommentsID,
- );
- };
- PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = {
- PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
- PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
- PBXFileTableDataSourceColumnWidthsKey = (
- 20,
- 862,
- 20,
- 48,
- 43,
- 43,
- 20,
- );
- PBXFileTableDataSourceColumnsKey = (
- PBXFileDataSource_FiletypeID,
- PBXFileDataSource_Filename_ColumnID,
- PBXFileDataSource_Built_ColumnID,
- PBXFileDataSource_ObjectSize_ColumnID,
- PBXFileDataSource_Errors_ColumnID,
- PBXFileDataSource_Warnings_ColumnID,
- PBXFileDataSource_Target_ColumnID,
- );
- };
- PBXConfiguration.PBXTargetDataSource.PBXTargetDataSource = {
- PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
- PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
- PBXFileTableDataSourceColumnWidthsKey = (
- 20,
- 822,
- 60,
- 20,
- 48,
- 43,
- 43,
- );
- PBXFileTableDataSourceColumnsKey = (
- PBXFileDataSource_FiletypeID,
- PBXFileDataSource_Filename_ColumnID,
- PBXTargetDataSource_PrimaryAttribute,
- PBXFileDataSource_Built_ColumnID,
- PBXFileDataSource_ObjectSize_ColumnID,
- PBXFileDataSource_Errors_ColumnID,
- PBXFileDataSource_Warnings_ColumnID,
- );
- };
- PBXPerProjectTemplateStateSaveDate = 346855027;
- PBXWorkspaceStateSaveDate = 346855027;
- };
- perUserProjectItems = {
- E938E46314AC75960066EAA2 /* PBXTextBookmark */ = E938E46314AC75960066EAA2 /* PBXTextBookmark */;
- E938E48114AC77A80066EAA2 /* PBXTextBookmark */ = E938E48114AC77A80066EAA2 /* PBXTextBookmark */;
- E938E4B314AC7A360066EAA2 /* PBXTextBookmark */ = E938E4B314AC7A360066EAA2 /* PBXTextBookmark */;
- E938E4B714AC7A360066EAA2 /* PBXTextBookmark */ = E938E4B714AC7A360066EAA2 /* PBXTextBookmark */;
- E938E4C714AC7B520066EAA2 /* PBXTextBookmark */ = E938E4C714AC7B520066EAA2 /* PBXTextBookmark */;
- E938E4CD14AC7B650066EAA2 /* PBXTextBookmark */ = E938E4CD14AC7B650066EAA2 /* PBXTextBookmark */;
- E938E4D314AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D314AC7D730066EAA2 /* PBXTextBookmark */;
- E938E4D414AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D414AC7D730066EAA2 /* PBXTextBookmark */;
- E938E4D514AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D514AC7D730066EAA2 /* PBXTextBookmark */;
- E938E4D614AC7D730066EAA2 /* PBXTextBookmark */ = E938E4D614AC7D730066EAA2 /* PBXTextBookmark */;
- E938E4E714ACB49E0066EAA2 /* PBXTextBookmark */ = E938E4E714ACB49E0066EAA2 /* PBXTextBookmark */;
- E938E4E814ACB49E0066EAA2 /* PBXTextBookmark */ = E938E4E814ACB49E0066EAA2 /* PBXTextBookmark */;
- E938E4E914ACB49E0066EAA2 /* PBXTextBookmark */ = E938E4E914ACB49E0066EAA2 /* PBXTextBookmark */;
- };
- sourceControlManager = E938E40614AC700F0066EAA2 /* Source Control */;
- userBuildSettings = {
- };
- };
- 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1040, 9126}}";
- sepNavSelRange = "{2691, 0}";
- sepNavVisRange = "{2803, 1071}";
- };
- };
- A630BEF242261A8F9F0C2E16 /* UniversalIndentGUI */ = {
- activeExec = 0;
- executables = (
- E938E42E14AC74220066EAA2 /* UniversalIndentGUI */,
- );
- };
- AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1040, 1118}}";
- sepNavSelRange = "{1440, 0}";
- sepNavVisRange = "{463, 1236}";
- };
- };
- D807F0DE3110F0AD45593FA7 /* MainWindow.h */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1247, 1924}}";
- sepNavSelRange = "{4885, 0}";
- sepNavVisRange = "{1496, 850}";
- };
- };
- E938E40614AC700F0066EAA2 /* Source Control */ = {
- isa = PBXSourceControlManager;
- fallbackIsa = XCSourceControlManager;
- isSCMEnabled = 0;
- scmConfiguration = {
- repositoryNamesForRoots = {
- "" = "";
- };
- };
- };
- E938E40714AC700F0066EAA2 /* Code sense */ = {
- isa = PBXCodeSenseManager;
- indexTemplatePath = "";
- };
- E938E42E14AC74220066EAA2 /* UniversalIndentGUI */ = {
- isa = PBXExecutable;
- activeArgIndices = (
- );
- argumentStrings = (
- );
- autoAttachOnCrash = 1;
- breakpointsEnabled = 1;
- configStateDict = {
- };
- customDataFormattersEnabled = 1;
- dataTipCustomDataFormattersEnabled = 1;
- dataTipShowTypeColumn = 1;
- dataTipSortType = 0;
- debuggerPlugin = GDBDebugging;
- disassemblyDisplayState = 0;
- dylibVariantSuffix = "";
- enableDebugStr = 1;
- environmentEntries = (
- );
- executableSystemSymbolLevel = 0;
- executableUserSymbolLevel = 0;
- libgmallocEnabled = 0;
- name = UniversalIndentGUI;
- savedGlobals = {
- };
- showTypeColumn = 0;
- sourceDirectories = (
- );
- variableFormatDictionary = {
- };
- };
- E938E45B14AC75750066EAA2 /* MainWindow.cpp:101 */ = {
- isa = PBXFileBreakpoint;
- actions = (
- );
- breakpointStyle = 0;
- continueAfterActions = 0;
- countType = 0;
- delayBeforeContinue = 0;
- fileReference = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */;
- functionName = "MainWindow::MainWindow(QString file2OpenOnStart, QWidget *parent)";
- hitCount = 1;
- ignoreCount = 0;
- lineNumber = 101;
- location = UniversalIndentGUI;
- modificationTime = 346848101.622124;
- originalNumberOfMultipleMatches = 1;
- state = 0;
- };
- E938E46114AC75930066EAA2 /* MainWindow.cpp:104 */ = {
- isa = PBXFileBreakpoint;
- actions = (
- );
- breakpointStyle = 0;
- continueAfterActions = 0;
- countType = 0;
- delayBeforeContinue = 0;
- fileReference = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */;
- functionName = "MainWindow::MainWindow(QString file2OpenOnStart, QWidget *parent)";
- hitCount = 1;
- ignoreCount = 0;
- lineNumber = 104;
- location = UniversalIndentGUI;
- modificationTime = 346848114.812431;
- originalNumberOfMultipleMatches = 1;
- state = 1;
- };
- E938E46314AC75960066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 7EC3C68A81EFFF79B6CA22AC /* main.cpp */;
- name = "main.cpp: 248";
- rLen = 0;
- rLoc = 9296;
- rType = 0;
- vrLen = 1089;
- vrLoc = 8787;
- };
- E938E46514AC75960066EAA2 /* qsharedpointer_impl.h */ = {
- isa = PBXFileReference;
- lastKnownFileType = sourcecode.c.h;
- name = qsharedpointer_impl.h;
- path = /opt/local/include/QtCore/qsharedpointer_impl.h;
- sourceTree = "<absolute>";
- };
- E938E46914AC760C0066EAA2 /* UiGuiSettings.cpp:65 */ = {
- isa = PBXFileBreakpoint;
- actions = (
- );
- breakpointStyle = 0;
- continueAfterActions = 0;
- countType = 0;
- delayBeforeContinue = 0;
- fileReference = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */;
- functionName = "UiGuiSettings::getInstance()";
- hitCount = 2;
- ignoreCount = 0;
- lineNumber = 65;
- location = UniversalIndentGUI;
- modificationTime = 346848115.5478889;
- originalNumberOfMultipleMatches = 1;
- state = 1;
- };
- E938E46B14AC76120066EAA2 /* UiGuiSettings.cpp:81 */ = {
- isa = PBXFileBreakpoint;
- actions = (
- );
- breakpointStyle = 0;
- continueAfterActions = 0;
- countType = 0;
- delayBeforeContinue = 0;
- fileReference = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */;
- functionName = "UiGuiSettings::~UiGuiSettings()";
- hitCount = 1;
- ignoreCount = 0;
- lineNumber = 81;
- location = UniversalIndentGUI;
- modificationTime = 346848140.41869;
- originalNumberOfMultipleMatches = 1;
- state = 1;
- };
- E938E48114AC77A80066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = E938E48214AC77A80066EAA2 /* qstringlist.h */;
- name = "qstringlist.h: 68";
- rLen = 0;
- rLoc = 2245;
- rType = 0;
- vrLen = 636;
- vrLoc = 1852;
- };
- E938E48214AC77A80066EAA2 /* qstringlist.h */ = {
- isa = PBXFileReference;
- lastKnownFileType = sourcecode.c.h;
- name = qstringlist.h;
- path = /opt/local/include/QtCore/qstringlist.h;
- sourceTree = "<absolute>";
- };
- E938E4B314AC7A360066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = E938E46514AC75960066EAA2 /* qsharedpointer_impl.h */;
- name = "qsharedpointer_impl.h: 339";
- rLen = 0;
- rLoc = 11920;
- rType = 0;
- vrLen = 867;
- vrLoc = 11651;
- };
- E938E4B714AC7A360066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = AC4AC748C3685570D9D8B977 /* UiGuiSettings.h */;
- name = "UiGuiSettings.h: 22";
- rLen = 0;
- rLoc = 1440;
- rType = 0;
- vrLen = 1236;
- vrLoc = 463;
- };
- E938E4C714AC7B520066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 3194C2F269DA07FBC8FB120D /* UiGuiSettingsDialog.h */;
- name = "UiGuiSettingsDialog.h: 28";
- rLen = 0;
- rLoc = 1518;
- rType = 0;
- vrLen = 541;
- vrLoc = 1431;
- };
- E938E4CD14AC7B650066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 7B749332F0EE106BAF891CBB /* IndentHandler.cpp */;
- name = "IndentHandler.cpp: 1728";
- rLen = 0;
- rLoc = 79164;
- rType = 0;
- vrLen = 741;
- vrLoc = 78562;
- };
- E938E4D314AC7D730066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = D807F0DE3110F0AD45593FA7 /* MainWindow.h */;
- name = "MainWindow.h: 53";
- rLen = 0;
- rLoc = 1961;
- rType = 0;
- vrLen = 722;
- vrLoc = 1743;
- };
- E938E4D414AC7D730066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 1C0B64226A129D35F02DC004 /* MainWindow.cpp */;
- name = "MainWindow.cpp: 104";
- rLen = 0;
- rLoc = 3643;
- rType = 0;
- vrLen = 827;
- vrLoc = 3137;
- };
- E938E4D514AC7D730066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 944A1A0B82857EC61410FC06 /* UiGuiSettings.cpp */;
- name = "UiGuiSettings.cpp: 65";
- rLen = 0;
- rLoc = 2691;
- rType = 0;
- vrLen = 1071;
- vrLoc = 2803;
- };
- E938E4D614AC7D730066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = E938E4D714AC7D730066EAA2 /* qglobal.h */;
- name = "qglobal.h: 1749";
- rLen = 0;
- rLoc = 53149;
- rType = 0;
- vrLen = 1090;
- vrLoc = 52596;
- };
- E938E4D714AC7D730066EAA2 /* qglobal.h */ = {
- isa = PBXFileReference;
- lastKnownFileType = sourcecode.c.h;
- name = qglobal.h;
- path = /opt/local/include/QtCore/qglobal.h;
- sourceTree = "<absolute>";
- };
- E938E4E714ACB49E0066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = 5EEB118D3C499097B07CA6DC /* TSLogger.cpp */;
- name = "TSLogger.cpp: 102";
- rLen = 9;
- rLoc = 3754;
- rType = 0;
- vrLen = 1309;
- vrLoc = 3868;
- };
- E938E4E814ACB49E0066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */;
- rLen = 5;
- rLoc = 1582;
- rType = 0;
- };
- E938E4E914ACB49E0066EAA2 /* PBXTextBookmark */ = {
- isa = PBXTextBookmark;
- fRef = F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */;
- name = "UiGuiVersion.h: 29";
- rLen = 0;
- rLoc = 1699;
- rType = 0;
- vrLen = 1100;
- vrLoc = 780;
- };
- F45A82FFD3FBFC99A2A0B897 /* UiGuiVersion.h */ = {
- uiCtxt = {
- sepNavIntBoundsRect = "{{0, 0}, {1040, 520}}";
- sepNavSelRange = "{1699, 0}";
- sepNavVisRange = "{780, 1100}";
- };
- };
-}
diff --git a/UniversalIndentGUI.xcodeproj/thomas.perspectivev3 b/UniversalIndentGUI.xcodeproj/thomas.perspectivev3
deleted file mode 100755
index 36a8ca5..0000000
--- a/UniversalIndentGUI.xcodeproj/thomas.perspectivev3
+++ /dev/null
@@ -1,1487 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>ActivePerspectiveName</key>
- <string>Project</string>
- <key>AllowedModules</key>
- <array>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Name</key>
- <string>Groups and Files Outline View</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Name</key>
- <string>Editor</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCTaskListModule</string>
- <key>Name</key>
- <string>Task List</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Name</key>
- <string>File and Smart Group Detail Viewer</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXBuildResultsModule</string>
- <key>Name</key>
- <string>Detailed Build Results Viewer</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXProjectFindModule</string>
- <key>Name</key>
- <string>Project Batch Find Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCProjectFormatConflictsModule</string>
- <key>Name</key>
- <string>Project Format Conflicts List</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXBookmarksModule</string>
- <key>Name</key>
- <string>Bookmarks Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXClassBrowserModule</string>
- <key>Name</key>
- <string>Class Browser</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXCVSModule</string>
- <key>Name</key>
- <string>Source Code Control Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXDebugBreakpointsModule</string>
- <key>Name</key>
- <string>Debug Breakpoints Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCDockableInspector</string>
- <key>Name</key>
- <string>Inspector</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>PBXOpenQuicklyModule</string>
- <key>Name</key>
- <string>Open Quickly Tool</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXDebugSessionModule</string>
- <key>Name</key>
- <string>Debugger</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>1</string>
- <key>Module</key>
- <string>PBXDebugCLIModule</string>
- <key>Name</key>
- <string>Debug Console</string>
- </dict>
- <dict>
- <key>BundleLoadPath</key>
- <string></string>
- <key>MaxInstances</key>
- <string>n</string>
- <key>Module</key>
- <string>XCSnapshotModule</string>
- <key>Name</key>
- <string>Snapshots Tool</string>
- </dict>
- </array>
- <key>BundlePath</key>
- <string>/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources</string>
- <key>Description</key>
- <string>AIODescriptionKey</string>
- <key>DockingSystemVisible</key>
- <false/>
- <key>Extension</key>
- <string>perspectivev3</string>
- <key>FavBarConfig</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>E938E41514AC70190066EAA2</string>
- <key>XCBarModuleItemNames</key>
- <dict/>
- <key>XCBarModuleItems</key>
- <array/>
- </dict>
- <key>FirstTimeWindowDisplayed</key>
- <false/>
- <key>Identifier</key>
- <string>com.apple.perspectives.project.defaultV3</string>
- <key>MajorVersion</key>
- <integer>34</integer>
- <key>MinorVersion</key>
- <integer>0</integer>
- <key>Name</key>
- <string>All-In-One</string>
- <key>Notifications</key>
- <array/>
- <key>OpenEditors</key>
- <array/>
- <key>PerspectiveWidths</key>
- <array>
- <integer>1308</integer>
- <integer>1308</integer>
- </array>
- <key>Perspectives</key>
- <array>
- <dict>
- <key>ChosenToolbarItems</key>
- <array>
- <string>XCToolbarPerspectiveControl</string>
- <string>NSToolbarSeparatorItem</string>
- <string>active-combo-popup</string>
- <string>action</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>debugger-enable-breakpoints</string>
- <string>buildOrClean</string>
- <string>build-and-go</string>
- <string>com.apple.ide.PBXToolbarStopButton</string>
- <string>get-info</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>com.apple.pbx.toolbar.searchfield</string>
- </array>
- <key>ControllerClassBaseName</key>
- <string></string>
- <key>IconName</key>
- <string>WindowOfProject</string>
- <key>Identifier</key>
- <string>perspective.project</string>
- <key>IsVertical</key>
- <false/>
- <key>Layout</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C37FBAC04509CD000000102</string>
- <string>1C37FAAC04509CD000000102</string>
- <string>1C37FABC05509CD000000102</string>
- <string>1C37FABC05539CD112110102</string>
- <string>E2644B35053B69B200211256</string>
- <string>1C37FABC04509CD000100104</string>
- <string>1CC0EA4004350EF90044410B</string>
- <string>1CC0EA4004350EF90041110B</string>
- <string>1C77FABC04509CD000000102</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>1CA23ED40692098700951B8B</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>yes</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>185</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>1C37FBAC04509CD000000102</string>
- <string>1C37FAAC04509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>2</integer>
- <integer>1</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {185, 751}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <false/>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {202, 769}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>185</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>132 68 1308 810 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>202pt</string>
- </dict>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <true/>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>E938E40A14AC70190066EAA2</string>
- <key>PBXProjectModuleLabel</key>
- <string>UiGuiVersion.h</string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>E938E40B14AC70190066EAA2</string>
- <key>PBXProjectModuleLabel</key>
- <string>UiGuiVersion.h</string>
- <key>_historyCapacity</key>
- <integer>0</integer>
- <key>bookmark</key>
- <string>E938E4E914ACB49E0066EAA2</string>
- <key>history</key>
- <array>
- <string>E938E46314AC75960066EAA2</string>
- <string>E938E48114AC77A80066EAA2</string>
- <string>E938E4B314AC7A360066EAA2</string>
- <string>E938E4B714AC7A360066EAA2</string>
- <string>E938E4C714AC7B520066EAA2</string>
- <string>E938E4CD14AC7B650066EAA2</string>
- <string>E938E4D314AC7D730066EAA2</string>
- <string>E938E4D414AC7D730066EAA2</string>
- <string>E938E4D514AC7D730066EAA2</string>
- <string>E938E4D614AC7D730066EAA2</string>
- <string>E938E4E714ACB49E0066EAA2</string>
- <string>E938E4E814ACB49E0066EAA2</string>
- </array>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <true/>
- <key>XCSharingToken</key>
- <string>com.apple.Xcode.CommonNavigatorGroupSharingToken</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {1101, 421}}</string>
- <key>RubberWindowFrame</key>
- <string>132 68 1308 810 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>421pt</string>
- </dict>
- <dict>
- <key>Proportion</key>
- <string>343pt</string>
- <key>Tabs</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CA23EDF0692099D00951B8B</string>
- <key>PBXProjectModuleLabel</key>
- <string>Detail</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{10, 27}, {1101, 316}}</string>
- </dict>
- <key>Module</key>
- <string>XCDetailModule</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CA23EE00692099D00951B8B</string>
- <key>PBXProjectModuleLabel</key>
- <string>Project Find</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{10, 27}, {1101, 316}}</string>
- <key>RubberWindowFrame</key>
- <string>132 68 1308 810 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXProjectFindModule</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXCVSModuleFilterTypeKey</key>
- <integer>1032</integer>
- <key>PBXProjectModuleGUID</key>
- <string>1CA23EE10692099D00951B8B</string>
- <key>PBXProjectModuleLabel</key>
- <string>SCM Results</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{10, 31}, {603, 297}}</string>
- </dict>
- <key>Module</key>
- <string>PBXCVSModule</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>XCMainBuildResultsModuleGUID</string>
- <key>PBXProjectModuleLabel</key>
- <string>Build Results</string>
- <key>XCBuildResultsTrigger_Collapse</key>
- <integer>1021</integer>
- <key>XCBuildResultsTrigger_Open</key>
- <integer>1011</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{10, 27}, {1101, 307}}</string>
- </dict>
- <key>Module</key>
- <string>PBXBuildResultsModule</string>
- </dict>
- </array>
- </dict>
- </array>
- <key>Proportion</key>
- <string>1101pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCModuleDock</string>
- <string>PBXSmartGroupTreeModule</string>
- <string>XCModuleDock</string>
- <string>PBXNavigatorGroup</string>
- <string>XCDockableTabModule</string>
- <string>XCDetailModule</string>
- <string>PBXProjectFindModule</string>
- <string>PBXCVSModule</string>
- <string>PBXBuildResultsModule</string>
- </array>
- <key>TableOfContents</key>
- <array>
- <string>E938E4EA14ACB49E0066EAA2</string>
- <string>1CA23ED40692098700951B8B</string>
- <string>E938E4EB14ACB49E0066EAA2</string>
- <string>E938E40A14AC70190066EAA2</string>
- <string>E938E4EC14ACB49E0066EAA2</string>
- <string>1CA23EDF0692099D00951B8B</string>
- <string>1CA23EE00692099D00951B8B</string>
- <string>1CA23EE10692099D00951B8B</string>
- <string>XCMainBuildResultsModuleGUID</string>
- </array>
- <key>ToolbarConfigUserDefaultsMinorVersion</key>
- <string>2</string>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.defaultV3</string>
- </dict>
- <dict>
- <key>ChosenToolbarItems</key>
- <array>
- <string>XCToolbarPerspectiveControl</string>
- <string>NSToolbarSeparatorItem</string>
- <string>active-combo-popup</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>debugger-enable-breakpoints</string>
- <string>build-and-go</string>
- <string>com.apple.ide.PBXToolbarStopButton</string>
- <string>debugger-restart-executable</string>
- <string>debugger-pause</string>
- <string>debugger-step-over</string>
- <string>debugger-step-into</string>
- <string>debugger-step-out</string>
- <string>NSToolbarFlexibleSpaceItem</string>
- <string>servicesModulebreakpoints</string>
- <string>debugger-show-console-window</string>
- </array>
- <key>ControllerClassBaseName</key>
- <string>PBXDebugSessionModule</string>
- <key>IconName</key>
- <string>DebugTabIcon</string>
- <key>Identifier</key>
- <string>perspective.debug</string>
- <key>IsVertical</key>
- <true/>
- <key>Layout</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CCC7628064C1048000F2A68</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debugger Console</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {1308, 86}}</string>
- </dict>
- <key>Module</key>
- <string>PBXDebugCLIModule</string>
- <key>Proportion</key>
- <string>86pt</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>Debugger</key>
- <dict>
- <key>HorizontalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {638, 330}}</string>
- <string>{{638, 0}, {670, 330}}</string>
- </array>
- </dict>
- <key>VerticalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {1308, 330}}</string>
- <string>{{0, 330}, {1308, 348}}</string>
- </array>
- </dict>
- </dict>
- <key>LauncherConfigVersion</key>
- <string>8</string>
- <key>PBXProjectModuleGUID</key>
- <string>1CCC7629064C1048000F2A68</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debug</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>DebugConsoleVisible</key>
- <string>None</string>
- <key>DebugConsoleWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>DebugSTDIOWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>Frame</key>
- <string>{{0, 91}, {1308, 678}}</string>
- <key>PBXDebugSessionStackFrameViewKey</key>
- <dict>
- <key>DebugVariablesTableConfiguration</key>
- <array>
- <string>Name</string>
- <real>120</real>
- <string>Value</string>
- <real>85</real>
- <string>Summary</string>
- <real>440</real>
- </array>
- <key>Frame</key>
- <string>{{638, 0}, {670, 330}}</string>
- </dict>
- </dict>
- <key>Module</key>
- <string>PBXDebugSessionModule</string>
- <key>Proportion</key>
- <string>678pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debug</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCModuleDock</string>
- <string>PBXDebugCLIModule</string>
- <string>PBXDebugSessionModule</string>
- <string>PBXDebugProcessAndThreadModule</string>
- <string>PBXDebugProcessViewModule</string>
- <string>PBXDebugThreadViewModule</string>
- <string>PBXDebugStackFrameViewModule</string>
- <string>PBXNavigatorGroup</string>
- </array>
- <key>TableOfContents</key>
- <array>
- <string>E938E44814AC75170066EAA2</string>
- <string>1CCC7628064C1048000F2A68</string>
- <string>1CCC7629064C1048000F2A68</string>
- <string>E938E44914AC75170066EAA2</string>
- <string>E938E44A14AC75170066EAA2</string>
- <string>E938E44B14AC75170066EAA2</string>
- <string>E938E44C14AC75170066EAA2</string>
- <string>E938E40A14AC70190066EAA2</string>
- </array>
- <key>ToolbarConfigUserDefaultsMinorVersion</key>
- <string>2</string>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.debugV3</string>
- </dict>
- </array>
- <key>PerspectivesBarVisible</key>
- <true/>
- <key>ShelfIsVisible</key>
- <false/>
- <key>SourceDescription</key>
- <string>file at '/Developer/Library/PrivateFrameworks/DevToolsInterface.framework/Resources/XCPerspectivesSpecification.xcperspec'</string>
- <key>StatusbarIsVisible</key>
- <true/>
- <key>TimeStamp</key>
- <real>0.0</real>
- <key>ToolbarConfigUserDefaultsMinorVersion</key>
- <string>2</string>
- <key>ToolbarDisplayMode</key>
- <integer>2</integer>
- <key>ToolbarIsVisible</key>
- <true/>
- <key>ToolbarSizeMode</key>
- <integer>2</integer>
- <key>Type</key>
- <string>Perspectives</string>
- <key>UpdateMessage</key>
- <string></string>
- <key>WindowJustification</key>
- <integer>5</integer>
- <key>WindowOrderList</key>
- <array>
- <string>/Volumes/SHARED/Programming/uigui/universalindent/trunk/UniversalIndentGUI.xcodeproj</string>
- </array>
- <key>WindowString</key>
- <string>132 68 1308 810 0 0 1440 878 </string>
- <key>WindowToolsV3</key>
- <array>
- <dict>
- <key>Identifier</key>
- <string>windowTool.debugger</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>Debugger</key>
- <dict>
- <key>HorizontalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {317, 164}}</string>
- <string>{{317, 0}, {377, 164}}</string>
- </array>
- </dict>
- <key>VerticalSplitView</key>
- <dict>
- <key>_collapsingFrameDimension</key>
- <real>0.0</real>
- <key>_indexOfCollapsedView</key>
- <integer>0</integer>
- <key>_percentageOfCollapsedView</key>
- <real>0.0</real>
- <key>isCollapsed</key>
- <string>yes</string>
- <key>sizes</key>
- <array>
- <string>{{0, 0}, {694, 164}}</string>
- <string>{{0, 164}, {694, 216}}</string>
- </array>
- </dict>
- </dict>
- <key>LauncherConfigVersion</key>
- <string>8</string>
- <key>PBXProjectModuleGUID</key>
- <string>1C162984064C10D400B95A72</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debug - GLUTExamples (Underwater)</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>DebugConsoleDrawerSize</key>
- <string>{100, 120}</string>
- <key>DebugConsoleVisible</key>
- <string>None</string>
- <key>DebugConsoleWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>DebugSTDIOWindowFrame</key>
- <string>{{200, 200}, {500, 300}}</string>
- <key>Frame</key>
- <string>{{0, 0}, {694, 380}}</string>
- <key>RubberWindowFrame</key>
- <string>321 238 694 422 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXDebugSessionModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debugger</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXDebugSessionModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1CD10A99069EF8BA00B06720</string>
- <string>1C0AD2AB069F1E9B00FABCE6</string>
- <string>1C162984064C10D400B95A72</string>
- <string>1C0AD2AC069F1E9B00FABCE6</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.debugV3</string>
- <key>WindowString</key>
- <string>321 238 694 422 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1CD10A99069EF8BA00B06720</string>
- <key>WindowToolIsVisible</key>
- <integer>0</integer>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.build</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528F0623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>&lt;No Editor&gt;</string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD052900623707200166675</string>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <integer>1</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {500, 215}}</string>
- <key>RubberWindowFrame</key>
- <string>192 257 500 500 0 0 1280 1002 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>218pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>XCMainBuildResultsModuleGUID</string>
- <key>PBXProjectModuleLabel</key>
- <string>Build Results</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 222}, {500, 236}}</string>
- <key>RubberWindowFrame</key>
- <string>192 257 500 500 0 0 1280 1002 </string>
- </dict>
- <key>Module</key>
- <string>PBXBuildResultsModule</string>
- <key>Proportion</key>
- <string>236pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>458pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Build Results</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXBuildResultsModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C78EAA5065D492600B07095</string>
- <string>1C78EAA6065D492600B07095</string>
- <string>1CD0528F0623707200166675</string>
- <string>XCMainBuildResultsModuleGUID</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.buildV3</string>
- <key>WindowString</key>
- <string>192 257 500 500 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.find</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CDD528C0622207200134675</string>
- <key>PBXProjectModuleLabel</key>
- <string>&lt;No Editor&gt;</string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528D0623707200166675</string>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <integer>1</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {781, 167}}</string>
- <key>RubberWindowFrame</key>
- <string>62 385 781 470 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>781pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>50%</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD0528E0623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>Project Find</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{8, 0}, {773, 254}}</string>
- <key>RubberWindowFrame</key>
- <string>62 385 781 470 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXProjectFindModule</string>
- <key>Proportion</key>
- <string>50%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>428pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project Find</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXProjectFindModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C530D57069F1CE1000CFCEE</string>
- <string>1C530D58069F1CE1000CFCEE</string>
- <string>1C530D59069F1CE1000CFCEE</string>
- <string>1CDD528C0622207200134675</string>
- <string>1C530D5A069F1CE1000CFCEE</string>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <string>1CD0528E0623707200166675</string>
- </array>
- <key>WindowString</key>
- <string>62 385 781 470 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1C530D57069F1CE1000CFCEE</string>
- <key>WindowToolIsVisible</key>
- <integer>0</integer>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.snapshots</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>XCSnapshotModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Snapshots</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCSnapshotModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <string>Yes</string>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.snapshots</string>
- <key>WindowString</key>
- <string>315 824 300 550 0 0 1440 878 </string>
- <key>WindowToolIsVisible</key>
- <string>Yes</string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.debuggerConsole</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAAC065D492600B07095</string>
- <key>PBXProjectModuleLabel</key>
- <string>Debugger Console</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {700, 358}}</string>
- <key>RubberWindowFrame</key>
- <string>149 87 700 400 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXDebugCLIModule</string>
- <key>Proportion</key>
- <string>358pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>358pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debugger Console</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXDebugCLIModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C530D5B069F1CE1000CFCEE</string>
- <string>1C530D5C069F1CE1000CFCEE</string>
- <string>1C78EAAC065D492600B07095</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.consoleV3</string>
- <key>WindowString</key>
- <string>149 87 440 400 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1C530D5B069F1CE1000CFCEE</string>
- <key>WindowToolIsVisible</key>
- <integer>0</integer>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.scm</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAB2065D492600B07095</string>
- <key>PBXProjectModuleLabel</key>
- <string>&lt;No Editor&gt;</string>
- <key>PBXSplitModuleInNavigatorKey</key>
- <dict>
- <key>Split0</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1C78EAB3065D492600B07095</string>
- </dict>
- <key>SplitCount</key>
- <string>1</string>
- </dict>
- <key>StatusBarVisibility</key>
- <integer>1</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {452, 0}}</string>
- <key>RubberWindowFrame</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- </dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>0pt</string>
- </dict>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CD052920623707200166675</string>
- <key>PBXProjectModuleLabel</key>
- <string>SCM</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>ConsoleFrame</key>
- <string>{{0, 259}, {452, 0}}</string>
- <key>Frame</key>
- <string>{{0, 7}, {452, 259}}</string>
- <key>RubberWindowFrame</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- <key>TableConfiguration</key>
- <array>
- <string>Status</string>
- <real>30</real>
- <string>FileName</string>
- <real>199</real>
- <string>Path</string>
- <real>197.09500122070312</real>
- </array>
- <key>TableFrame</key>
- <string>{{0, 0}, {452, 250}}</string>
- </dict>
- <key>Module</key>
- <string>PBXCVSModule</string>
- <key>Proportion</key>
- <string>262pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>266pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>SCM</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXCVSModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C78EAB4065D492600B07095</string>
- <string>1C78EAB5065D492600B07095</string>
- <string>1C78EAB2065D492600B07095</string>
- <string>1CD052920623707200166675</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.scmV3</string>
- <key>WindowString</key>
- <string>743 379 452 308 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.breakpoints</string>
- <key>IsVertical</key>
- <integer>0</integer>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXBottomSmartGroupGIDs</key>
- <array>
- <string>1C77FABC04509CD000000102</string>
- </array>
- <key>PBXProjectModuleGUID</key>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <key>PBXProjectModuleLabel</key>
- <string>Files</string>
- <key>PBXProjectStructureProvided</key>
- <string>no</string>
- <key>PBXSmartGroupTreeModuleColumnData</key>
- <dict>
- <key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
- <array>
- <real>168</real>
- </array>
- <key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
- <array>
- <string>MainColumn</string>
- </array>
- </dict>
- <key>PBXSmartGroupTreeModuleOutlineStateKey_v7</key>
- <dict>
- <key>PBXSmartGroupTreeModuleOutlineStateExpansionKey</key>
- <array>
- <string>1C77FABC04509CD000000102</string>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
- <array>
- <array>
- <integer>0</integer>
- </array>
- </array>
- <key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
- <string>{{0, 0}, {168, 350}}</string>
- </dict>
- <key>PBXTopSmartGroupGIDs</key>
- <array/>
- <key>XCIncludePerspectivesSwitch</key>
- <integer>0</integer>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{0, 0}, {185, 368}}</string>
- <key>GroupTreeTableConfiguration</key>
- <array>
- <string>MainColumn</string>
- <real>168</real>
- </array>
- <key>RubberWindowFrame</key>
- <string>315 424 744 409 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>PBXSmartGroupTreeModule</string>
- <key>Proportion</key>
- <string>185pt</string>
- </dict>
- <dict>
- <key>ContentConfiguration</key>
- <dict>
- <key>PBXProjectModuleGUID</key>
- <string>1CA1AED706398EBD00589147</string>
- <key>PBXProjectModuleLabel</key>
- <string>Detail</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{{190, 0}, {554, 368}}</string>
- <key>RubberWindowFrame</key>
- <string>315 424 744 409 0 0 1440 878 </string>
- </dict>
- <key>Module</key>
- <string>XCDetailModule</string>
- <key>Proportion</key>
- <string>554pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>368pt</string>
- </dict>
- </array>
- <key>MajorVersion</key>
- <integer>3</integer>
- <key>MinorVersion</key>
- <integer>0</integer>
- <key>Name</key>
- <string>Breakpoints</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXSmartGroupTreeModule</string>
- <string>XCDetailModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>TableOfContents</key>
- <array>
- <string>1CDDB66807F98D9800BB5817</string>
- <string>1CDDB66907F98D9800BB5817</string>
- <string>1CE0B1FE06471DED0097A5F4</string>
- <string>1CA1AED706398EBD00589147</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.breakpointsV3</string>
- <key>WindowString</key>
- <string>315 424 744 409 0 0 1440 878 </string>
- <key>WindowToolGUID</key>
- <string>1CDDB66807F98D9800BB5817</string>
- <key>WindowToolIsVisible</key>
- <integer>1</integer>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.debugAnimator</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>PBXNavigatorGroup</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Debug Visualizer</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXNavigatorGroup</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>1</integer>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.debugAnimatorV3</string>
- <key>WindowString</key>
- <string>100 100 700 500 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.bookmarks</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>PBXBookmarksModule</string>
- <key>Proportion</key>
- <string>166pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>166pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Bookmarks</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXBookmarksModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>0</integer>
- <key>WindowString</key>
- <string>538 42 401 187 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.projectFormatConflicts</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>Module</key>
- <string>XCProjectFormatConflictsModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Project Format Conflicts</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCProjectFormatConflictsModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>0</integer>
- <key>WindowContentMinSize</key>
- <string>450 300</string>
- <key>WindowString</key>
- <string>50 850 472 307 0 0 1440 877</string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.classBrowser</string>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>ContentConfiguration</key>
- <dict>
- <key>OptionsSetName</key>
- <string>Hierarchy, all classes</string>
- <key>PBXProjectModuleGUID</key>
- <string>1CA6456E063B45B4001379D8</string>
- <key>PBXProjectModuleLabel</key>
- <string>Class Browser - NSObject</string>
- </dict>
- <key>GeometryConfiguration</key>
- <dict>
- <key>ClassesFrame</key>
- <string>{{0, 0}, {369, 96}}</string>
- <key>ClassesTreeTableConfiguration</key>
- <array>
- <string>PBXClassNameColumnIdentifier</string>
- <real>208</real>
- <string>PBXClassBookColumnIdentifier</string>
- <real>22</real>
- </array>
- <key>Frame</key>
- <string>{{0, 0}, {616, 353}}</string>
- <key>MembersFrame</key>
- <string>{{0, 105}, {369, 395}}</string>
- <key>MembersTreeTableConfiguration</key>
- <array>
- <string>PBXMemberTypeIconColumnIdentifier</string>
- <real>22</real>
- <string>PBXMemberNameColumnIdentifier</string>
- <real>216</real>
- <string>PBXMemberTypeColumnIdentifier</string>
- <real>94</real>
- <string>PBXMemberBookColumnIdentifier</string>
- <real>22</real>
- </array>
- <key>PBXModuleWindowStatusBarHidden2</key>
- <integer>1</integer>
- <key>RubberWindowFrame</key>
- <string>597 125 616 374 0 0 1280 1002 </string>
- </dict>
- <key>Module</key>
- <string>PBXClassBrowserModule</string>
- <key>Proportion</key>
- <string>354pt</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>354pt</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Class Browser</string>
- <key>ServiceClasses</key>
- <array>
- <string>PBXClassBrowserModule</string>
- </array>
- <key>StatusbarIsVisible</key>
- <integer>0</integer>
- <key>TableOfContents</key>
- <array>
- <string>1C78EABA065D492600B07095</string>
- <string>1C78EABB065D492600B07095</string>
- <string>1CA6456E063B45B4001379D8</string>
- </array>
- <key>ToolbarConfiguration</key>
- <string>xcode.toolbar.config.classbrowser</string>
- <key>WindowString</key>
- <string>597 125 616 374 0 0 1280 1002 </string>
- </dict>
- <dict>
- <key>Identifier</key>
- <string>windowTool.refactoring</string>
- <key>IncludeInToolsMenu</key>
- <integer>0</integer>
- <key>Layout</key>
- <array>
- <dict>
- <key>Dock</key>
- <array>
- <dict>
- <key>BecomeActive</key>
- <integer>1</integer>
- <key>GeometryConfiguration</key>
- <dict>
- <key>Frame</key>
- <string>{0, 0}, {500, 335}</string>
- <key>RubberWindowFrame</key>
- <string>{0, 0}, {500, 335}</string>
- </dict>
- <key>Module</key>
- <string>XCRefactoringModule</string>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Proportion</key>
- <string>100%</string>
- </dict>
- </array>
- <key>Name</key>
- <string>Refactoring</string>
- <key>ServiceClasses</key>
- <array>
- <string>XCRefactoringModule</string>
- </array>
- <key>WindowString</key>
- <string>200 200 500 356 0 0 1920 1200 </string>
- </dict>
- </array>
-</dict>
-</plist>
diff --git a/VS8QtRules.rules b/VS8QtRules.rules
deleted file mode 100755
index cdb6162..0000000
--- a/VS8QtRules.rules
+++ /dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<VisualStudioToolFile
- Name="Qt-Rules"
- Version="8,00"
- >
- <Rules>
- <CustomBuildRule
- Name="UIC"
- DisplayName="UIC"
- CommandLine="uic.exe &quot;$(InputDir)$(InputName).ui&quot; -o &quot;$(OutDir)\tmp\uic\ui_$(InputName).h&quot;"
- Outputs="$(OutDir)\tmp\uic\ui_$(InputName).h"
- FileExtensions="*.ui"
- ExecutionDescription="UICing $(InputName).h..."
- >
- <Properties>
- </Properties>
- </CustomBuildRule>
- <CustomBuildRule
- Name="MOC"
- DisplayName="MOC"
- CommandLine="moc.exe &quot;$(InputDir)$(InputName).h&quot; -o &quot;$(OutDir)\tmp\moc\moc_$(InputName).cpp&quot;"
- Outputs="$(OutDir)\tmp\moc\moc_$(InputName).cpp"
- FileExtensions="*.h"
- ExecutionDescription="MOCing $(InputName).h..."
- >
- <Properties>
- </Properties>
- </CustomBuildRule>
- <CustomBuildRule
- Name="QRC"
- DisplayName="QRC"
- CommandLine="rcc.exe -name $(InputName) &quot;$(InputDir)$(InputName).qrc&quot; -o &quot;$(OutDir)\tmp\qrc\qrc_$(InputName).cpp&quot;"
- Outputs="$(OutDir)\tmp\qrc\qrc_$(InputName).cpp"
- FileExtensions="*.qrc"
- ExecutionDescription="QRCing $(InputName).h..."
- >
- <Properties>
- </Properties>
- </CustomBuildRule>
- </Rules>
-</VisualStudioToolFile>
diff --git a/debian/patches/disable_check_for_update.patch b/debian/patches/disable_check_for_update.patch
deleted file mode 100644
index 26fe12e..0000000
--- a/debian/patches/disable_check_for_update.patch
+++ /dev/null
@@ -1,15 +0,0 @@
----
- src/UiGuiSettings.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/src/UiGuiSettings.cpp
-+++ b/src/UiGuiSettings.cpp
-@@ -181,7 +181,7 @@ bool UiGuiSettings::initSettings()
- _qsettings->setValue( "UniversalIndentGUI/language", _availableTranslations.indexOf( _qsettings->value("UniversalIndentGUI/language", "").toString() ) );
-
- // Read the update check settings from the settings file.
-- _qsettings->setValue( "UniversalIndentGUI/CheckForUpdate", _qsettings->value("UniversalIndentGUI/CheckForUpdate", true) );
-+ _qsettings->setValue( "UniversalIndentGUI/CheckForUpdate", _qsettings->value("UniversalIndentGUI/CheckForUpdate", false) );
- _qsettings->setValue( "UniversalIndentGUI/LastUpdateCheck", _qsettings->value("UniversalIndentGUI/LastUpdateCheck", QDate(1900,1,1)) );
-
- // Read the main window state.
diff --git a/debian/patches/qsci_rename.patch b/debian/patches/qsci_rename.patch
deleted file mode 100644
index 54489c1..0000000
--- a/debian/patches/qsci_rename.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- universalindentgui-1.2.0.orig/UniversalIndentGUI.pro
-+++ universalindentgui-1.2.0/UniversalIndentGUI.pro
-@@ -23,7 +23,7 @@ macx {
- ICON = resources/UniversalIndentGUI.icns
- }
- else {
-- LIBS += -lqscintilla2
-+ LIBS += -lqscintilla2_qt4
- }
-
- CONFIG(release, debug|release) {
---- universalindentgui-1.2.0.orig/UniversalIndentGUI.xcodeproj/project.pbxproj
-+++ universalindentgui-1.2.0/UniversalIndentGUI.xcodeproj/project.pbxproj
-@@ -571,7 +571,7 @@
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
-- "-lqscintilla2",
-+ "-lqscintilla2_qt4",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
-@@ -637,7 +637,7 @@
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
-- "-lqscintilla2",
-+ "-lqscintilla2_qt4",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
-@@ -701,7 +701,7 @@
- );
- OTHER_LDFLAGS = (
- "-headerpad_max_install_names",
-- "-lqscintilla2",
-+ "-lqscintilla2_qt4",
- "-L/opt/local/lib",
- );
- OTHER_REZFLAGS = "";
diff --git a/debian/patches/series b/debian/patches/series
index 3b81d2d..e69de29 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +0,0 @@
-disable_check_for_update.patch
-qsci_rename.patch
diff --git a/debian/universalindentgui.lintian-overrides b/debian/universalindentgui.lintian-overrides
deleted file mode 100644
index c9e325d..0000000
--- a/debian/universalindentgui.lintian-overrides
+++ /dev/null
@@ -1,4 +0,0 @@
-# intended behavior. We don't want to depends on ruby.
-ruby-script-but-no-ruby-dep usr/share/universalindentgui/indenters/example.rb
-ruby-script-but-no-ruby-dep usr/share/universalindentgui/indenters/rbeautify.rb
-ruby-script-but-no-ruby-dep usr/share/universalindentgui/indenters/ruby_formatter.rb
diff --git a/src/UniversalIndentGUI.vcproj b/src/UniversalIndentGUI.vcproj
deleted file mode 100755
index 2fabfe7..0000000
--- a/src/UniversalIndentGUI.vcproj
+++ /dev/null
@@ -1,549 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="8,00"
- Name="UniversalIndentGUI"
- ProjectGUID="{CF521500-824E-4DB7-A7FA-F4A8B6BB008A}"
- RootNamespace="UniversalIndentGUI"
- Keyword="Win32Proj"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- <ToolFile
- RelativePath="..\VS8QtRules.rules"
- />
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\tmp"
- ConfigurationType="1"
- CharacterSet="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- CommandLine=""
- />
- <Tool
- Name="MOC"
- />
- <Tool
- Name="QRC"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="UIC"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- AdditionalOptions="/D &quot;QT_LARGEFILE_SUPPORT&quot; /D &quot;QT_DLL&quot; /D &quot;QT_GUI_LIB&quot; /D &quot;QT_CORE_LIB&quot; /D &quot;QT_THREAD_SUPPORT&quot;"
- Optimization="0"
- AdditionalIncludeDirectories="&quot;$(OutDir)\tmp\uic\&quot;;&quot;$(QTDIR)\include\QtNetwork&quot;;&quot;$(QTDIR)\include\QtScript&quot;"
- PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;QT_NO_CAST_TO_ASCII"
- MinimalRebuild="true"
- BasicRuntimeChecks="3"
- RuntimeLibrary="3"
- TreatWChar_tAsBuiltInType="false"
- UsePrecompiledHeader="0"
- ObjectFile="$(IntDir)\obj\"
- WarningLevel="3"
- Detect64BitPortabilityProblems="false"
- DebugInformationFormat="4"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="qtmaind.lib QtGuid4.lib QtCored4.lib QtNetworkd4.lib QtScriptd4.lib qscintilla2.lib"
- LinkIncremental="2"
- IgnoreAllDefaultLibraries="false"
- IgnoreDefaultLibraryNames="LIBCRMTD.lib"
- GenerateDebugInformation="true"
- SubSystem="2"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- EmbedManifest="false"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCWebDeploymentTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="$(SolutionDir)$(ConfigurationName)"
- IntermediateDirectory="$(SolutionDir)$(ConfigurationName)\tmp"
- ConfigurationType="1"
- CharacterSet="1"
- WholeProgramOptimization="1"
- >
- <Tool
- Name="VCPreBuildEventTool"
- CommandLine=""
- />
- <Tool
- Name="MOC"
- />
- <Tool
- Name="QRC"
- />
- <Tool
- Name="VCCustomBuildTool"
- />
- <Tool
- Name="UIC"
- />
- <Tool
- Name="VCXMLDataGeneratorTool"
- />
- <Tool
- Name="VCWebServiceProxyGeneratorTool"
- />
- <Tool
- Name="VCMIDLTool"
- />
- <Tool
- Name="VCCLCompilerTool"
- AdditionalIncludeDirectories="&quot;$(OutDir)\tmp\uic\&quot;;&quot;$(QTDIR)\include\QtScript&quot;"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
- RuntimeLibrary="2"
- TreatWChar_tAsBuiltInType="false"
- UsePrecompiledHeader="0"
- ObjectFile="$(IntDir)\obj\"
- WarningLevel="3"
- Detect64BitPortabilityProblems="false"
- DebugInformationFormat="3"
- />
- <Tool
- Name="VCManagedResourceCompilerTool"
- />
- <Tool
- Name="VCResourceCompilerTool"
- />
- <Tool
- Name="VCPreLinkEventTool"
- />
- <Tool
- Name="VCLinkerTool"
- AdditionalDependencies="qtmain.lib QtGui4.lib QtCore4.lib QtNetwork4.lib QtScript4.lib qscintilla2.lib"
- LinkIncremental="1"
- GenerateDebugInformation="true"
- SubSystem="2"
- OptimizeReferences="2"
- EnableCOMDATFolding="2"
- TargetMachine="1"
- />
- <Tool
- Name="VCALinkTool"
- />
- <Tool
- Name="VCManifestTool"
- VerboseOutput="true"
- />
- <Tool
- Name="VCXDCMakeTool"
- />
- <Tool
- Name="VCBscMakeTool"
- />
- <Tool
- Name="VCFxCopTool"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- <Tool
- Name="VCWebDeploymentTool"
- />
- <Tool
- Name="VCPostBuildEventTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Source Files"
- Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
- UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
- >
- <File
- RelativePath=".\AboutDialog.cpp"
- >
- </File>
- <File
- RelativePath=".\AboutDialogGraphicsView.cpp"
- >
- </File>
- <File
- RelativePath=".\IndentHandler.cpp"
- >
- </File>
- <File
- RelativePath=".\main.cpp"
- >
- </File>
- <File
- RelativePath=".\MainWindow.cpp"
- >
- </File>
- <File
- RelativePath=".\SettingsPaths.cpp"
- >
- </File>
- <File
- RelativePath=".\TemplateBatchScript.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiErrorMessage.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiHighlighter.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiIndentServer.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiIniFileParser.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiLogger.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiSettings.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiSettingsDialog.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiSystemInfo.cpp"
- >
- </File>
- <File
- RelativePath=".\UiGuiVersion.cpp"
- >
- </File>
- <File
- RelativePath=".\UpdateCheckDialog.cpp"
- >
- </File>
- </Filter>
- <Filter
- Name="Header Files"
- Filter="h;hpp;hxx;hm;inl;inc;xsd"
- UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
- >
- <File
- RelativePath=".\AboutDialog.h"
- >
- </File>
- <File
- RelativePath=".\AboutDialogGraphicsView.h"
- >
- </File>
- <File
- RelativePath=".\IndentHandler.h"
- >
- </File>
- <File
- RelativePath=".\MainWindow.h"
- >
- </File>
- <File
- RelativePath=".\SettingsPaths.h"
- >
- </File>
- <File
- RelativePath=".\TemplateBatchScript.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiErrorMessage.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiHighlighter.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiIndentServer.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiIniFileParser.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiLogger.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiSettings.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiSettingsDialog.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiSystemInfo.h"
- >
- </File>
- <File
- RelativePath=".\UiGuiVersion.h"
- >
- </File>
- <File
- RelativePath=".\UpdateCheckDialog.h"
- >
- </File>
- </Filter>
- <Filter
- Name="Resource Files"
- Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
- UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
- >
- <File
- RelativePath="..\resources\Icons.qrc"
- >
- </File>
- <File
- RelativePath="..\resources\programicon.rc"
- >
- </File>
- </Filter>
- <Filter
- Name="Forms (UI)"
- >
- <File
- RelativePath=".\AboutDialog.ui"
- >
- </File>
- <File
- RelativePath=".\MainWindow.ui"
- >
- </File>
- <File
- RelativePath=".\ToolBarWidget.ui"
- >
- </File>
- <File
- RelativePath=".\UiGuiLoggerDialog.ui"
- >
- </File>
- <File
- RelativePath=".\UiGuiSettingsDialog.ui"
- >
- </File>
- <File
- RelativePath=".\UpdateCheckDialog.ui"
- >
- </File>
- </Filter>
- <Filter
- Name="Generated"
- >
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_AboutDialog.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_AboutDialogGraphicsView.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_IndentHandler.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_MainWindow.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_UiGuiErrorMessage.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_UiGuiHighlighter.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_UiGuiIndentServer.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_UiGuiLogger.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_UiGuiSettings.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_UiGuiSettingsDialog.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\moc\moc_UpdateCheckDialog.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\qrc\qrc_Icons.cpp"
- >
- </File>
- <File
- RelativePath="$(OutDir)\tmp\uic\ui_AboutDialog.h"
- >
- <FileConfiguration
- Name="Debug|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="$(OutDir)\tmp\uic\ui_MainWindow.h"
- >
- <FileConfiguration
- Name="Debug|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="$(OutDir)\tmp\uic\ui_ToolBarWidget.h"
- >
- <FileConfiguration
- Name="Debug|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="$(OutDir)\tmp\uic\ui_UiGuiSettingsDialog.h"
- >
- <FileConfiguration
- Name="Debug|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- </File>
- <File
- RelativePath="$(OutDir)\tmp\uic\ui_UpdateCheckDialog.h"
- >
- <FileConfiguration
- Name="Debug|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- ExcludedFromBuild="true"
- >
- <Tool
- Name="MOC"
- />
- </FileConfiguration>
- </File>
- </Filter>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
diff --git a/src/tclap/Makefile.in b/src/tclap/Makefile.in
deleted file mode 100755
index d4b451f..0000000
--- a/src/tclap/Makefile.in
+++ /dev/null
@@ -1,387 +0,0 @@
-# Makefile.in generated by automake 1.9.2 from Makefile.am.
-# @configure_input@
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-@SET_MAKE@
-
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-VPATH = @srcdir@
-pkgdatadir = $(datadir)/@PACKAGE@
-pkglibdir = $(libdir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ../..
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = @INSTALL@
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-subdir = include/tclap
-DIST_COMMON = $(libtclapinclude_HEADERS) $(srcdir)/Makefile.am \
- $(srcdir)/Makefile.in
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/config/ac_cxx_have_long_long.m4 \
- $(top_srcdir)/config/ac_cxx_have_sstream.m4 \
- $(top_srcdir)/config/ac_cxx_have_strstream.m4 \
- $(top_srcdir)/config/ac_cxx_namespaces.m4 \
- $(top_srcdir)/config/bb_enable_doxygen.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
-CONFIG_HEADER = $(top_builddir)/config/config.h
-CONFIG_CLEAN_FILES =
-SOURCES =
-DIST_SOURCES =
-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-am__vpath_adj = case $$p in \
- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
- *) f=$$p;; \
- esac;
-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-am__installdirs = "$(DESTDIR)$(libtclapincludedir)"
-libtclapincludeHEADERS_INSTALL = $(INSTALL_HEADER)
-HEADERS = $(libtclapinclude_HEADERS)
-ETAGS = etags
-CTAGS = ctags
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = @ACLOCAL@
-AMDEP_FALSE = @AMDEP_FALSE@
-AMDEP_TRUE = @AMDEP_TRUE@
-AMTAR = @AMTAR@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
-CPPFLAGS = @CPPFLAGS@
-CXX = @CXX@
-CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
-CYGPATH_W = @CYGPATH_W@
-DEFS = @DEFS@
-DEPDIR = @DEPDIR@
-DOC_FALSE = @DOC_FALSE@
-DOC_TRUE = @DOC_TRUE@
-DOT = @DOT@
-DOXYGEN = @DOXYGEN@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
-EGREP = @EGREP@
-EXEEXT = @EXEEXT@
-HAVE_GNU_COMPILERS_FALSE = @HAVE_GNU_COMPILERS_FALSE@
-HAVE_GNU_COMPILERS_TRUE = @HAVE_GNU_COMPILERS_TRUE@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LDFLAGS = @LDFLAGS@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
-LTLIBOBJS = @LTLIBOBJS@
-MAKEINFO = @MAKEINFO@
-OBJEXT = @OBJEXT@
-PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
-RANLIB = @RANLIB@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
-STRIP = @STRIP@
-VERSION = @VERSION@
-ac_ct_CXX = @ac_ct_CXX@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-am__tar = @am__tar@
-am__untar = @am__untar@
-bindir = @bindir@
-build_alias = @build_alias@
-datadir = @datadir@
-exec_prefix = @exec_prefix@
-host_alias = @host_alias@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localstatedir = @localstatedir@
-mandir = @mandir@
-mkdir_p = @mkdir_p@
-oldincludedir = @oldincludedir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@
-sbindir = @sbindir@
-sharedstatedir = @sharedstatedir@
-sysconfdir = @sysconfdir@
-target_alias = @target_alias@
-libtclapincludedir = $(includedir)/tclap
-libtclapinclude_HEADERS = \
- CmdLineInterface.h \
- ArgException.h \
- CmdLine.h \
- XorHandler.h \
- MultiArg.h \
- UnlabeledMultiArg.h \
- ValueArg.h \
- UnlabeledValueArg.h \
- Visitor.h Arg.h \
- HelpVisitor.h \
- SwitchArg.h \
- MultiSwitchArg.h \
- VersionVisitor.h \
- IgnoreRestVisitor.h \
- CmdLineOutput.h \
- StdOutput.h \
- DocBookOutput.h \
- ZshCompletionOutput.h \
- OptionalUnlabeledTracker.h \
- Constraint.h \
- ValuesConstraint.h \
- ArgTraits.h \
- StandardTraits.h
-
-all: all-am
-
-.SUFFIXES:
-$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/tclap/Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --gnu include/tclap/Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure: $(am__configure_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4): $(am__aclocal_m4_deps)
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-uninstall-info-am:
-install-libtclapincludeHEADERS: $(libtclapinclude_HEADERS)
- @$(NORMAL_INSTALL)
- test -z "$(libtclapincludedir)" || $(mkdir_p) "$(DESTDIR)$(libtclapincludedir)"
- @list='$(libtclapinclude_HEADERS)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- f=$(am__strip_dir) \
- echo " $(libtclapincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(libtclapincludedir)/$$f'"; \
- $(libtclapincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(libtclapincludedir)/$$f"; \
- done
-
-uninstall-libtclapincludeHEADERS:
- @$(NORMAL_UNINSTALL)
- @list='$(libtclapinclude_HEADERS)'; for p in $$list; do \
- f=$(am__strip_dir) \
- echo " rm -f '$(DESTDIR)$(libtclapincludedir)/$$f'"; \
- rm -f "$(DESTDIR)$(libtclapincludedir)/$$f"; \
- done
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
- test -n "$$unique" || unique=$$empty_fix; \
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
- $$tags $$unique; \
- fi
-ctags: CTAGS
-CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
- $$tags $$unique
-
-GTAGS:
- here=`$(am__cd) $(top_builddir) && pwd` \
- && cd $(top_srcdir) \
- && gtags -i $(GTAGS_ARGS) $$here
-
-distclean-tags:
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
-distdir: $(DISTFILES)
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
-check-am: all-am
-check: check-am
-all-am: Makefile $(HEADERS)
-installdirs:
- for dir in "$(DESTDIR)$(libtclapincludedir)"; do \
- test -z "$$dir" || $(mkdir_p) "$$dir"; \
- done
-install: install-am
-install-exec: install-exec-am
-install-data: install-data-am
-uninstall: uninstall-am
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-am
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
-clean: clean-am
-
-clean-am: clean-generic mostlyclean-am
-
-distclean: distclean-am
- -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-tags
-
-dvi: dvi-am
-
-dvi-am:
-
-html: html-am
-
-info: info-am
-
-info-am:
-
-install-data-am: install-libtclapincludeHEADERS
-
-install-exec-am:
-
-install-info: install-info-am
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-am
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-am
-
-mostlyclean-am: mostlyclean-generic
-
-pdf: pdf-am
-
-pdf-am:
-
-ps: ps-am
-
-ps-am:
-
-uninstall-am: uninstall-info-am uninstall-libtclapincludeHEADERS
-
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- ctags distclean distclean-generic distclean-tags distdir dvi \
- dvi-am html html-am info info-am install install-am \
- install-data install-data-am install-exec install-exec-am \
- install-info install-info-am install-libtclapincludeHEADERS \
- install-man install-strip installcheck installcheck-am \
- installdirs maintainer-clean maintainer-clean-generic \
- mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags \
- uninstall uninstall-am uninstall-info-am \
- uninstall-libtclapincludeHEADERS
-
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/translations/universalindent.ts b/translations/universalindent.ts
deleted file mode 100755
index f4abf36..0000000
--- a/translations/universalindent.ts
+++ /dev/null
@@ -1,1095 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0">
-<context>
- <name>AboutDialog</name>
- <message>
- <location filename="../src/AboutDialog.ui" line="26"/>
- <source>About UniversalIndentGUI</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="97"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;sans-serif&apos;; font-size:large;&quot;&gt;Version %1 rev.%2, %3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="126"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="173"/>
- <source> OK </source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>FindDialog</name>
- <message>
- <location filename="../src/FindDialog.ui" line="14"/>
- <source>Find</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="26"/>
- <source>Find what:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="46"/>
- <source>Find options</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="52"/>
- <source>Match case</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="59"/>
- <source>Match whole word</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="66"/>
- <source>Search forward</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="76"/>
- <source>Use Regular Expressions</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="104"/>
- <source>Find Next</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="111"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>IndentHandler</name>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>No indenter ini files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>There exists no indenter ini files in the directory &quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="540"/>
- <source>No indenter executable</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="541"/>
- <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="568"/>
- <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="572"/>
- <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="592"/>
- <location filename="../src/IndentHandler.cpp" line="611"/>
- <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="593"/>
- <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="599"/>
- <source>Error calling Indenter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="607"/>
- <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="608"/>
- <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="615"/>
- <source>Indenter returned error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="948"/>
- <source>Indenter ini file header error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="949"/>
- <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1406"/>
- <source>Interpreter needed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1407"/>
- <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>wine not installed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1497"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1498"/>
- <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1500"/>
- <source>Load Indenter Config File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1501"/>
- <source>Opens a file dialog to load the original config file of the indenter.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1502"/>
- <source>Alt+O</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1504"/>
- <source>Save Indenter Config File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1505"/>
- <source>Opens a dialog to save the current indenter configuration to a file.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1506"/>
- <source>Alt+S</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1508"/>
- <source>Create Indenter Call Shell Script</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1509"/>
- <location filename="../src/IndentHandler.cpp" line="1510"/>
- <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1512"/>
- <source>Reset indenter parameters</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1513"/>
- <location filename="../src/IndentHandler.cpp" line="1514"/>
- <source>Resets all indenter parameters to the default values.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1542"/>
- <source>Choose indenter config file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1558"/>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>All files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1561"/>
- <source>Save indent config file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>Shell Script</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1592"/>
- <source>Save shell script</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Really reset parameters?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Do you really want to reset the indenter parameters to the default values?</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>MainWindow</name>
- <message>
- <location filename="../src/MainWindow.cpp" line="284"/>
- <location filename="../src/MainWindow.cpp" line="1427"/>
- <source>Line %1, Column %2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Error opening file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Cannot read the file </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="439"/>
- <location filename="../src/MainWindow.cpp" line="479"/>
- <source>Supported by indenter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="440"/>
- <location filename="../src/MainWindow.cpp" line="480"/>
- <source>All files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="444"/>
- <source>Choose source code file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="483"/>
- <source>Save source code file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="859"/>
- <source>PDF Document</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="866"/>
- <location filename="../src/MainWindow.cpp" line="888"/>
- <source>Export source code file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="881"/>
- <source>HTML Document</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1019"/>
- <source>Modified code</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1020"/>
- <source>The source code has been modified.
-Do you want to save your changes?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1086"/>
- <location filename="../src/MainWindow.cpp" line="1222"/>
- <source>Reopen the currently opened source code file by using the text encoding scheme </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1094"/>
- <location filename="../src/MainWindow.cpp" line="1228"/>
- <source>Save the currently opened source code file by using the text encoding scheme </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1165"/>
- <location filename="../src/MainWindow.cpp" line="1236"/>
- <source>Set the syntax highlightning to </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>File no longer exists</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>The file %1 in the list of recently opened files does no longer exist.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>MainWindowUi</name>
- <message>
- <location filename="../src/MainWindow.ui" line="15"/>
- <source>UniversalIndentGUI</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="53"/>
- <source>Indenter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="58"/>
- <source>File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="62"/>
- <source>Export</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="69"/>
- <source>Recently Opened Files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="76"/>
- <source>Reopen File with other Encoding</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="81"/>
- <source>Save Source File As with other Encoding</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="97"/>
- <location filename="../src/MainWindow.ui" line="415"/>
- <location filename="../src/MainWindow.ui" line="418"/>
- <source>Settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="101"/>
- <source>Set Syntax Highlighter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="114"/>
- <source>Help</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="140"/>
- <source>Indenter Settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="171"/>
- <source>Main Toolbar</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="198"/>
- <source>Open Source File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="201"/>
- <source>Opens a dialog for selecting a source code file.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="204"/>
- <source>Ctrl+O</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="213"/>
- <source>Save Source File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="216"/>
- <source>Saves the currently shown source code to the last opened or saved source file.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="219"/>
- <source>Ctrl+S</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="228"/>
- <location filename="../src/MainWindow.ui" line="231"/>
- <location filename="../src/MainWindow.ui" line="234"/>
- <source>Save Source File As...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="237"/>
- <source>Opens a file dialog to save the currently shown source code.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="240"/>
- <source>Ctrl+Shift+S</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="249"/>
- <source>About UniversalIndentGUI</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="252"/>
- <source>Shows info about UniversalIndentGUI.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="261"/>
- <source>Exit</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="264"/>
- <source>Quits the UniversalIndentGUI.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="267"/>
- <source>Ctrl+Q</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="276"/>
- <source>PDF</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="279"/>
- <source>Export the currently visible source code as PDF document</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="288"/>
- <source>HTML</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="291"/>
- <source>Export the currently visible source code as HTML document</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="306"/>
- <source>Parameter Tooltips</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="309"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="312"/>
- <source>DONOTTRANSLATE:indenterParameterTooltipsEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="324"/>
- <source>Live Indent Preview</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="327"/>
- <source>Ctrl+L</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="345"/>
- <location filename="../src/MainWindow.ui" line="348"/>
- <source>Syntax Highlighting</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="351"/>
- <source>Enables or disables syntax highlighting for the source code.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="354"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="357"/>
- <source>Ctrl+H</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="360"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="368"/>
- <location filename="../src/MainWindow.ui" line="371"/>
- <source>White Space Visible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="374"/>
- <source>Set white space visible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="377"/>
- <source>Enables or disables diplaying of white space characters in the editor.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="383"/>
- <source>DONOTTRANSLATE:whiteSpaceIsVisible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="394"/>
- <source>Auto Open Last File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="397"/>
- <source>Auto open last source file on startup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="400"/>
- <source>If selected opens last source code file on startup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="406"/>
- <source>DONOTTRANSLATE:loadLastSourceCodeFileOnStartup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="421"/>
- <source>Opens the settings dialog</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="424"/>
- <source>Opens the settings dialog, to set language etc.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="433"/>
- <source>Check for update</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="436"/>
- <location filename="../src/MainWindow.ui" line="439"/>
- <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="448"/>
- <source>Clear Recently Opened List</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="457"/>
- <source>Show Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="460"/>
- <source>Displays logging information.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="463"/>
- <source>Displays logging info about the currently running UiGUI application.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>SettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
- <source>Settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="35"/>
- <source>Common</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="43"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="62"/>
- <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="46"/>
- <source>Application language</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="90"/>
- <source>If selected opens the source code file on startup that was opened last time.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="93"/>
- <source>Automatically open last file on startup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="106"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="109"/>
- <source>Enable Parameter Tooltips</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="140"/>
- <source>Sets how many files should be remembered in the list of recently opened files.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="127"/>
- <source>Number of files in recently opened list</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
- <source>Editor</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="201"/>
- <source>Enables or disables displaying of white space characters in the editor.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="204"/>
- <source>Display white space character (tabs, spaces, etc.)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="219"/>
- <source>Sets width in single spaces used for tabs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="222"/>
- <source>Defines how many spaces should be displayed in the editor for one tab.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="225"/>
- <source>Displayed width of tabs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
- <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="293"/>
- <source>Network</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="299"/>
- <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="302"/>
- <source>Check online for update on program start</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="321"/>
- <source>If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
- <source>Enable proxy</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="343"/>
- <source>Host name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="353"/>
- <source>Host name of the to be used proxy. E.g.: proxy.example.com</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="366"/>
- <source>Port:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="376"/>
- <source>Port number to connect to the before named proxy.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="398"/>
- <source>User name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="408"/>
- <source>If the proxy needs authentification, enter the login name here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="421"/>
- <source>Password:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="431"/>
- <source>If the proxy needs authentification, enter the password here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="458"/>
- <source>Syntax Highlighting</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="464"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="467"/>
- <source>Enable syntax highlighting</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="483"/>
- <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="486"/>
- <source>Highlighter settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="508"/>
- <source>Set the font for the current selected highlighter property.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="511"/>
- <source>Set Font</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="518"/>
- <source>Set the color for the current selected highlighter property.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="521"/>
- <source>Set Color</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>TSLoggerDialog</name>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="14"/>
- <source>Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="24"/>
- <source>Logged messages</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="40"/>
- <source>Clear log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="43"/>
- <source>...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="54"/>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="57"/>
- <source>Open folder containing log file.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ToolBarWidget</name>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="14"/>
- <source>Form</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="26"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="29"/>
- <source>Open Source File </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="40"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="43"/>
- <source>Live Indent Preview</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="50"/>
- <source>Ctrl+L</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="57"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="60"/>
- <source>Syntax Highlight</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="67"/>
- <source>Ctrl+H</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="73"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="93"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="96"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="107"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="110"/>
- <source>Exit</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>UiGuiErrorMessage</name>
- <message>
- <location filename="../src/UiGuiErrorMessage.cpp" line="42"/>
- <source>Show this message again</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>UiGuiIndentServer</name>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>UiGUI Server</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>Unable to start the server: %1.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>UiGuiSettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="68"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="141"/>
- <source>English</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="71"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="144"/>
- <source>French</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="74"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="147"/>
- <source>German</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="77"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="150"/>
- <source>Chinese (Taiwan)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="80"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="153"/>
- <source>Japanese</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="83"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="156"/>
- <source>Russian</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="86"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="159"/>
- <source>Ukrainian</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="90"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="162"/>
- <source>Unknown language mnemonic </source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>UpdateCheckDialog</name>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="17"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="204"/>
- <source>Checking for update...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="23"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="205"/>
- <source>Checking whether a newer version is available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>Update check error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <source>There was an error while trying to check for an update! The retrieved file did not contain expected content.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>There was an error while trying to check for an update! Error was : %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="216"/>
- <source>Update available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="217"/>
- <source>A newer version of UniversalIndentGUI is available.
-Your version is %1. New version is %2.
-Do you want to go to the download website?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="228"/>
- <source>No new update available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="229"/>
- <source>You already have the latest version of UniversalIndentGUI.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-</TS>
diff --git a/translations/universalindent_de.ts b/translations/universalindent_de.ts
deleted file mode 100755
index 24e1fe9..0000000
--- a/translations/universalindent_de.ts
+++ /dev/null
@@ -1,1131 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="de_DE">
-<context>
- <name>AboutDialog</name>
- <message>
- <location filename="../src/AboutDialog.ui" line="26"/>
- <source>About UniversalIndentGUI</source>
- <translation>Über UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="97"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;sans-serif&apos;; font-size:large;&quot;&gt;Version %1 rev.%2, %3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="126"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;... ist eine Betriebssystem unabhängige, grafische Benutzeroberfläche für nahezu beliebige Quellcode Formatierer wie GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP und weitere. Hauptmerkmal ist eine Vorschau, welche es ermöglicht direkt zu sehen, welche Auswirkungen eine Änderung der Einstellungen des Quellcode Formatierers auf den Code haben.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;&lt;br /&gt;Entwickelt von : &lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;Projekt Homepage : &lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;Lizenz: UniversalIndentGui wird unter der Lizenz GPL 2 veröffentlicht. Details können in der Datei LICENSE.GPL oder auf &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;nachgelesen werden.&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;MS Shell Dlg 2&apos;;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;Credits:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="173"/>
- <source> OK </source>
- <translation> OK </translation>
- </message>
-</context>
-<context>
- <name>FindDialog</name>
- <message>
- <location filename="../src/FindDialog.ui" line="14"/>
- <source>Find</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="26"/>
- <source>Find what:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="46"/>
- <source>Find options</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="52"/>
- <source>Match case</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="59"/>
- <source>Match whole word</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="66"/>
- <source>Search forward</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="76"/>
- <source>Use Regular Expressions</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="104"/>
- <source>Find Next</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="111"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>IndentHandler</name>
- <message>
- <location filename="../src/IndentHandler.cpp" line="540"/>
- <source>No indenter executable</source>
- <translation>Keine ausführbare Formatierer Datei</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="599"/>
- <source>Error calling Indenter</source>
- <translation>Fehler beim Aufruf des Formatierers</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="615"/>
- <source>Indenter returned error</source>
- <translation>Fehler beim Ausführen des Formatierers</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>wine not installed</source>
- <translation>wine nicht installiert</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
- <translation>Es existiert nur eine Win32 Version des Formatierers, für dessen Ausführung wine benötigt wird. Wine scheint nicht installiert zu sein. Bitte installieren Sie es.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="568"/>
- <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Zurückgegebene Fehlermeldung:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="572"/>
- <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Grund könnte sein:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="607"/>
- <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Zurückgegebener Exit Code ist:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="608"/>
- <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Ausgabe des Formatierers war:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="592"/>
- <location filename="../src/IndentHandler.cpp" line="611"/>
- <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
- <translation>&lt;br&gt;&lt;b&gt;Der Aufruf lautete:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>No indenter ini files</source>
- <translation>Keine Indenter ini-Dateien</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>There exists no indenter ini files in the directory &quot;</source>
- <translation>Es wurden keine ini-Dateien für Indenter gefunden. Suchpfad war &quot;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="541"/>
- <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
- <translation>Es wurde kein ausführbarer Formatierer mit dem Namen &quot;%1&quot; in dem Verzeichnis &quot;%2&quot; oder global über die Pathvariable gefunden.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="593"/>
- <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
- <translation>&lt;br&gt;&lt;br&gt;&lt;b&gt;Ausgabe des Formatierers:&lt;/b&gt;&lt;pre&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="948"/>
- <source>Indenter ini file header error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="949"/>
- <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1406"/>
- <source>Interpreter needed</source>
- <translation>Interpreter benötigt</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1407"/>
- <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
- <translation>Um den gewählten Formatierer benutzen zu können, muss das Programm &quot;%1&quot; global aufrufbar sein. Sie sollten den Pfad des Programms der Pathvariablen hinzufügen.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1497"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Zeigt den aktuell gewählten und alle verfügbaren Formatierer an.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1498"/>
- <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
- <translation>Öffnet die Webseite mit dem Benutzerhandbuch des gewählten Formatierers, wo Sie weitere Informationen zu den möglichen Parametern erhalten.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1509"/>
- <location filename="../src/IndentHandler.cpp" line="1510"/>
- <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
- <translation>Erzeugt ein Shell Skript mit dem sich der momentan gewählte Formatierer mit den momentanen Einstellungen zum Formatieren einer Datei aufrufen lässt.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1542"/>
- <source>Choose indenter config file</source>
- <translation>Formatierer Konfigurationsdatei wählen</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1558"/>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>All files</source>
- <translation>Alle Dateien</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1561"/>
- <source>Save indent config file</source>
- <translation>Formatierer Konfiguration speichern</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>Shell Script</source>
- <translation>Shell Skript</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1592"/>
- <source>Save shell script</source>
- <translation>Shell Skript speichern</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1500"/>
- <source>Load Indenter Config File</source>
- <translation>Formatierer Konfiguration laden</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1501"/>
- <source>Opens a file dialog to load the original config file of the indenter.</source>
- <translation>Öffnet ein Dialogfenster zum Laden einer Konfigurationsdatei des momentan gewählten Formatierers.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1502"/>
- <source>Alt+O</source>
- <translation>Alt+O</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1504"/>
- <source>Save Indenter Config File</source>
- <translation>Formatierer Konfiguration speichern</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1505"/>
- <source>Opens a dialog to save the current indenter configuration to a file.</source>
- <translation>Öffnet ein Dialogfenster zum Speichern der Konfigurationsdatei des momentan gewählten Formatierers.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1506"/>
- <source>Alt+S</source>
- <translation>Alt+S</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1508"/>
- <source>Create Indenter Call Shell Script</source>
- <translation>Formatierer Shell Skript erzeugen</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1512"/>
- <source>Reset indenter parameters</source>
- <translation>Parameter des Formatierers zurücksetzen</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1513"/>
- <location filename="../src/IndentHandler.cpp" line="1514"/>
- <source>Resets all indenter parameters to the default values.</source>
- <translation>Alle Parameter des Formatierers auf Standardwerte zurücksetzen.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Really reset parameters?</source>
- <translation>Wirklich alle Parameter zurücksetzen?</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Do you really want to reset the indenter parameters to the default values?</source>
- <translation>Wollen Sie wirklich alle Parameter des Formatierers auf die Standardwerte zurücksetzen?</translation>
- </message>
-</context>
-<context>
- <name>MainWindow</name>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Error opening file</source>
- <translation>Fehler beim Dateiöffnen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Cannot read the file </source>
- <translation> Kann folgende Datei nicht lesen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="444"/>
- <source>Choose source code file</source>
- <translation>Quellcodedatei wählen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="483"/>
- <source>Save source code file</source>
- <translation>Quellcodedatei speichern</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="866"/>
- <location filename="../src/MainWindow.cpp" line="888"/>
- <source>Export source code file</source>
- <translation>Quellcode exportieren</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1020"/>
- <source>The source code has been modified.
-Do you want to save your changes?</source>
- <translation>Die Quellcodedatei wurde geändert.
-Möchten Sie die Änderungen speichern?</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="439"/>
- <location filename="../src/MainWindow.cpp" line="479"/>
- <source>Supported by indenter</source>
- <translation>Von Formatierer unterstützt</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="440"/>
- <location filename="../src/MainWindow.cpp" line="480"/>
- <source>All files</source>
- <translation>Alle Dateien</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="859"/>
- <source>PDF Document</source>
- <translation>PDF Dokument</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="881"/>
- <source>HTML Document</source>
- <translation>HTML Dokument</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1019"/>
- <source>Modified code</source>
- <translation>Geänderter Quellcode</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1086"/>
- <location filename="../src/MainWindow.cpp" line="1222"/>
- <source>Reopen the currently opened source code file by using the text encoding scheme </source>
- <translation>Die momentan geöffnete Quellcodedatei erneut öffnen, unter Verwendung der Textkodierung </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1165"/>
- <location filename="../src/MainWindow.cpp" line="1236"/>
- <source>Set the syntax highlightning to </source>
- <translation>Setzte Syntax-Hervorhebung für </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>File no longer exists</source>
- <translation>Datei existiert nicht mehr</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>The file %1 in the list of recently opened files does no longer exist.</source>
- <translation>Die Datei %1 in der Liste der zuletzt geöffneten Dateien existiert nicht mehr.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1094"/>
- <location filename="../src/MainWindow.cpp" line="1228"/>
- <source>Save the currently opened source code file by using the text encoding scheme </source>
- <translation>Die momentan geöffnete Quellcodedatei speichern, unter Verwendung der Textkodierung </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="284"/>
- <location filename="../src/MainWindow.cpp" line="1427"/>
- <source>Line %1, Column %2</source>
- <translation>Zeile %1, Spalte %2</translation>
- </message>
-</context>
-<context>
- <name>MainWindowUi</name>
- <message>
- <location filename="../src/MainWindow.ui" line="15"/>
- <source>UniversalIndentGUI</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="53"/>
- <source>Indenter</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="58"/>
- <source>File</source>
- <translation>Datei</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="62"/>
- <source>Export</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="69"/>
- <source>Recently Opened Files</source>
- <translation>Zuletzt geöffnete Dateien</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="76"/>
- <source>Reopen File with other Encoding</source>
- <translation>Datei mit anderer Kodierung erneut öffnen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="81"/>
- <source>Save Source File As with other Encoding</source>
- <translation>Quellcodedatei mit anderer Kodierung speichern</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="97"/>
- <location filename="../src/MainWindow.ui" line="415"/>
- <location filename="../src/MainWindow.ui" line="418"/>
- <source>Settings</source>
- <translation>Einstellungen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="101"/>
- <source>Set Syntax Highlighter</source>
- <translation>Setze Syntax Highlighter</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="114"/>
- <source>Help</source>
- <translation>Hilfe</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="171"/>
- <source>Main Toolbar</source>
- <translation>Hauptmenüleiste</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="198"/>
- <source>Open Source File</source>
- <translation>Quellcodedatei öffnen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="201"/>
- <source>Opens a dialog for selecting a source code file.</source>
- <translation>Öffnet ein Dialogfenster zur Auswahl der Quellcodedatei.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="204"/>
- <source>Ctrl+O</source>
- <translation>Ctrl+O</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="213"/>
- <source>Save Source File</source>
- <translation>Speichern des Quellcodes</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="216"/>
- <source>Saves the currently shown source code to the last opened or saved source file.</source>
- <translation>Speichert den momentan sichtbaren Quellcode unter dem zuletzt gewählten Dateinamen.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="219"/>
- <source>Ctrl+S</source>
- <translation>Ctrl+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="237"/>
- <source>Opens a file dialog to save the currently shown source code.</source>
- <translation>Öffnet ein Dialogfenster zur Auswahl des Dateinamens unter dem der momentan sichtbare Quellcode gespeichert werden soll.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="249"/>
- <source>About UniversalIndentGUI</source>
- <translation>Über UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="252"/>
- <source>Shows info about UniversalIndentGUI.</source>
- <translation>Zeigt Informationen über UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="261"/>
- <source>Exit</source>
- <translation>Beenden</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="264"/>
- <source>Quits the UniversalIndentGUI.</source>
- <translation>Beendet UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="267"/>
- <source>Ctrl+Q</source>
- <translation>Ctrl+Q</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="276"/>
- <source>PDF</source>
- <translation>PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="279"/>
- <source>Export the currently visible source code as PDF document</source>
- <translation>Exportiert den momentan sichtbaren Quellcode als PDF Dokument</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="288"/>
- <source>HTML</source>
- <translation>HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="291"/>
- <source>Export the currently visible source code as HTML document</source>
- <translation>Exportiert den momentan sichtbaren Quellcode als HTML Dokument</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="306"/>
- <source>Parameter Tooltips</source>
- <translation>Parameter Tooltips</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="309"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Zeigt Tooltips zu den Formatierer Einstellungen an, wenn aktiviert.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="312"/>
- <source>DONOTTRANSLATE:indenterParameterTooltipsEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="324"/>
- <source>Live Indent Preview</source>
- <translation>Echtzeit Formatieransicht</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="327"/>
- <source>Ctrl+L</source>
- <translation>Strg+L</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="345"/>
- <location filename="../src/MainWindow.ui" line="348"/>
- <source>Syntax Highlighting</source>
- <translation>Syntax Hervorhebung</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="351"/>
- <source>Enables or disables syntax highlighting for the source code.</source>
- <translation>Aktiviert oder deaktiviert die Syntaxhervorhebung des Quellcodes.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="354"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>Aktiviert oder deaktiviert die Syntaxhervorhebung des Quellcodes.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="360"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="368"/>
- <location filename="../src/MainWindow.ui" line="371"/>
- <source>White Space Visible</source>
- <translation>Leerzeichen sichtbar</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="374"/>
- <source>Set white space visible</source>
- <translation>Stelle Leerzeichen dar</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="377"/>
- <source>Enables or disables diplaying of white space characters in the editor.</source>
- <translation>Aktiviert oder deaktiviert die Darstellung von Leerzeichen im Editor.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="383"/>
- <source>DONOTTRANSLATE:whiteSpaceIsVisible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="394"/>
- <source>Auto Open Last File</source>
- <translation>Letzte Datei automatisch öffnen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="397"/>
- <source>Auto open last source file on startup</source>
- <translation>Bei Porgrammstart letzte Datei automatisch öffnen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="400"/>
- <source>If selected opens last source code file on startup</source>
- <translation>Wenn aktiviert, dann wird die zuletzt geöffnete Datei bei Progrannstart automatisch geladen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="406"/>
- <source>DONOTTRANSLATE:loadLastSourceCodeFileOnStartup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="421"/>
- <source>Opens the settings dialog</source>
- <translation>Öffnet das Einstellungsmenü</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="424"/>
- <source>Opens the settings dialog, to set language etc.</source>
- <translation>Öffnet das Einstellungsmenü, für Sprache usw.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="433"/>
- <source>Check for update</source>
- <translation>Auf Update prüfen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="436"/>
- <location filename="../src/MainWindow.ui" line="439"/>
- <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
- <translation>Prüft ob eine neue Version von UniversalIndentGUI zum Download verfügbar ist.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="448"/>
- <source>Clear Recently Opened List</source>
- <translation>Liste zuletzt geöffneter Dateien leeren</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="457"/>
- <source>Show Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="460"/>
- <source>Displays logging information.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="463"/>
- <source>Displays logging info about the currently running UiGUI application.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="140"/>
- <source>Indenter Settings</source>
- <translation>Indenter Einstellungen</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="228"/>
- <location filename="../src/MainWindow.ui" line="231"/>
- <location filename="../src/MainWindow.ui" line="234"/>
- <source>Save Source File As...</source>
- <translation>Speichern unter...</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="240"/>
- <source>Ctrl+Shift+S</source>
- <translation>Strg+Shift+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="357"/>
- <source>Ctrl+H</source>
- <translation>Strg+H</translation>
- </message>
-</context>
-<context>
- <name>SettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="35"/>
- <source>Common</source>
- <translation>Allgemein</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
- <source>Settings</source>
- <translation>Einstellungen</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="93"/>
- <source>Automatically open last file on startup</source>
- <translation>Letzte Datei automatisch öffnen</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="109"/>
- <source>Enable Parameter Tooltips</source>
- <translation>Parameter Tooltips aktivieren</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
- <source>Editor</source>
- <translation>Editor</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="486"/>
- <source>Highlighter settings</source>
- <translation>Syntaxhervorhebung</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="511"/>
- <source>Set Font</source>
- <translation>Schriftart</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="521"/>
- <source>Set Color</source>
- <translation>Farbe</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="43"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="62"/>
- <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
- <translation>Zeigt alle für UniversalIndentGui zum Auswählen verfügbaren Übersetzungen an.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="46"/>
- <source>Application language</source>
- <translation>Programmsprache</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="90"/>
- <source>If selected opens the source code file on startup that was opened last time.</source>
- <translation>Wenn aktiviert, dann wird die zuletzt geöffnete Datei bei Progrannstart automatisch geladen.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="106"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Zeigt Tooltips zu den Formatierer Einstellungen an, wenn aktiviert.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="140"/>
- <source>Sets how many files should be remembered in the list of recently opened files.</source>
- <translation>Legt fest wieviele Einträge in der Liste der zuletzt geöffneten Dateien möglich sein sollen.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="201"/>
- <source>Enables or disables displaying of white space characters in the editor.</source>
- <translation>Aktiviert oder deaktiviert die Darstellung von Leerzeichen, Tbs usw. im Editor.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="204"/>
- <source>Display white space character (tabs, spaces, etc.)</source>
- <translation>Leerzeichen, Tabs usw. darstellen</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
- <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
- <translation>Legt fest wie viele Zeichen breit ein Tabulator dargestellt werden soll.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="219"/>
- <source>Sets width in single spaces used for tabs</source>
- <translation>Legt die Breite eines Tabs fest</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="222"/>
- <source>Defines how many spaces should be displayed in the editor for one tab.</source>
- <translation>Legt fest wie viele Zeichen breit ein Tabulator dargestellt werden soll.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="225"/>
- <source>Displayed width of tabs</source>
- <translation>Breite eines Tabs</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="293"/>
- <source>Network</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="321"/>
- <source>If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
- <source>Enable proxy</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="343"/>
- <source>Host name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="353"/>
- <source>Host name of the to be used proxy. E.g.: proxy.example.com</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="366"/>
- <source>Port:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="376"/>
- <source>Port number to connect to the before named proxy.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="398"/>
- <source>User name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="408"/>
- <source>If the proxy needs authentification, enter the login name here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="421"/>
- <source>Password:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="431"/>
- <source>If the proxy needs authentification, enter the password here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="458"/>
- <source>Syntax Highlighting</source>
- <translation>Syntax Hervorhebung</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="464"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>Aktiviert oder deaktiviert die Syntaxhervorhebung des Quellcodes.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="467"/>
- <source>Enable syntax highlighting</source>
- <translation>Syntaxhervorhebung aktivieren</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="483"/>
- <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
- <translation>Einstellungen für die verschiedenen Syntaxhervorhebungen, wie Schriftart und Farbe.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="508"/>
- <source>Set the font for the current selected highlighter property.</source>
- <translation>Schriftart für die gewählte Syntaxeigenschaft festlegen.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="518"/>
- <source>Set the color for the current selected highlighter property.</source>
- <translation>Farbe für die gewählte Syntaxeigenschaft festlegen.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="127"/>
- <source>Number of files in recently opened list</source>
- <translation>Anzahl der Einträge in zuletzt geöffnet Liste</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="299"/>
- <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
- <translation>Prüft bei Programmstart ob eine neue Version von UniversalIndentGUI zum Download verfügbar ist, prüft aber nur einmal täglich.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="302"/>
- <source>Check online for update on program start</source>
- <translation>Auf Update bei Programmstart prüfen</translation>
- </message>
-</context>
-<context>
- <name>TSLoggerDialog</name>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="14"/>
- <source>Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="24"/>
- <source>Logged messages</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="40"/>
- <source>Clear log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="43"/>
- <source>...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="54"/>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="57"/>
- <source>Open folder containing log file.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ToolBarWidget</name>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="14"/>
- <source>Form</source>
- <translation>Form</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="26"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Öffnet ein Dialogfenster zur Auswahl der Quellcodedatei.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Anhand dieser Datei werden die Auswirkungen des Formatierers dargestellt.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="29"/>
- <source>Open Source File </source>
- <translation>Quellcodedatei öffnen</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="40"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Schaltet die Voransicht für die Auswirkungen des Formatierers ein und aus.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Bedeutet es wird zwischen formatiertem und unformatiertem Code gewechselt. (Strg+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="43"/>
- <source>Live Indent Preview</source>
- <translation>Echtzeit Formatieransicht</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="50"/>
- <source>Ctrl+L</source>
- <translation>Strg+L</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="57"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Schaltet die Syntaxhervorhebung für den Quellcode ein und aus.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;(Benötigt noch Performanz Verbesserungen.) (Strg+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="60"/>
- <source>Syntax Highlight</source>
- <translation>Syntax Hervorhebung</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="67"/>
- <source>Ctrl+H</source>
- <translation>Strg-H</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="73"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="93"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Zeigt Informationen über UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="96"/>
- <source>About</source>
- <translation>Info</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="107"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Beendet UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="110"/>
- <source>Exit</source>
- <translation>Beenden</translation>
- </message>
-</context>
-<context>
- <name>UiGuiErrorMessage</name>
- <message>
- <location filename="../src/UiGuiErrorMessage.cpp" line="42"/>
- <source>Show this message again</source>
- <translation>Meldung immer wieder anzeigen</translation>
- </message>
-</context>
-<context>
- <name>UiGuiIndentServer</name>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>UiGUI Server</source>
- <translation>UiGUI Server</translation>
- </message>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>Unable to start the server: %1.</source>
- <translation>Konnte Server nicht starten: %1.</translation>
- </message>
-</context>
-<context>
- <name>UiGuiSettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="68"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="141"/>
- <source>English</source>
- <translation>Englisch</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="74"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="147"/>
- <source>German</source>
- <translation>Deutsch</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="80"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="153"/>
- <source>Japanese</source>
- <translation>Japanisch</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="90"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="162"/>
- <source>Unknown language mnemonic </source>
- <translation>Unbekanntes Sprachkürzel </translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="77"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="150"/>
- <source>Chinese (Taiwan)</source>
- <translation>Chinesisch (Taiwan)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="71"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="144"/>
- <source>French</source>
- <translation>Französisch</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="83"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="156"/>
- <source>Russian</source>
- <translation>Russisch</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="86"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="159"/>
- <source>Ukrainian</source>
- <translation>Ukrainisch</translation>
- </message>
-</context>
-<context>
- <name>UpdateCheckDialog</name>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="17"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="204"/>
- <source>Checking for update...</source>
- <translation>Prüfe auf Update...</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="23"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="205"/>
- <source>Checking whether a newer version is available</source>
- <translation>Prüfe ob eine neuere Version verfügbar ist</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>Update check error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <source>There was an error while trying to check for an update! The retrieved file did not contain expected content.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>There was an error while trying to check for an update! Error was : %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="216"/>
- <source>Update available</source>
- <translation>Update verfügbar</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="217"/>
- <source>A newer version of UniversalIndentGUI is available.
-Your version is %1. New version is %2.
-Do you want to go to the download website?</source>
- <translation>Eine neuere Version von UniversalIndentGUI ist verfügbar.
-Ihre Version ist %1. Die neue Version ist %2.
-Wollen Sie zur Download Website geleitet werden?</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="228"/>
- <source>No new update available</source>
- <translation>Kein Update verfügbar</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="229"/>
- <source>You already have the latest version of UniversalIndentGUI.</source>
- <translation>Sie haben bereits die aktuellste Version von UniversalIndentGUI.</translation>
- </message>
-</context>
-</TS>
diff --git a/translations/universalindent_fr.ts b/translations/universalindent_fr.ts
deleted file mode 100755
index 9285367..0000000
--- a/translations/universalindent_fr.ts
+++ /dev/null
@@ -1,1119 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="fr_FR">
-<context>
- <name>AboutDialog</name>
- <message>
- <location filename="../src/AboutDialog.ui" line="26"/>
- <source>About UniversalIndentGUI</source>
- <translation>À propos d&apos;UniversalIdentGUI</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="97"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;sans-serif&apos;; font-size:large;&quot;&gt;Version %1 rev.%2, %3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="126"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;p, li { white-space: pre-wrap; }&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;p, li { white-space: pre-wrap; }&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;… est une surcouche graphique multiplateforme pour de nombreux outils de formatage, embellisseurs et indenteurs de code tels GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP, etc. La fonctionnalité principale en est une vue « temps réel » qui permet de juger immédiatement de l&apos;impact du choix d&apos;une option de formatage sur le code source.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;br /&gt;Créé par : &lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Site du projet : &lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;License : UniversalIndentGui est diffusé sous licence GPL 2. Pour plus de détails, lire le fichier inclus LICENSE.GPL et visiter &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Crédits :&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="173"/>
- <source> OK </source>
- <translation>OK</translation>
- </message>
-</context>
-<context>
- <name>FindDialog</name>
- <message>
- <location filename="../src/FindDialog.ui" line="14"/>
- <source>Find</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="26"/>
- <source>Find what:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="46"/>
- <source>Find options</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="52"/>
- <source>Match case</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="59"/>
- <source>Match whole word</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="66"/>
- <source>Search forward</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="76"/>
- <source>Use Regular Expressions</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="104"/>
- <source>Find Next</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="111"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>IndentHandler</name>
- <message>
- <location filename="../src/IndentHandler.cpp" line="540"/>
- <source>No indenter executable</source>
- <translation>Pas de fichier exécutable d&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>wine not installed</source>
- <translation>Wine n&apos;est pas installé</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
- <translation>Il n&apos;existe qu&apos;une version win32 du fichier exécutable de l&apos;indenteur et Wine ne semble pas installé. Prière d&apos;installer Wine pour être en mesure de lancer le logiciel.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="568"/>
- <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Message d&apos;erreur retourné :&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="572"/>
- <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
- <translation>&lt;b&gt;La raison peut en être :&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="599"/>
- <source>Error calling Indenter</source>
- <translation>Erreur lors de l&apos;appel de l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="607"/>
- <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
- <translation>&lt;b&gt;L&apos;indenteur a renvoyé le code de retour suivant :&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="608"/>
- <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
- <translation>&lt;b&gt;La sortie console est :&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="615"/>
- <source>Indenter returned error</source>
- <translation>L&apos;indenteur a retourné l&apos;erreur suivante</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>No indenter ini files</source>
- <translation>Pas de fichier ini pour l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>There exists no indenter ini files in the directory &quot;</source>
- <translation>Il n&apos;y a aucun fichier ini d&apos;indenteur dans le répertoire &quot;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="541"/>
- <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
- <translation>Il n&apos;y a aucun fichier exécutable d&apos;indenteur de nom « %1 » dans le répertoire « %2 » ou dans l&apos;environnement global.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="592"/>
- <location filename="../src/IndentHandler.cpp" line="611"/>
- <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
- <translation>&lt;br&gt;&lt;b&gt;La valeur passée était :&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="593"/>
- <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
- <translation>&lt;br&gt;&lt;br&gt;&lt;b&gt;La sortie de l&apos;indenteur était :&lt;/b&gt;&lt;pre&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="948"/>
- <source>Indenter ini file header error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="949"/>
- <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1406"/>
- <source>Interpreter needed</source>
- <translation>Interpréteur nécessaire</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1407"/>
- <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
- <translation>Pour utiliser l&apos;indenteur chois, le programme « %1 » doit être disponible dans l&apos;environnement global. Vous devriez l&apos;ajouter dans votre PATH.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1497"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Montre le nom de l&apos;indenteur actuellement sélectionné et vous propose les autres indenteurs disponibles&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1498"/>
- <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
- <translation>Vous conduit au manuel en ligne de l&apos;indenteur actuellement sélectionné, où vous pouvez obtenir plus d&apos;aide sur les paramètres possibles.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1500"/>
- <source>Load Indenter Config File</source>
- <translation>Charger un fichier de configuration d&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1501"/>
- <source>Opens a file dialog to load the original config file of the indenter.</source>
- <translation>Ouvrir une boite de dialogue d&apos;ouverture de fichier pour charger le fichier de configuration d&apos;origine de l&apos;indenteur.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1502"/>
- <source>Alt+O</source>
- <translation>Alt+O</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1504"/>
- <source>Save Indenter Config File</source>
- <translation>Enregistrer le fichier de configuration de l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1505"/>
- <source>Opens a dialog to save the current indenter configuration to a file.</source>
- <translation>Ouvrir une boite de dialogue d&apos;enregistrement de fichier pour enregistrer le fichier de configuration de l&apos;indenteur.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1506"/>
- <source>Alt+S</source>
- <translation>Alt+S</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1508"/>
- <source>Create Indenter Call Shell Script</source>
- <translation>Créer un script shell d&apos;appel de l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1509"/>
- <location filename="../src/IndentHandler.cpp" line="1510"/>
- <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
- <translation>Créé un script shell qui appelle l&apos;indenteur actuellement sélectionné pour l&apos;appliquer à un fichier passé en paramètre avec les réglages actuels.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1512"/>
- <source>Reset indenter parameters</source>
- <translation>Réinitialiser les paramètres de l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1513"/>
- <location filename="../src/IndentHandler.cpp" line="1514"/>
- <source>Resets all indenter parameters to the default values.</source>
- <translation>Réinitialiser tous les paramètres de l&apos;indenteur à leur valeur par défaut.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1542"/>
- <source>Choose indenter config file</source>
- <translation>Sélectionner le fichier de configuration de l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1558"/>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>All files</source>
- <translation>Tous les fichiers</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1561"/>
- <source>Save indent config file</source>
- <translation>Enregistrer le fichier de configuration de l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>Shell Script</source>
- <translation>Script shell</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1592"/>
- <source>Save shell script</source>
- <translation>Sauvegarder le script shell</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Really reset parameters?</source>
- <translation>Êtes-vous sûr de vouloir réinitialiser les paramètres de l&apos;indenteur ?</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Do you really want to reset the indenter parameters to the default values?</source>
- <translation>Êtes-vous sûr de vouloir réinitialiser tous les paramètres de l&apos;indenteur à leur valeur par défaut ?</translation>
- </message>
-</context>
-<context>
- <name>MainWindow</name>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Error opening file</source>
- <translation>Erreur à l&apos;ouverture du fichier</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Cannot read the file </source>
- <translation>Lecture du fichier impossible </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="439"/>
- <location filename="../src/MainWindow.cpp" line="479"/>
- <source>Supported by indenter</source>
- <translation>Supporté par l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="440"/>
- <location filename="../src/MainWindow.cpp" line="480"/>
- <source>All files</source>
- <translation>Tous les fichiers</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="444"/>
- <source>Choose source code file</source>
- <translation>Sélectionner le fichier de code source</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="483"/>
- <source>Save source code file</source>
- <translation>Enregistrer le fichier de code source</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="859"/>
- <source>PDF Document</source>
- <translation>Document PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="866"/>
- <location filename="../src/MainWindow.cpp" line="888"/>
- <source>Export source code file</source>
- <translation>Exporter le fichier de code source</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="881"/>
- <source>HTML Document</source>
- <translation>Document HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1019"/>
- <source>Modified code</source>
- <translation>Code modifié</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1020"/>
- <source>The source code has been modified.
-Do you want to save your changes?</source>
- <translation>Le code source a été modifié.
-Souhaitez-vous enregistrer vos modifications ?</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1086"/>
- <location filename="../src/MainWindow.cpp" line="1222"/>
- <source>Reopen the currently opened source code file by using the text encoding scheme </source>
- <translation>Réouvrir le fichier de code source en utilisant le schéma d&apos;encodage du texte </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="284"/>
- <location filename="../src/MainWindow.cpp" line="1427"/>
- <source>Line %1, Column %2</source>
- <translation>Ligne %1, Colonne %2</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1094"/>
- <location filename="../src/MainWindow.cpp" line="1228"/>
- <source>Save the currently opened source code file by using the text encoding scheme </source>
- <translation>Enregistrer le code source en cours d&apos;édition en utilisant le schéma d&apos;encodage du texte </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1165"/>
- <location filename="../src/MainWindow.cpp" line="1236"/>
- <source>Set the syntax highlightning to </source>
- <translation>Régler la coloration syntaxique sur </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>File no longer exists</source>
- <translation>Le fichier n&apos;existe plus</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>The file %1 in the list of recently opened files does no longer exist.</source>
- <translation>Le fichier %1 de la liste des fichiers récents n&apos;existe plus.</translation>
- </message>
-</context>
-<context>
- <name>MainWindowUi</name>
- <message>
- <location filename="../src/MainWindow.ui" line="15"/>
- <source>UniversalIndentGUI</source>
- <translation>UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="53"/>
- <source>Indenter</source>
- <translation>Indenteur</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="58"/>
- <source>File</source>
- <translation>Fichier</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="62"/>
- <source>Export</source>
- <translation>Export</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="69"/>
- <source>Recently Opened Files</source>
- <translation>Fichiers ouverts récemment</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="76"/>
- <source>Reopen File with other Encoding</source>
- <translation>Réouvrir le fichier avec un autre encodage</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="81"/>
- <source>Save Source File As with other Encoding</source>
- <translation>Enregistrer le fichier Sous… avec un autre encodage</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="97"/>
- <location filename="../src/MainWindow.ui" line="415"/>
- <location filename="../src/MainWindow.ui" line="418"/>
- <source>Settings</source>
- <translation>Préférences</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="101"/>
- <source>Set Syntax Highlighter</source>
- <translation>Choisir l&apos;outil de coloration syntaxique</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="114"/>
- <source>Help</source>
- <translation>Aide</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="140"/>
- <source>Indenter Settings</source>
- <translation>Réglages de l&apos;indenteur</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="171"/>
- <source>Main Toolbar</source>
- <translation>Barre d&apos;outils principale</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="198"/>
- <source>Open Source File</source>
- <translation>Ouvrir un fichier source</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="201"/>
- <source>Opens a dialog for selecting a source code file.</source>
- <translation>Ouvrir une boite de dialogue pour choisir un fichier source.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="204"/>
- <source>Ctrl+O</source>
- <translation>Ctrl+O</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="213"/>
- <source>Save Source File</source>
- <translation>Enregistrer le fichier source</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="216"/>
- <source>Saves the currently shown source code to the last opened or saved source file.</source>
- <translation>Enregistrer le code source en cours d&apos;édition dans le dernier fichier ouvert ou sauvegardé.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="219"/>
- <source>Ctrl+S</source>
- <translation>Ctrl+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="237"/>
- <source>Opens a file dialog to save the currently shown source code.</source>
- <translation>Ouvrir une boite de dialogue d&apos;enregistrement de fichier pour enregistrer le code source en cours d&apos;édition.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="249"/>
- <source>About UniversalIndentGUI</source>
- <translation>À propos d&apos;UniversalIdentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="252"/>
- <source>Shows info about UniversalIndentGUI.</source>
- <translation>Informations à propos d&apos;UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="261"/>
- <source>Exit</source>
- <translation>Quitter</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="264"/>
- <source>Quits the UniversalIndentGUI.</source>
- <translation>Quitte le logiciel UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="267"/>
- <source>Ctrl+Q</source>
- <translation>Ctrl+Q</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="276"/>
- <source>PDF</source>
- <translation>PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="279"/>
- <source>Export the currently visible source code as PDF document</source>
- <translation>Exporte le code source en cours d&apos;édition en format PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="288"/>
- <source>HTML</source>
- <translation>HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="291"/>
- <source>Export the currently visible source code as HTML document</source>
- <translation>Exporte le code source en cours d&apos;édition en format HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="306"/>
- <source>Parameter Tooltips</source>
- <translation>Bulle d&apos;aide de paramètre</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="309"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Si coché, les bulles d&apos;aide apparaitront si le curseur de la souris s&apos;immobilise sur un paramètre d&apos;indenteur quelque temps.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="312"/>
- <source>DONOTTRANSLATE:indenterParameterTooltipsEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="324"/>
- <source>Live Indent Preview</source>
- <translation>Prévisualisation « temps réel » de l&apos;indentation</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="327"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="345"/>
- <location filename="../src/MainWindow.ui" line="348"/>
- <source>Syntax Highlighting</source>
- <translation>Coloration syntaxique</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="351"/>
- <source>Enables or disables syntax highlighting for the source code.</source>
- <translation>(Dés-)active la coloration syntaxique du code.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="354"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>L&apos;activation met en valeur les mots-clefs du code source.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="360"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="368"/>
- <location filename="../src/MainWindow.ui" line="371"/>
- <source>White Space Visible</source>
- <translation>Voir les espaces blancs</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="374"/>
- <source>Set white space visible</source>
- <translation>Rend les espaces blancs</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="377"/>
- <source>Enables or disables diplaying of white space characters in the editor.</source>
- <translation>(Dés-)active l&apos;affichage des espaces blancs dans l&apos;éditeur.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="383"/>
- <source>DONOTTRANSLATE:whiteSpaceIsVisible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="394"/>
- <source>Auto Open Last File</source>
- <translation>Réouverture automatique du dernier fichier</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="397"/>
- <source>Auto open last source file on startup</source>
- <translation>Rouvre automatiquement au démarrage du programme le dernier fichier ouvert</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="400"/>
- <source>If selected opens last source code file on startup</source>
- <translation>Si activé, rouvre automatiquement au démarrage du programme le dernier fichier ouvert</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="406"/>
- <source>DONOTTRANSLATE:loadLastSourceCodeFileOnStartup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="421"/>
- <source>Opens the settings dialog</source>
- <translation>Ouvrir la boite de dialogue des préférences</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="424"/>
- <source>Opens the settings dialog, to set language etc.</source>
- <translation>Ouvrir la boite de dialogue des préférences, pour choisir la langue de l&apos;interface, etc.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="433"/>
- <source>Check for update</source>
- <translation>Vérifier les mises à jour</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="436"/>
- <location filename="../src/MainWindow.ui" line="439"/>
- <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
- <translation>Recherche en ligne si une nouvelle version d&apos;UniversalIndentGUI est disponible.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="448"/>
- <source>Clear Recently Opened List</source>
- <translation>Vider la liste des fichiers récemment ouverts</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="457"/>
- <source>Show Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="460"/>
- <source>Displays logging information.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="463"/>
- <source>Displays logging info about the currently running UiGUI application.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="228"/>
- <location filename="../src/MainWindow.ui" line="231"/>
- <location filename="../src/MainWindow.ui" line="234"/>
- <source>Save Source File As...</source>
- <translation>Enregistrer le fichier source Sous…</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="240"/>
- <source>Ctrl+Shift+S</source>
- <translation>Ctrl+Shift+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="357"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
-</context>
-<context>
- <name>SettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
- <source>Settings</source>
- <translation>Préférences</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="35"/>
- <source>Common</source>
- <translation>Général</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="43"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="62"/>
- <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
- <translation>Affiche toutes les versions linguistiques d&apos;UniversalIndentGui et vous permet d&apos;en sélectionner une.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="46"/>
- <source>Application language</source>
- <translation>Langue de l&apos;application</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="90"/>
- <source>If selected opens the source code file on startup that was opened last time.</source>
- <translation>Si cativé, ouvre le fichier de code source qui était ouvert la dernière fois.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="93"/>
- <source>Automatically open last file on startup</source>
- <translation>Réouverture automatique du dernier fichier</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="106"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Si coché, les bulles d&apos;aide apparaitront si le curseur de la souris s&apos;immobilise sur un paramètre d&apos;indenteur quelque temps.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="109"/>
- <source>Enable Parameter Tooltips</source>
- <translation>Activer les bulles d&apos;aide sur les paramètres</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="140"/>
- <source>Sets how many files should be remembered in the list of recently opened files.</source>
- <translation>Définit combien de noms de fichiers apparaissent dans la liste des fichiers récemment ouverts.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="127"/>
- <source>Number of files in recently opened list</source>
- <translation>Nombre de fichiers dans la liste des fichiers récents</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="299"/>
- <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
- <translation>Recherche si une nouvelle version d&apos;UniversalIndentGUI est disponible au démarrage du programme, mais une fois par jour seulement.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="302"/>
- <source>Check online for update on program start</source>
- <translation>Rechercher si une nouvelle version est disponible au démarrage du programme</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
- <source>Editor</source>
- <translation>Éditeur</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="201"/>
- <source>Enables or disables displaying of white space characters in the editor.</source>
- <translation>(Dés-)active l&apos;affichage des espaces blancs dans l&apos;éditeur.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="204"/>
- <source>Display white space character (tabs, spaces, etc.)</source>
- <translation>Afficher les espaces blancs (tabulations, espaces, etc.)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="219"/>
- <source>Sets width in single spaces used for tabs</source>
- <translation>Régler la largeur en espaces simples pour les tabulations</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="222"/>
- <source>Defines how many spaces should be displayed in the editor for one tab.</source>
- <translation>Définit combien d&apos;espaces blancs doivent être affichés pour une tabulation, dans l&apos;éditeur.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="225"/>
- <source>Displayed width of tabs</source>
- <translation>Affiche la largeur des tabulations</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
- <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
- <translation>Définit combien d&apos;espaces blancs doivent être affichés pour une tabulation, dans l&apos;éditeur.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="293"/>
- <source>Network</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="321"/>
- <source>If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
- <source>Enable proxy</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="343"/>
- <source>Host name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="353"/>
- <source>Host name of the to be used proxy. E.g.: proxy.example.com</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="366"/>
- <source>Port:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="376"/>
- <source>Port number to connect to the before named proxy.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="398"/>
- <source>User name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="408"/>
- <source>If the proxy needs authentification, enter the login name here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="421"/>
- <source>Password:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="431"/>
- <source>If the proxy needs authentification, enter the password here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="458"/>
- <source>Syntax Highlighting</source>
- <translation>Coloration syntaxique</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="464"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>L&apos;activation met en valeur les mots-clefs du code source.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="467"/>
- <source>Enable syntax highlighting</source>
- <translation>Activer la coloration syntaxique</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="483"/>
- <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
- <translation>Vous permet de régler toutes les propriétés des outils de coloration syntaxique disponibles, comme la police de caractère et la couleur.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="486"/>
- <source>Highlighter settings</source>
- <translation>Réglage de l&apos;outil de coloration syntaxique</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="508"/>
- <source>Set the font for the current selected highlighter property.</source>
- <translation>Choisir la police de caractère comme propriété de l&apos;outil de coloration syntaxique sélectionné.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="511"/>
- <source>Set Font</source>
- <translation>Choisir la police</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="518"/>
- <source>Set the color for the current selected highlighter property.</source>
- <translation>Choisir la couleur comme propriété de l&apos;outil de coloration syntaxique sélectionné.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="521"/>
- <source>Set Color</source>
- <translation>Choisir la couleur</translation>
- </message>
-</context>
-<context>
- <name>TSLoggerDialog</name>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="14"/>
- <source>Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="24"/>
- <source>Logged messages</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="40"/>
- <source>Clear log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="43"/>
- <source>...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="54"/>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="57"/>
- <source>Open folder containing log file.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ToolBarWidget</name>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="14"/>
- <source>Form</source>
- <translation>Formulaire</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="26"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Ouvrir une boite de dialogue pour choisir un fichier source.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Ce fichier va être utilisé pour montrer les altérations apportées par l&apos;outil d&apos;indentation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="29"/>
- <source>Open Source File </source>
- <translation>Ouvrir un fichier source</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="40"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;(Dés-)active la prévisualisation du code source reformaté.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;En d&apos;autres termes, bascule entre code source formaté et non formaté. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="43"/>
- <source>Live Indent Preview</source>
- <translation>Prévisualisation « temps réel » de l&apos;indentation</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="50"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="57"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;(Dés-)active la coloration syntaxique du code&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;source présenté ci-dessous. (nécessite encore des améliorations de performances) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="60"/>
- <source>Syntax Highlight</source>
- <translation>Coloration syntaxique</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="67"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="73"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="93"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Présente des informations à propos d&apos;UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="96"/>
- <source>About</source>
- <translation>À propos</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="107"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quitter UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="110"/>
- <source>Exit</source>
- <translation>Quitter</translation>
- </message>
-</context>
-<context>
- <name>UiGuiErrorMessage</name>
- <message>
- <location filename="../src/UiGuiErrorMessage.cpp" line="42"/>
- <source>Show this message again</source>
- <translation>Afficher ce message à nouveau</translation>
- </message>
-</context>
-<context>
- <name>UiGuiIndentServer</name>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>UiGUI Server</source>
- <translation>Serveur UIGUI</translation>
- </message>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>Unable to start the server: %1.</source>
- <translation>Impossible de démarrer le serveur : %1.</translation>
- </message>
-</context>
-<context>
- <name>UiGuiSettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="68"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="141"/>
- <source>English</source>
- <translation>Anglais</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="71"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="144"/>
- <source>French</source>
- <translation>Français</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="74"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="147"/>
- <source>German</source>
- <translation>Allemand</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="77"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="150"/>
- <source>Chinese (Taiwan)</source>
- <translation>Chinois (Taïwan)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="80"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="153"/>
- <source>Japanese</source>
- <translation>Japonais</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="83"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="156"/>
- <source>Russian</source>
- <translation>Russe</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="86"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="159"/>
- <source>Ukrainian</source>
- <translation>Ukrainien</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="90"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="162"/>
- <source>Unknown language mnemonic </source>
- <translation>Mnémonique de langue inconnue</translation>
- </message>
-</context>
-<context>
- <name>UpdateCheckDialog</name>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="17"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="204"/>
- <source>Checking for update...</source>
- <translation>Rechercher les mises à jour…</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="23"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="205"/>
- <source>Checking whether a newer version is available</source>
- <translation>Rechercher si une nouvelle version est disponible</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>Update check error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <source>There was an error while trying to check for an update! The retrieved file did not contain expected content.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>There was an error while trying to check for an update! Error was : %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="216"/>
- <source>Update available</source>
- <translation>Mise à jour disponible </translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="217"/>
- <source>A newer version of UniversalIndentGUI is available.
-Your version is %1. New version is %2.
-Do you want to go to the download website?</source>
- <translation>Une nouvelle version d&apos;UniversalIndentGUI est disponible.
-Votre version est %1. La nouvelle version est %2.
-Voulez-vous allez sur le site de téléchargement ?</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="228"/>
- <source>No new update available</source>
- <translation>Aucune mise à jour disponible</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="229"/>
- <source>You already have the latest version of UniversalIndentGUI.</source>
- <translation>Vous possédez déjà la dernière version d&apos;UniversalIndentGUI.</translation>
- </message>
-</context>
-</TS>
diff --git a/translations/universalindent_ja.ts b/translations/universalindent_ja.ts
deleted file mode 100755
index a68da8c..0000000
--- a/translations/universalindent_ja.ts
+++ /dev/null
@@ -1,1095 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="ja_JP">
-<context>
- <name>AboutDialog</name>
- <message>
- <location filename="../src/AboutDialog.ui" line="26"/>
- <source>About UniversalIndentGUI</source>
- <translation>UniversalIndentGUI について</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="97"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;sans-serif&apos;; font-size:large;&quot;&gt;Version %1 rev.%2, %3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="126"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="173"/>
- <source> OK </source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>FindDialog</name>
- <message>
- <location filename="../src/FindDialog.ui" line="14"/>
- <source>Find</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="26"/>
- <source>Find what:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="46"/>
- <source>Find options</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="52"/>
- <source>Match case</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="59"/>
- <source>Match whole word</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="66"/>
- <source>Search forward</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="76"/>
- <source>Use Regular Expressions</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="104"/>
- <source>Find Next</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="111"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>IndentHandler</name>
- <message>
- <location filename="../src/IndentHandler.cpp" line="540"/>
- <source>No indenter executable</source>
- <translation>インデントツールの実行ファイルがありません</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>wine not installed</source>
- <translation>wine がインストールされていません</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
- <translation>インデントツールの実行ファイルは win32 形式のものしか存在しません。インデントツールを実行するために wine をインストールしてください。 </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="568"/>
- <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="572"/>
- <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="599"/>
- <source>Error calling Indenter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="607"/>
- <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="608"/>
- <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="592"/>
- <location filename="../src/IndentHandler.cpp" line="611"/>
- <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>No indenter ini files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>There exists no indenter ini files in the directory &quot;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="541"/>
- <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="593"/>
- <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="615"/>
- <source>Indenter returned error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="948"/>
- <source>Indenter ini file header error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="949"/>
- <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1406"/>
- <source>Interpreter needed</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1407"/>
- <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1497"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1498"/>
- <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1509"/>
- <location filename="../src/IndentHandler.cpp" line="1510"/>
- <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1542"/>
- <source>Choose indenter config file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1558"/>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>All files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1561"/>
- <source>Save indent config file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>Shell Script</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1592"/>
- <source>Save shell script</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1500"/>
- <source>Load Indenter Config File</source>
- <translation>インデントツールの設定ファイルを開く</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1501"/>
- <source>Opens a file dialog to load the original config file of the indenter.</source>
- <translation>インデントツールの設定ファイルの読み込みダイアログを開きます。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1502"/>
- <source>Alt+O</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1504"/>
- <source>Save Indenter Config File</source>
- <translation>インデントツールの設定ファイルを保存</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1505"/>
- <source>Opens a dialog to save the current indenter configuration to a file.</source>
- <translation>現在のインデントツールの設定をファイルに保存するためのダイアログを開きます。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1506"/>
- <source>Alt+S</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1508"/>
- <source>Create Indenter Call Shell Script</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1512"/>
- <source>Reset indenter parameters</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1513"/>
- <location filename="../src/IndentHandler.cpp" line="1514"/>
- <source>Resets all indenter parameters to the default values.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Really reset parameters?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Do you really want to reset the indenter parameters to the default values?</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>MainWindow</name>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Error opening file</source>
- <translation>ファイルの読み込みエラーが発生しました</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Cannot read the file </source>
- <translation>次のファイルを開けませんでした。: </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="439"/>
- <location filename="../src/MainWindow.cpp" line="479"/>
- <source>Supported by indenter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="440"/>
- <location filename="../src/MainWindow.cpp" line="480"/>
- <source>All files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="444"/>
- <source>Choose source code file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="483"/>
- <source>Save source code file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="859"/>
- <source>PDF Document</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="866"/>
- <location filename="../src/MainWindow.cpp" line="888"/>
- <source>Export source code file</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="881"/>
- <source>HTML Document</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1019"/>
- <source>Modified code</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1020"/>
- <source>The source code has been modified.
-Do you want to save your changes?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1086"/>
- <location filename="../src/MainWindow.cpp" line="1222"/>
- <source>Reopen the currently opened source code file by using the text encoding scheme </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1165"/>
- <location filename="../src/MainWindow.cpp" line="1236"/>
- <source>Set the syntax highlightning to </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>File no longer exists</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>The file %1 in the list of recently opened files does no longer exist.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1094"/>
- <location filename="../src/MainWindow.cpp" line="1228"/>
- <source>Save the currently opened source code file by using the text encoding scheme </source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="284"/>
- <location filename="../src/MainWindow.cpp" line="1427"/>
- <source>Line %1, Column %2</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>MainWindowUi</name>
- <message>
- <location filename="../src/MainWindow.ui" line="15"/>
- <source>UniversalIndentGUI</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="53"/>
- <source>Indenter</source>
- <translation>インデントツール</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="58"/>
- <source>File</source>
- <translation>ファイル</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="62"/>
- <source>Export</source>
- <translation>エクスポート</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="69"/>
- <source>Recently Opened Files</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="76"/>
- <source>Reopen File with other Encoding</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="81"/>
- <source>Save Source File As with other Encoding</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="97"/>
- <location filename="../src/MainWindow.ui" line="415"/>
- <location filename="../src/MainWindow.ui" line="418"/>
- <source>Settings</source>
- <translation>設定</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="101"/>
- <source>Set Syntax Highlighter</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="114"/>
- <source>Help</source>
- <translation>ヘルプ</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="171"/>
- <source>Main Toolbar</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="198"/>
- <source>Open Source File</source>
- <translation>ソースファイルを開く</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="201"/>
- <source>Opens a dialog for selecting a source code file.</source>
- <translation>ソースコードファイルを選択するためのダイアログを開きます</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="204"/>
- <source>Ctrl+O</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="213"/>
- <source>Save Source File</source>
- <translation>ソースファイルを保存</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="216"/>
- <source>Saves the currently shown source code to the last opened or saved source file.</source>
- <translation>現在開いているソースコードを最後に開いたファイルまたは保存したファイルに保存します。</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="219"/>
- <source>Ctrl+S</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="237"/>
- <source>Opens a file dialog to save the currently shown source code.</source>
- <translation>現在開いているソースコードを保存するためのダイアログを開きます。</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="249"/>
- <source>About UniversalIndentGUI</source>
- <translation>UniversalIndentGUI について</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="252"/>
- <source>Shows info about UniversalIndentGUI.</source>
- <translation>UniversalIndentGUI についての情報を表示します。</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="261"/>
- <source>Exit</source>
- <translation>終了</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="264"/>
- <source>Quits the UniversalIndentGUI.</source>
- <translation>UniversalIndentGUI を終了します。</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="267"/>
- <source>Ctrl+Q</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="276"/>
- <source>PDF</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="279"/>
- <source>Export the currently visible source code as PDF document</source>
- <translation>表示されているソースコードを PDF ファイルとして出力します。</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="288"/>
- <source>HTML</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="291"/>
- <source>Export the currently visible source code as HTML document</source>
- <translation>表示されているソースコードを HTML として出力します。</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="306"/>
- <source>Parameter Tooltips</source>
- <translation>パラメータ ツールチップ</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="309"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>チェックすると、インデントツールのパラメータの上にしばらくマウスカーソルを置くとツールチップを表示するようにします。</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="312"/>
- <source>DONOTTRANSLATE:indenterParameterTooltipsEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="324"/>
- <source>Live Indent Preview</source>
- <translation>インデントの即時プレビュー</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="327"/>
- <source>Ctrl+L</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="345"/>
- <location filename="../src/MainWindow.ui" line="348"/>
- <source>Syntax Highlighting</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="351"/>
- <source>Enables or disables syntax highlighting for the source code.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="354"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="360"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="368"/>
- <location filename="../src/MainWindow.ui" line="371"/>
- <source>White Space Visible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="374"/>
- <source>Set white space visible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="377"/>
- <source>Enables or disables diplaying of white space characters in the editor.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="383"/>
- <source>DONOTTRANSLATE:whiteSpaceIsVisible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="394"/>
- <source>Auto Open Last File</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="397"/>
- <source>Auto open last source file on startup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="400"/>
- <source>If selected opens last source code file on startup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="406"/>
- <source>DONOTTRANSLATE:loadLastSourceCodeFileOnStartup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="421"/>
- <source>Opens the settings dialog</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="424"/>
- <source>Opens the settings dialog, to set language etc.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="433"/>
- <source>Check for update</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="436"/>
- <location filename="../src/MainWindow.ui" line="439"/>
- <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="448"/>
- <source>Clear Recently Opened List</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="457"/>
- <source>Show Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="460"/>
- <source>Displays logging information.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="463"/>
- <source>Displays logging info about the currently running UiGUI application.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="140"/>
- <source>Indenter Settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="228"/>
- <location filename="../src/MainWindow.ui" line="231"/>
- <location filename="../src/MainWindow.ui" line="234"/>
- <source>Save Source File As...</source>
- <translation>名前を付けてソースファイルを保存...</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="240"/>
- <source>Ctrl+Shift+S</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="357"/>
- <source>Ctrl+H</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>SettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="35"/>
- <source>Common</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
- <source>Settings</source>
- <translation>設定</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="93"/>
- <source>Automatically open last file on startup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="109"/>
- <source>Enable Parameter Tooltips</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
- <source>Editor</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="486"/>
- <source>Highlighter settings</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="511"/>
- <source>Set Font</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="521"/>
- <source>Set Color</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="43"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="62"/>
- <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="46"/>
- <source>Application language</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="90"/>
- <source>If selected opens the source code file on startup that was opened last time.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="106"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>チェックすると、インデントツールのパラメータの上にしばらくマウスカーソルを置くとツールチップを表示するようにします。</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="140"/>
- <source>Sets how many files should be remembered in the list of recently opened files.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="201"/>
- <source>Enables or disables displaying of white space characters in the editor.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="204"/>
- <source>Display white space character (tabs, spaces, etc.)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
- <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="219"/>
- <source>Sets width in single spaces used for tabs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="222"/>
- <source>Defines how many spaces should be displayed in the editor for one tab.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="225"/>
- <source>Displayed width of tabs</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="293"/>
- <source>Network</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="321"/>
- <source>If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
- <source>Enable proxy</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="343"/>
- <source>Host name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="353"/>
- <source>Host name of the to be used proxy. E.g.: proxy.example.com</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="366"/>
- <source>Port:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="376"/>
- <source>Port number to connect to the before named proxy.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="398"/>
- <source>User name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="408"/>
- <source>If the proxy needs authentification, enter the login name here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="421"/>
- <source>Password:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="431"/>
- <source>If the proxy needs authentification, enter the password here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="458"/>
- <source>Syntax Highlighting</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="464"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="467"/>
- <source>Enable syntax highlighting</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="483"/>
- <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="508"/>
- <source>Set the font for the current selected highlighter property.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="518"/>
- <source>Set the color for the current selected highlighter property.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="127"/>
- <source>Number of files in recently opened list</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="299"/>
- <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="302"/>
- <source>Check online for update on program start</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>TSLoggerDialog</name>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="14"/>
- <source>Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="24"/>
- <source>Logged messages</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="40"/>
- <source>Clear log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="43"/>
- <source>...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="54"/>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="57"/>
- <source>Open folder containing log file.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ToolBarWidget</name>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="14"/>
- <source>Form</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="26"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="29"/>
- <source>Open Source File </source>
- <translation>ソースファイルを開く</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="40"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="43"/>
- <source>Live Indent Preview</source>
- <translation>インデントの即時プレビュー</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="50"/>
- <source>Ctrl+L</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="57"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="60"/>
- <source>Syntax Highlight</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="67"/>
- <source>Ctrl+H</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="73"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="93"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="96"/>
- <source>About</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="107"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="110"/>
- <source>Exit</source>
- <translation>終了</translation>
- </message>
-</context>
-<context>
- <name>UiGuiErrorMessage</name>
- <message>
- <location filename="../src/UiGuiErrorMessage.cpp" line="42"/>
- <source>Show this message again</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>UiGuiIndentServer</name>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>UiGUI Server</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>Unable to start the server: %1.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>UiGuiSettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="68"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="141"/>
- <source>English</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="71"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="144"/>
- <source>French</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="74"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="147"/>
- <source>German</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="77"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="150"/>
- <source>Chinese (Taiwan)</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="80"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="153"/>
- <source>Japanese</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="83"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="156"/>
- <source>Russian</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="86"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="159"/>
- <source>Ukrainian</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="90"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="162"/>
- <source>Unknown language mnemonic </source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>UpdateCheckDialog</name>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="17"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="204"/>
- <source>Checking for update...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="23"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="205"/>
- <source>Checking whether a newer version is available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>Update check error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <source>There was an error while trying to check for an update! The retrieved file did not contain expected content.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>There was an error while trying to check for an update! Error was : %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="216"/>
- <source>Update available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="217"/>
- <source>A newer version of UniversalIndentGUI is available.
-Your version is %1. New version is %2.
-Do you want to go to the download website?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="228"/>
- <source>No new update available</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="229"/>
- <source>You already have the latest version of UniversalIndentGUI.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-</TS>
diff --git a/translations/universalindent_ru.ts b/translations/universalindent_ru.ts
deleted file mode 100755
index 9c0e611..0000000
--- a/translations/universalindent_ru.ts
+++ /dev/null
@@ -1,1132 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="ru">
-<context>
- <name>AboutDialog</name>
- <message>
- <location filename="../src/AboutDialog.ui" line="26"/>
- <source>About UniversalIndentGUI</source>
- <translation>О UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="97"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;sans-serif&apos;; font-size:large;&quot;&gt;Version %1 rev.%2, %3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="126"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;&quot;&gt;Версия %1 ред.%2, %3 &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;... кросс-платформенный совместимый ГИП для нескольких форматтеров, украсителей и отступаторов, как GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP, и так далее. Основной функцией является живой просмотр, чтобы сразу видеть, как выбранный вариант форматирования влияет на исходный код.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;br /&gt;Написано: &lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Томасом Швайцером&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Страница проекта : &lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Лицензия: UniversalIndentGui выдается в рамках GPL 2. О деталях читайте присоединенный файл LICENSE.GPL Посетите &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Участники проекта:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="173"/>
- <source> OK </source>
- <translation>(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)OK(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)</translation>
- </message>
-</context>
-<context>
- <name>FindDialog</name>
- <message>
- <location filename="../src/FindDialog.ui" line="14"/>
- <source>Find</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="26"/>
- <source>Find what:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="46"/>
- <source>Find options</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="52"/>
- <source>Match case</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="59"/>
- <source>Match whole word</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="66"/>
- <source>Search forward</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="76"/>
- <source>Use Regular Expressions</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="104"/>
- <source>Find Next</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="111"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>IndentHandler</name>
- <message>
- <location filename="../src/IndentHandler.cpp" line="540"/>
- <source>No indenter executable</source>
- <translation>Нет программы отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>wine not installed</source>
- <translation>вино не установлено</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
- <translation>Существует только win32-программа отступатора, а вино, кажется, не установлено. Пожалуйста, установите вино, чтобы запустить отступатор.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="568"/>
- <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Возвращенное сообщение об ошибке:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="572"/>
- <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Причиной может быть:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="599"/>
- <source>Error calling Indenter</source>
- <translation>Ошибка вызова отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="607"/>
- <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Отступатор возвратился с кодом выхода:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="608"/>
- <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Выходом консоли отступатора было:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="592"/>
- <location filename="../src/IndentHandler.cpp" line="611"/>
- <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
- <translation>&lt;br&gt;&lt;b&gt;Строкой вызова было:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>No indenter ini files</source>
- <translation>Отсутствуют ini-файлы отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>There exists no indenter ini files in the directory &quot;</source>
- <translation>Не существуют ini-файлы отступатора в папке &quot;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="541"/>
- <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
- <translation>Не существует программы отступатора под названием &quot;%1&quot; в папке &quot;%2&quot; и в глобальной среде.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="593"/>
- <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
- <translation>&lt;br&gt;&lt;br&gt;&lt;b&gt;Выходом отступатора было:&lt;/b&gt;&lt;pre&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="615"/>
- <source>Indenter returned error</source>
- <translation>Отступатор возвратил ошибку</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="948"/>
- <source>Indenter ini file header error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="949"/>
- <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1406"/>
- <source>Interpreter needed</source>
- <translation>Требуется интерпретатор</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1407"/>
- <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
- <translation>Для использования выбранного отступатора, программа &quot;%1&quot; должна быть доступна в глобальной среде. Добавьте пункт к настройкам пути.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1497"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Показывает название текущего выбранного отступатора и позволяет выбрать другие доступные отступаторы&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1498"/>
- <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
- <translation>Ведет к онлайн-руководству текущего выбранного отступатора, где можна найти дальнейшую помощь по возможным параметрам.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1509"/>
- <location filename="../src/IndentHandler.cpp" line="1510"/>
- <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
- <translation>Создать скрипт оболочки, вызывающий текущий выбранный отступатор для форматирования по параметрам данного файла с текущими настройками отступов.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1542"/>
- <source>Choose indenter config file</source>
- <translation>Выбрать конфигурационный файл отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1558"/>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>All files</source>
- <translation>Все файлы</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1561"/>
- <source>Save indent config file</source>
- <translation>Сохранить конфигурационный файл отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>Shell Script</source>
- <translation>Скрипт оболочки</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1592"/>
- <source>Save shell script</source>
- <translation>Сохранить скрипт оболочки</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1500"/>
- <source>Load Indenter Config File</source>
- <translation>Загрузить конфигурационный файл отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1501"/>
- <source>Opens a file dialog to load the original config file of the indenter.</source>
- <translation>Открывает файловый диалог для загрузки начального конфигурационного файла отступатора.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1502"/>
- <source>Alt+O</source>
- <translation>Alt+O</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1504"/>
- <source>Save Indenter Config File</source>
- <translation>Сохранить конфигурационный файл отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1505"/>
- <source>Opens a dialog to save the current indenter configuration to a file.</source>
- <translation>Открывает диалог для сохранения текущей конфигурации отступатора в файл.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1506"/>
- <source>Alt+S</source>
- <translation>Alt+S</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1508"/>
- <source>Create Indenter Call Shell Script</source>
- <translation>Создать скрипт оболочки вызова отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1512"/>
- <source>Reset indenter parameters</source>
- <translation>Скинуть параметры отступатора</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1513"/>
- <location filename="../src/IndentHandler.cpp" line="1514"/>
- <source>Resets all indenter parameters to the default values.</source>
- <translation>Скидывает все параметры отступатора на значения по умолчанию.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Really reset parameters?</source>
- <translation>Действительно скинуть параметры?</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Do you really want to reset the indenter parameters to the default values?</source>
- <translation>Вы действительно хотите скинуть параметры отступатора на значения по умолчанию?</translation>
- </message>
-</context>
-<context>
- <name>MainWindow</name>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Error opening file</source>
- <translation>Ошибка открытия файла</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Cannot read the file </source>
- <translation>Невозможно прочитать файл(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="439"/>
- <location filename="../src/MainWindow.cpp" line="479"/>
- <source>Supported by indenter</source>
- <translation>Поддерживается отступатором</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="440"/>
- <location filename="../src/MainWindow.cpp" line="480"/>
- <source>All files</source>
- <translation>Все файлы</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="444"/>
- <source>Choose source code file</source>
- <translation>Выбрать файл исходного кода</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="483"/>
- <source>Save source code file</source>
- <translation>Сохранить файл исходного кода</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="859"/>
- <source>PDF Document</source>
- <translation>Документ PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="866"/>
- <location filename="../src/MainWindow.cpp" line="888"/>
- <source>Export source code file</source>
- <translation>Экспорт файла исходного кода</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="881"/>
- <source>HTML Document</source>
- <translation>Документ HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1019"/>
- <source>Modified code</source>
- <translation>Измененный код</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1020"/>
- <source>The source code has been modified.
-Do you want to save your changes?</source>
- <translation>Исходный код изменен.
-Хотите сохранить изменения?</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1086"/>
- <location filename="../src/MainWindow.cpp" line="1222"/>
- <source>Reopen the currently opened source code file by using the text encoding scheme </source>
- <translation>Повторно открыть текущий открытый файл исходного кода, используя схему кодирования текста(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1165"/>
- <location filename="../src/MainWindow.cpp" line="1236"/>
- <source>Set the syntax highlightning to </source>
- <translation>Задать подсветку синтаксиса на(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>File no longer exists</source>
- <translation>Файл больше не существует</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>The file %1 in the list of recently opened files does no longer exist.</source>
- <translation>Файл %1 из списка недавно открытых файлов больше не существует.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1094"/>
- <location filename="../src/MainWindow.cpp" line="1228"/>
- <source>Save the currently opened source code file by using the text encoding scheme </source>
- <translation>Сохранить текущий открытый файл исходного кода с использованием схемы кодирования текста(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="284"/>
- <location filename="../src/MainWindow.cpp" line="1427"/>
- <source>Line %1, Column %2</source>
- <translation>Строка %1, колонка %2</translation>
- </message>
-</context>
-<context>
- <name>MainWindowUi</name>
- <message>
- <location filename="../src/MainWindow.ui" line="15"/>
- <source>UniversalIndentGUI</source>
- <translation>UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="53"/>
- <source>Indenter</source>
- <translation>Отступатор</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="58"/>
- <source>File</source>
- <translation>Файл</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="62"/>
- <source>Export</source>
- <translation>Экспорт</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="69"/>
- <source>Recently Opened Files</source>
- <translation>Недавно открытые файлы</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="76"/>
- <source>Reopen File with other Encoding</source>
- <translation>Повторно открывает файлы с другой кодировкой</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="81"/>
- <source>Save Source File As with other Encoding</source>
- <translation>Сохранить исходный файл с другой кодировкой как</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="97"/>
- <location filename="../src/MainWindow.ui" line="415"/>
- <location filename="../src/MainWindow.ui" line="418"/>
- <source>Settings</source>
- <translation>Настройки</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="101"/>
- <source>Set Syntax Highlighter</source>
- <translation>Задать подсветку синтаксиса</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="114"/>
- <source>Help</source>
- <translation>Помощь</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="171"/>
- <source>Main Toolbar</source>
- <translation>Главная панель</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="198"/>
- <source>Open Source File</source>
- <translation>Открыть исходный файл</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="201"/>
- <source>Opens a dialog for selecting a source code file.</source>
- <translation>Открывает диалог выбора файла исходного кода.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="204"/>
- <source>Ctrl+O</source>
- <translation>Ctrl+O</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="213"/>
- <source>Save Source File</source>
- <translation>Сохранить исходный файл</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="216"/>
- <source>Saves the currently shown source code to the last opened or saved source file.</source>
- <translation>Сохраняет текущий показанный исходный код в последний открытый или сохраненный исходный файл.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="219"/>
- <source>Ctrl+S</source>
- <translation>Ctrl+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="237"/>
- <source>Opens a file dialog to save the currently shown source code.</source>
- <translation>Открывает файловый диалог для сохранения текущего показанного исходного кода.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="249"/>
- <source>About UniversalIndentGUI</source>
- <translation>О UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="252"/>
- <source>Shows info about UniversalIndentGUI.</source>
- <translation>Показывает информацию о UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="261"/>
- <source>Exit</source>
- <translation>Выход</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="264"/>
- <source>Quits the UniversalIndentGUI.</source>
- <translation>Выходит из UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="267"/>
- <source>Ctrl+Q</source>
- <translation>Ctrl+Q</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="276"/>
- <source>PDF</source>
- <translation>PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="279"/>
- <source>Export the currently visible source code as PDF document</source>
- <translation>Экспорт текущего видимого исходного кода в документ PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="288"/>
- <source>HTML</source>
- <translation>HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="291"/>
- <source>Export the currently visible source code as HTML document</source>
- <translation>Экспорт текущего видимого исходного кода в документ HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="306"/>
- <source>Parameter Tooltips</source>
- <translation>Подсказки параметра</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="309"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Если выбрано, будут появляться подсказки, если курсор мыши задерживается на некоторое время над параметром.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="312"/>
- <source>DONOTTRANSLATE:indenterParameterTooltipsEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="324"/>
- <source>Live Indent Preview</source>
- <translation>Живой просмотр отступа</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="327"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="345"/>
- <location filename="../src/MainWindow.ui" line="348"/>
- <source>Syntax Highlighting</source>
- <translation>Подсветка синтаксиса</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="351"/>
- <source>Enables or disables syntax highlighting for the source code.</source>
- <translation>Включает или отключает подсветку синтаксиса для исходного кода.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="354"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>При включении подсвечиваются специальные ключевые слова исходного кода.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="360"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="368"/>
- <location filename="../src/MainWindow.ui" line="371"/>
- <source>White Space Visible</source>
- <translation>Видимые пробелы</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="374"/>
- <source>Set white space visible</source>
- <translation>Задать видимые пробелы</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="377"/>
- <source>Enables or disables diplaying of white space characters in the editor.</source>
- <translation>Включает или выключает показ символов пробелов в редакторе.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="383"/>
- <source>DONOTTRANSLATE:whiteSpaceIsVisible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="394"/>
- <source>Auto Open Last File</source>
- <translation>Автооткрытие последнего файла</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="397"/>
- <source>Auto open last source file on startup</source>
- <translation>Автооткрытие последнего исходного файла при загрузке</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="400"/>
- <source>If selected opens last source code file on startup</source>
- <translation>Если выбрано, при загрузке открывается последний файл исходного кода</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="406"/>
- <source>DONOTTRANSLATE:loadLastSourceCodeFileOnStartup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="421"/>
- <source>Opens the settings dialog</source>
- <translation>Открывает диалог настроек</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="424"/>
- <source>Opens the settings dialog, to set language etc.</source>
- <translation>Открывает диалог настроек для установки языка, и т. д.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="433"/>
- <source>Check for update</source>
- <translation>Проверить обновление</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="436"/>
- <location filename="../src/MainWindow.ui" line="439"/>
- <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
- <translation>Проверить в сети доступность новой версии UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="448"/>
- <source>Clear Recently Opened List</source>
- <translation>Очистить список недавно открытых</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="457"/>
- <source>Show Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="460"/>
- <source>Displays logging information.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="463"/>
- <source>Displays logging info about the currently running UiGUI application.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="140"/>
- <source>Indenter Settings</source>
- <translation>Настройки отступатора</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="228"/>
- <location filename="../src/MainWindow.ui" line="231"/>
- <location filename="../src/MainWindow.ui" line="234"/>
- <source>Save Source File As...</source>
- <translation>Сохранить исходный файл как...</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="240"/>
- <source>Ctrl+Shift+S</source>
- <translation>Ctrl+Shift+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="357"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
-</context>
-<context>
- <name>SettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="35"/>
- <source>Common</source>
- <translation>Общее</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
- <source>Settings</source>
- <translation>Настройки</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="93"/>
- <source>Automatically open last file on startup</source>
- <translation>Автоматически открывать последний файл при загрузке</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="109"/>
- <source>Enable Parameter Tooltips</source>
- <translation>Включить подсказки параметра</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
- <source>Editor</source>
- <translation>Редактор</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="486"/>
- <source>Highlighter settings</source>
- <translation>Настройки подсветки</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="511"/>
- <source>Set Font</source>
- <translation>Установить шрифт</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="521"/>
- <source>Set Color</source>
- <translation>Установить цвет</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="43"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="62"/>
- <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
- <translation>Показывает все доступные переводы для UniversalIndentGui и позволяет выбрать один из них.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="46"/>
- <source>Application language</source>
- <translation>Язык программы</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="90"/>
- <source>If selected opens the source code file on startup that was opened last time.</source>
- <translation>Если выбрано, при загрузке открывается файл исходного кода, открытый в последний раз.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="106"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Если выбрано, будут появляться подсказки, если курсор мыши задерживается на некоторое время над параметром.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="140"/>
- <source>Sets how many files should be remembered in the list of recently opened files.</source>
- <translation>Задает сколько файлов должно запоминаться в списке недавно открытых файлов.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="201"/>
- <source>Enables or disables displaying of white space characters in the editor.</source>
- <translation>Включает или выключает показ символов пробелов в редакторе.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="204"/>
- <source>Display white space character (tabs, spaces, etc.)</source>
- <translation>Показывает символы пробелов (табуляторы, пробелы, и т. д.)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
- <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
- <translation>Определяет, сколько пробелов должно показываться в редакторе вместо одного символа табуляции.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="219"/>
- <source>Sets width in single spaces used for tabs</source>
- <translation>Задает ширину в единичных пробелах, используемых вместо табуляторов</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="222"/>
- <source>Defines how many spaces should be displayed in the editor for one tab.</source>
- <translation>Определяет, сколько пробелов должно показываться в редакторе вместо одного табулятора.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="225"/>
- <source>Displayed width of tabs</source>
- <translation>Показывает ширину табуляторов</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="293"/>
- <source>Network</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="321"/>
- <source>If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
- <source>Enable proxy</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="343"/>
- <source>Host name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="353"/>
- <source>Host name of the to be used proxy. E.g.: proxy.example.com</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="366"/>
- <source>Port:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="376"/>
- <source>Port number to connect to the before named proxy.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="398"/>
- <source>User name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="408"/>
- <source>If the proxy needs authentification, enter the login name here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="421"/>
- <source>Password:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="431"/>
- <source>If the proxy needs authentification, enter the password here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="458"/>
- <source>Syntax Highlighting</source>
- <translation>Подсветка синтаксиса</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="464"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>При включении подсвечиваются специальные ключевые слова исходного кода.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="467"/>
- <source>Enable syntax highlighting</source>
- <translation>Включает подсветку синтаксиса</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="483"/>
- <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
- <translation>Позволяет создавать настройки для всех свойств доступных подсветок синтаксиса, как шрифт и цвет.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="508"/>
- <source>Set the font for the current selected highlighter property.</source>
- <translation>Задает шрифт для текущего выбранного свойства подсветки.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="518"/>
- <source>Set the color for the current selected highlighter property.</source>
- <translation>Задает цвет для текущего выбранного свойства подсветки.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="127"/>
- <source>Number of files in recently opened list</source>
- <translation>Количество файлов в списке недавно открытых</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="299"/>
- <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
- <translation>Проверяет существование новой версии UniversalIndentGUI при запуске программы, но только раз в день.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="302"/>
- <source>Check online for update on program start</source>
- <translation>Проверяет в сети обновление при запуске программы</translation>
- </message>
-</context>
-<context>
- <name>TSLoggerDialog</name>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="14"/>
- <source>Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="24"/>
- <source>Logged messages</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="40"/>
- <source>Clear log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="43"/>
- <source>...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="54"/>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="57"/>
- <source>Open folder containing log file.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ToolBarWidget</name>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="14"/>
- <source>Form</source>
- <translation>Форма</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="26"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Открывает диалог выбора файла исходного кода.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Этот файл будет использоваться для показа изменений, сделанных инструментом отступа.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="29"/>
- <source>Open Source File </source>
- <translation>Открыть исходный файл</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="40"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Включает и выключает просмотр реформатированного исходного кода.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Другими словами, переключает между форматированным и неформатированным кодом. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="43"/>
- <source>Live Indent Preview</source>
- <translation>Живой просмотр отступа</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="50"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="57"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Включает и выключает подсветку исходного&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;кода, показанного ниже. (Все еще нужно доработать эффективность) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="60"/>
- <source>Syntax Highlight</source>
- <translation>Подсветка синтаксиса</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="67"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="73"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="93"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Показывает информацию о UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="96"/>
- <source>About</source>
- <translation>О</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="107"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Выходит из UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="110"/>
- <source>Exit</source>
- <translation>Выход</translation>
- </message>
-</context>
-<context>
- <name>UiGuiErrorMessage</name>
- <message>
- <location filename="../src/UiGuiErrorMessage.cpp" line="42"/>
- <source>Show this message again</source>
- <translation>Показать это сообщение снова</translation>
- </message>
-</context>
-<context>
- <name>UiGuiIndentServer</name>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>UiGUI Server</source>
- <translation>Сервер UiGUI</translation>
- </message>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>Unable to start the server: %1.</source>
- <translation>Невозможно запустить сервер: %1.</translation>
- </message>
-</context>
-<context>
- <name>UiGuiSettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="68"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="141"/>
- <source>English</source>
- <translation>Английский</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="71"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="144"/>
- <source>French</source>
- <translation>Французский</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="74"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="147"/>
- <source>German</source>
- <translation>Немецкий</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="80"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="153"/>
- <source>Japanese</source>
- <translation>Японский</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="90"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="162"/>
- <source>Unknown language mnemonic </source>
- <translation>Неизвестный мнемокод языка </translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="77"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="150"/>
- <source>Chinese (Taiwan)</source>
- <translation>Китайский (Тайвань)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="83"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="156"/>
- <source>Russian</source>
- <translation>Русский</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="86"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="159"/>
- <source>Ukrainian</source>
- <translation>Украинский</translation>
- </message>
-</context>
-<context>
- <name>UpdateCheckDialog</name>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="17"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="204"/>
- <source>Checking for update...</source>
- <translation>Проверка обновления...</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="23"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="205"/>
- <source>Checking whether a newer version is available</source>
- <translation>Проверка доступности новой версии</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>Update check error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <source>There was an error while trying to check for an update! The retrieved file did not contain expected content.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>There was an error while trying to check for an update! Error was : %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="216"/>
- <source>Update available</source>
- <translation>Обновление доступно</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="217"/>
- <source>A newer version of UniversalIndentGUI is available.
-Your version is %1. New version is %2.
-Do you want to go to the download website?</source>
- <translation>Доступна новая версия UniversalIndentGUI.
-Ваша версия %1. Новая версия %2.
-Хотите перейти на веб-сайт загрузки?</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="228"/>
- <source>No new update available</source>
- <translation>Обновлений нет</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="229"/>
- <source>You already have the latest version of UniversalIndentGUI.</source>
- <translation>У вас последняя версия UniversalIndentGUI.</translation>
- </message>
-</context>
-</TS>
diff --git a/translations/universalindent_uk.ts b/translations/universalindent_uk.ts
deleted file mode 100755
index e73fa44..0000000
--- a/translations/universalindent_uk.ts
+++ /dev/null
@@ -1,1132 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="uk_UA">
-<context>
- <name>AboutDialog</name>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;&quot;&gt;Версія %1 ред.%2, %3 &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;... є крос-платформним сумісним ГІК для кількох форматорів, прикрашувачів та відступаторів, на зразок GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP, і так далі. Основною функцією є живий перегляд, щоб одразу бачити як обраний варіант форматування впливає на вхідний код.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;br /&gt;Написав : &lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt; Томас Швайцер&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Сторінка проекту : &lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Ліцензія: UniversalIndentGui видається в межах GPL 2. Щодо деталей читайте включений файл LICENSE.GPL Відвідайте &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;.&lt;/p&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;Учасники проекту:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="97"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;sans-serif&apos;; font-size:large;&quot;&gt;Version %1 rev.%2, %3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="126"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="173"/>
- <source> OK </source>
- <translation>(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)Добре(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)(sp)</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="26"/>
- <source>About UniversalIndentGUI</source>
- <translation>Про UniversalIndentGUI</translation>
- </message>
-</context>
-<context>
- <name>FindDialog</name>
- <message>
- <location filename="../src/FindDialog.ui" line="14"/>
- <source>Find</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="26"/>
- <source>Find what:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="46"/>
- <source>Find options</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="52"/>
- <source>Match case</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="59"/>
- <source>Match whole word</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="66"/>
- <source>Search forward</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="76"/>
- <source>Use Regular Expressions</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="104"/>
- <source>Find Next</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="111"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>IndentHandler</name>
- <message>
- <location filename="../src/IndentHandler.cpp" line="608"/>
- <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Виходом консолі відступача було: &lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="607"/>
- <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Відступач повернувся з вихідним кодом:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="572"/>
- <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Причиною могло б бути:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="568"/>
- <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
- <translation>&lt;b&gt;Повернене повідомлення про помилку:&lt;/b&gt;(sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="592"/>
- <location filename="../src/IndentHandler.cpp" line="611"/>
- <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
- <translation>&lt;br&gt;&lt;b&gt;Стрічкою виклику було:&lt;/b&gt; (sp)</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="593"/>
- <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
- <translation>&lt;br&gt;&lt;br&gt;&lt;b&gt;Виходом відступача було:&lt;/b&gt;&lt;pre&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="948"/>
- <source>Indenter ini file header error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="949"/>
- <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1497"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Показує поточні обрані назви відступачів і дозволяє обрати інші доступні відступачі&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1509"/>
- <location filename="../src/IndentHandler.cpp" line="1510"/>
- <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
- <translation>Створити скрипт оболонки, який викликає поточний обраний відступач для форматування по параметрам даного файлу з поточними налаштуваннями відступів.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1558"/>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>All files</source>
- <translation>Всі файли</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1502"/>
- <source>Alt+O</source>
- <translation>Alt+O</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1506"/>
- <source>Alt+S</source>
- <translation>Alt+S</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1498"/>
- <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
- <translation>Веде до онлайн-керівництва даного обраного відступача і де можна отримати подальшу допомогу стосовно можливих параметрів.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1542"/>
- <source>Choose indenter config file</source>
- <translation>Обрати файл конфігурації відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1508"/>
- <source>Create Indenter Call Shell Script</source>
- <translation>Створити скрипт оболонки виклику відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Do you really want to reset the indenter parameters to the default values?</source>
- <translation>Чи справді хочете скинути параметри відступача на типові значення?</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="599"/>
- <source>Error calling Indenter</source>
- <translation>Помилка виклику відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="615"/>
- <source>Indenter returned error</source>
- <translation>Відступач повернув помилку</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1406"/>
- <source>Interpreter needed</source>
- <translation>Потрібен інтерпретатор</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1500"/>
- <source>Load Indenter Config File</source>
- <translation>Завантажити файл конфігурації відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="540"/>
- <source>No indenter executable</source>
- <translation>Жодної програми відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>No indenter ini files</source>
- <translation>Жодних ini-файлів відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1505"/>
- <source>Opens a dialog to save the current indenter configuration to a file.</source>
- <translation>Відкриває діалог для збереження поточної конфігурації відступача у файл.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1501"/>
- <source>Opens a file dialog to load the original config file of the indenter.</source>
- <translation>Відкриває файловий діалог для завантаження основного файлу конфігурації відступача.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Really reset parameters?</source>
- <translation>Справді скинути параметри?</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1512"/>
- <source>Reset indenter parameters</source>
- <translation>Скинути параметри відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1513"/>
- <location filename="../src/IndentHandler.cpp" line="1514"/>
- <source>Resets all indenter parameters to the default values.</source>
- <translation>Скинути усі параметри відступача на типові значення.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1561"/>
- <source>Save indent config file</source>
- <translation>Зберегти файл конфігурації відступів</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1504"/>
- <source>Save Indenter Config File</source>
- <translation>Зберегти файл конфігурації відступача</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1592"/>
- <source>Save shell script</source>
- <translation>Зберегти скрипт оболонки</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>Shell Script</source>
- <translation>Скрипт оболонки</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="541"/>
- <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
- <translation>Не існує програми відступача з назвою &quot;%1&quot; ні у теці &quot;%2&quot;, ні у глобальному середовищі.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>There exists no indenter ini files in the directory &quot;</source>
- <translation>Не існує ini-файлів відступача у теці &quot;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
- <translation>Існує лише win32-програма відступача, а вино, здається, не встановлено. Будь ласка, встановіть вино, щоб запустити відступач.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1407"/>
- <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
- <translation>Для використання обраного відступача, програма &quot;%1&quot; повинна бути доступна у глобальному середовищі. Потрібно додати пункт до налаштувань шляху.</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>wine not installed</source>
- <translation>вино не встановлено</translation>
- </message>
-</context>
-<context>
- <name>MainWindow</name>
- <message>
- <location filename="../src/MainWindow.cpp" line="440"/>
- <location filename="../src/MainWindow.cpp" line="480"/>
- <source>All files</source>
- <translation>Всі файли</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Cannot read the file </source>
- <translation>Неможливо прочитати файл(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="444"/>
- <source>Choose source code file</source>
- <translation>Обрати файл коду джерела</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Error opening file</source>
- <translation>Помилка відкриття файла</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="866"/>
- <location filename="../src/MainWindow.cpp" line="888"/>
- <source>Export source code file</source>
- <translation>Експортувати файл коду джерела</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>File no longer exists</source>
- <translation>Файл більше не існує</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="881"/>
- <source>HTML Document</source>
- <translation>Документ HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="284"/>
- <location filename="../src/MainWindow.cpp" line="1427"/>
- <source>Line %1, Column %2</source>
- <translation>Рядок %1, колонка %2</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1019"/>
- <source>Modified code</source>
- <translation>Змінений код</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="859"/>
- <source>PDF Document</source>
- <translation>Документ PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1086"/>
- <location filename="../src/MainWindow.cpp" line="1222"/>
- <source>Reopen the currently opened source code file by using the text encoding scheme </source>
- <translation>Відкрити поточний відкритий файл коду джерела використовуючи схему кодування тексту(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="483"/>
- <source>Save source code file</source>
- <translation>Зберегти файл коду джерела</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1094"/>
- <location filename="../src/MainWindow.cpp" line="1228"/>
- <source>Save the currently opened source code file by using the text encoding scheme </source>
- <translation>Зберегти поточний відкритий файл коду джерела використовуючи схему кодування тексту(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1165"/>
- <location filename="../src/MainWindow.cpp" line="1236"/>
- <source>Set the syntax highlightning to </source>
- <translation>Встановити підсвічування синтаксису на(sp)</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="439"/>
- <location filename="../src/MainWindow.cpp" line="479"/>
- <source>Supported by indenter</source>
- <translation>Підтримується відступачем</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>The file %1 in the list of recently opened files does no longer exist.</source>
- <translation>Файл %1 з переліку нещодавно відкритих файлів більше не існує.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1020"/>
- <source>The source code has been modified.
-Do you want to save your changes?</source>
- <translation>Код джерела змінено.
-Хочете зберегти зміни?</translation>
- </message>
-</context>
-<context>
- <name>MainWindowUi</name>
- <message>
- <location filename="../src/MainWindow.ui" line="249"/>
- <source>About UniversalIndentGUI</source>
- <translation>Про UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="394"/>
- <source>Auto Open Last File</source>
- <translation>Автовідкритття останнього файлу</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="397"/>
- <source>Auto open last source file on startup</source>
- <translation>Автовідкритття останнього файлу джерела при запуску</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="354"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>Включення підсвічує спеціальні ключові слова коду джерела.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="433"/>
- <source>Check for update</source>
- <translation>Перевірити оновлення</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="436"/>
- <location filename="../src/MainWindow.ui" line="439"/>
- <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
- <translation>Перевіряє в мережі, чи доступна нова версія UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="448"/>
- <source>Clear Recently Opened List</source>
- <translation>Очистити перелік нещодавно відкритих файлів</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="327"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="204"/>
- <source>Ctrl+O</source>
- <translation>Ctrl+O</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="267"/>
- <source>Ctrl+Q</source>
- <translation>Ctrl+Q</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="219"/>
- <source>Ctrl+S</source>
- <translation>Ctrl+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="377"/>
- <source>Enables or disables diplaying of white space characters in the editor.</source>
- <translation>Включити або відключити показ символів пробілу у редакторі.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="351"/>
- <source>Enables or disables syntax highlighting for the source code.</source>
- <translation>Включає або відключає підсвічування синтаксису для файла джерела.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="261"/>
- <source>Exit</source>
- <translation>Вихід</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="62"/>
- <source>Export</source>
- <translation>Експорт</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="291"/>
- <source>Export the currently visible source code as HTML document</source>
- <translation>Експортує поточний код джерела у HTML-документ</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="279"/>
- <source>Export the currently visible source code as PDF document</source>
- <translation>Експортує поточний код джерела у PDF-документ</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="58"/>
- <source>File</source>
- <translation>Файл</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="114"/>
- <source>Help</source>
- <translation>Допомога</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="228"/>
- <location filename="../src/MainWindow.ui" line="231"/>
- <location filename="../src/MainWindow.ui" line="234"/>
- <source>Save Source File As...</source>
- <translation>Зберегти файл джерела як...</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="288"/>
- <source>HTML</source>
- <translation>HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="309"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Якщо виділено, підказки з&apos;являтимуться при наведенні і утриманні курсору миші над параметром відступача.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="312"/>
- <source>DONOTTRANSLATE:indenterParameterTooltipsEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="360"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="383"/>
- <source>DONOTTRANSLATE:whiteSpaceIsVisible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="400"/>
- <source>If selected opens last source code file on startup</source>
- <translation>При виборі при запуску відкриватиметься останній файл коду джерела</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="406"/>
- <source>DONOTTRANSLATE:loadLastSourceCodeFileOnStartup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="457"/>
- <source>Show Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="460"/>
- <source>Displays logging information.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="463"/>
- <source>Displays logging info about the currently running UiGUI application.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="53"/>
- <source>Indenter</source>
- <translation>Відступач</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="140"/>
- <source>Indenter Settings</source>
- <translation>Налаштування відступача</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="324"/>
- <source>Live Indent Preview</source>
- <translation>Живий перегляд відступів</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="171"/>
- <source>Main Toolbar</source>
- <translation>Головна панель</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="198"/>
- <source>Open Source File</source>
- <translation>Відкрити файл джерела</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="201"/>
- <source>Opens a dialog for selecting a source code file.</source>
- <translation>Відкриває діалог для обирання файла коду джерела.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="237"/>
- <source>Opens a file dialog to save the currently shown source code.</source>
- <translation>Відкриває файловий діалог для збереження поточного коду джерела.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="421"/>
- <source>Opens the settings dialog</source>
- <translation>Відкриває діалог налаштувань</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="424"/>
- <source>Opens the settings dialog, to set language etc.</source>
- <translation>Відкриває діалог налаштувань, встановлення мови, і т.д.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="306"/>
- <source>Parameter Tooltips</source>
- <translation>Підказки параметрів</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="276"/>
- <source>PDF</source>
- <translation>PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="264"/>
- <source>Quits the UniversalIndentGUI.</source>
- <translation>Виходить з UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="69"/>
- <source>Recently Opened Files</source>
- <translation>Нещодавно відкриті файли</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="76"/>
- <source>Reopen File with other Encoding</source>
- <translation>Відкрити файл з іншим кодуванням</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="213"/>
- <source>Save Source File</source>
- <translation>Зберегти файл джерела</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="81"/>
- <source>Save Source File As with other Encoding</source>
- <translation>Зберегти вихідний файл з іншим кодуванням як</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="216"/>
- <source>Saves the currently shown source code to the last opened or saved source file.</source>
- <translation>Зберігає поточний код джерела у останній відкрити або збережений файл джерела.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="101"/>
- <source>Set Syntax Highlighter</source>
- <translation>Встановити підсвітку синтаксису</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="374"/>
- <source>Set white space visible</source>
- <translation>Зробити пробіл видимим</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="97"/>
- <location filename="../src/MainWindow.ui" line="415"/>
- <location filename="../src/MainWindow.ui" line="418"/>
- <source>Settings</source>
- <translation>Налаштування</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="252"/>
- <source>Shows info about UniversalIndentGUI.</source>
- <translation>Показує інформацію про UniversalIndentGUI.</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="345"/>
- <location filename="../src/MainWindow.ui" line="348"/>
- <source>Syntax Highlighting</source>
- <translation>Підсвітка синтаксису</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="15"/>
- <source>UniversalIndentGUI</source>
- <translation>UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="368"/>
- <location filename="../src/MainWindow.ui" line="371"/>
- <source>White Space Visible</source>
- <translation>Пробіл видимий</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="240"/>
- <source>Ctrl+Shift+S</source>
- <translation>Ctrl+Shift+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="357"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
-</context>
-<context>
- <name>SettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="46"/>
- <source>Application language</source>
- <translation>Мова програми</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="93"/>
- <source>Automatically open last file on startup</source>
- <translation>Автоматично відкривати останній файл при запуску</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="293"/>
- <source>Network</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="321"/>
- <source>If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
- <source>Enable proxy</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="343"/>
- <source>Host name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="353"/>
- <source>Host name of the to be used proxy. E.g.: proxy.example.com</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="366"/>
- <source>Port:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="376"/>
- <source>Port number to connect to the before named proxy.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="398"/>
- <source>User name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="408"/>
- <source>If the proxy needs authentification, enter the login name here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="421"/>
- <source>Password:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="431"/>
- <source>If the proxy needs authentification, enter the password here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="464"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>Включення підсвічує спеціальні ключові слова коду джерела.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="302"/>
- <source>Check online for update on program start</source>
- <translation>Перевіряти оновлення в мережі при запуску програми</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="299"/>
- <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
- <translation>Перевіряє існування нової версії UniversalIndentGUI при запуску програми, але лише один раз в день.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="35"/>
- <source>Common</source>
- <translation>Загально</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
- <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
- <translation>Визначає, скільки пробілів повинно показуватися у редакторі для одного символу табулятора.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="222"/>
- <source>Defines how many spaces should be displayed in the editor for one tab.</source>
- <translation>Визначає, скільки пробілів повинно показуватися у редакторі для однієї табулятора.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="204"/>
- <source>Display white space character (tabs, spaces, etc.)</source>
- <translation>Показує символи пробілів (табулятори, пробіли, і т. д.)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="225"/>
- <source>Displayed width of tabs</source>
- <translation>Показана ширина табуляторів</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="43"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="62"/>
- <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
- <translation>Показує усі доступні переклади UniversalIndentGui і дозволяє обрати один.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
- <source>Editor</source>
- <translation>Редактор</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="109"/>
- <source>Enable Parameter Tooltips</source>
- <translation>Включити підказки параметрів</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="467"/>
- <source>Enable syntax highlighting</source>
- <translation>Включити підсвітку синтаксису</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="201"/>
- <source>Enables or disables displaying of white space characters in the editor.</source>
- <translation>Включити або відключити показ символів пробілу у редакторі.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="486"/>
- <source>Highlighter settings</source>
- <translation>Налаштування підсвічування</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="106"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>Якщо виділено, підказки з&apos;являтимуться при наведенні і утриманні курсору миші над параметром відступача.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="90"/>
- <source>If selected opens the source code file on startup that was opened last time.</source>
- <translation>При виборі при запуску відкриватиметься останній відкритий файл коду джерела, відкритий минулого разу.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="483"/>
- <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
- <translation>Дозволяє створювати налаштування для усіх властивостей доступних підсвіток синтаксису (шрифт, колір...).</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="127"/>
- <source>Number of files in recently opened list</source>
- <translation>Кількість файлів у переліку нещодавніх файлів</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="521"/>
- <source>Set Color</source>
- <translation>Встановити колір</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="511"/>
- <source>Set Font</source>
- <translation>Шрифт</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="518"/>
- <source>Set the color for the current selected highlighter property.</source>
- <translation>Встановити колір для поточної підсвіченої властивості підсвічувача.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="508"/>
- <source>Set the font for the current selected highlighter property.</source>
- <translation>Встановити шрифт для поточної підсвіченої властивості підсвічувача.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="140"/>
- <source>Sets how many files should be remembered in the list of recently opened files.</source>
- <translation>Встановлює скільки файлів потрібно пам&apos;ятати у переліку нещодавно відкритих файлів.</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="219"/>
- <source>Sets width in single spaces used for tabs</source>
- <translation>Встановлює ширину у одиничних пробілах, які використовуються для табуляторів</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
- <source>Settings</source>
- <translation>Налаштування</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="458"/>
- <source>Syntax Highlighting</source>
- <translation>Підсвітка синтаксису</translation>
- </message>
-</context>
-<context>
- <name>TSLoggerDialog</name>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="14"/>
- <source>Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="24"/>
- <source>Logged messages</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="40"/>
- <source>Clear log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="43"/>
- <source>...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="54"/>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="57"/>
- <source>Open folder containing log file.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ToolBarWidget</name>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="14"/>
- <source>Form</source>
- <translation>Форма</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="26"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Відкриває діалог обрання файлу коду джерела.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;Цей файл використовуватиметься для показу змін інструментом відступача.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="29"/>
- <source>Open Source File </source>
- <translation>Відкрити файл джерела</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="40"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Включає і виключає перегляд переформатованого коду джерела.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Іншими словами, переключає між форматованим і неформатованим кодом. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="43"/>
- <source>Live Indent Preview</source>
- <translation>Живий перегляд відступів</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="50"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="57"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Включає і відключає підсвітку коду&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;джерела, показаного нижче. (Все ще потребує покращення роботи) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="60"/>
- <source>Syntax Highlight</source>
- <translation>Підсвітка синтаксису</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="67"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="73"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="93"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Показує інформацію про UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="96"/>
- <source>About</source>
- <translation>Про</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="107"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Виходить з UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="110"/>
- <source>Exit</source>
- <translation>Вихід</translation>
- </message>
-</context>
-<context>
- <name>UiGuiErrorMessage</name>
- <message>
- <location filename="../src/UiGuiErrorMessage.cpp" line="42"/>
- <source>Show this message again</source>
- <translation>Показати знову це повідомлення</translation>
- </message>
-</context>
-<context>
- <name>UiGuiIndentServer</name>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>UiGUI Server</source>
- <translation>Сервер UiGUI</translation>
- </message>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>Unable to start the server: %1.</source>
- <translation>Неможливо запустити серверr: %1.</translation>
- </message>
-</context>
-<context>
- <name>UiGuiSettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="77"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="150"/>
- <source>Chinese (Taiwan)</source>
- <translation>Китайська (Тайвань)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="68"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="141"/>
- <source>English</source>
- <translation>Англійська</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="71"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="144"/>
- <source>French</source>
- <translation>Французька</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="74"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="147"/>
- <source>German</source>
- <translation>Німецька</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="80"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="153"/>
- <source>Japanese</source>
- <translation>Японська</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="83"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="156"/>
- <source>Russian</source>
- <translation>Російська</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="86"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="159"/>
- <source>Ukrainian</source>
- <translation>Українська</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="90"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="162"/>
- <source>Unknown language mnemonic </source>
- <translation>Невідомий мовний мнемокод </translation>
- </message>
-</context>
-<context>
- <name>UpdateCheckDialog</name>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="217"/>
- <source>A newer version of UniversalIndentGUI is available.
-Your version is %1. New version is %2.
-Do you want to go to the download website?</source>
- <translation>Доступна новіша версія UniversalIndentGUI.
-Встановлена версія %1. Нова версія %2.
-Хочете перейти на веб-сайт завантаження?</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="17"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="204"/>
- <source>Checking for update...</source>
- <translation>Перевірка оновлення…...</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="23"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="205"/>
- <source>Checking whether a newer version is available</source>
- <translation>Перевірки доступності новішої версії</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="228"/>
- <source>No new update available</source>
- <translation>Жодних оновлень</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="216"/>
- <source>Update available</source>
- <translation>Доступне оновлення</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>Update check error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <source>There was an error while trying to check for an update! The retrieved file did not contain expected content.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>There was an error while trying to check for an update! Error was : %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="229"/>
- <source>You already have the latest version of UniversalIndentGUI.</source>
- <translation>Вже встановлена остання версія UniversalIndentGUI.</translation>
- </message>
-</context>
-</TS>
diff --git a/translations/universalindent_zh_TW.ts b/translations/universalindent_zh_TW.ts
deleted file mode 100755
index 9ba2a7c..0000000
--- a/translations/universalindent_zh_TW.ts
+++ /dev/null
@@ -1,1132 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE TS>
-<TS version="2.0" language="zh_TW">
-<context>
- <name>AboutDialog</name>
- <message>
- <location filename="../src/AboutDialog.ui" line="26"/>
- <source>About UniversalIndentGUI</source>
- <translation>關於 UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="97"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;sans-serif&apos;; font-size:large;&quot;&gt;Version %1 rev.%2, %3&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="126"/>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Lucida Grande&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;Trebuchet MS,Helvetica,sans-serif&apos;; font-size:medium;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot;-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:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
-&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
-p, li { white-space: pre-wrap; }
-&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;這是一套跨平台、支援多種程式碼重整 / 美化 / 縮排工具的圖形化使用者介面,GreatCode、AStyle (Artistic Styler)、GNU Indent、BCPP 及其他工具皆在支援名單裡頭。本工具最大的特色在於可以讓你即時預覽原始程式碼重整之後的結果。&lt;/span&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;br /&gt;開發者:&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;專案首頁:&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;授權協定:UniversalIndentGui 採用 GPL 2 授權。詳情請參閱附帶的 LICENSE.GPL 文件,或拜訪 &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt; 取得進一步的資訊。&lt;/p&gt;
-&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;/p&gt;
-&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;致謝名單:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/AboutDialog.ui" line="173"/>
- <source> OK </source>
- <translation>確定</translation>
- </message>
-</context>
-<context>
- <name>FindDialog</name>
- <message>
- <location filename="../src/FindDialog.ui" line="14"/>
- <source>Find</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="26"/>
- <source>Find what:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="46"/>
- <source>Find options</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="52"/>
- <source>Match case</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="59"/>
- <source>Match whole word</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="66"/>
- <source>Search forward</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="76"/>
- <source>Use Regular Expressions</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="104"/>
- <source>Find Next</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/FindDialog.ui" line="111"/>
- <source>Close</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>IndentHandler</name>
- <message>
- <location filename="../src/IndentHandler.cpp" line="608"/>
- <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
- <translation>&lt;b&gt;重整工具命令列輸出為:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="607"/>
- <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
- <translation>&lt;b&gt;重整工具傳回的錯誤代碼:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="572"/>
- <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
- <translation>&lt;b&gt;原因可能是:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="568"/>
- <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
- <translation>&lt;b&gt;傳回的錯誤訊息:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="599"/>
- <source>Error calling Indenter</source>
- <translation>呼叫重整工具時發生錯誤</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="615"/>
- <source>Indenter returned error</source>
- <translation>重整工具傳回錯誤</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="540"/>
- <source>No indenter executable</source>
- <translation>找不到重整工具</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
- <translation>該重整工具只有 Win32 版本,而你似乎尚未安裝 wine。請安裝 wine 以便執行該重整工具。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1451"/>
- <source>wine not installed</source>
- <translation>尚未安裝 wine</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="592"/>
- <location filename="../src/IndentHandler.cpp" line="611"/>
- <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
- <translation>&lt;br&gt;&lt;b&gt;呼叫方式是:&lt;/b&gt; </translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>No indenter ini files</source>
- <translation>找不到重整工具需要的 INI 檔</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="196"/>
- <source>There exists no indenter ini files in the directory &quot;</source>
- <translation>本目錄下找不到重整工具所需的 INI 檔 &quot;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="541"/>
- <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
- <translation>找不到重整工具 &quot;%1&quot; 於目錄 &quot;%2&quot; 下及全域環境變數下。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="593"/>
- <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
- <translation>&lt;br&gt;&lt;br&gt;&lt;b&gt;重整工具的輸出結果:&lt;/b&gt;&lt;pre&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="948"/>
- <source>Indenter ini file header error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="949"/>
- <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1406"/>
- <source>Interpreter needed</source>
- <translation>需要直譯器</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1407"/>
- <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
- <translation>要使用這個重整工具,你必須將程式 &quot;%1&quot; 加到全域的 Path 變數中。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1497"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;顯示目前使用的重整工具名稱,並讓你選擇其他可用的重整工具&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1498"/>
- <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
- <translation>這會開啟當前重整工具的線上手冊,你將能找到更多關於可用參數的說明。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1509"/>
- <location filename="../src/IndentHandler.cpp" line="1510"/>
- <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
- <translation>建立批次檔呼叫目前的重整工具。它會接受檔案路徑作為參數,接著呼叫重整工具並套用目前的重整設定,適合讓 IDE 作為外部工具呼叫。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1542"/>
- <source>Choose indenter config file</source>
- <translation>選擇重整工具設定檔</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1558"/>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>All files</source>
- <translation>所有檔案</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1561"/>
- <source>Save indent config file</source>
- <translation>儲存重整工具的設定</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1587"/>
- <source>Shell Script</source>
- <translation>批次檔</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1592"/>
- <source>Save shell script</source>
- <translation>儲存批次檔</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1500"/>
- <source>Load Indenter Config File</source>
- <translation>載入重整工具設定檔</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1501"/>
- <source>Opens a file dialog to load the original config file of the indenter.</source>
- <translation>載入目前重整工具的設定</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1502"/>
- <source>Alt+O</source>
- <translation>Alt+O</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1504"/>
- <source>Save Indenter Config File</source>
- <translation>儲存重整工具設定檔</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1505"/>
- <source>Opens a dialog to save the current indenter configuration to a file.</source>
- <translation>儲存目前重整工具的設定</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1506"/>
- <source>Alt+S</source>
- <translation>Alt+S</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1508"/>
- <source>Create Indenter Call Shell Script</source>
- <translation>建立重整工具批次檔</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1512"/>
- <source>Reset indenter parameters</source>
- <translation>恢復為預設值</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1513"/>
- <location filename="../src/IndentHandler.cpp" line="1514"/>
- <source>Resets all indenter parameters to the default values.</source>
- <translation>將所有重整參數設定恢復為預設值。</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Really reset parameters?</source>
- <translation>確定要恢復為預設值?</translation>
- </message>
- <message>
- <location filename="../src/IndentHandler.cpp" line="1632"/>
- <source>Do you really want to reset the indenter parameters to the default values?</source>
- <translation>你真的要將參數恢復為預設值嗎?</translation>
- </message>
-</context>
-<context>
- <name>MainWindow</name>
- <message>
- <location filename="../src/MainWindow.cpp" line="440"/>
- <location filename="../src/MainWindow.cpp" line="480"/>
- <source>All files</source>
- <translation>所有檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Cannot read the file </source>
- <translation>無法讀取檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="444"/>
- <source>Choose source code file</source>
- <translation>選擇檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="408"/>
- <location filename="../src/MainWindow.cpp" line="1135"/>
- <source>Error opening file</source>
- <translation>開啟檔案時發生錯誤</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="866"/>
- <location filename="../src/MainWindow.cpp" line="888"/>
- <source>Export source code file</source>
- <translation>匯出檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="881"/>
- <source>HTML Document</source>
- <translation>HTML 文件</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1019"/>
- <source>Modified code</source>
- <translation>修改後的檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="859"/>
- <source>PDF Document</source>
- <translation>PDF 文件</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1086"/>
- <location filename="../src/MainWindow.cpp" line="1222"/>
- <source>Reopen the currently opened source code file by using the text encoding scheme </source>
- <translation>重新開啟目前的檔案,編碼使用 </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="483"/>
- <source>Save source code file</source>
- <translation>儲存檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="439"/>
- <location filename="../src/MainWindow.cpp" line="479"/>
- <source>Supported by indenter</source>
- <translation>重整工具支援的檔案類型</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1020"/>
- <source>The source code has been modified.
-Do you want to save your changes?</source>
- <translation>程式碼已被修改。
-你要儲存嗎?</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1165"/>
- <location filename="../src/MainWindow.cpp" line="1236"/>
- <source>Set the syntax highlightning to </source>
- <translation>將語法高亮度方式設為 </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>File no longer exists</source>
- <translation>檔案不存在</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1379"/>
- <source>The file %1 in the list of recently opened files does no longer exist.</source>
- <translation>找不到檔案清單裡的「%1」</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="1094"/>
- <location filename="../src/MainWindow.cpp" line="1228"/>
- <source>Save the currently opened source code file by using the text encoding scheme </source>
- <translation>另存目前的檔案,編碼使用 </translation>
- </message>
- <message>
- <location filename="../src/MainWindow.cpp" line="284"/>
- <location filename="../src/MainWindow.cpp" line="1427"/>
- <source>Line %1, Column %2</source>
- <translation>列 %1,行 %2</translation>
- </message>
-</context>
-<context>
- <name>MainWindowUi</name>
- <message>
- <location filename="../src/MainWindow.ui" line="15"/>
- <source>UniversalIndentGUI</source>
- <translation>UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="53"/>
- <source>Indenter</source>
- <translation>重整工具</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="58"/>
- <source>File</source>
- <translation>檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="62"/>
- <source>Export</source>
- <translation>匯出</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="69"/>
- <source>Recently Opened Files</source>
- <translation>最近開啟的檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="76"/>
- <source>Reopen File with other Encoding</source>
- <translation>用別的編碼方式重新開啟</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="81"/>
- <source>Save Source File As with other Encoding</source>
- <translation>用別的編碼方式另存新檔</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="97"/>
- <location filename="../src/MainWindow.ui" line="415"/>
- <location filename="../src/MainWindow.ui" line="418"/>
- <source>Settings</source>
- <translation>設定</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="101"/>
- <source>Set Syntax Highlighter</source>
- <translation>選擇語法高亮度</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="114"/>
- <source>Help</source>
- <translation>說明</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="171"/>
- <source>Main Toolbar</source>
- <translation>主要工具列</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="198"/>
- <source>Open Source File</source>
- <translation>開啟檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="201"/>
- <source>Opens a dialog for selecting a source code file.</source>
- <translation>選擇要處理的檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="204"/>
- <source>Ctrl+O</source>
- <translation>Ctrl+O</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="213"/>
- <source>Save Source File</source>
- <translation>儲存</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="216"/>
- <source>Saves the currently shown source code to the last opened or saved source file.</source>
- <translation>儲存目前顯示的程式碼</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="219"/>
- <source>Ctrl+S</source>
- <translation>Ctrl+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="237"/>
- <source>Opens a file dialog to save the currently shown source code.</source>
- <translation>儲存目前顯示的程式碼到別的檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="249"/>
- <source>About UniversalIndentGUI</source>
- <translation>關於 UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="252"/>
- <source>Shows info about UniversalIndentGUI.</source>
- <translation>顯示 UniversalIndentGUI 的相關資訊</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="261"/>
- <source>Exit</source>
- <translation>離開</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="264"/>
- <source>Quits the UniversalIndentGUI.</source>
- <translation>離開本程式</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="267"/>
- <source>Ctrl+Q</source>
- <translation>Ctrl+Q</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="276"/>
- <source>PDF</source>
- <translation>PDF</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="279"/>
- <source>Export the currently visible source code as PDF document</source>
- <translation>匯出目前顯示的程式碼到 PDF 文件</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="288"/>
- <source>HTML</source>
- <translation>HTML</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="291"/>
- <source>Export the currently visible source code as HTML document</source>
- <translation>匯出目前顯示的程式碼到 HTML 文件</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="306"/>
- <source>Parameter Tooltips</source>
- <translation>顯示參數的提示訊息</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="309"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>滑鼠移到重整工具的各項參數設定時,會顯示該參數的相關提示</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="312"/>
- <source>DONOTTRANSLATE:indenterParameterTooltipsEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="324"/>
- <source>Live Indent Preview</source>
- <translation>即時預覽重整效果</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="327"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="345"/>
- <location filename="../src/MainWindow.ui" line="348"/>
- <source>Syntax Highlighting</source>
- <translation>語法高亮度</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="351"/>
- <source>Enables or disables syntax highlighting for the source code.</source>
- <translation>啟用或停用語法高亮度顯示</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="354"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>啟用之後,程式碼會比較容易閱讀</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="360"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="368"/>
- <location filename="../src/MainWindow.ui" line="371"/>
- <source>White Space Visible</source>
- <translation>顯示空白字元</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="374"/>
- <source>Set white space visible</source>
- <translation>顯示空白字元</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="377"/>
- <source>Enables or disables diplaying of white space characters in the editor.</source>
- <translation>是否在編輯視窗裡頭顯示空白字元</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="383"/>
- <source>DONOTTRANSLATE:whiteSpaceIsVisible</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="394"/>
- <source>Auto Open Last File</source>
- <translation>自動載入上次使用的檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="397"/>
- <source>Auto open last source file on startup</source>
- <translation>啟動程式後,自動載入上次使用的檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="400"/>
- <source>If selected opens last source code file on startup</source>
- <translation>若你啟用這個選項,程式啟動後將會自動載入上次使用的檔案</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="406"/>
- <source>DONOTTRANSLATE:loadLastSourceCodeFileOnStartup</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="421"/>
- <source>Opens the settings dialog</source>
- <translation>開啟設定視窗</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="424"/>
- <source>Opens the settings dialog, to set language etc.</source>
- <translation>開啟設定視窗</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="433"/>
- <source>Check for update</source>
- <translation>檢查是否有更新檔</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="436"/>
- <location filename="../src/MainWindow.ui" line="439"/>
- <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
- <translation>上網檢查是否有新版的 UniversalIndentGUI</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="448"/>
- <source>Clear Recently Opened List</source>
- <translation>清空最近開啟的檔案清單</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="457"/>
- <source>Show Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="460"/>
- <source>Displays logging information.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="463"/>
- <source>Displays logging info about the currently running UiGUI application.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="140"/>
- <source>Indenter Settings</source>
- <translation>重整工具設定</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="228"/>
- <location filename="../src/MainWindow.ui" line="231"/>
- <location filename="../src/MainWindow.ui" line="234"/>
- <source>Save Source File As...</source>
- <translation>另存新檔...</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="240"/>
- <source>Ctrl+Shift+S</source>
- <translation>Ctrl+Shift+S</translation>
- </message>
- <message>
- <location filename="../src/MainWindow.ui" line="357"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
-</context>
-<context>
- <name>SettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="35"/>
- <source>Common</source>
- <translation>一般</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
- <source>Settings</source>
- <translation>設定</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="93"/>
- <source>Automatically open last file on startup</source>
- <translation>啟動程式後,自動載入上次使用的檔案</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="109"/>
- <source>Enable Parameter Tooltips</source>
- <translation>顯示參數的提示訊息</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
- <source>Editor</source>
- <translation>編輯器</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="486"/>
- <source>Highlighter settings</source>
- <translation>高亮度設定</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="511"/>
- <source>Set Font</source>
- <translation>選擇字型</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="521"/>
- <source>Set Color</source>
- <translation>選擇顏色</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="43"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="62"/>
- <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
- <translation>顯示所有可用的翻譯,讓我自行挑選</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="46"/>
- <source>Application language</source>
- <translation>選擇語系</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="90"/>
- <source>If selected opens the source code file on startup that was opened last time.</source>
- <translation>若你啟用這個選項,程式啟動後將會自動載入上次使用的檔案</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="106"/>
- <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
- <translation>滑鼠移到重整工具的各項參數設定時,會顯示該參數的相關提示</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
- <location filename="../src/UiGuiSettingsDialog.ui" line="140"/>
- <source>Sets how many files should be remembered in the list of recently opened files.</source>
- <translation>設定在最近開啟的檔案清單裡要顯示幾筆檔案</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="201"/>
- <source>Enables or disables displaying of white space characters in the editor.</source>
- <translation>選擇是否在編輯視窗裡頭顯示空白字元</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="204"/>
- <source>Display white space character (tabs, spaces, etc.)</source>
- <translation>顯示空白字元 (Tab, 空白, 其他)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
- <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
- <translation>設定 Tab 要用幾個空白顯示</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="219"/>
- <source>Sets width in single spaces used for tabs</source>
- <translation>設定 Tab 相當於幾個空白的寬度</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="222"/>
- <source>Defines how many spaces should be displayed in the editor for one tab.</source>
- <translation>設定 Tab 要用幾個空白顯示</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="225"/>
- <source>Displayed width of tabs</source>
- <translation>Tab 的寬度</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="293"/>
- <source>Network</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="321"/>
- <source>If checked, the made proxy settings will be applied for all network connections. Type of the used proxy is SOCKS5.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
- <source>Enable proxy</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="343"/>
- <source>Host name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="353"/>
- <source>Host name of the to be used proxy. E.g.: proxy.example.com</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="366"/>
- <source>Port:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="376"/>
- <source>Port number to connect to the before named proxy.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="398"/>
- <source>User name:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="408"/>
- <source>If the proxy needs authentification, enter the login name here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="421"/>
- <source>Password:</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="431"/>
- <source>If the proxy needs authentification, enter the password here.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="458"/>
- <source>Syntax Highlighting</source>
- <translation>語法高亮度</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="464"/>
- <source>By enabling special key words of the source code are highlighted.</source>
- <translation>啟用之後,程式碼會比較容易閱讀</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="467"/>
- <source>Enable syntax highlighting</source>
- <translation>啟用語法高亮度</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="483"/>
- <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
- <translation>讓你設定語法高亮度屬性,例如字型跟顏色</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="508"/>
- <source>Set the font for the current selected highlighter property.</source>
- <translation>設定字型</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="518"/>
- <source>Set the color for the current selected highlighter property.</source>
- <translation>設定顏色</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="127"/>
- <source>Number of files in recently opened list</source>
- <translation>最近開啟的檔案清單裡要顯示的檔案個數</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="299"/>
- <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
- <translation>程式啟動時自動檢查是否有新版本,一天只會檢查一次。</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.ui" line="302"/>
- <source>Check online for update on program start</source>
- <translation>程式啟動時自動檢查更新</translation>
- </message>
-</context>
-<context>
- <name>TSLoggerDialog</name>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="14"/>
- <source>Log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="24"/>
- <source>Logged messages</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="40"/>
- <source>Clear log</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="43"/>
- <source>...</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="54"/>
- <location filename="../src/debugging/TSLoggerDialog.ui" line="57"/>
- <source>Open folder containing log file.</source>
- <translation type="unfinished"></translation>
- </message>
-</context>
-<context>
- <name>ToolBarWidget</name>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="14"/>
- <source>Form</source>
- <translation>表單</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="26"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;選擇要重整的檔案&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="29"/>
- <source>Open Source File </source>
- <translation>開啟檔案</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="40"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;啟用或停用程式碼預覽功能。&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;換句話說,它將在重整過以及未重整的程式碼之間切換 (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="43"/>
- <source>Live Indent Preview</source>
- <translation>即時預覽重整效果</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="50"/>
- <source>Ctrl+L</source>
- <translation>Ctrl+L</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="57"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;啟用或停用程式碼高亮度功能。效能尚待改進。(Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="60"/>
- <source>Syntax Highlight</source>
- <translation>語法高亮度</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="67"/>
- <source>Ctrl+H</source>
- <translation>Ctrl+H</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="73"/>
- <source>DONOTTRANSLATE:SyntaxHighlightingEnabled</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="93"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;顯示 UniversalIndentGUI 的相關資訊&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="96"/>
- <source>About</source>
- <translation>關於</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="107"/>
- <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
- <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;離開 UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
- </message>
- <message>
- <location filename="../src/ToolBarWidget.ui" line="110"/>
- <source>Exit</source>
- <translation>離開</translation>
- </message>
-</context>
-<context>
- <name>UiGuiErrorMessage</name>
- <message>
- <location filename="../src/UiGuiErrorMessage.cpp" line="42"/>
- <source>Show this message again</source>
- <translation>下次繼續顯示這個訊息</translation>
- </message>
-</context>
-<context>
- <name>UiGuiIndentServer</name>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>UiGUI Server</source>
- <translation>UiGUI 伺服器</translation>
- </message>
- <message>
- <location filename="../src/UiGuiIndentServer.cpp" line="64"/>
- <source>Unable to start the server: %1.</source>
- <translation>無法連到伺服器:%1。</translation>
- </message>
-</context>
-<context>
- <name>UiGuiSettingsDialog</name>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="68"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="141"/>
- <source>English</source>
- <translation>英文</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="74"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="147"/>
- <source>German</source>
- <translation>德文</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="80"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="153"/>
- <source>Japanese</source>
- <translation>日文</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="90"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="162"/>
- <source>Unknown language mnemonic </source>
- <translation>未知語言 </translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="77"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="150"/>
- <source>Chinese (Taiwan)</source>
- <translation>中文(台灣)</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="71"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="144"/>
- <source>French</source>
- <translation>法文</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="83"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="156"/>
- <source>Russian</source>
- <translation>俄文</translation>
- </message>
- <message>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="86"/>
- <location filename="../src/UiGuiSettingsDialog.cpp" line="159"/>
- <source>Ukrainian</source>
- <translation>烏克蘭文</translation>
- </message>
-</context>
-<context>
- <name>UpdateCheckDialog</name>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="17"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="204"/>
- <source>Checking for update...</source>
- <translation>正在檢查是否有更新檔</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.ui" line="23"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="205"/>
- <source>Checking whether a newer version is available</source>
- <translation>正在檢查是否有新版本</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>Update check error</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="175"/>
- <source>There was an error while trying to check for an update! The retrieved file did not contain expected content.</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="180"/>
- <source>There was an error while trying to check for an update! Error was : %1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="216"/>
- <source>Update available</source>
- <translation>找到新版本</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="217"/>
- <source>A newer version of UniversalIndentGUI is available.
-Your version is %1. New version is %2.
-Do you want to go to the download website?</source>
- <translation>找到新版本
-你使用的版本是 %1,新版本是 %2
-你想要開啟下載頁面嗎?</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="228"/>
- <source>No new update available</source>
- <translation>沒有找到新版本</translation>
- </message>
- <message>
- <location filename="../src/UpdateCheckDialog.cpp" line="229"/>
- <source>You already have the latest version of UniversalIndentGUI.</source>
- <translation>你使用的是最新版的 UniversalIndentGUI</translation>
- </message>
-</context>
-</TS>