add sound-volume option
This commit is contained in:
@@ -143,6 +143,7 @@ ConfigFile::ConfigFile(int argc, char **argv) : noWriteAccess(0)
|
||||
configList.push_back(ConfigInfo("ShowFlipCardsAnimation", CONFIG_TYPE_INT, "1"));
|
||||
configList.push_back(ConfigInfo("ShowBlindButtons", CONFIG_TYPE_INT, "1"));
|
||||
configList.push_back(ConfigInfo("PlaySoundEffects", CONFIG_TYPE_INT, "1"));
|
||||
configList.push_back(ConfigInfo("SoundVolume", CONFIG_TYPE_INT, "8"));
|
||||
configList.push_back(ConfigInfo("FlipsideTux", CONFIG_TYPE_INT, "1"));
|
||||
configList.push_back(ConfigInfo("FlipsideOwn", CONFIG_TYPE_INT, "0"));
|
||||
configList.push_back(ConfigInfo("FlipsideOwnFile", CONFIG_TYPE_STRING, ""));
|
||||
|
||||
@@ -631,7 +631,7 @@ mainWindowImpl::mainWindowImpl(ConfigFile *c, QMainWindow *parent)
|
||||
|
||||
|
||||
//Sound
|
||||
mySDLPlayer = new SDLPlayer;
|
||||
mySDLPlayer = new SDLPlayer(myConfig);
|
||||
|
||||
}
|
||||
|
||||
@@ -1007,7 +1007,7 @@ void mainWindowImpl::refreshPlayerAvatar() {
|
||||
if(currentHand->getPlayerArray()[i]->getMyActiveStatus()) {
|
||||
|
||||
if(!i) {
|
||||
if(currentHand->getPlayerArray()[0]->getMyAvatar() == "") {
|
||||
if(currentHand->getPlayerArray()[0]->getMyAvatar() == "" || !QFile::QFile(QString::fromUtf8(currentHand->getPlayerArray()[0]->getMyAvatar().c_str())).exists()) {
|
||||
playerAvatarLabelArray[0]->setPixmap(QPixmap(":/guiv2/resources/guiv2/genereticAvatar.png"));
|
||||
}
|
||||
else {
|
||||
@@ -1015,7 +1015,7 @@ void mainWindowImpl::refreshPlayerAvatar() {
|
||||
}
|
||||
}
|
||||
else {
|
||||
if(currentHand->getPlayerArray()[i]->getMyAvatar() == "") {
|
||||
if(currentHand->getPlayerArray()[i]->getMyAvatar() == "" || !QFile::QFile(QString::fromUtf8(currentHand->getPlayerArray()[i]->getMyAvatar().c_str())).exists()) {
|
||||
playerAvatarLabelArray[i]->setPixmap(QPixmap(":/guiv2/resources/guiv2/genereticAvatar.png"));
|
||||
}
|
||||
else {
|
||||
|
||||
+359
-270
@@ -5,10 +5,16 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>593</width>
|
||||
<height>553</height>
|
||||
<width>600</width>
|
||||
<height>533</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>600</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="windowTitle" >
|
||||
<string>Settings</string>
|
||||
</property>
|
||||
@@ -36,6 +42,47 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QListWidget" name="listWidget" >
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Interface</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Local Game Settings</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Network Game Settings</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Player Nicks</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Log Messages</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1" >
|
||||
<widget class="QStackedWidget" name="stackedWidget" >
|
||||
<property name="currentIndex" >
|
||||
@@ -49,6 +96,94 @@
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item row="9" column="0" >
|
||||
<widget class="QGroupBox" name="groupBox_4" >
|
||||
<property name="title" >
|
||||
<string/>
|
||||
</property>
|
||||
<layout class="QGridLayout" >
|
||||
<property name="margin" >
|
||||
<number>9</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item row="0" column="1" >
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QCheckBox" name="checkBox_playSoundEffects" >
|
||||
<property name="text" >
|
||||
<string>Play sound effects</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2" >
|
||||
<layout class="QHBoxLayout" >
|
||||
<property name="margin" >
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_25" >
|
||||
<property name="text" >
|
||||
<string>Sound Volume:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="label_soundVolume" >
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text" >
|
||||
<string>10</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QSlider" name="horizontalSlider_soundVolume" >
|
||||
<property name="minimum" >
|
||||
<number>1</number>
|
||||
</property>
|
||||
<property name="maximum" >
|
||||
<number>10</number>
|
||||
</property>
|
||||
<property name="value" >
|
||||
<number>8</number>
|
||||
</property>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="7" column="0" >
|
||||
<widget class="QCheckBox" name="checkBox_showFlipCardsAnimation" >
|
||||
<property name="text" >
|
||||
<string>Show flip-card animation</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="10" column="0" >
|
||||
<widget class="QGroupBox" name="groupBox" >
|
||||
<property name="title" >
|
||||
@@ -143,12 +278,18 @@ p, li { white-space: pre-wrap; }
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="7" column="0" >
|
||||
<widget class="QCheckBox" name="checkBox_showFlipCardsAnimation" >
|
||||
<property name="text" >
|
||||
<string>Show flip-card animation</string>
|
||||
<item row="11" column="0" >
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
</widget>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="8" column="0" >
|
||||
<widget class="QCheckBox" name="checkBox_showBlindButtons" >
|
||||
@@ -212,26 +353,6 @@ p, li { white-space: pre-wrap; }
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="11" column="0" >
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="9" column="0" >
|
||||
<widget class="QCheckBox" name="checkBox_playSoundEffects" >
|
||||
<property name="text" >
|
||||
<string>Play sound effects</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="page_2" >
|
||||
@@ -679,37 +800,203 @@ p, li { white-space: pre-wrap; }
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item row="5" column="0" >
|
||||
<item row="1" column="0" >
|
||||
<widget class="Line" name="line_4" >
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QLabel" name="label_7" >
|
||||
<property name="font" >
|
||||
<font>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text" >
|
||||
<string>Player Nicks</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0" >
|
||||
<layout class="QHBoxLayout" >
|
||||
<property name="margin" >
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Vertical</enum>
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>451</width>
|
||||
<height>0</height>
|
||||
<width>151</width>
|
||||
<height>116</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="4" column="0" >
|
||||
<widget class="QLabel" name="label_38" >
|
||||
<property name="text" >
|
||||
<string><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Note: Best avatar quality with image ratio like </span><span style=" font-weight:600; font-style:italic;">width=50, height=50.</span></p></body></html></string>
|
||||
<item>
|
||||
<layout class="QGridLayout" >
|
||||
<property name="margin" >
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item row="1" column="0" >
|
||||
<layout class="QHBoxLayout" >
|
||||
<property name="margin" >
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType" >
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>3</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="MyHPAvatarButton" name="pushButton_HumanPlayerAvatar" >
|
||||
<property name="sizePolicy" >
|
||||
<sizepolicy>
|
||||
<hsizetype>13</hsizetype>
|
||||
<vsizetype>13</vsizetype>
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>60</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>60</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="iconSize" >
|
||||
<size>
|
||||
<width>50</width>
|
||||
<height>50</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0" >
|
||||
<widget class="QGroupBox" name="groupBox_3" >
|
||||
<property name="minimumSize" >
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType" >
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>359</width>
|
||||
<height>273</height>
|
||||
<width>3</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="2" column="0" >
|
||||
<widget class="QLineEdit" name="lineEdit_HumanPlayerName" >
|
||||
<property name="sizePolicy" >
|
||||
<sizepolicy>
|
||||
<hsizetype>0</hsizetype>
|
||||
<vsizetype>0</vsizetype>
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maxLength" >
|
||||
<number>12</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QLabel" name="label_8" >
|
||||
<property name="sizePolicy" >
|
||||
<sizepolicy>
|
||||
<hsizetype>0</hsizetype>
|
||||
<vsizetype>0</vsizetype>
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text" >
|
||||
<string>Human Player:</string>
|
||||
</property>
|
||||
<property name="alignment" >
|
||||
<set>Qt::AlignCenter</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>151</width>
|
||||
<height>116</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="3" column="0" >
|
||||
<widget class="QGroupBox" name="groupBox_3" >
|
||||
<property name="title" >
|
||||
<string>Computer Engine</string>
|
||||
</property>
|
||||
@@ -718,7 +1005,7 @@ p, li { white-space: pre-wrap; }
|
||||
<number>9</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>15</number>
|
||||
<number>5</number>
|
||||
</property>
|
||||
<item row="1" column="2" >
|
||||
<layout class="QGridLayout" >
|
||||
@@ -1557,202 +1844,30 @@ p, li { white-space: pre-wrap; }
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0" >
|
||||
<layout class="QHBoxLayout" >
|
||||
<property name="margin" >
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>151</width>
|
||||
<height>116</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QGridLayout" >
|
||||
<property name="margin" >
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item row="1" column="0" >
|
||||
<layout class="QHBoxLayout" >
|
||||
<property name="margin" >
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="spacing" >
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType" >
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>3</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="MyHPAvatarButton" name="pushButton_HumanPlayerAvatar" >
|
||||
<property name="sizePolicy" >
|
||||
<sizepolicy>
|
||||
<hsizetype>13</hsizetype>
|
||||
<vsizetype>13</vsizetype>
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>60</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>60</width>
|
||||
<height>60</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="iconSize" >
|
||||
<size>
|
||||
<width>50</width>
|
||||
<height>50</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeType" >
|
||||
<enum>QSizePolicy::Fixed</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>3</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="2" column="0" >
|
||||
<widget class="QLineEdit" name="lineEdit_HumanPlayerName" >
|
||||
<property name="sizePolicy" >
|
||||
<sizepolicy>
|
||||
<hsizetype>0</hsizetype>
|
||||
<vsizetype>0</vsizetype>
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maxLength" >
|
||||
<number>12</number>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QLabel" name="label_8" >
|
||||
<property name="sizePolicy" >
|
||||
<sizepolicy>
|
||||
<hsizetype>0</hsizetype>
|
||||
<vsizetype>0</vsizetype>
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>100</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<item row="4" column="0" >
|
||||
<widget class="QLabel" name="label_38" >
|
||||
<property name="text" >
|
||||
<string>Human Player:</string>
|
||||
</property>
|
||||
<property name="alignment" >
|
||||
<set>Qt::AlignCenter</set>
|
||||
<string><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Note: Best avatar quality with image ratio like </span><span style=" font-weight:600; font-style:italic;">width=50, height=50.</span></p></body></html></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<item row="5" column="0" >
|
||||
<spacer>
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" >
|
||||
<size>
|
||||
<width>151</width>
|
||||
<height>116</height>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QLabel" name="label_7" >
|
||||
<property name="font" >
|
||||
<font>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text" >
|
||||
<string>Player Nicks</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" >
|
||||
<widget class="Line" name="line_4" >
|
||||
<property name="orientation" >
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="page_5" >
|
||||
<layout class="QGridLayout" >
|
||||
@@ -1965,47 +2080,6 @@ p, li { white-space: pre-wrap; }
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0" >
|
||||
<widget class="QListWidget" name="listWidget" >
|
||||
<property name="minimumSize" >
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize" >
|
||||
<size>
|
||||
<width>150</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Interface</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Local Game Settings</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Network Game Settings</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Player Nicks</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text" >
|
||||
<string>Log Messages</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
@@ -2029,7 +2103,6 @@ p, li { white-space: pre-wrap; }
|
||||
<tabstop>checkBox_showFadeOutCardsAnimation</tabstop>
|
||||
<tabstop>checkBox_showFlipCardsAnimation</tabstop>
|
||||
<tabstop>checkBox_showBlindButtons</tabstop>
|
||||
<tabstop>checkBox_playSoundEffects</tabstop>
|
||||
<tabstop>radioButton_flipsideTux</tabstop>
|
||||
<tabstop>radioButton_flipsideOwn</tabstop>
|
||||
<tabstop>lineEdit_OwnFlipsideFilename</tabstop>
|
||||
@@ -2084,8 +2157,8 @@ p, li { white-space: pre-wrap; }
|
||||
<slot>reject()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel" >
|
||||
<x>331</x>
|
||||
<y>522</y>
|
||||
<x>340</x>
|
||||
<y>576</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel" >
|
||||
<x>286</x>
|
||||
@@ -2141,5 +2214,21 @@ p, li { white-space: pre-wrap; }
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>horizontalSlider_soundVolume</sender>
|
||||
<signal>valueChanged(int)</signal>
|
||||
<receiver>label_soundVolume</receiver>
|
||||
<slot>setNum(int)</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel" >
|
||||
<x>546</x>
|
||||
<y>264</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel" >
|
||||
<x>501</x>
|
||||
<y>260</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
||||
|
||||
@@ -130,6 +130,7 @@ void settingsDialogImpl::exec() {
|
||||
checkBox_showFlipCardsAnimation->setChecked(myConfig->readConfigInt("ShowFlipCardsAnimation"));
|
||||
checkBox_showBlindButtons->setChecked(myConfig->readConfigInt("ShowBlindButtons"));
|
||||
checkBox_playSoundEffects->setChecked(myConfig->readConfigInt("PlaySoundEffects"));
|
||||
horizontalSlider_soundVolume->setValue(myConfig->readConfigInt("SoundVolume"));
|
||||
radioButton_flipsideTux->setChecked(myConfig->readConfigInt("FlipsideTux"));
|
||||
radioButton_flipsideOwn->setChecked(myConfig->readConfigInt("FlipsideOwn"));
|
||||
if(radioButton_flipsideOwn->isChecked()) {
|
||||
@@ -210,6 +211,7 @@ void settingsDialogImpl::isAccepted() {
|
||||
myConfig->writeConfigInt("ShowFlipCardsAnimation", checkBox_showFlipCardsAnimation->isChecked());
|
||||
myConfig->writeConfigInt("ShowBlindButtons", checkBox_showBlindButtons->isChecked());
|
||||
myConfig->writeConfigInt("PlaySoundEffects", checkBox_playSoundEffects->isChecked());
|
||||
myConfig->writeConfigInt("SoundVolume", horizontalSlider_soundVolume->value());
|
||||
myConfig->writeConfigInt("FlipsideTux", radioButton_flipsideTux->isChecked());
|
||||
myConfig->writeConfigInt("FlipsideOwn", radioButton_flipsideOwn->isChecked());
|
||||
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
SDLPlayer::SDLPlayer()
|
||||
: soundData(NULL), currentChannel(0) , audioEnabled(0)
|
||||
SDLPlayer::SDLPlayer(ConfigFile *c)
|
||||
: soundData(NULL), currentChannel(0) , audioEnabled(0), myConfig(c)
|
||||
{
|
||||
initAudio();
|
||||
}
|
||||
@@ -83,7 +83,11 @@ void SDLPlayer::playSound(string audioString, int playerID) {
|
||||
|
||||
sound = Mix_QuickLoad_WAV(soundData);
|
||||
|
||||
// set channel 2 to be behind and right, and 100 units away
|
||||
|
||||
// set channel 0 to settings volume
|
||||
Mix_Volume(0,myConfig->readConfigInt("SoundVolume")*10);
|
||||
|
||||
// set 3d effect
|
||||
if(!Mix_SetPosition(0, position, distance)) {
|
||||
printf("Mix_SetPosition: %s\n", Mix_GetError());
|
||||
// no position effect, is it ok?
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
#endif
|
||||
|
||||
#include <string>
|
||||
#include "configfile.h"
|
||||
|
||||
/**
|
||||
@author FThauer FHammer <webmaster@pokerth.net>
|
||||
@@ -31,7 +32,7 @@ class SDLPlayer : public QObject{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
SDLPlayer();
|
||||
SDLPlayer(ConfigFile*);
|
||||
|
||||
~SDLPlayer();
|
||||
|
||||
@@ -52,6 +53,8 @@ private:
|
||||
|
||||
bool audioEnabled;
|
||||
|
||||
ConfigFile *myConfig;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
+108
-98
@@ -1194,132 +1194,132 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1329,17 +1329,17 @@ Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -1347,22 +1347,22 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1442,12 +1442,12 @@ Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1455,17 +1455,17 @@ Please enter an valid picture!</source>
|
||||
<context>
|
||||
<name>settingsDialog</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1473,262 +1473,262 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1736,52 +1736,62 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -1253,67 +1253,67 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Ctrl+N para iniciar una nueva partida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation>F1 - Dejarlo/Todo | F2 - Ver/Ir | F3 - Apostar/Subir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation>Error en la red</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation>La dirección del servidor no está establecida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation>Se ha establecido un puerto no válido (no se permiten los puerto 0-1023).</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation>No se puede crear un socket de comunicaciones TCP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation>No se puede establecer la dirección IP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation>No se puede establecer el puerto para este tipo de dirección.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation>No se puede resolver el nombre del servidor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation>Fallo en la comunicación - seleccione otro puerto.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation>Error interno en la red: fallo en "listen".</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation>Finalizada la ejecución del servidor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation>No se puede conectar al servidor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation>Error interno en la red: fallo en "select".</translation>
|
||||
</message>
|
||||
@@ -1323,7 +1323,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Error interno en la red: fallo en "recv".</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation>Error interno en la red: fallo en "send".</translation>
|
||||
</message>
|
||||
@@ -1333,67 +1333,67 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Conexión cerrada por el servidor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation>Error interno en la red: conexión TCP duplicada.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation>Se ha recibido un paquete de red no válido.
|
||||
Asegúrese de que todos los jugadores utilizan la misma versión de PokerTH.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation>Error interno de estado.
|
||||
Asegúrese de que todos los jugadores utilizan la misma versión de PokerTH.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation>El servidor de PokerTH no permite esta versión del juego.
|
||||
Actualice PokerTH.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation>Este servidor está lleno.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation>Imposible unirse - el servidor ya ha comenzado la partida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation>Contraseña incorrecta al unirse a la partida.
|
||||
Vuelva a introducir la contraseña e inténtelo de nuevo.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation>La contraseña es demasiado larga. Elija otra.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation>Su nombre de jugador ya está en uso por otra persona.
|
||||
Elija un nombre diferente.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation>El nombre de jugador es demasiado corto o largo. Elija otro nombre.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation>Ha ocurrido un error interno.</translation>
|
||||
</message>
|
||||
@@ -1403,17 +1403,17 @@ Elija un nombre diferente.</translation>
|
||||
<translation>Cmd+N para iniciar una nueva partida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation>Iniciar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation>Detener</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -1424,22 +1424,22 @@ Por favor, compruebe la dirección del servidor.
|
||||
Si el servidor está detrás de un enrutador NAT, asegúrese de que el puerto de reenvío está configurado en el servidor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation>Conexión cerrada por el servidor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation>El servidor se ha referido a un jugador desconocido. Abortando.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation>Ha sido expulsado del servidor.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation>El número de jugadores no es válido.</translation>
|
||||
</message>
|
||||
@@ -1520,12 +1520,12 @@ Please enter an valid picture!</source>
|
||||
Introduzca una imagen válida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation>Seleccione una imagen de avatar externa</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation>Imágenes (*.png)</translation>
|
||||
</message>
|
||||
@@ -1538,17 +1538,17 @@ Introduzca una imagen válida.</translation>
|
||||
<translation type="obsolete">PokerTH 0.4 - Preferencia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation>Entorno</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation>Respaldo de las cartas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1559,27 +1559,27 @@ p, li { white-space: pre-wrap; }
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Nota: La mejor calidad se obtiene con unas proporciones de la imagen de </span><span style=" font-weight:600; font-style:italic;">ancho=100, alto=140.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation>Predeterminado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation>Opciones predeterminadas de la partida local</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation>Postura mínima:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation>Dinero inicial:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation>0.4 (actual)</translation>
|
||||
</message>
|
||||
@@ -1589,32 +1589,32 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">0.3 (anterior)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation>Versión del motor:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation>Opciones del servidor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation>Puerto del servidor:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation>Usar IPv6</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation>Contraseña del servidor:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation>Opciones predeterminadas de la partida en red</translation>
|
||||
</message>
|
||||
@@ -1624,12 +1624,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">0.4 (actual - en desarrollo)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation>Motor del ordenador</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation>Oponente 5:</translation>
|
||||
</message>
|
||||
@@ -1639,12 +1639,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Avatar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation>Oponente 3:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation>Oponente 2:</translation>
|
||||
</message>
|
||||
@@ -1654,22 +1654,22 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Oponente 6:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation>Oponente 1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation>Oponente 4:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation>Jugador humano:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation>Apodos de los jugadores</translation>
|
||||
</message>
|
||||
@@ -1685,167 +1685,167 @@ p, li { white-space: pre-wrap; }
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Nota: La mejor calidad se obtiene con unas proporciones de la imagen de </span><span style=" font-weight:600; font-style:italic;">ancho=100, alto=140.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation>Día(s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation>Directorio del archivo de registro: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation>Mensajes de registro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation>Opciones de la partida local</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation>Opciones de partida en red</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation>Mostrar animación de las cartas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation>Imagen del reverso propias:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation>Mostrar animación de fundido para las cartas no ganadoras</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation>Mostrar introducción al empezar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation>Mostrar herramientas de la derecha (F11 para conmutar)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation>Mostrar herramientas de la izquierda (F10 para conmutar)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation>Mostrar mensaje de la barra de estado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation>Mostrar diálogo de opciones de la partida siempre</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation>Manos antes de subir la postura mínima:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation>Número de jugadores:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation>Velocidad del juego:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation>Pausa entre manos (pulsar botón "Iniciar" para seguir)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation>Velocidad de juego de los ordenadores oponentes:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation>Versión del motor para los ordenadores oponentes:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation>Conmutar registro</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation>Guardar los archivos de registro durante</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation>Escribir el registro cada: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation>cada acción (acceso a disco muy frecuente)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation>cada mano (acceso a disco medio)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation>cada partida (acceso a disco bajo)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation>Mostrar botones para las posturas mínimas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation>Reproducir efectos de sonido</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation>0.4 (actual)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation>Utilizar SCTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation><a href="http://en.wikipedia.org/wiki/Ipv6">¿Qué es esto?</a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">¿Qué es esto?</a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation>Tiempo de acción del jugador (seg):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1856,25 +1856,35 @@ p, li { white-space: pre-wrap; }
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Nota: La mejor calidad del avatar se obtiene con una proporción de imagen de </span><span style=" font-weight:600; font-style:italic;">ancho=50, alto=50.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation>Oponente 7:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation>Preferencias</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation>Número máximo de jugadores:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished">10</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation>Error en las opciones</translation>
|
||||
</message>
|
||||
@@ -1928,26 +1938,26 @@ Please enter an valid picture!</source>
|
||||
Introduzca una imagen válida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation>La imagen del respaldo introducida no existe.
|
||||
Introduzca una imagen válida.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation>El directorio del archivo de registro no existe.
|
||||
Introduzca un directorio válido.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation>Seleccione la imagen del respaldo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation>Imágenes (*.png)</translation>
|
||||
</message>
|
||||
@@ -1962,7 +1972,7 @@ Introduzca un directorio válido.</translation>
|
||||
<translation type="obsolete">Seleccione el avatar del ordenador oponente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation>Abrir directorio</translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -1236,67 +1236,67 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Ctrl+N pour démarrer une nouvelle partie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation>F1 - Passer/Tapis | F2 - Parole/Suivre | F3 - Miser/Relancer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation>Erreur de réseau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation>L'adresse du serveur n'a pas été spécifiée</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation>Un port invalide a été spécifié (les ports 0-1023 ne sont pas permis)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation>Impossible d'ouvrir un interface de connexion TCP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation>Impossible d'initialiser l'adresse IP.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation>Impossible de définir le port pour ce type d'adresse.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation>Impossible de résoudre le nom du serveur.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation>L'opération 'Bind' a échoué - veuillez sélectionner un autre port.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation>Erreur interne du réseau: l'opération "listen" a échoué.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation>L'exécution du serveur a été arrêté.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation>Connexion au serveur impossible.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation>Erreur interne du réseau: l'opération "select" a échoué.</translation>
|
||||
</message>
|
||||
@@ -1306,7 +1306,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Erreur interne du réseau: l'opération "recv" a échoué.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation>Erreur interne du réseau: l'opération "send" a échoué.</translation>
|
||||
</message>
|
||||
@@ -1316,67 +1316,67 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">La connexion au serveur a été interrompue.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation>Erreur interne du réseau: Connection TCP dupliquée.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation>Un paquet de données invalide a été reçu.
|
||||
Veuillez vous assurer que tous les joueurs utilisent la même version de PokerTH.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation>Erreur d'état interne.
|
||||
Veuillez vous assurer que tous les joueurs utilisent la même version de PokerTH.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation>Le serveur PokerTH ne supporte pas cette version du jeu.
|
||||
Veuillez mettre à jour votre version de PokerTH.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation>Désolé, ce serveur a présentement atteint sa limite de joueurs.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation>Impossible de joindre - la partie a déjà commencé</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation>Mot de passe invalide pour la partie sélectionnée.
|
||||
Veuillez entrer le mot de passe à nouveau et réessayez.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation>Ce mot de passe est trop long. Veuillez en choisir un autre.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation>Ce nom d'utilisateur est déjà utilisée par un autre joueur.
|
||||
Veuillez choisir un nom différent.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation>Ce nom d'utilisateur est soit trop long ou trop court. Veuillez en choisir un autre.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation>Une erreur interne est survenue.</translation>
|
||||
</message>
|
||||
@@ -1386,17 +1386,17 @@ Veuillez choisir un nom différent.</translation>
|
||||
<translation>Cmd+N pour démarrer une nouvelle partie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished">Démarrer</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished">Arrêter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -1404,22 +1404,22 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1509,12 +1509,12 @@ Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished">Images (*.png)</translation>
|
||||
</message>
|
||||
@@ -1527,7 +1527,7 @@ Please enter an valid picture!</source>
|
||||
<translation type="obsolete">PokerTH 0.4 - Paramètres</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation>Interface</translation>
|
||||
</message>
|
||||
@@ -1537,7 +1537,7 @@ Please enter an valid picture!</source>
|
||||
<translation type="obsolete">Afficher l'animation lorsque les cartes sont retournées</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation>Dos des cartes</translation>
|
||||
</message>
|
||||
@@ -1547,7 +1547,7 @@ Please enter an valid picture!</source>
|
||||
<translation type="obsolete">Mon image au dos des cartes:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1558,7 +1558,7 @@ p, li { white-space: pre-wrap; }
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Note: Best quality with image ratio like </span><span style=" font-weight:600; font-style:italic;">width=100, height=140.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation>Defaut</translation>
|
||||
</message>
|
||||
@@ -1603,12 +1603,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Nombre de joueurs:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation>Paramètres locaux par défaut</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation>Petite Blind initiale:</translation>
|
||||
</message>
|
||||
@@ -1618,7 +1618,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Vitesse:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation>Bourse initiale:</translation>
|
||||
</message>
|
||||
@@ -1628,7 +1628,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Faire une pause entre les mains (Appuyez sur "Démarrer" pour continuer)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation>0.4 (courante)</translation>
|
||||
</message>
|
||||
@@ -1638,32 +1638,32 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">0.3 (précédente)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation>Version du moteur:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation>Paramètres server</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation>Port du serveur:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation>Utiliser IPv6</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation>Mot de passe serveur:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation>Paramètres réseau par défaut</translation>
|
||||
</message>
|
||||
@@ -1678,12 +1678,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">0.4 (courante - en développement)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation>Moteur IA</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation>Adversaire 5:</translation>
|
||||
</message>
|
||||
@@ -1693,12 +1693,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Avatar:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation>Adversaire 3:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation>Adversaire 2:</translation>
|
||||
</message>
|
||||
@@ -1708,22 +1708,22 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Adversaire 6:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation>Adversaire 1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation>Adversaire 4:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation>Joueur humain:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation>Noms des joueurs</translation>
|
||||
</message>
|
||||
@@ -1744,167 +1744,167 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Conserver les journaux d'activité pour</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation>Jour(s)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation>Chemin des journaux:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation>Journal des messages</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation>Paramètres locaux</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation>Paramètres réseau</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation type="unfinished">Vitesse:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1912,25 +1912,35 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation type="unfinished">Adversaire 4: {7:?}</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation type="unfinished">Nombre de joueurs maximal:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished">10</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation>Erreur de paramètres</translation>
|
||||
</message>
|
||||
@@ -1984,26 +1994,26 @@ Please enter an valid picture!</source>
|
||||
Veuillez entrer une image valide!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation>L'image sélectionnée pour le dos des cartes n'existe pas.
|
||||
Veuillez entrer une image valide!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation>Le répertoire sélectionné pour les journaux n'existe pas
|
||||
Veuillez sélectionner un répertoire valide!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation>Sélectionnez une image pour le dos des cartes</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation>Images (*.png)</translation>
|
||||
</message>
|
||||
@@ -2018,7 +2028,7 @@ Veuillez sélectionner un répertoire valide!</translation>
|
||||
<translation type="obsolete">Sélectionnez un avatar pour vos adversaires IA</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation>Parcourir</translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -797,132 +797,132 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -932,17 +932,17 @@ Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -950,22 +950,22 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1045,12 +1045,12 @@ Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1058,17 +1058,17 @@ Please enter an valid picture!</source>
|
||||
<context>
|
||||
<name>settingsDialog</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1076,262 +1076,262 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1339,52 +1339,62 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -1267,67 +1267,67 @@ p, li { white-space: pre-wrap; }
|
||||
<translation>Ctrl+N om een nieuw spel te starten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation>F1 - Folden/All-In | F2 - Checken/Callen | F3 - Betten/Raisen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation>Netwerkfout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation>Serveradres is niet ingesteld.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation>Onjuiste poort ingesteld (poorten 0-1023 niet toegestaan).</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation>Kan geen socket aanmaken voor TCP-communicatie.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation>Kan het IP-adres niet instellen.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation>Kan de poort niet instellen voor dit adrestype.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation>Kan de servernaam nergens opzoeken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation>Kan niet verbinden - kies a.u.b. een andere poort.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation>Interne netwerkfout: "listen" niet uitvoerbaar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation>Het uitvoeren op de server is afgebroken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation>Kan geen verbinding met de server maken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation>Interne netwerkfout: "select" niet uitvoerbaar.</translation>
|
||||
</message>
|
||||
@@ -1337,7 +1337,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Interne netwerkfout: "recv" niet uitvoerbaar.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation>Interne netwerkfout: "send" niet uitvoerbaar.</translation>
|
||||
</message>
|
||||
@@ -1347,67 +1347,67 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Verbinding verbroken door server.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation>Interne netwerkfout: Dubbele TCP-verbinding.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation>Ongeldig netwerkpakket ontvangen.
|
||||
Zorg er a.u.b. voor dat alle spelers dezelfde PokerTH-versie gebruiken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation>Interne statusfout.
|
||||
Zorg er a.u.b. voor dat alle spelers dezelfde PokerTH-versie gebruiken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation>De PokerTH-server ondersteunt deze versie van het spel niet.
|
||||
Zorg dat u de nieuwste versie van PokerTH heeft.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation>Sorry, deze server is reeds vol.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation>Kan niet meedoen - de server heeft het spel al gestart.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation>Ongeldig wachtwoord bij het verbinden.
|
||||
Stel a.u.b. het wachtwoord opnieuw in en probeer opnieuw.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation>Het wachtwoord is te lang. Kies a.u.b. een ander wachtwoord.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation>Uw spelernaam is al in gebruik door een andere speler.
|
||||
Kies a.u.b. een andere naam.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation>De spelersnaam is te kort of te lang. Kies a.u.b. een andere naam.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation>Interne fout opgetreden.</translation>
|
||||
</message>
|
||||
@@ -1417,17 +1417,17 @@ Kies a.u.b. een andere naam.</translation>
|
||||
<translation>Cmd+N om een nieuw spel te starten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation>Start</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation>Stop</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -1438,22 +1438,22 @@ Controleer a.u.b. het serveradres.
|
||||
Als de server zich achter een NAT-router bevindt, controleer dan daar of port forwarding goed ingesteld is.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation>De verbinding is verbroken door de server.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation>De server verwees naar een onbekende speler. Verbinding verbroken.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation>U bent verwijderd van de server.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation>Het aantal spelers dat meedoet klopt niet.</translation>
|
||||
</message>
|
||||
@@ -1544,12 +1544,12 @@ Please enter an valid picture!</source>
|
||||
Stel a.u.b. een geldig plaatje in!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation>Kies een extern spelerplaatje</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation>Plaatjes (*.png)</translation>
|
||||
</message>
|
||||
@@ -1562,7 +1562,7 @@ Stel a.u.b. een geldig plaatje in!</translation>
|
||||
<translation type="obsolete">PokerTH 0.4 - Instellingen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation>Interface</translation>
|
||||
</message>
|
||||
@@ -1572,7 +1572,7 @@ Stel a.u.b. een geldig plaatje in!</translation>
|
||||
<translation type="obsolete">Laat omdraaiende kaarten-animatie zien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation>Kaartachterkant</translation>
|
||||
</message>
|
||||
@@ -1582,7 +1582,7 @@ Stel a.u.b. een geldig plaatje in!</translation>
|
||||
<translation type="obsolete">Eigen plaatje voor kaartachterkant:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1590,7 +1590,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation><html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Opmerking: Beste kwaliteit met hoogte-breedteverhouding gelijk aan </span><span style=" font-weight:600; font-style:italic;">breedte=100, hoogte=140.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation>Standaard</translation>
|
||||
</message>
|
||||
@@ -1635,12 +1635,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Aantal spelers:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation>Standaardinstellingen lokaal spel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation>Kleine blind:</translation>
|
||||
</message>
|
||||
@@ -1650,7 +1650,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Speelsnelheid:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation>Startkapitaal:</translation>
|
||||
</message>
|
||||
@@ -1660,7 +1660,7 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Stopzetten tussen rondes (Druk op "Start"-knop om door te gaan)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation>0.4 (huidige)</translation>
|
||||
</message>
|
||||
@@ -1670,32 +1670,32 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">0.3 (vorige)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation>Simulatorversie:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation>Server-instellingen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation>Server-poort:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation>Gebruik IPv6</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation>Server-wachtwoord:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation>Standaardinstellingen netwerkspel</translation>
|
||||
</message>
|
||||
@@ -1710,12 +1710,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">0.4 (huidige - in ontwikkeling)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation>Computertegenstanders</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation>Tegenstander 5:</translation>
|
||||
</message>
|
||||
@@ -1725,12 +1725,12 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Spelerplaatje:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation>Tegenstander 3:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation>Tegenstander 2:</translation>
|
||||
</message>
|
||||
@@ -1740,22 +1740,22 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Tegenstander 6:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation>Tegenstander 1:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation>Tegenstander 4:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation>Menselijke Speler:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation>Bijnamen spelers</translation>
|
||||
</message>
|
||||
@@ -1773,167 +1773,167 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="obsolete">Bewaar logbestanden gedurende</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation>Dag(en)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation>Map voor logbestanden: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation>Logberichten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation>Instellingen lokaal spel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation>Instellingen netwerkspel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation>Laat omdraaiende kaarten-animatie zien</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation>Eigen plaatje voor kaartachterkant:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation>Laat fade out-animatie zien van niet-winnende kaarten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation>Laat introductiescherm zien bij starten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation>Laat rechter hulpscherm zien (F11 om aan/uit te zetten)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation>Laat linker hulpscherm zien (F10 om aan/uit te zetten)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation>Laat berichten zien in statusbalk</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation>Laat instellingenvenster zien voor elk nieuw spel</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation>Rondes voor verhoging kleine blind:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation>Aantal spelers:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation>Speelsnelheid:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation>Stopzetten tussen rondes (Druk op "Start"-knop om door te gaan)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation>Speelsnelheid van computertegenstanders:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation>Simulatorversie van computertegenstanders:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation>Schrijven van logbestanden Aan/Uit</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation>Bewaar logbestanden gedurende</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation>Schrijven naar logbestand na iedere: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation>iedere handeling (veel schijfactiviteit)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation>iedere ronde (matige schijfactiviteit)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation>ieder spel (weinig schijfactiviteit)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation>Laat buttons zien voor kleine blind en grote blind</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation>Speel geluidseffecten af</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation>0.4 (huidige)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation>Gebruik SCTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation><a href="http://nl.wikipedia.org/wiki/Ipv6">Wat is dit?</a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation><a href="http://nl.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">Wat is dit?</a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation>Wacht op handeling speler gedurende (sec):</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1944,25 +1944,35 @@ p, li { white-space: pre-wrap; }
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Opmerking: Spelerplaatje ziet er het beste uit met een hoogte-breedteverhouding gelijk aan </span><span style=" font-weight:600; font-style:italic;">breedte=50, hoogte=50.</span></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation>Tegenstander 7:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation>Instellingen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation>Maximaal aantal spelers:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished">10</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation>Fout in instellingen</translation>
|
||||
</message>
|
||||
@@ -2016,26 +2026,26 @@ Please enter an valid picture!</source>
|
||||
Stel a.u.b. een geldig plaatje in!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation>Het ingestelde plaatje voor de kaartachterkant bestaat niet.
|
||||
Stel a.u.b. een geldig plaatje in!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation>De map voor logbestanden bestaat niet.
|
||||
Kies a.u.b. een geldige map!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation>Kies uw plaatje voor de kaartachterkant</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation>Plaatjes (*.png)</translation>
|
||||
</message>
|
||||
@@ -2050,7 +2060,7 @@ Kies a.u.b. een geldige map!</translation>
|
||||
<translation type="obsolete">Kies een spelerplaatje voor de computertegenstander</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation>Open map</translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -792,7 +792,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>mainWindowImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -807,142 +807,142 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -950,22 +950,22 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1045,12 +1045,12 @@ Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1058,17 +1058,17 @@ Please enter an valid picture!</source>
|
||||
<context>
|
||||
<name>settingsDialog</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1076,262 +1076,262 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1339,52 +1339,62 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -792,7 +792,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>mainWindowImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -807,72 +807,72 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -880,92 +880,92 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1045,12 +1045,12 @@ Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1058,22 +1058,22 @@ Please enter an valid picture!</source>
|
||||
<context>
|
||||
<name>settingsDialog</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1081,172 +1081,172 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1254,137 +1254,147 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -802,147 +802,147 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -950,22 +950,22 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1045,12 +1045,12 @@ Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1058,17 +1058,17 @@ Please enter an valid picture!</source>
|
||||
<context>
|
||||
<name>settingsDialog</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1076,262 +1076,262 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1339,52 +1339,62 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
+108
-98
@@ -792,7 +792,7 @@ p, li { white-space: pre-wrap; }
|
||||
<context>
|
||||
<name>mainWindowImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2364"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2368"/>
|
||||
<source>Stop</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -807,142 +807,142 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1468"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="1472"/>
|
||||
<source>F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2222"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2226"/>
|
||||
<source>Start</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2522"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2526"/>
|
||||
<source>Network Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2390"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2394"/>
|
||||
<source>Server address was not set.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2395"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2399"/>
|
||||
<source>An invalid port was set (ports 0-1023 are not allowed).</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2400"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2404"/>
|
||||
<source>Could not create a socket for TCP communication.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2405"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2409"/>
|
||||
<source>Could not set the IP address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2410"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2414"/>
|
||||
<source>Could not set the port for this type of address.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2415"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2419"/>
|
||||
<source>The server name could not be resolved.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2420"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2424"/>
|
||||
<source>Bind failed - please choose a different port.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2425"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2429"/>
|
||||
<source>Internal network error: "listen" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2430"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2434"/>
|
||||
<source>Server execution was terminated.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2435"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2439"/>
|
||||
<source>Could not connect to the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2445"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2449"/>
|
||||
<source>Internal network error: "select" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2450"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2454"/>
|
||||
<source>Internal network error: "send" failed.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2461"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2465"/>
|
||||
<source>Internal network error: Duplicate TCP connection.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2466"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2470"/>
|
||||
<source>An invalid network packet was received.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2471"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2475"/>
|
||||
<source>Internal state error.
|
||||
Please make sure that all players use the same version of PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2476"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2480"/>
|
||||
<source>The PokerTH server does not support this version of the game.
|
||||
Please update PokerTH.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2481"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2485"/>
|
||||
<source>Sorry, this server is already full.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2486"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2490"/>
|
||||
<source>Unable to join - the server has already started the game.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2491"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2495"/>
|
||||
<source>Invalid password when joining the game.
|
||||
Please reenter the password and try again.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2496"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<source>The password is too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2500"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<source>Your player name is already used by another player.
|
||||
Please choose a different name.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2504"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2508"/>
|
||||
<source>The player name is either too short or too long. Please choose another one.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2527"/>
|
||||
<source>An internal error occured.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2440"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2444"/>
|
||||
<source>Connection timed out.
|
||||
Please check the server address.
|
||||
|
||||
@@ -950,22 +950,22 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2456"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2460"/>
|
||||
<source>Connection was closed by the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2509"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2513"/>
|
||||
<source>The server referred to an unknown player. Aborting.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2514"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2518"/>
|
||||
<source>You were kicked from the server.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2519"/>
|
||||
<location filename="../src/gui/qt/mainwindow/mainwindowimpl.cpp" line="2523"/>
|
||||
<source>The client player count is invalid.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1045,12 +1045,12 @@ Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Select external avatar picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="162"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/selectavatardialog/selectavatardialogimpl.cpp" line="163"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
@@ -1058,27 +1058,27 @@ Please enter an valid picture!</source>
|
||||
<context>
|
||||
<name>settingsDialog</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1984"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="338"/>
|
||||
<source>Interface</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="149"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="183"/>
|
||||
<source>Show flip-card animation</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="55"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="190"/>
|
||||
<source>Flipside of Cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="83"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="218"/>
|
||||
<source>Own flipside picture:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="121"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="256"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1086,252 +1086,252 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="136"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="271"/>
|
||||
<source>Default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="163"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="304"/>
|
||||
<source>Show fade-out animation for non-winning cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="204"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="345"/>
|
||||
<source>Show intro on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="211"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="352"/>
|
||||
<source>Show right toolbox (F11 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="177"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="318"/>
|
||||
<source>Show left toolbox (F10 to switch on/off)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="170"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="311"/>
|
||||
<source>Show statusbar messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="248"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<source>Show game settings dialog on every new game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="626"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="747"/>
|
||||
<source>Hands before raise small blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="288"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="409"/>
|
||||
<source>Number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="314"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="435"/>
|
||||
<source>Local Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="572"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="693"/>
|
||||
<source>Small Blind:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="355"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="476"/>
|
||||
<source>Game Speed:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="609"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="730"/>
|
||||
<source>Start Cash:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="369"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="490"/>
|
||||
<source>Pause between hands (press "start" button to go on)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="594"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="715"/>
|
||||
<source>0.4 (actual)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="395"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="516"/>
|
||||
<source>Engine Version:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="412"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="533"/>
|
||||
<source>Server Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="454"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="575"/>
|
||||
<source>Server Port:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="468"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="589"/>
|
||||
<source>Use IPv6</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="434"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="555"/>
|
||||
<source>Server Password:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="511"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="632"/>
|
||||
<source>Network Game Default Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="579"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="700"/>
|
||||
<source>Game Speed for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="602"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="723"/>
|
||||
<source>Engine Version for computer opponents:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="714"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1001"/>
|
||||
<source>Computer Engine</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="893"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1180"/>
|
||||
<source>Opponent 5:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1171"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1458"/>
|
||||
<source>Opponent 3:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1337"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1624"/>
|
||||
<source>Opponent 2:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1476"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1763"/>
|
||||
<source>Opponent 1:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1059"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1346"/>
|
||||
<source>Opponent 4:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1711"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="974"/>
|
||||
<source>Human Player:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1999"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="819"/>
|
||||
<source>Player Nicks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1768"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1883"/>
|
||||
<source>Enable/Disable Logging</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1800"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1915"/>
|
||||
<source>Store log files for</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1826"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1941"/>
|
||||
<source>Day(s)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1856"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1971"/>
|
||||
<source>Log File Directory: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1895"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2010"/>
|
||||
<source>Write log after every: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1911"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2026"/>
|
||||
<source>every action (high frequent disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1916"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2031"/>
|
||||
<source>every hand (medium disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1921"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2036"/>
|
||||
<source>every game (low disc access)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2004"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="2055"/>
|
||||
<source>Log Messages</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1989"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="66"/>
|
||||
<source>Local Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1994"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="71"/>
|
||||
<source>Network Game Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="156"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="297"/>
|
||||
<source>Show buttons for small blind and big blind</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="231"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="127"/>
|
||||
<source>Play sound effects</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="387"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="508"/>
|
||||
<source>0.4 (current)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="461"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="582"/>
|
||||
<source>Use SCTP</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="475"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="596"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="485"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="606"/>
|
||||
<source><a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="633"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<source>Timout for player action (sec):</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="698"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1850"/>
|
||||
<source><html><head><meta name="qrichtext" content="1" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;">
|
||||
@@ -1339,52 +1339,62 @@ p, li { white-space: pre-wrap; }
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="754"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="1041"/>
|
||||
<source>Opponent 7:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="13"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="19"/>
|
||||
<source>Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="586"/>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="707"/>
|
||||
<source>Maximum number of players:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="142"/>
|
||||
<source>Sound Volume:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog.ui" line="155"/>
|
||||
<source>10</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>settingsDialogImpl</name>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="232"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<source>Settings Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="220"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="222"/>
|
||||
<source>The entered flipside picture doesn't exists.
|
||||
Please enter an valid picture!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="234"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="236"/>
|
||||
<source>The log file directory doesn't exists.
|
||||
Please select an valid directory!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="252"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<source>Select your flipside picture</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="254"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="256"/>
|
||||
<source>Images (*.png)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="326"/>
|
||||
<location filename="../src/gui/qt/settingsdialog/settingsdialogimpl.cpp" line="328"/>
|
||||
<source>Open Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
||||
Reference in New Issue
Block a user