Sat, 29 Dec 2012 17:16:46 +0100
Fixed an issue in the IRC widget and updated the translations.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>CompareDialog</class> <widget class="QWidget" name="CompareDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>950</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>File Comparison</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QGroupBox" name="filesGroup"> <property name="title"> <string/> </property> <property name="flat"> <bool>true</bool> </property> <layout class="QHBoxLayout" name="horizontalLayout_3"> <property name="margin"> <number>0</number> </property> <item> <widget class="QLabel" name="textLabel1"> <property name="text"> <string>File &1:</string> </property> <property name="buddy"> <cstring>file1Edit</cstring> </property> </widget> </item> <item> <widget class="QLineEdit" name="file1Edit"> <property name="toolTip"> <string>Enter the name of the first file</string> </property> </widget> </item> <item> <widget class="QPushButton" name="file1Button"> <property name="toolTip"> <string>Press to select the file via a file selection dialog</string> </property> <property name="text"> <string>...</string> </property> </widget> </item> <item> <widget class="QLabel" name="textLabel2"> <property name="text"> <string>File &2:</string> </property> <property name="buddy"> <cstring>file1Edit</cstring> </property> </widget> </item> <item> <widget class="QLineEdit" name="file2Edit"> <property name="toolTip"> <string>Enter the name of the second file</string> </property> </widget> </item> <item> <widget class="QPushButton" name="file2Button"> <property name="toolTip"> <string>Press to select the file via a file selection dialog</string> </property> <property name="text"> <string>...</string> </property> </widget> </item> </layout> </widget> </item> <item> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="file1Label"> <property name="text"> <string/> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item row="0" column="2"> <widget class="QLabel" name="file2Label"> <property name="text"> <string/> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item row="1" column="0"> <widget class="QTextEdit" name="contents_1"> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> </property> <property name="lineWrapMode"> <enum>QTextEdit::NoWrap</enum> </property> <property name="readOnly"> <bool>true</bool> </property> <property name="tabStopWidth"> <number>8</number> </property> <property name="acceptRichText"> <bool>false</bool> </property> </widget> </item> <item row="1" column="1"> <layout class="QVBoxLayout"> <item> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>101</height> </size> </property> </spacer> </item> <item> <widget class="QToolButton" name="firstButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the first difference</string> </property> </widget> </item> <item> <widget class="QToolButton" name="upButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the previous difference</string> </property> </widget> </item> <item> <widget class="QToolButton" name="downButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the next difference</string> </property> </widget> </item> <item> <widget class="QToolButton" name="lastButton"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>Press to move to the last difference</string> </property> </widget> </item> <item> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>101</height> </size> </property> </spacer> </item> </layout> </item> <item row="1" column="2"> <widget class="QTextEdit" name="contents_2"> <property name="focusPolicy"> <enum>Qt::NoFocus</enum> </property> <property name="lineWrapMode"> <enum>QTextEdit::NoWrap</enum> </property> <property name="readOnly"> <bool>true</bool> </property> <property name="tabStopWidth"> <number>8</number> </property> <property name="acceptRichText"> <bool>false</bool> </property> </widget> </item> </layout> </item> <item> <widget class="QCheckBox" name="synchronizeCheckBox"> <property name="toolTip"> <string>Select, if the horizontal scrollbars should be synchronized</string> </property> <property name="text"> <string>&Synchronize horizontal scrollbars</string> </property> <property name="shortcut"> <string>Alt+S</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="totalLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QLabel" name="changedLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QLabel" name="addedLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QLabel" name="deletedLabel"> <property name="frameShape"> <enum>QFrame::Panel</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </item> </layout> </widget> <tabstops> <tabstop>file1Edit</tabstop> <tabstop>file1Button</tabstop> <tabstop>file2Edit</tabstop> <tabstop>file2Button</tabstop> <tabstop>synchronizeCheckBox</tabstop> <tabstop>firstButton</tabstop> <tabstop>upButton</tabstop> <tabstop>downButton</tabstop> <tabstop>lastButton</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>CompareDialog</receiver> <slot>close()</slot> <hints> <hint type="sourcelabel"> <x>102</x> <y>580</y> </hint> <hint type="destinationlabel"> <x>104</x> <y>599</y> </hint> </hints> </connection> </connections> </ui>