diff --git a/src/gui/qt/gametable/gametableimpl.cpp b/src/gui/qt/gametable/gametableimpl.cpp
index 3df5c1c1..4a538466 100755
--- a/src/gui/qt/gametable/gametableimpl.cpp
+++ b/src/gui/qt/gametable/gametableimpl.cpp
@@ -168,6 +168,7 @@ gameTableImpl::gameTableImpl(ConfigFile *c, QMainWindow *parent)
blinkingStartButtonAnimationTimer = new QTimer(this);
voteOnKickTimeoutTimer = new QTimer(this);
+ enableCallCheckPushButtonTimer = new QTimer(this);
dealFlopCards0Timer->setSingleShot(TRUE);
dealFlopCards1Timer->setSingleShot(TRUE);
@@ -200,6 +201,7 @@ gameTableImpl::gameTableImpl(ConfigFile *c, QMainWindow *parent)
postRiverRunAnimation5Timer->setSingleShot(TRUE);
postRiverRunAnimation6Timer->setSingleShot(TRUE);
+ enableCallCheckPushButtonTimer->setSingleShot(TRUE);
playerStarsArray[1][0]=label_Star10;
playerStarsArray[2][0]=label_Star20;
@@ -512,6 +514,8 @@ gameTableImpl::gameTableImpl(ConfigFile *c, QMainWindow *parent)
connect(blinkingStartButtonAnimationTimer, SIGNAL(timeout()), this, SLOT( blinkingStartButtonAnimationAction()));
connect(voteOnKickTimeoutTimer, SIGNAL(timeout()), this, SLOT(nextVoteOnKickTimeoutAnimationFrame()));
+ connect(enableCallCheckPushButtonTimer, SIGNAL(timeout()), this, SLOT(enableCallCheckPushButton()));
+
connect( actionConfigure_PokerTH, SIGNAL( triggered() ), this, SLOT( callSettingsDialog() ) );
connect( actionClose, SIGNAL( triggered() ), this, SLOT( closeGameTable()) );
@@ -1644,12 +1648,18 @@ void gameTableImpl::provideMyActions(int mode)
}
}
- //if text changed on checked button --> uncheck to prevent unwanted actions
- if((pushButtonCallCheckString != lastPushButtonCallCheckString && pushButton_CallCheck->isChecked())) {
+ //if text changed on checked button --> do something to prevent unwanted actions
+ if(pushButtonCallCheckString != lastPushButtonCallCheckString) {
+
+ if(pushButton_CallCheck->isChecked()) {
+ //uncheck a previous checked button to prevent unwanted action
+ uncheckMyButtons();
+ resetMyButtonsCheckStateMemory();
+ }
+ //disable button to prevent unwanted clicks (e.g. call allin)
+ pushButton_CallCheck->setEatMyEvents(true);
+ enableCallCheckPushButtonTimer->start(1000);
- // cout << "jo" << endl;
- uncheckMyButtons();
- resetMyButtonsCheckStateMemory();
}
if(pushButtonBetRaiseString == "") {
@@ -3853,3 +3863,8 @@ void gameTableImpl::soundEvent_blindsWereSet(int sbSet)
{
mySoundEventHandler->blindsWereSet(sbSet);
}
+
+void gameTableImpl::enableCallCheckPushButton()
+{
+ pushButton_CallCheck->setEatMyEvents(false);
+}
diff --git a/src/gui/qt/gametable/gametableimpl.h b/src/gui/qt/gametable/gametableimpl.h
index 1b93abf2..466ad429 100755
--- a/src/gui/qt/gametable/gametableimpl.h
+++ b/src/gui/qt/gametable/gametableimpl.h
@@ -338,6 +338,7 @@ public slots:
void closeMessageBoxes();
void hide();
void soundEvent_blindsWereSet(int);
+ void enableCallCheckPushButton();
private:
@@ -385,6 +386,7 @@ private:
QTimer *blinkingStartButtonAnimationTimer;
QTimer *voteOnKickTimeoutTimer;
boost::timers::portable::microsec_timer voteOnKickRealTimer;
+ QTimer *enableCallCheckPushButtonTimer;
QWidget *userWidgetsArray[6];
QLabel *buttonLabelArray[MAX_NUMBER_OF_PLAYERS];
diff --git a/src/gui/qt/gametable/myactionbutton.cpp b/src/gui/qt/gametable/myactionbutton.cpp
index afeb45c5..7c02b4bc 100644
--- a/src/gui/qt/gametable/myactionbutton.cpp
+++ b/src/gui/qt/gametable/myactionbutton.cpp
@@ -21,7 +21,7 @@
using namespace std;
MyActionButton::MyActionButton(QGroupBox* parent)
- : QPushButton(parent), myStyle(NULL)
+: QPushButton(parent), myStyle(NULL), eatMyEvents(false)
{
}
@@ -50,3 +50,11 @@ void MyActionButton::paintEvent(QPaintEvent * event)
painter.drawText(8,15,15,15,Qt::AlignLeft,fKeyText);
}
}
+
+bool MyActionButton::event(QEvent *event)
+{
+ if ((event->type() == QEvent::KeyPress || event->type() == QEvent::MouseButtonPress) && eatMyEvents ) {
+ return true;
+ }
+ return QWidget::event(event);
+}
diff --git a/src/gui/qt/gametable/myactionbutton.h b/src/gui/qt/gametable/myactionbutton.h
index faf57c2b..2b62d31b 100644
--- a/src/gui/qt/gametable/myactionbutton.h
+++ b/src/gui/qt/gametable/myactionbutton.h
@@ -39,10 +39,14 @@ public:
myStyle = theValue;
}
+ void setEatMyEvents(bool e) { eatMyEvents = e; }
+ bool event(QEvent *e);
+
private:
QString fKeyText;
GameTableStyleReader *myStyle;
+ bool eatMyEvents;
};
#endif
diff --git a/ts/pokerth_it.ts b/ts/pokerth_it.ts
index a0be0528..a232cc34 100644
--- a/ts/pokerth_it.ts
+++ b/ts/pokerth_it.ts
@@ -102,7 +102,7 @@ Seleziona uno stile appropriato e riprova!
private message sent to player: %1
-
+ messaggio privato inviato a: %1
@@ -316,7 +316,7 @@ Contatta il responsabile dello stile, %3.
Add/Edit/Remove tooltip
-
+ Aggiungi/Modifica/Elimina suggerimento
@@ -1608,7 +1608,20 @@ p, li { white-space: pre-wrap; }
<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-size:8pt;"></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-size:8pt;"></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-size:8pt;">© 2006-2011, Felix Hammer, Florian Thauer, Lothar May</span></p></td></tr></table></body></html>
-
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;">
+<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;">
+<tr>
+<td style="border: 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-size:8pt;">- Motore per il popolare poker "Texas Hold'em"</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-size:8pt;">- Fino a 9 giocatori gestiti dal computer nelle partite in modalità singleplayer</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-size:8pt;">- Partite in multiplayer<br />- Partite su internet<br />- Interfaccia personalizzabile tramite una galleria online di stili<br />- </span><a href="http://online-ranking.pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0057ae;">Classifica online dei giocatori </span></a><span style=" font-size:8pt;"> con tabelle dei risultati</span></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-size:8pt;"></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-size:8pt;"></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-size:8pt;"></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-size:8pt;">© 2006-2011, Felix Hammer, Florian Thauer, Lothar May</span></p></td></tr></table></body></html>
@@ -1639,7 +1652,28 @@ 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-size:8pt;"> - basic architecture, network development, windows package, MacOS package</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-size:8pt;"> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" font-size:8pt;">)</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-size:8pt;"> - initial gui graphics design</span></p></td></tr></table></body></html>
-
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;">
+<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;">
+<tr>
+<td style="border: 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-size:8pt; font-weight:600;">Pagina progetto: </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-size:8pt;"> </span><a href="http://www.pokerth.net"><span style=" font-size:8pt; 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-size:8pt;"></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-size:8pt; font-weight:600;">IRC: </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-size:8pt;"> #pokerth (irc.freenode.net)</span></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-size:8pt;"></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-size:8pt; font-weight:600;">Autori: </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-size:8pt;"> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" font-size:8pt;">)</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-size:8pt;"> - idea iniziale, achitettura di base, implementazione gui, editing grafica gui, pacchetto linux</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-size:8pt;"> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" font-size:8pt;">)</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-size:8pt;"> - idea iniziale, architettura di base, sviluppo motore</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-size:8pt;"> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" font-size:8pt;">)</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-size:8pt;"> - architettura di base, sviluppo di rete, pacchetto windows, pacchetto MacOS</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-size:8pt;"> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" font-size:8pt;">)</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-size:8pt;"> - progettazione iniziale elementi GUI</span></p></td></tr></table></body></html>
@@ -1651,7 +1685,14 @@ p, li { white-space: pre-wrap; }
<tr>
<td style="border: 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-size:8pt;">translator name - mail address</span></p></td></tr></table></body></html>
-
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;">
+<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;">
+<tr>
+<td style="border: 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-size:8pt;">Emiliano Volta - emiliano.volta@gmail.com</span></p></td></tr></table></body></html>
@@ -1687,7 +1728,33 @@ 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-size:8pt;"> - for moderating forum and organise bugtracker and feature requests</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-size:8pt; font-weight:600;">texas_outlaw</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-size:8pt;"> - for new table sounds</span></p></td></tr></table></body></html>
-
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+<html><head><meta name="qrichtext" content="1" /><style type="text/css">
+p, li { white-space: pre-wrap; }
+</style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal;">
+<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;">
+<tr>
+<td style="border: none;">
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" font-size:8pt; font-weight:600; text-decoration: underline; color:#0000ff;">Wikimedia Commons</span></a></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-size:8pt; font-weight:600;"> - </span><span style=" font-size:8pt;">per le diverse gallerie di avatar</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-size:8pt; font-weight:600;">Benedikt, Erhard, Felix, Florian, Linus, Lothar, Steffi, Caro</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-size:8pt;"> - Per gli avatar raffiguranti persone</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-size:8pt; font-weight:600;">ZeiZei</span><span style=" font-size:8pt;"> </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-size:8pt;"> - Per gli avatar "vari"</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://kde-look.org/"><span style=" font-size:8pt; font-weight:600; text-decoration: underline; color:#0000ff;">http://kde-look.org/</span></a></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-size:8pt;"> - per diversi suoni rilasciati sotto licenza GPL</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-size:8pt; font-weight:600;">doc_dos</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-size:8pt;"> - per la registrazione del suono delle fiches</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-size:8pt; font-weight:600;">thiger, dunkanx, BerndA, coldz</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-size:8pt;"> - per diverse patch</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-size:8pt; font-weight:600;">kraut</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-size:8pt;"> - per l'hosting e l'amministrazione del server per il gioco su internet</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-size:8pt; font-weight:600;">danuxi</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-size:8pt;"> - per gli sfondi della schermata di avvio e dello stile danuxi1</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-size:8pt; font-weight:600;">heyn</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-size:8pt;"> - per il lavoro di moderazione sul forum, l'organizzazione del bugtracker e la gestione delle richieste di nuove feature</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-size:8pt; font-weight:600;">texas_outlaw</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-size:8pt;"> - per i nuovi suoni del tavolo di gioco</span></p></td></tr></table></body></html>
@@ -2485,7 +2552,7 @@ Scegli un nome diverso!
5 - Show open & non-full & ranking games
-
+ 5 - Visualizza partite aperte, non al complete e valide per la classifica
@@ -2686,14 +2753,14 @@ p, li { white-space: pre-wrap; }
<tr>
<td style="border: none;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">Click here to view the online rankings</span></a></p></td></tr></table></body></html>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body>
<table border="0" style="-qt-table-type: root; margin-top:4px; margin-bottom:4px; margin-left:4px; margin-right:4px;">
<tr>
<td style="border: none;">
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">Clicca qui per visualizzare lla classifica online</span></a></p></td></tr></table></body></html>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">Clicca qui per visualizzare la classifica online</span></a></p></td></tr></table></body></html>
@@ -2909,12 +2976,12 @@ p, li { white-space: pre-wrap; }
Waiting for the start of the next hand to rejoin the game ...
-
+ Attesa dell'inizio della prossima mano per unirsi alla partita...
Show player stats
-
+ Mostra statistiche giocatore
@@ -4574,7 +4641,7 @@ p, li { white-space: pre-wrap; }
Player info
-
+ Info giocatore
@@ -5959,7 +6026,7 @@ p, li { white-space: pre-wrap; }
Automatically leave the table after the game finished
-
+ Abbandona il tavolo automaticamente non appena la partita termina
@@ -6022,12 +6089,12 @@ p, li { white-space: pre-wrap; }
Preview:
-
+ Anteprima:
Export as HTML
-
+ Esporta in HTML
Export as html
@@ -6278,7 +6345,7 @@ all'inizio di ogni nuova partita
Store log files for:
-
+ Memorizza file di registro per:
@@ -6676,7 +6743,7 @@ Inserisci un indirizzo valido!
Japanese
-
+ Giapponese
@@ -6812,22 +6879,22 @@ Lo stile non verrà aggiunto alla lista!
Export PokerTH log file to HTML
-
+ Esporta il file di registro di PokerTH in HTML
PokerTH HTML log (*.html)
-
+ Registro di PokerTH in formato HTML (*.html)
Export PokerTH log file to plain text
-
+ Esporta il file di registro di PokerTH in formato testo
PokerTH plain text log (*.txt)
-
+ Registro di PokerTH in formato testo (*.html)
@@ -7036,7 +7103,7 @@ Lo stile non verrà aggiunto alla lista!
PokerTH - The Open-Source Texas Holdem Engine
-
+ PokerTH - Il Motore Texas Holdem Open-Source
@@ -7192,7 +7259,7 @@ Se il server è alle spalle di un router NAT, assicurati che sia stato abilitato
The connection to the server was lost.
-
+ La connessione al server è stata interrotta.
@@ -7514,7 +7581,7 @@ Scegli un nome diverso.
You did not act in the game recently. You will be removed from the game in %1 seconds.
-
+ Non hai effettuato azioni di gioco da un po' di tempo. Verrai rimosso dalla partita in %1 secondi.
diff --git a/ts/pokerth_pl.ts b/ts/pokerth_pl.ts
index a7b932a9..de2d89a2 100644
--- a/ts/pokerth_pl.ts
+++ b/ts/pokerth_pl.ts
@@ -481,7 +481,7 @@ p, li { white-space: pre-wrap; }
<tr>
<td style="border: 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-size:8pt;">Władysław Bodzek - wbodzek@poczta.onet.pl</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-size:8pt;">Cz0rny - liczne sugestie dotyczące jakości tłumaczenia</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-size:8pt;">Mariusz Chmiel - liczne sugestie dotyczące jakości tłumaczenia</span></p>
</td></tr></table></body></html>
@@ -3558,7 +3558,7 @@ Proszę wejdź na stronę <a href="http://www.pokerth.net/" target=
Attention! Do you really want to leave the current game
and go back to the lobby?
Uwaga! Czy na pewno chcesz opuścić tę grę
-i powrócić go chatu serwera gier?
+i powrócić do chatu serwera gier?
@@ -4311,7 +4311,7 @@ p, li { white-space: pre-wrap; }
Enable/Disable Logging
- Włącz logowanie
+ Włącz zapisywanie historii
Store log files for
@@ -4324,17 +4324,17 @@ p, li { white-space: pre-wrap; }
Log File Directory:
- Zapisz plik log w:
+ Zapisz pliki w:
Write log after every:
- Zapisuj do logu po każdej:
+ Zapisuj po każdej:
Store log files for:
- Przechowuj logi przez:
+ Przechowuj pliki przez:
@@ -4355,7 +4355,7 @@ p, li { white-space: pre-wrap; }
Log Messages
- Logowanie
+ Historia rozdań