string update

This commit is contained in:
doitux
2009-04-27 23:44:34 +00:00
parent 041fb5934b
commit d7aaf4a2bb
23 changed files with 1915 additions and 1679 deletions
+1 -1
View File
@@ -125,7 +125,7 @@ p, li { white-space: pre-wrap; }
<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:8pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-weight:600;">Projectpage: </span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-weight:600;">Project page: </span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif';"> </span><a href="http://www.pokerth.net"><span style=" font-family:'Sans Serif'; text-decoration: underline; color:#0000ff;">http://www.pokerth.net</span></a></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif';"></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-weight:600;">IRC: </span></p>
+22 -21
View File
@@ -1,7 +1,8 @@
<ui version="4.0" >
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ServerListDialog</class>
<widget class="QDialog" name="ServerListDialog" >
<property name="geometry" >
<widget class="QDialog" name="ServerListDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
@@ -9,39 +10,39 @@
<height>241</height>
</rect>
</property>
<property name="windowTitle" >
<property name="windowTitle">
<string>Server List</string>
</property>
<layout class="QGridLayout" name="gridLayout" >
<item row="0" column="0" >
<widget class="QTreeWidget" name="treeWidget_serverList" >
<property name="alternatingRowColors" >
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<widget class="QTreeWidget" name="treeWidget_serverList">
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="rootIsDecorated" >
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<column>
<property name="text" >
<property name="text">
<string>Server Name</string>
</property>
</column>
<column>
<property name="text" >
<string>Country</string>
<property name="text">
<string>Country/Region</string>
</property>
</column>
</widget>
</item>
<item row="1" column="0" >
<widget class="QDialogButtonBox" name="buttonBox" >
<property name="orientation" >
<item row="1" column="0">
<widget class="QDialogButtonBox" name="buttonBox">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="standardButtons" >
<property name="standardButtons">
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
</property>
<property name="centerButtons" >
<property name="centerButtons">
<bool>true</bool>
</property>
</widget>
@@ -56,11 +57,11 @@
<receiver>ServerListDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel" >
<hint type="sourcelabel">
<x>248</x>
<y>254</y>
</hint>
<hint type="destinationlabel" >
<hint type="destinationlabel">
<x>157</x>
<y>274</y>
</hint>
@@ -72,11 +73,11 @@
<receiver>ServerListDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel" >
<hint type="sourcelabel">
<x>316</x>
<y>260</y>
</hint>
<hint type="destinationlabel" >
<hint type="destinationlabel">
<x>286</x>
<y>274</y>
</hint>
+1 -1
View File
@@ -66,7 +66,7 @@ void CardDeckStyleReader::readStyleFile(QString file) {
TiXmlElement *GameTableElement = docHandle.FirstChild( "PokerTH" ).FirstChild( "TableStyle" ).ToElement();
if(GameTableElement) {
QMessageBox::warning(myW, tr("Card Deck Style Error"),
tr("You wanna add a card deck style but selected a game table style.\nPlease choose a card deck style and try again!"),
tr("A game table style was selected instead of a card deck style.\nPlease select a card deck style and try again!"),
QMessageBox::Ok);
}
else {
+2 -2
View File
@@ -103,7 +103,7 @@ void GameTableStyleReader::readStyleFile(QString file) {
TiXmlElement *CardDeckElement = docHandle.FirstChild( "PokerTH" ).FirstChild( "CardDeck" ).ToElement();
if(CardDeckElement) {
QMessageBox::warning(myW, tr("Game Table Style Error"),
tr("You wanna add a game table style but selected a card deck style.\nPlease choose a game table style and try again!"),
tr("A card deck style was selected instead of a game table style.\nPlease select a game table style and try again!"),
QMessageBox::Ok);
}
else {
@@ -511,7 +511,7 @@ void GameTableStyleReader::showItemPicsLeftErrorMessage(QString style, QStringLi
if(email != "NULL") EMail = email;
QMessageBox::warning(myW, tr("Game Table Style Error"),
tr("One or more pictures from current game table style \"%1\" where not found: \n\n\"%2\" \n\nPlease contact the game table style builder %3.").arg(style).arg(pics).arg(EMail),
tr("One or more pictures from current game table style \"%1\" were not found: \n\n\"%2\" \n\nPlease contact the game table style builder %3.").arg(style).arg(pics).arg(EMail),
QMessageBox::Ok);
}