diff --git a/pokerth_game.pro b/pokerth_game.pro index 2568efdc..2a009f74 100644 --- a/pokerth_game.pro +++ b/pokerth_game.pro @@ -2,6 +2,7 @@ isEmpty( PREFIX ):PREFIX = /usr TEMPLATE = app CODECFORSRC = UTF-8 +CODECFORTR = UTF-8 CONFIG += qt \ thread \ embed_manifest_exe \ diff --git a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp index 9e5f5089..a31847d0 100644 --- a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp +++ b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp @@ -56,31 +56,31 @@ settingsDialogImpl::settingsDialogImpl(QWidget *parent, ConfigFile *c, selectAva if (myConfig->readConfigInt("CLA_NoWriteAccess")) { groupBox_logOnOff->setDisabled(TRUE); } - comboBox_switchLanguage->addItem(trUtf8("Afrikaans (Afrikaans)"),"af"); - comboBox_switchLanguage->addItem(trUtf8("Bulgarian (Български)"),"bg"); - comboBox_switchLanguage->addItem(trUtf8("Catalan (Català)"),"ca"); - comboBox_switchLanguage->addItem(trUtf8("Chinese (简体中文)"),"zhcn"); - comboBox_switchLanguage->addItem(trUtf8("Czech (čeština)"),"cz"); - comboBox_switchLanguage->addItem(trUtf8("Danish (Dansk)"),"dk"); - comboBox_switchLanguage->addItem(trUtf8("Dutch (Nederlands)"),"nl"); - comboBox_switchLanguage->addItem(trUtf8("English (English)"),"en"); - comboBox_switchLanguage->addItem(trUtf8("Finnish (suomi)"),"fi"); - comboBox_switchLanguage->addItem(trUtf8("French (français)"),"fr"); - comboBox_switchLanguage->addItem(trUtf8("German (Deutsch)"),"de"); - comboBox_switchLanguage->addItem(trUtf8("Greek (Ελληνικά)"),"gr"); - comboBox_switchLanguage->addItem(trUtf8("Hungarian (Magyar)"),"hu"); - comboBox_switchLanguage->addItem(trUtf8("Italian (italiano)"),"it"); - comboBox_switchLanguage->addItem(trUtf8("Lithuania (Lietuviškai)"),"lt"); - comboBox_switchLanguage->addItem(trUtf8("Norwegian (Norsk)"),"no"); - comboBox_switchLanguage->addItem(trUtf8("Polish (polski)"),"pl"); - comboBox_switchLanguage->addItem(trUtf8("Portuguese-Brazilian (português brasileiro)"),"ptbr"); - comboBox_switchLanguage->addItem(trUtf8("Portuguese-Portuguese (português português)"),"ptpt"); - comboBox_switchLanguage->addItem(trUtf8("Russian (Pyccĸий)"),"ru"); - comboBox_switchLanguage->addItem(trUtf8("Slovak (Slovenčina)"),"sk"); - comboBox_switchLanguage->addItem(trUtf8("Spanish (Español)"),"es"); - comboBox_switchLanguage->addItem(trUtf8("Swedish (svenska)"),"sv"); - comboBox_switchLanguage->addItem(trUtf8("Tamil (தமிழ்)"),"ta"); - comboBox_switchLanguage->addItem(trUtf8("Turkish (Tϋrkçe)"),"tr"); + comboBox_switchLanguage->addItem(QString(tr("Afrikaans")+" "+QString::fromUtf8("(Afrikaans)")),"af"); + comboBox_switchLanguage->addItem(QString(tr("Bulgarian")+" "+QString::fromUtf8("(Български)")),"bg"); + comboBox_switchLanguage->addItem(QString(tr("Catalan")+" "+QString::fromUtf8("(Català)")),"ca"); + comboBox_switchLanguage->addItem(QString(tr("Chinese")+" "+QString::fromUtf8("(简体中文)")),"zhcn"); + comboBox_switchLanguage->addItem(QString(tr("Czech")+" "+QString::fromUtf8("(čeština)")),"cz"); + comboBox_switchLanguage->addItem(QString(tr("Danish")+" "+QString::fromUtf8("(Dansk)")),"dk"); + comboBox_switchLanguage->addItem(QString(tr("Dutch")+" "+QString::fromUtf8("(Nederlands)")),"nl"); + comboBox_switchLanguage->addItem(QString(tr("English")+" "+QString::fromUtf8("(English)")),"en"); + comboBox_switchLanguage->addItem(QString(tr("Finnish")+" "+QString::fromUtf8("(suomi)")),"fi"); + comboBox_switchLanguage->addItem(QString(tr("French")+" "+QString::fromUtf8("(français)")),"fr"); + comboBox_switchLanguage->addItem(QString(tr("German")+" "+QString::fromUtf8("(Deutsch)")),"de"); + comboBox_switchLanguage->addItem(QString(tr("Greek")+" "+QString::fromUtf8("(Ελληνικά)")),"gr"); + comboBox_switchLanguage->addItem(QString(tr("Hungarian")+" "+QString::fromUtf8("(Magyar)")),"hu"); + comboBox_switchLanguage->addItem(QString(tr("Italian")+" "+QString::fromUtf8("(italiano)")),"it"); + comboBox_switchLanguage->addItem(QString(tr("Lithuania")+" "+QString::fromUtf8("(Lietuviškai)")),"lt"); + comboBox_switchLanguage->addItem(QString(tr("Norwegian")+" "+QString::fromUtf8("(Norsk)")),"no"); + comboBox_switchLanguage->addItem(QString(tr("Polish")+" "+QString::fromUtf8("(polski)")),"pl"); + comboBox_switchLanguage->addItem(QString(tr("Portuguese-Brazilian")+" "+QString::fromUtf8("(português brasileiro)")),"ptbr"); + comboBox_switchLanguage->addItem(QString(tr("Portuguese-Portuguese")+" "+QString::fromUtf8("(português português)")),"ptpt"); + comboBox_switchLanguage->addItem(QString(tr("Russian")+" "+QString::fromUtf8("(Pyccĸий)")),"ru"); + comboBox_switchLanguage->addItem(QString(tr("Slovak")+" "+QString::fromUtf8("(Slovenčina)")),"sk"); + comboBox_switchLanguage->addItem(QString(tr("Spanish")+" "+QString::fromUtf8("(Español)")),"es"); + comboBox_switchLanguage->addItem(QString(tr("Swedish")+" "+QString::fromUtf8("(svenska)")),"sv"); + comboBox_switchLanguage->addItem(QString(tr("Tamil")+" "+QString::fromUtf8("(தமிழ்)")),"ta"); + comboBox_switchLanguage->addItem(QString(tr("Turkish")+" "+QString::fromUtf8("(Tϋrkçe)")),"tr"); connect( buttonBox, SIGNAL( accepted() ), this, SLOT( isAccepted() ) ); connect( lineEdit_HumanPlayerName, SIGNAL( textChanged( const QString &) ), this, SLOT( playerNickChanged() ) ); diff --git a/ts/pokerth_START_HERE.ts b/ts/pokerth_START_HERE.ts index f83312e4..b71219c9 100644 --- a/ts/pokerth_START_HERE.ts +++ b/ts/pokerth_START_HERE.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -54,14 +55,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -74,12 +75,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -90,12 +91,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -105,40 +106,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -193,106 +194,118 @@ Please select a game table style and try again! - - <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - - - - - Project - - - - - <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> - - - - - Translation - - - - - <!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-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=" ">translator name - mail address</span></p></body></html> - - - - - Thanks to - - - - - <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - - License - - - - - Close - - - <!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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> + + + + + Project + + + + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + + Translation + + + + + Thanks to + + + + + License + + + + + Close @@ -455,9 +468,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + connectToServerDialog @@ -763,6 +783,21 @@ Please choose another one! &Kick Player + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Manual blinds list: @@ -843,270 +878,276 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... - + Joining a private Game - + You are about to join a private game. Please enter the password! - + open - - - - + + + + Game Info - - - + + + Game - - - + + + Players - - - + + + State - + R - - - + + + P - - - + + + Available Players - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - + running - - + + running games: %1 - - + + open games: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? - - + + connected players: %1 - - + + Connected players - + hands - + minutes - + double blinds - + manual blinds order - + Server Error - + You should not kick yourself from this game! - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1119,224 +1160,224 @@ Feel free to invite other players by right-clicking on their nick in the availab - + Hands - + Chat - + Log - + Away - + Manual Action (default) - + Auto-Check / Auto-Fold - + Auto-Check / Auto-Call-Any - + Speed: - + Start Local Game ... - + Ctrl+N - + Quit - + Ctrl+Q - + About PokerTH ... - + Settings ... - + Create Network Game ... - + Ctrl+O - + Join Network Game ... - + Ctrl+J - + Fullscreen - + Ctrl+F - + Show/Hide Chat Window - + Ctrl+T - - - + + + Show/Hide Hands Window - + Ctrl+H - + Show/Hide Log Window - + Ctrl+L - + Internet Game ... - + Ctrl+I - + Show/Hide Away Window - + Ctrl+A - + Kick - + Vote Timeout: - + Yes - + No - + Chance - + Configure PokerTH ... - + Close - + Ctrl+X - + Vote started by: - + Show/Hide Chance Window - + Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -1344,107 +1385,120 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop - + PokerTH %1 - The Open-Source Texas Holdem Engine - - - - - + + + + + Start - - - + + + Lobby - + Chat - + Closing PokerTH during network game - + You are the hosting server. Do you want to close PokerTH anyway? - + PokerTH - Internet Game Message - + Attention! Do you really want to leave the current game and go back to the lobby? - + Chat is only available to registered players. - + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + + + Chance - + Kick - + Do you want to kick <b>%1</b><br>from this game? - - + + <b>%1</b> secs left - + vote - + votes - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. @@ -2496,329 +2550,334 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norwegian - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - - - - + + + + Settings Error - + The entered flipside picture doesn't exist. Please enter an valid picture! - - + + The log file directory doesn't exist. Please select an valid directory! - + Language Changed - + You have changed application language to %1. Please restart PokerTH to load new language! - + Select your flipside picture - + Images (*.png *.jpg *.gif) - + Open Directory - - + + Blinds Error - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. - - Bulgarian - - - - - Polish - - - - - Chinese - - - - - Greek - - - - - Swedish - - - - + The entered server list address is not a valid URL. Please enter a valid server list address! - - Finnish - - - - + Afrikaans - + + Bulgarian + + + + Catalan - + + Chinese + + + + Czech - + Danish + + + Dutch + + + + + English + + + + + Finnish + + + + + French + + + + + German + + + + + Greek + + + + + Hungarian + + + + + Italian + + + Lithuania + + + + + Norwegian + + + + + Polish + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Russian + + + + + Slovak + + + + + Spanish + + + + + Swedish + + + + Tamil - - - Maintainer Name - - - - - - Maintainer EMail - - - - - - Create Date - - - - - Windows Behaviour - - - - - scaleable - - - - - fixed - - - - - Minimum Size - - - - - Maximum Size - - - - - Fixed Size + + Turkish + + Maintainer Name + + + + + + Maintainer EMail + + + + + + Create Date + + + + + Windows Behaviour + + + + + scaleable + + + + + fixed + + + + + Minimum Size + + + + + Maximum Size + + + + + Fixed Size + + + + State - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -2985,108 +3044,108 @@ Style will not be placed into list! startWindowImpl - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error - + Server address was not set. - + An invalid port was set (ports 0-1023 are not allowed). - + Could not create a socket for TCP communication. - + Could not set the IP address. - + Could not set the port for this type of address. - + The server name could not be resolved. - + Bind failed - please choose a different port. - + Internal network error: "listen" failed. - + Server execution was terminated. - + Could not connect to the server. - + Connection timed out. Please check the server address. @@ -3094,260 +3153,260 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up - + Internal network error: "select" failed. - + Internal network error: "send" failed. - + Connection was closed by the server. - + Internal network error: Duplicate TCP connection. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. - + Invalid server list URL. Please correct the address in the settings. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. - + Could not unzip the PokerTH internet server list. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. - + Could not open the target file when downloading the server list. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. - + Sorry, this server is already full. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. - + The password is too long. Please choose another one. - + The game name is either too short or too long. Please choose another one. - + The game could not be found. - + The chat text is invalid. - + The server referred to an unknown player. Aborting. - + Internal error: The current player could not be found. - + Internal error: The current player is not active. - + You were kicked from the server. - + You were temporarily banned from the server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! - + The client player count is invalid. - + Too many manual blinds were set. Please reconfigure the manual blinds. - + An invalid avatar file was configured. Please choose a different avatar. - + The selected avatar file is too large. Please choose a different avatar. - + An internal avatar error occured. Please report this to an admin in the lobby chat. - + Could not start game: Synchronization failed. - + The server is down for maintenance. Please try again later. - + An internal error occured. - - - + - - - - - - + + + + + + + + Network Notification - + You were kicked from the game. - + Sorry, this game is already full. - + Unable to join - the server has already started the game. - + Your admin state timed out due to inactivity. Feel free to create a new game! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. - + Server Message diff --git a/ts/pokerth_af.ts b/ts/pokerth_af.ts index be2eb95d..58d7b4a1 100644 --- a/ts/pokerth_af.ts +++ b/ts/pokerth_af.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -67,14 +68,14 @@ Kies asseblief 'n kaartpakstyl en probeer weer! GameTableStyleReader - - - + + + Game Table Style Error Speltafelstyl-fout - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -95,12 +96,12 @@ Jy kan egter wel met hierdie styl bly speel, want die vermiste inhoud sal deur P Kontak asseblief die speltafelstyl-bouer via "%3". - + Game Table Style Error - Fields content missing Speltafelstyl-fout: veldinhoud word vermis - + One or more pictures from current game table style "%1" were not found: %2 @@ -117,12 +118,12 @@ Jy kan egter wel met hierdie styl bly speel, want die vermiste inhoud sal deur P Kontak asseblief die speltafelstyl-bouer via "%3". - + Game Table Style Error - Pictures missing Speltafelstyl-fout: prente word vermis - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -137,32 +138,32 @@ Jy kan egter wel met hierdie styl bly speel, want die vermiste inhoud sal deur P Kontak asseblief die speltafelstyl-bouer via "%4". - + Game Table Style Error - Outdated Speltafelstyl-fout: verouderd - + Everything OK! Alles is oukei! - + Some pictures are missing, please contact style maintainer for this issue. Sommige prente word vermis. Kontak asseblief die styl se onderhouer oor hierdie probleem. - + Some style fields are missing, please contact style maintainer for this issue. Sommige stylvelde word vermis. Kontak asseblief die styl se onderhouer oor hierdie probleem. - + This style is outdated, please contact style maintainer for this issue. Hierdie styl is verouderd. Kontak asseblief die styl se onderhouer oor hierdie probleem. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -171,8 +172,8 @@ Please check the style file or choose another style! Kontroleer dus die styllêer, of kies 'n ander styl! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! 'n Kaartpakstyl is gekies in plaas van 'n speltafelstyl. @@ -228,17 +229,101 @@ Kies asseblief 'n speltafelstyl en probeer weer! Aangaande - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project Projek - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -258,7 +343,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -279,30 +364,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=" "> - aanvanklike GUI-grafikaontwerp</span></p></body></html> - + Translation Vertaling - <!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-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=" ">translator name - mail address</span></p></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 style=" 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=" ">Samuel Murray, afrikaans[at]gmail[dot]com</span></p></body></html> - + Thanks to Dankie aan - <!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; } @@ -325,7 +408,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -349,17 +432,16 @@ 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=" "> - vir modereer van forum en hantering van foutopsporing en wenslys</span></p></body></html> - + License Lisensie - + Close Toemaak - - + <!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; } @@ -371,7 +453,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -546,9 +628,16 @@ Kies asseblief 'n ander naam. + Game name: Spelnaam: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + connectToServerDialog @@ -854,6 +943,21 @@ Kies asseblief 'n ander naam. &Kick Player &Skop speler + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Manual blinds list: @@ -945,271 +1049,277 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... Spel begin. Wag asseblief... - + Joining a private Game By 'n privaat spel aansluit - + You are about to join a private game. Please enter the password! Jy gaan nou by 'n privaat spel aansluit. Tik asseblief die wagwoord in! - + open maak oop - - - - + + + + Game Info Spelinfo - - - + + + Game Spel - - - + + + Players Spelers - - - + + + State Staat - + R R - - - + + + P P - - - + + + Available Players Beskikbare spelers - + Invite player Nooi speler - + Ignore player Ignoreer speler - + Player infos ... Spelers se info... - - - + + + Standard Standaard - - - + + + Registered players only Net geregistreerde spelers - - - + + + Invited players only Net genooide spelers - - - + + + Ranking game Gradeerspel - + Connected players - max. %1 Gekoppelde spelers: maks %1 - - + + T T - + Connected players - Max. %1 Gekoppelde spelers: maks %1 - + running aan die gang - - + + running games: %1 spelle aan die gang: %1 - - + + open games: %1 oop spelle: %1 - + Invite %1 Nooi %1 - + Ignore %1 Ignoreer %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> <span style='color:blue;'>%3 het %1 uitgenooi na %2.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> <span style='color:red;'>%1 het die uitnodiging na %2 van die hand gewys.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>%1 kan nie by %2 aansluit nie want hy of sy is besig.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. Jy het by 'n spel aangesluit met die tipe "nooi-alleen". Nooi gerus ander spelers uit deur op hul kenname in die lys beskikbare spelers te regskliek. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? Jy is deur <b>%2</b> na die spel <b>%1</b> genooi.<br>Wil jy by daardie spel aansluit? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? Jy sal nie meer kletsboodskappe of speluitnodigings van hierdie gebruiker kry nie.<br>Wil jy regtig speler <b>%1</b> op jou ignoreerlys sit? - - + + connected players: %1 gekoppelde spelers: %1 - - + + Connected players Gekoppelde spelers - + hands hande - + minutes minute - + double blinds dubbelblindes - + manual blinds order handmatige blindesvolgorde - + Server Error Bedienerfout - + You should not kick yourself from this game! Jy moenie jouself uit hierdie spel skop nie! - + search for player ... soek vir speler... - + Chat is only available to registered players. Klets werk net vir geregistreerde spelers. - + Invite player ... Nooi speler... - + Ignore player ... Ignoreer speler... - + %1 is playing in "%2". %1 speel in "%2". - + %1 is not playing at the moment. %1 speel nie op die oomblik nie. - - + + PokerTH - Info Message PokerTH - Inligtingsboodskap - + PokerTH - Question PokerTH - Vraag @@ -1222,224 +1332,224 @@ Nooi gerus ander spelers uit deur op hul kenname in die lys beskikbare spelers t PokerTH 0.6-beta - Die oopbron-Texas Holdem-enjin - + Hands Hande - + Chat Klets - + Log Log - + Away Weg - + Manual Action (default) Handmatige aksie (verstek) - + Auto-Check / Auto-Fold Outo-inhou / outo-uitsit - + Auto-Check / Auto-Call-Any Outo-inhou / outo-roep enige - + Speed: Spoed: - + Start Local Game ... Begin plaaslike spel... - + Ctrl+N Ctrl+N - + Quit Verlaat - + Ctrl+Q Ctrl+Q - + About PokerTH ... Aangaande PokerTH... - + Settings ... Instellings... - + Create Network Game ... Netwerkspel skep... - + Ctrl+O Ctrl+O - + Join Network Game ... By netwerkspel aansluit... - + Ctrl+J Ctrl+J - + Fullscreen Volskerm - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Wys/versteek kletsvenster - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Wys/versteek handevenster - + Ctrl+H Ctrl+H - + Show/Hide Log Window Wys/versteek logvenster - + Ctrl+L Ctrl+L - + Internet Game ... Internetspel... - + Ctrl+I Ctrl+I - + Show/Hide Away Window Wys/versteek wegweesvenster - + Ctrl+A Ctrl+A - + Kick Skop - + Vote Timeout: Stem vir uittelling: - + Yes Ja - + No Nee - + Chance Kans - + Configure PokerTH ... PokerTH opstel... - + Close Toemaak - + Ctrl+X Ctrl+X - + Vote started by: Stemming begin deur: - + Show/Hide Chance Window Wys/versteek kansvenster - + Ctrl+C Ctrl+C - + &View &Bekyk - + &Settings &Instellings - + Shortcut: <Shift> Kortpad: <Shift> @@ -1447,108 +1557,121 @@ Nooi gerus ander spelers uit deur op hul kenname in die lys beskikbare spelers t gameTableImpl - - - - - - - - + + + + + + + + Stop Stop - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Die oopbron-Texas Holdem-enjin - - - - - + + + + + Start Begin - - - + + + Lobby Voorkamer - + Chat Klets - + Closing PokerTH during network game PokerTH tydens netwerkspel toemaak - + You are the hosting server. Do you want to close PokerTH anyway? Jy is die gasheerbediener. Wil jy nog steeds PokerTH toemaak? - + PokerTH - Internet Game Message PokerTH - Internetspelboodskap - + Attention! Do you really want to leave the current game and go back to the lobby? Let op! Wil jy regtig die huidige spel verlaat en na die voorkamer terugkeer? - + Chat is only available to registered players. Klets werk net vir geregistreerde spelers. - + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + + + Chance Kans - + Kick Skop - + Do you want to kick <b>%1</b><br>from this game? Wil jy <b>%1</b><br> uit hierdie spel skop? - - + + <b>%1</b> secs left <b>%1</b> sek oor - + vote stem - + votes stemme - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Speler <b>%1</b> het <b>%2</b> %3<br> teen hom. <b>%4</b> stem(e) nodig om te skop. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Jy het <b>%1</b> %2 teen jou.<br><b>%3</b> stem(e) nodig om te skop. @@ -2642,120 +2765,135 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - Nederlands - - - - English - Engels - - - - French - Frans - - - - German - Duits - - - - Hungarian - Hongaars - - - - Italian - Italiaans - - Norwegian - Noors + Dutch + Nederlands + + + + English + Engels + + + + French + Frans - Russian - Russies - - - - Slovak - Slowaaks + German + Duits - Spanish - Spaans + Hungarian + Hongaars + + + + Italian + Italiaans + + + + Lithuania + - Turkish - Turks + Norwegian + Noors - - - - + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Russian + Russies + + + + Slovak + Slowaaks + + + + Spanish + Spaans + + + + Turkish + Turks + + + + + + Settings Error Instellingsfout - + The entered flipside picture doesn't exist. Please enter an valid picture! Die ingetikte omkeerkantprent bestaan nie. Tik asseblief 'n geldige prent in! - - + + The log file directory doesn't exist. Please select an valid directory! Die loglêer-gids bestaan nie. Kies asseblief 'n geldige gids! - + Language Changed Taal verander - + You have changed application language to %1. Please restart PokerTH to load new language! Jy het die program se taal na %1 verander. Herbegin asseblief PokerTH om nuwe taal te laai. - + Select your flipside picture Kies jou omkeerkantprent - + Images (*.png *.jpg *.gif) Prente (*.png *.jpg *.gif) - + Open Directory Maak gids oop - - + + Blinds Error Blindes-fout - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -2764,195 +2902,195 @@ is kleiner as huidige eerste-klein-blinde! Hierdie eerste-klein-blinde-waarde sal na die maksimum toegelate waarde gestel word. - + Bulgarian - Bulgaars + Bulgaars - + Polish - Pools - - - - Chinese - Sjinees + Pools + Chinese + Sjinees + + + Greek - Grieks + Grieks - + Swedish - Sweeds + Sweeds - + The entered server list address is not a valid URL. Please enter a valid server list address! Die ingetikte bedienerlysadres is nie 'n geldige URL nie. Tik asseblief 'n geldige bedienerlysadres in. - + Finnish - Fins + Fins - + Afrikaans - Afrikaans + Afrikaans - + Catalan - Katalaans + Katalaans - + Czech - Tsjeggies + Tsjeggies - + Danish - Deens + Deens - + Tamil - Tamil + Tamil - - + + Maintainer Name Onderhouer se naam - - + + Maintainer EMail Onderhouer se posadres - - + + Create Date Skep datum - + Windows Behaviour Venstergedrag - + scaleable vergroot/kleinbaar - + fixed vasgestel - + Minimum Size Minimumgrootte - + Maximum Size Maksimumgrootte - + Fixed Size Vaste grootte - + State Staat - + Please select your game table style Kies asseblief jou speltafelstyl - + PokerTH game table styles (*.xml) PokerTH-speltafelstyle (*.xml) - + Game Table Style Error Speltafelstyl-fout - + Selected game table style file is already in the list. Please select another one to add! Gekose speltafelstyl-lêer is reeds in die lys. Kies asseblief 'n ander om by te voeg. - + Game Table Style File Error Speltafelstyl-lêerfout - + Could not load game table style file correctly. Style will not be placed into list! Kon nie speltafelstyl-lêer korrek laai nie. Styl sal nie by lys gevoeg word nie. - + Please select your card deck style Kies asseblief jou kaartpakstyl. - + PokerTH card deck styles (*.xml) PokerTH-kaartpakstyle (*.xml) - + Card Deck Style Error Kaartpakstyl-fout - + Selected card deck style file is already in the list. Please select another one to add! Gekose kaartpakstyl-lêer is reeds in die lys. Kies asseblief 'n ander om by te voeg. - + Card Deck Style File Error Kaartpakstyl-lêerfout - + Could not load card deck style file correctly. Style will not be placed into list! Kon nie kaartpakstyl-lêer korrek laai nie. Styl sal nie by lys gevoeg word nie. - + PokerTH - Log file PokerTH - Loglêer - + Do you really want to delete the selected log file? @@ -2961,24 +3099,22 @@ Styl sal nie by lys gevoeg word nie. Wil jy regtig die gekose loglêer skrap? - + Save PokerTH log file Stoor PokerTH-loglêer - + PokerTH SQL log (*.pdb) PokerTH-SQL-log (*.pdb) - Portuguese (Brazilian) - Portugees (Brasiliaans) + Portugees (Brasiliaans) - Portuguese (Portuguese) - Portugees (Portugees) + Portugees (Portugees) @@ -3146,108 +3282,108 @@ Styl sal nie by lys gevoeg word nie. startWindowImpl - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Netwerkfout - + Server address was not set. Bedieneradres is nie gestel nie. - + An invalid port was set (ports 0-1023 are not allowed). 'n Ongeldige poort is gestel (poorte 0-1023 word nie toegelaat nie). - + Could not create a socket for TCP communication. Kon nie 'n sok vir TCP-kommunikasie skep nie. - + Could not set the IP address. Kon nie die IP-adres stel nie. - + Could not set the port for this type of address. Kon nie die poort vir hierdie tipe adres stel nie. - + The server name could not be resolved. Kon nie die bedienernaam oplos nie. - + Bind failed - please choose a different port. Kon nie bind nie - kies asseblief 'n ander poort. - + Internal network error: "listen" failed. Interne netwerkfout: kom nie "luister" nie. - + Server execution was terminated. Bedienerlopie is beëindig. - + Could not connect to the server. Kon nie aan die bediener koppel nie. - + Connection timed out. Please check the server address. @@ -3258,269 +3394,269 @@ Kontroleer asseblief die bedieneradres. As die bediener agter 'n NAT-roeteerder is, maak seker poortaanstuur is aan die bedienerkant opgestel. - + Internal network error: "select" failed. Interne netwerkfout: kon nie "kies" nie. - + Internal network error: "send" failed. Interne netwerkfout: kom nie "stuur" nie. - + Connection was closed by the server. Die verbinding is deur die bediener toegemaak. - + Internal network error: Duplicate TCP connection. Interne netwerkfout: Duplikaat-TCP-verbinding. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. 'n Ongeldige netwerkpakkie is ontvang. Maak asseblief dat alle spelers dieselfde weergawe van PokerTH gebruik. - + Internal state error. Please make sure that all players use the same version of PokerTH. Interne staatfout. Maak asseblief dat alle spelers dieselfde weergawe van PokerTH gebruik. - + Invalid server list URL. Please correct the address in the settings. Ongeldige bedienerlys-URL. Korrigeer asseblief die adres in die instellings. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Kon nie die bedienerlys-MD5-lêer oopmaak nie. Maak asseblief seker dat die bedienerlys-URL reg is. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. Kon nie met die PokerTH-internetbedienerlys sinchroniseer nie. Maak asseblief seker dat die bedienerlys-URL reg is. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. Die PokerTH-internetbedienerlys bevat ongeldige data. As jy 'n doelgemaakte bedienerlys gebruik, maak asseblief seker dat dit in die regte formaat is. - + Could not unzip the PokerTH internet server list. Kon nie die PokerTH-internetbedienerlys uitpak nie. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Kon nie die PokerTH-internetbedienerlys aflaai nie. Maak asseblief seker adt jy direk aan die internet gekoppel is. - + Could not open the target file when downloading the server list. Kon nie die teikenlêer oopmaak toe die bedienerlys afgelaai is nie. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Die PokerTH-bediener werk nie met hierdie weergawe van die spel nie.<br>Besoek asseblief <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> en laai die jongste weergawe af. - + Sorry, this server is already full. Jammer, hierdie bediener is reeds vol. - + Invalid login. Please check your username and password. Ongeldige aanmeld. Kontroleer asseblief jou gebruikernaam en wagwoord. - + Your account is blocked indefinitely. Jou rekening is onbepaald geblokeer. - + You cannot login at this time. Please try again in a few seconds. Jy kan nie nou aanmeld nie. Probeer asseblief weer oor 'n paar sekondes. - + This game is of type invite-only. You cannot join this game without being invited. Hierdie spel is van die tipe nooi-alleen. Jy kan nie by hierdie spel aansluit as jy nie genooi is nie. - + Invalid password when joining the game. Please reenter the password and try again. Ongeldige wagwoord toe by die spel aansluit. Tik asseblief weer die wagwoord in, en probeer weer. - + The password is too long. Please choose another one. Die wagwoord is te lank. Kies asseblief 'n ander naam. - + The game name is either too short or too long. Please choose another one. Die spelnaam is óf te kort óf te lank. Kies asseblief 'n ander naam. - + The game could not be found. Kon nie die spel vind nie. - + The chat text is invalid. Die kletsteks is ongeldig. - + The server referred to an unknown player. Aborting. Die bediener verwys na 'n onbekende speler. Ons staak dus. - + Internal error: The current player could not be found. Interne fout: Kon nie die huidige speler vind nie. - + Internal error: The current player is not active. Interne fout: Die huidige speler is nie aktief nie. - + You were kicked from the server. Jy is van die bediener af geskop. - + You were temporarily banned from the server. Jy is tydelik van die bediener af verban. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Jou bedienerverbinding het uitgetel vanweë geen aktiwiteit. Jy is welkom om weer te koppel! - + The client player count is invalid. Die kliëntspelertelling is ongeldig. - + Too many manual blinds were set. Please reconfigure the manual blinds. Te veel handmatige blindes is gestel. Stel asseblief weer die handmatige blindes op. - + An invalid avatar file was configured. Please choose a different avatar. 'n Ongeldige avatarlêer is opgestel. Kies asseblief 'n ander avatar. - + The selected avatar file is too large. Please choose a different avatar. Die gekose avatarlêer is te groot. Kies asseblief 'n ander avatar. - + An internal avatar error occured. Please report this to an admin in the lobby chat. 'n Interne avatarfout het voorgekom. Rapporteer dit asseblief aan 'n admin in die voorkamerklets. - + Could not start game: Synchronization failed. Kon nie spel begin nie: sinchronisering het misluk. - + The server is down for maintenance. Please try again later. Die bediener is af vir onderhoud. Probeer asseblief later weer. - + An internal error occured. 'n Interne fout het voorgekom. - - - + - - - - - - + + + + + + + + Network Notification Netwerkberigte - + You were kicked from the game. Jy is uit die spel geskop. - + Sorry, this game is already full. Jammer, hierdie spel is reeds vol. - + Unable to join - the server has already started the game. Kan nie aansluit nie - die bediener het reeds met die spel begin. - + Your admin state timed out due to inactivity. Feel free to create a new game! Jou adminstaat het uitgestel vanweë geen aktiwiteit. Skep gerus 'n nuwe spel. - + You cannot join this type of game as guest. Jy kan nie by hierdie tipe spel as 'n gas aansluit nie. - + The settings are invalid for this type of game. Die instellings is ongeldig vir hierdie tipe spel. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. 'n Nuwe weergawe van PokerTH is beskikbaar.<br>Besoek asseblief <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> en laai die jongste weergawe af. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Hierdie betaweergawe van PokerTH is verouderd.<br>Besoek asseblief <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> en laai die jongste weergawe af. - + Server Message Bedienerboodskap diff --git a/ts/pokerth_bg.ts b/ts/pokerth_bg.ts index 482c36cb..94e4aaaf 100644 --- a/ts/pokerth_bg.ts +++ b/ts/pokerth_bg.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -65,14 +66,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -85,12 +86,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -101,12 +102,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -116,40 +117,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -254,7 +255,7 @@ Please select a game table style and try again! About Относно - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -271,71 +272,98 @@ Please select a game table style and try again! © 2006-2007, FHammer, FThauer, LMay - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project Проект - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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-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=" ">translator name - mail address</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> @@ -362,7 +390,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-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-weight:600;">Страница на проекта : </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://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Автори: </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - първоначална идея, архитектура, интерфейс дизайн, Линукс пакет</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - първоначална идея, архитектура, разработка на мотора</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - архитектура, мрежово разработване, Уиндоус пакет</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - интерфейс дизайн, уебсайт</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erhard List (<a href="mailto:dunkanx@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">dunkanx@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - MacOS пакет</p></body></html> - + Translation Превод @@ -374,7 +402,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-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;">dankh - Bulgarian(Български)</p></body></html> - + Thanks to Благодарим на @@ -399,16 +427,16 @@ 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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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; font-weight:600;"> - <span style=" font-weight:400;">for different popular avatar picture resources</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark, 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;"> - for people avatar pictures</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for "misc" avatar pictures</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;"></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-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;"> - for different gpl lizensed sounds</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;"></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-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;"> - for self recorded chip sounds</p></body></html> - + License Лиценз - + Close Затвори - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -425,21 +453,6 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay {6 ?} {4 ?} {2006-2008,?} - - - <!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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> - - aboutPokerthImpl @@ -602,9 +615,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -929,6 +949,21 @@ Please choose another one! Fill up with computer opponents Попълни играта с компютърни играчи + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Започни играта @@ -1077,7 +1112,7 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... Стартиране на играта. Моля изчакайте ... @@ -1086,46 +1121,46 @@ p, li { white-space: pre-wrap; } Играта на %1 - + Joining a private Game Присъединяване към частна игра - + You are about to join a private game. Please enter the password! Присъединявате се към частна игра. Моля вкарайте паролата! - + open отвори - - - - + + + + Game Info Информация за играта - - - + + + Game Игра - - - + + + Players Играчи - - - + + + State Статус @@ -1134,138 +1169,144 @@ p, li { white-space: pre-wrap; } Частен - + R - - - + + + P - - - + + + Available Players Свободни играчи - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - + running работи - - + + running games: %1 течящи игри: %1 - - + + open games: %1 отворени игри: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1274,85 +1315,85 @@ Feel free to invite other players by right-clicking on their nick in the availab играчи в чата: %1 - - + + connected players: %1 свързани играчи: %1 - - + + Connected players - + hands ръце - + minutes минути - + double blinds удвои входа - + manual blinds order персонализиран ред за входа - + Server Error Грешка със сървъра - + You should not kick yourself from this game! Не би трябвало да игонвате себе си от тази игра! - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1365,42 +1406,42 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - Тексас Холдем покер мотора с отворен код - + Hands Ръце - + Chat Чат - + Log Отчитане - + Away Заминал - + Manual Action (default) Ръчно действие (по подразбиране) - + Auto-Check / Auto-Fold Автоматично-Приемай / Автоматично-Оттегляй - + Auto-Check / Auto-Call-Any Автоматично-Приемай / Автоматично-Отговаряй на всичко - + Speed: Скорост: @@ -1417,139 +1458,139 @@ Feel free to invite other players by right-clicking on their nick in the availab Игра в мрежата - + Start Local Game ... Започни локална игра... - + Ctrl+N Ctrl+N - + Quit Изход - + Ctrl+Q Ctrl+Q - + About PokerTH ... Относно PokerTH... - + Settings ... Настройки ... - + Create Network Game ... Създай игра в мрежата ... - + Ctrl+O Ctrl+O - + Join Network Game ... Присъедини се към игра в мрежа ... - + Ctrl+J Ctrl+J - + Fullscreen Пълен екран - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Покажи/Скрий чат прозорец - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Покажи/Скрий прозореца с ръцете - + Ctrl+H Ctrl+H - + Show/Hide Log Window Покажи/Скрий прозореца с регистъра - + Ctrl+L Ctrl+L - + Internet Game ... Интернет игра ... - + Ctrl+I Ctrl+I - + Show/Hide Away Window Покажи/Скрий "Заминал" прозореца - + Ctrl+A Ctrl+A - + Kick - + Vote Timeout: - + Yes - + No - + Chance @@ -1558,47 +1599,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Настройки - + Configure PokerTH ... - + Close Затвори - + Ctrl+X - + Vote started by: - + Show/Hide Chance Window - + Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -1606,14 +1647,14 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop Спри @@ -1626,7 +1667,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Ctrl+N за да започнете нова игра - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Тексас Холдем покер мотора с отворен код @@ -1645,18 +1686,18 @@ Please choose another one. F1 - Всичко вътре | F2 - Заложи/Наддай | F3 - Приеми/Орговори | F4 - Оттегли се - - - - - + + + + + Start Започни - - - + + + Lobby Лоби @@ -1863,78 +1904,91 @@ Please choose a different name. Автоматичен метод е настроен: Приемай или се оттегляй. - + Chat Чат - + Closing PokerTH during network game Затваряне на PokerTH по време на игра в мрежа - + You are the hosting server. Do you want to close PokerTH anyway? Вие сте сървъра домакин. Искате ли да затворите PokerTH все пак ? - + PokerTH - Internet Game Message PokerTH - Съобщение от интернет игра - + Attention! Do you really want to leave the current game and go back to the lobby? Внимание! Наистина ли искате да напуснете играта и да се върнете в лобите ? - + Chance - + Kick - + Do you want to kick <b>%1</b><br>from this game? - - + + <b>%1</b> secs left - + vote - + votes - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3497,124 +3551,124 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - Холандски - - - - English - Английски - - - - French - Френски - - - - German - Немски - - - - Hungarian - Унгарски - - - - Italian - Италиански - + Dutch + Холандски + + + + English + Английски + + + + French + Френски + + + + German + Немски + + + + Hungarian + Унгарски + + + + Italian + Италиански + + + Norwegian - Норвежки + Норвежки Portuguese Португалски - + Russian - Руски + Руски - + Slovak - Словенски + Словенски - + Spanish - Испански + Испански - + Turkish - Турски + Турски - - - - + + + + Settings Error Грешка в настройките - + The entered flipside picture doesn't exist. Please enter an valid picture! Въведената картинка за гръб на тестето не съществува Моля въведете валидна картинка! - - + + The log file directory doesn't exist. Please select an valid directory! Папката за регистър файла не съществува. Моля изберете валидна папка! - + Language Changed Езикъте е променен - + You have changed application language to %1. Please restart PokerTH to load new language! Сменихте езика за апликацията с %1. Моля рестартирайте PokerTH за да заредите новия език! - + Select your flipside picture Изберете картинка за тестето - + Images (*.png *.jpg *.gif) Картинки (*.png *.jpg *.gif) - + Open Directory Отвори папка - - + + Blinds Error Грешка с Входа - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3623,213 +3677,218 @@ This first-small-blind-value will be set to maximum allowed value. Този пръв малък вход ще бъде променен с максималната позволена стойност. - - Bulgarian - - - - - Chinese - - - - - Greek - - - - - Polish - - - - - Swedish - - - - + The entered server list address is not a valid URL. Please enter a valid server list address! - - Finnish - - - - + Afrikaans - + + Bulgarian + + + + Catalan - + + Chinese + + + + Czech - + Danish + + + Finnish + + + + + Greek + + + Lithuania + + + + + Polish + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Swedish + + + + Tamil - - + + Maintainer Name - - + + Maintainer EMail - - + + Create Date - + Windows Behaviour - + scaleable - + fixed - + Minimum Size - + Maximum Size - + Fixed Size - + State Статус - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -4014,108 +4073,108 @@ Please choose another one. Моля изберете друг псевдоним. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Грешка във връзката - + Server address was not set. Не сте задали адреса на сървъра. - + An invalid port was set (ports 0-1023 are not allowed). Задали сте грешен порт (портове 0-1023 не са разрешени). - + Could not create a socket for TCP communication. Създаването на сокет за TCP комуникация невъзможно. - + Could not set the IP address. Не може да бъде зададен IP адреса. - + Could not set the port for this type of address. Не може да бъде зададен порта за този тип адрес. - + The server name could not be resolved. Името на сървъра не може да бъде превърнато. - + Bind failed - please choose a different port. Връзката се провали - моля изберете друг порт. - + Internal network error: "listen" failed. Вътрешна мержова грешка: "слушането" се провали. - + Server execution was terminated. Паботата на сървъра бе прекратена. - + Could not connect to the server. Връзката със сървъра не може да бъде осъществена. - + Connection timed out. Please check the server address. @@ -4126,119 +4185,119 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up Ако сървъра е зад NAT-рутър, моля бъдете сигурни че порта е правилно препратен от страна на сървъра. - + Internal network error: "select" failed. Вътрешна мержова грешка: "отбелязването" се провали. - + Internal network error: "send" failed. Вътрешна мержова грешка: "изпращането" се провали. - + Connection was closed by the server. Връзката бе прекъсната от сървъра. - + Internal network error: Duplicate TCP connection. Вътрешна грешка в мрежата: Двойна TCP връзка. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Инвалиден мрежов пакет бе получен. Моля бъдете сигурни че всички играчи ползват една и съща версия на PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Вътрешна сървър грешка. Моля бъдете сигурни че всички играчи ползват една и съща версия на PokerTH. - + Invalid server list URL. Please correct the address in the settings. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. - + Could not unzip the PokerTH internet server list. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. - + Could not open the target file when downloading the server list. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH сървъра не поддържа тази версия на играта.<br>Моля отидете на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> и свалете последната версия. - + Sorry, this server is already full. Съжалаваме, но този сървър е вече пълен. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Грешна парола за присъединяване към играта. Моля вкарайте наново паролата. - + The password is too long. Please choose another one. Паролата е много дълга. Моля изберете друга. @@ -4253,146 +4312,146 @@ Please choose a different name. Името ви на играч е много късо, много дълго или невалидно. Моля изберете друго. - + The game name is either too short or too long. Please choose another one. Името на играта е много късо или много дълго. Моля изберете друго. - + The game could not be found. Играта не може да бъде намерена. - + The chat text is invalid. Чат текста не е валиден. - + The server referred to an unknown player. Aborting. Сървъра се отправи към незнаен играч. Спира операцията. - + Internal error: The current player could not be found. Вътрешна грешка. Играча не може да бъде намерен. - + Internal error: The current player is not active. Вътрешна грешка: Играча не е активен. - + You were kicked from the server. - + You were temporarily banned from the server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! - + The client player count is invalid. Броят на играчите не е валиден. - + Too many manual blinds were set. Please reconfigure the manual blinds. Много персонализирани входа са зададени. Моля настройте наново персонализираните входове. - + An invalid avatar file was configured. Please choose a different avatar. Невалиден аватар е зададен. Моля изберете друг аватар. - + The selected avatar file is too large. Please choose a different avatar. Избрания файл за аватар е много широк. Моля изберете друг. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Вътрешна грешка. Моля съобщете на администратор в лоби чата. - + Could not start game: Synchronization failed. Не може да бъде започната играта: синхронизацията се провали. - + The server is down for maintenance. Please try again later. Сървъра е изключен за профилактика. Моля опитайте пак по-късно. - + An internal error occured. Вътрешна грешка. - - - + - - - - - - + + + + + + + + Network Notification Мрежово съобщение - + You were kicked from the game. Бяхте изгонен от играта. - + Sorry, this game is already full. Съжалаваме, но тази игра е вече пълна. - + Unable to join - the server has already started the game. Не може да се присъедините - сървъра е започнал играта вече. - + Your admin state timed out due to inactivity. Feel free to create a new game! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Нова версия на PokerTH е излязла.<br>Моля отидете на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> за да изтеглите последната версия. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Бета версията на PokerTH не е годна.<br>Моля отидете на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> за да изтеглите последната версия. - + Server Message diff --git a/ts/pokerth_ca.ts b/ts/pokerth_ca.ts index 7759f030..2c9c7b5d 100644 --- a/ts/pokerth_ca.ts +++ b/ts/pokerth_ca.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -67,14 +68,14 @@ Si us plau, seleccioneu un estil de baralla i torneu-ho a provar! GameTableStyleReader - - - + + + Game Table Style Error Error d'estil de taula - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -87,12 +88,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -103,12 +104,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -118,27 +119,27 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. @@ -153,7 +154,7 @@ Please contact the game table style builder %4. Si us plau, contacteu l'autor de l'estil %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -174,8 +175,8 @@ Manquen els valors de "%2". Si us plau, contacteu l'autor de l'estil %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Un estil de baralla s'ha seleccionat en lloc d'un estil de taula. @@ -246,17 +247,101 @@ Si us plau, contacteu l'autor de l'estil %3. Quant a - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project Projecte - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -276,7 +361,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -297,30 +382,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=" "> - Disseny de gràfics del GUI inicial</span></p></body></html> - + Translation Traducció - <!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-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=" ">translator name - mail address</span></p></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 style=" 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=" ">nom del traductor - adreça de correu</span></p></body></html> - + Thanks to Gràcies a - <!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; } @@ -343,7 +426,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -367,17 +450,16 @@ 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=" "> - per moderar els fòrums, per registrar els errors de programació, i per organitzar les peticions per noves funcions</span></p></body></html> - + License Llicència - + Close Surt - - + <!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; } @@ -389,7 +471,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -563,9 +645,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -894,6 +983,21 @@ Please choose another one! &Kick Player &Expulsa jugador + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Cash: Diners inicials: @@ -998,197 +1102,203 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... S'està començant la partida. Si us plau, espereu... - + Joining a private Game S'està unint a una partida privada - + You are about to join a private game. Please enter the password! Esteu a punt d'unir-vos a una partida privada. Si us plau, introduiu la contrasenya! - + open obert - - - - + + + + Game Info Informació de la partida - - - + + + Game Partida - - - + + + Players Jugadors - - - + + + State Estat - + R R - - - + + + P P - - - + + + Available Players Jugadors disponibles - + Invite player Invita el jugador - + Ignore player Ignora el jugador - + Player infos ... - - - + + + Standard Estàndard - - - + + + Registered players only Només es permeten jugadors registrats - - - + + + Invited players only Només es permeten jugadors invitats - - - + + + Ranking game Partida de rànquing - + Connected players - max. %1 Jugadors conectats - màxim %1 - - + + T T - + Connected players - Max. %1 Jugadors conectats - Màxim %1 - + running a marxa - - + + running games: %1 partides a marxa:%1 - - + + open games: %1 partides obertes: %1 - + Invite %1 - + Ignore %1 - + %1 is playing in "%2". - + %1 is not playing at the moment. - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1197,54 +1307,54 @@ Feel free to invite other players by right-clicking on their nick in the availab jugadors al xat: %1 - - + + connected players: %1 jugadors conectats: %1 - - + + Connected players Jugadors conectats - + hands mans - + minutes minuts - + double blinds duplicar cegues - + manual blinds order ordre de cegues manuals - + Server Error Error del servidor - + You should not kick yourself from this game! No es pot expulsar-vos a vos mateix de la partida! - + search for player ... - + Chat is only available to registered players. @@ -1253,7 +1363,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Invita el jugador %1 - + Invite player ... Invita el jugador... @@ -1262,7 +1372,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Ignora el jugador %1 - + Ignore player ... Ignora el jugador... @@ -1273,8 +1383,8 @@ You can invite other players with right-click on their nick in the left availabl Podeu invitar més jugadors fent clic dret al seus noms d'usuari a la llista de jugadors disponibles que es troba a l'esquerra. - - + + PokerTH - Info Message PokerTH - Missatge d'informació @@ -1299,7 +1409,7 @@ Podeu invitar més jugadors fent clic dret al seus noms d'usuari a la llist No rebreu més missatges del xat o invitacions de partides d'aquest usuari.<br>Realment voleu posar el jugador <b>%1</b> a la llista per ignorar? - + PokerTH - Question PokerTH - Pregunta @@ -1312,224 +1422,224 @@ Podeu invitar més jugadors fent clic dret al seus noms d'usuari a la llist El PokerTH 0.6-beta - El motor de Texas Hold'em de codi font obert - + Hands Mans - + Chat Xat - + Log Registre - + Away Absent - + Manual Action (default) Acció manual (predeterminat) - + Auto-Check / Auto-Fold Igualar / abandonar automàticament - + Auto-Check / Auto-Call-Any Passar / igualar automàticament - + Speed: Velocitat: - + Start Local Game ... Comença una partida local... - + Ctrl+N Ctrl+N - + Quit Surt - + Ctrl+Q Ctrl+Q - + About PokerTH ... Quant a PokerTH... - + Settings ... Configuració... - + Create Network Game ... Crea una partida de xarxa... - + Ctrl+O Ctrl+O - + Join Network Game ... Entra a una partida de xarxa... - + Ctrl+J Ctrl+J - + Fullscreen Pantalla completa - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Mostra/oculta finestra de xat - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Mostra/oculta finestra de mans - + Ctrl+H Ctrl+H - + Show/Hide Log Window Mostra/oculta finestra de registre - + Ctrl+L Ctrl+L - + Internet Game ... Partida d'internet... - + Ctrl+I Ctrl+I - + Show/Hide Away Window Mostra/oculta finestra d'absència - + Ctrl+A Ctrl+A - + Kick Expulsar - + Vote Timeout: Temps permès per a la votació: - + Yes - + No No - + Chance Probabilitat - + Configure PokerTH ... Configura el PokerTH... - + Close Tanca - + Ctrl+X Ctrl+X - + Vote started by: Votació començada per: - + Show/Hide Chance Window Mostra/oculta finestra de probabilitats - + Ctrl+C Ctrl+C - + &View &Visualitza - + &Settings &Configuració - + Shortcut: <Shift> Drecera: <Shift> @@ -1537,108 +1647,121 @@ Podeu invitar més jugadors fent clic dret al seus noms d'usuari a la llist gameTableImpl - - - - - - - - + + + + + + + + Stop Atura - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 -El motor de Texas Hold'em de codi font obert - - - - - + + + + + Start Comença - - - + + + Lobby Sala - + Chat Xat - + Closing PokerTH during network game S'està tancant el PokerTH durant la partida de xarxa - + You are the hosting server. Do you want to close PokerTH anyway? Sou l'ordinador central. Voleu sortir del PokerTH de totes maneres? - + PokerTH - Internet Game Message PokerTH - Missatge de partida d'internet - + Attention! Do you really want to leave the current game and go back to the lobby? Atenció! Realment voleu abandonar la pardia actual i tornar a la sala? - + Chat is only available to registered players. - + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + + + Chance Probabilitat - + Kick Expulsa - + Do you want to kick <b>%1</b><br>from this game? Voleu expulsar a <b>%1</b><br>de la partida? - - + + <b>%1</b> secs left Queden<b>%1</b> segons - + vote vot - + votes vots - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. El jugador <b>%1</b> té <b>%2</b> %3<br>contra ell. Manquen<b>%4</b> vot(s) per expulsar-lo. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Teniu <b>%1</b> %2 en contra.<br>Manquen<b>%3</b> vot(s) per expulsar-vos. @@ -2741,120 +2864,140 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - neerlandès - - - - English - anglès - - - - French - francès - - - - German - alemany - - - - Hungarian - hongarès - - - - Italian - italià - - Norwegian - noruec + Dutch + neerlandès + + + + English + anglès + + + + French + francès - Russian - rus - - - - Slovak - eslovac + German + alemany - Spanish - castellà + Hungarian + hongarès + + + + Italian + italià + + + + Lithuania + - Turkish - turc + Norwegian + noruec - - - - + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Russian + rus + + + + Slovak + eslovac + + + + Spanish + castellà + + + + Tamil + + + + + Turkish + turc + + + + + + Settings Error Error de configuració - + The entered flipside picture doesn't exist. Please enter an valid picture! L'imatge de revés introduït no existeix. Si us plau, introdueu-ne una vàlida! - - + + The log file directory doesn't exist. Please select an valid directory! El directori d'arxiu de registre no existeix. Si us plau, seleccioneu un directori vàlid! - + Language Changed llengua canviada - + You have changed application language to %1. Please restart PokerTH to load new language! Heu canviat la llengua de l'aplicació a %1. Si us plau, reiniceu el PokerTH per carregar la nova llengua! - + Select your flipside picture Seleccioneu el vostre imatge del revés de la baralla - + Images (*.png *.jpg *.gif) imatges (*.png *.jpg *.gif) - + Open Directory diccionari obert - - + + Blinds Error Error de cegues - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -2863,217 +3006,210 @@ This first-small-blind-value will be set to maximum allowed value. Aquest valor per a la primera cega petita s'utilizarà com al valor màxim permès. - + Bulgarian - búlgar + búlgar - + Polish - polonès - - - - Chinese - xinès + polonès + Chinese + xinès + + + + Afrikaans + + + + + Catalan + + + + Greek - grec + grec - + Swedish - suec + suec - + The entered server list address is not a valid URL. Please enter a valid server list address! L'adreça de llista de servidors introduït no és un URL vàlid. Si us plau, introdueu una adreça de llista de servidor vàlida! - + Finnish - finès + finès - - Afrikaans - - - - - Catalan - - - - + Czech - txec + txec - + Danish - danès + danès - - Tamil - - - - - + + Maintainer Name nom del mantenidor - - + + Maintainer EMail correu electrònic del mantenidor - - + + Create Date Data de creació - + Windows Behaviour Comportament de les finestres - + scaleable escalable - + fixed fix - + Minimum Size mida mínima - + Maximum Size mida màxima - + Fixed Size mida fixa - + State Estat - + Please select your game table style Si us plau, seleccioneu el vostre estil de taula - + PokerTH game table styles (*.xml) Estils de taula PokerTH (*.xml) - + Game Table Style Error Error d'estil de taula - + Selected game table style file is already in the list. Please select another one to add! L'arxiu d'estil de taula seleccionat ja existeix a la llista. Si us plau, seleccioneu-ne un altre per afegir! - + Game Table Style File Error Error d'arxiu d'estil de taula - + Could not load game table style file correctly. Style will not be placed into list! No s'ha pogut carregar l'arxiu de l'estil de taula correctament. L'estil no es posarà a la llista! - + Please select your card deck style Si us plau, seleccioneu el vostre estil de baralla - + PokerTH card deck styles (*.xml) Estils de baralla PokerTH (*.xml) - + Card Deck Style Error Error d'estil de baralla - + Selected card deck style file is already in the list. Please select another one to add! L'arxiu d'estil de baralla seleccionat ja existeix a la llista. Si us plau, seleccioneu-ne un altre per afegir! - + Card Deck Style File Error Error d'arxiu d'estil de baralla - + Could not load card deck style file correctly. Style will not be placed into list! No s'ha pogut carregar l'arxiu d'estil de baralla correctament. L'estil no es posarà a la llista! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - portuguès (brasiler) + portuguès (brasiler) - Portuguese (Portuguese) - portuguès (portuguès) + portuguès (portuguès) @@ -3247,108 +3383,108 @@ Please choose another one. Si us plau, trieu-ne un altre. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Error de xarxa - + Server address was not set. L'adreça de servidor no s'ha establert. - + An invalid port was set (ports 0-1023 are not allowed). Un port no vàlid s'ha establert (ports 0-1023 no es permeten). - + Could not create a socket for TCP communication. No s'ha pogut fer un sòcol per a la comunicació TCP. - + Could not set the IP address. No s'ha pogut establir l'adreça IP. - + Could not set the port for this type of address. No s'ha pogut establir el port per a aquest tipus d'adreça. - + The server name could not be resolved. El nom del servidor no s'ha pogut resoldre. - + Bind failed - please choose a different port. Comunicació ha fallat. Seleccioneu un altre port. - + Internal network error: "listen" failed. Error intern de xarxa: ha fallat en "escoltar". - + Server execution was terminated. L'execució del servidor s'ha interromput. - + Could not connect to the server. No s'ha pogut connectar al servidor. - + Connection timed out. Please check the server address. @@ -3359,125 +3495,125 @@ Si us plau, comproveu l'adreça del servidor. Si el servidor és darrere un encaminador NAT, comproveu que el port de reeinviament està configurat en el servidor. - + Internal network error: "select" failed. Error intern de xarxa: ha fallat en "seleccionar". - + Internal network error: "send" failed. Error intern de xarxa: ha fallat en "enviar". - + Connection was closed by the server. La connexió ha estat tancat pel servidor. - + Internal network error: Duplicate TCP connection. Error intern de xarxa: Hi ha una connexió duplicada de TCP. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. S'ha rebut un paquet de xarxa no vàlid. Si us plau, tingueu en compte que tots els jugadors han d'utilitzar la mateixa versió de PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Error intern d'estat. Si us plau, comproveu que tots els jugadors utilitzin la mateixa versió de PokerTH. - + Invalid server list URL. Please correct the address in the settings. URL de llista de servidors no vàlid. Si us plau, corregiu l'adreça a la configuració. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. No s'ha pogut obrir l'arxiu MD5 de la llista de servidors. Si us plau, comproveu que l'URL de la llista de servidors és correcte. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. La sincronització de la llista de servidors d'internet de PokerTH ha fallat. Si us plau, comproveu que l'URL de la llista de servidors és correcte. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. La llista de servidors d'internet de PokerTH conté dades no vàlides. Si utilitzeu una llista personalitzada de servidors, si us plau, comproveu que el format és correcte. - + Could not unzip the PokerTH internet server list. No s'ha pogut descomprimir la llista de servidors de PokerTH. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. No s'ha pogut descarregar la llista de servidors d'internet de PokerTH. Si us plau, comproveu que esteu directament conectat a l'internet. - + Could not open the target file when downloading the server list. No s'ha pogut obrir l'arxiu de destí al descarregar la llista de servidors. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. El servidor de PokerTH no és compatible amb aquesta versió del joc.<br>Si us plau, aneu a <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> i descarregueu la versió més actualitzada. - + Sorry, this server is already full. Aquest servidor ja és ple. - + Invalid login. Please check your username and password. Entrada no vàlida. Si us plau, comproveu el vostre nom d'usuari i la constrasenya. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. No podeu entrar ara. Si us plau, torneu-ho a provar en uns segons. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Contrasenya no vàlida al unir-se a la partida. Si us plau, torneu a introduir la contrasenya i torneu-ho a provar una altra vegada. - + The password is too long. Please choose another one. La contrasenya és massa llarga. Si us plau, trieu-ne una altra. @@ -3492,146 +3628,146 @@ Si us plau, trieu-ne un altre. El nom de jugador és massa curt, massa llarg, o no és vàlid. Si us plau, trieu-ne un altre. - + The game name is either too short or too long. Please choose another one. El nom de la partida és massa curt o massa llarg. Si us plau, trieu-ne un altre. - + The game could not be found. La partida no s'ha pogut trobar. - + The chat text is invalid. El text de xat no és vàlid. - + The server referred to an unknown player. Aborting. El servidor s'ha referit a un jugador desconegut. Ara s'està tancant. - + Internal error: The current player could not be found. Error intern: El jugador actual no s'ha pogut trobar. - + Internal error: The current player is not active. Error intern: El jugador actual no està actiu. - + You were kicked from the server. Heu estat expulsat del servidor. - + You were temporarily banned from the server. Heu estat temporalment prohibit d'accedir el servidor. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! La vostra connexió al servidor ha fallat a causa d'inactivitat. Podeu tornar a conectar-vos! - + The client player count is invalid. El nombre de jugadors clients no és vàlid. - + Too many manual blinds were set. Please reconfigure the manual blinds. S'han configurat masses cegues manuals. Si us plau, torneu a configurar les cegues manuals. - + An invalid avatar file was configured. Please choose a different avatar. Un arxiu d'avatar no vàlid s'ha configurat. Si us plau, trieu un altre avatar. - + The selected avatar file is too large. Please choose a different avatar. L'arxiu d'avatar seleccionat és massa gran. Si us plau, trieu un altre avatar. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Un error intern d'avatar s'ha produït. Si us plau, informa d'això amb un administrador al xat. - + Could not start game: Synchronization failed. No s'ha pogut començar la partida: La sincronització ha fallat. - + The server is down for maintenance. Please try again later. Aquest servidor està desconectat per manteniment. Si us plau, torneu-ho a provar més tard. - + An internal error occured. Un error intern s'ha produït. - - - + - - - - - - + + + + + + + + Network Notification Notificació de xarxa - + You were kicked from the game. Heu estat expulsat de la partida. - + Sorry, this game is already full. Aquesta partida ja és plena. - + Unable to join - the server has already started the game. No s'ha pogut unir-se a la partida - el servidor ja l'ha començat. - + Your admin state timed out due to inactivity. Feel free to create a new game! El vostre estat com a administrador s'ha perdut a causa d'inactivitat. Podeu crear una partida nova! - + You cannot join this type of game as guest. No podeu unir-vos a aquest tipus de partida com a visitant. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Una nova versió de PokerTH és disponible.<br>Si us plau, aneu a <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> i descarregueu la versió més actualitzada. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Aquesta versió beta de PokerTH és obsoleta.<br>Si us plau, aneu a <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> i descarregueu la versió més actualitzada. - + Server Message Missatge de servidor diff --git a/ts/pokerth_cz.ts b/ts/pokerth_cz.ts index afb0d148..205f4b8b 100644 --- a/ts/pokerth_cz.ts +++ b/ts/pokerth_cz.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -313,7 +314,7 @@ Kontaktujte, prosím, výrobce stylu herního stolu na "%4".Close Zavřít - + <!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; } @@ -325,7 +326,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -455,7 +456,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -481,7 +482,7 @@ p, li { white-space: pre-wrap; } p, li { white-space: pre-wrap; } </style></head><body style=" 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=" ">translator name - mail address</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -510,7 +511,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -533,6 +534,87 @@ 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-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=" "> - za moderování fóra a organizaci bugtrackeru a seznamu požadovaných vlastností</span></p></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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + aboutPokerthImpl @@ -667,6 +749,11 @@ Zvolte, prosím, jiný název! Game name: Název hry: + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1042,6 +1129,18 @@ p, li { white-space: pre-wrap; } search for player ... vyhledat hráče ... + + Sort alphabetically + + + + Sort by country + + + + Display idle players + + gameLobbyDialogImpl @@ -1285,6 +1384,10 @@ Další hráče můžete pozvat pravým kliknutím na jejich přezdívku v sezna <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>Hráč %1 se nemůže připojit do hry %2, protože je zaneprázdněn.</span> + + The game will start in<br><b>%1</b> seconds. + + gameTable @@ -1545,6 +1648,17 @@ a vrátit se zpět do lobby? Chat is only available to registered players. Chat je dostupný pouze registrovaným hráčům. + + PokerTH - Warning + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -2478,47 +2592,47 @@ p, li { white-space: pre-wrap; } settingsDialogImpl Dutch - Nederlands + Nederlands English - English + English French - Français + Français German - Deutsch + Deutsch Hungarian - Magyar + Magyar Italian - Italiano + Italiano Norwegian - Nynorsk + Nynorsk Russian - Русский + Русский Slovak - Slovensky + Slovensky Spanish - Español + Español Turkish - Türkçe + Türkçe Settings Error @@ -2571,23 +2685,23 @@ Hodnota tohoto prvního malého blindu bude nastavená na max. možnou hodnotu.< Bulgarian - Български + Български Polish - Polski + Polski Chinese - 中文 + 中文 Greek - Ελληνικά + Ελληνικά Swedish - Svenska + Svenska The entered server list address is not a valid URL. @@ -2597,11 +2711,11 @@ Zadejte platnou adresu seznamu serverů! Finnish - Suomi + Suomi Danish - Dansk + Dansk Maintainer Name @@ -2697,23 +2811,23 @@ Styl nebude umístěn do seznamu! Portuguese (Brazilian) - Português (Brazil) + Português (Brazil) Portuguese (Portuguese) - Português (Português) + Português (Português) Czech - Česky + Česky Catalan - Català + Català Tamil - Tamil + Tamil State @@ -2725,7 +2839,7 @@ Styl nebude umístěn do seznamu! Do you really want to delete the seleted log file? - Opravdu chcete vybraný soubor záznamu smazat? + Opravdu chcete vybraný soubor záznamu smazat? Save PokerTH log file @@ -2737,7 +2851,23 @@ Styl nebude umístěn do seznamu! Afrikaans - Afrikaans + Afrikaans + + + Do you really want to delete the selected log file? + + + + Lithuania + + + + Portuguese-Brazilian + + + + Portuguese-Portuguese + diff --git a/ts/pokerth_de.ts b/ts/pokerth_de.ts index 50058125..10823af3 100644 --- a/ts/pokerth_de.ts +++ b/ts/pokerth_de.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -100,14 +101,14 @@ Bitte wählen Sie einen Kartendeck-Stil und versuchen Sie es erneut! GameTableStyleReader - - - + + + Game Table Style Error Spieltisch-Stilfehler - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -128,12 +129,12 @@ Sie können mit diesem Stil spielen, da der fehlende Inhalt durch den Standard-P Bitte kontaktieren Sie den Ersteller des Spieltisch-Stils über "%3". - + Game Table Style Error - Fields content missing Spieltischstil-Fehler - Feldinhalte fehlen - + One or more pictures from current game table style "%1" were not found: %2 @@ -150,12 +151,12 @@ Sie können mit diesem Stil spielen, da der fehlende Inhalt durch den Standard-P Bitte kontaktieren Sie den Ersteller des Spieltisch-Stils über "%3". - + Game Table Style Error - Pictures missing Spieltischstil-Fehler - Bilder fehlen - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -170,28 +171,28 @@ Sie können mit diesem Stil spielen, da der fehlende Inhalt durch den Standard-P Bitte kontaktieren Sie den Ersteller des Spieltisch-Stils "%4". - + Game Table Style Error - Outdated Spieltischstil-Fehler - veraltet - + Everything OK! Alles okay! - + Some pictures are missing, please contact style maintainer for this issue. Einige Bilder fehlen, bitte kontaktieren Sie den Stil-Betreuer über diesen Vorfall. - + Some style fields are missing, please contact style maintainer for this issue. Einige Stilfelder fehlen, bitte kontaktieren Sie den Stil-Betreuer über diesen Vorfall. - + This style is outdated, please contact style maintainer for this issue. Dieser Stil ist veraltet, bitte kontaktieren Sie den Stil-Betreuer über diesen Vorfall. @@ -206,7 +207,7 @@ Die aktuelle PokerTH-Spieltisch-Stilversion ist "%2", doch dieser Stil Bitte kontaktieren Sie den Ersteller des Spieltisch-Stils %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -227,8 +228,8 @@ Der/die Wert(e) "%2" fehlt/fehlen. Bitte kontaktieren Sie den Ersteller des Spieltisch-Stils %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Es wurde ein Kartendeck-Stil anstatt eines Spieltisch-Stils gewählt. @@ -355,12 +356,96 @@ Bitte kontaktieren Sie den Ersteller des Spieltisch-Stils %3. Über - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Projekt - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -380,7 +465,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -401,20 +486,18 @@ 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=" "> - erstes GUI-Grafikdesign</span></p></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-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=" ">translator name - mail address</span></p></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 style=" 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=" ">Mirko Albrecht - deutsch<br />Felix Hammer - deutsch<br />Bernd Arnold - deutsch</span></p></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; } @@ -437,7 +520,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -503,17 +586,17 @@ 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;"> - MacOSX-Paket</p></body></html> - + License Lizenz - + Close Schließen - + Thanks to Dank an @@ -521,7 +604,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.6 Über PokerTH 0.6 - + <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;"> @@ -550,7 +633,7 @@ 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;"></p></body></html> - + Translation Übersetzung @@ -611,7 +694,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; 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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -628,7 +711,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -854,7 +937,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; font-family:'Nimbus Sans L';"> Erhard List (<a href="mailto:dunkanx@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">dunkanx@pokerth.net</span></a>)</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Nimbus Sans L';"> - MacOS-Paket</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -958,7 +1041,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-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;"> - für selbst aufgenommene Chip-Geräusche</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1106,8 +1189,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-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;"> - für die Hintergrundgrafik des Startfensters</p></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; } @@ -1119,7 +1201,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -1404,9 +1486,16 @@ Bitte wählen Sie einen anderen! + Game name: Spielname: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1917,6 +2006,21 @@ p, li { white-space: pre-wrap; } &Kick Player Spieler ent&fernen + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Blinds raise interval: Blindserhöhungs-Intervall: @@ -1946,62 +2050,62 @@ p, li { white-space: pre-wrap; } Spiel - + Joining a private Game Einem privaten Spiel beitreten - + You are about to join a private game. Please enter the password! Dies ist ein privates Spiel. Bitte Kennwort eingeben! - - - - + + + + Game Info Spieldaten - - + + Connected players Verbundene Spieler - + Server Error Serverfehler - + You should not kick yourself from this game! Sie sollten sich nicht selbst des Spiels verweisen! - + running läuft - - - + + + Game Spiel - - - + + + Players Spieler - - - + + + State Status @@ -2010,166 +2114,172 @@ p, li { white-space: pre-wrap; } Privat - + open offen - + hands Runden - + minutes Minuten - + double blinds Blinds verdoppeln - + manual blinds order Eigene Blinds-Reihenfolge - + Starting game. Please wait ... Spiel wird gestartet. Bitte warten... - + R R - - - + + + P Prv (Privat) passt in die Spalte rein Prv - - - + + + Available Players Verfügbare Spieler - + Invite player Spieler einladen - + Ignore player Spieler ignorieren - + Player infos ... Spielerinfos... - - - + + + Standard Standard - - - + + + Registered players only Nur registrierte Spieler - - - + + + Invited players only Nur eingeladene Spieler - - - + + + Ranking game Ranking-Spiel - + Connected players - max. %1 Verbundene Spieler - max. %1 - - + + T Typ passt in die Spalte rein Typ - + Connected players - Max. %1 Verbundene Spieler - max. %1 - - + + running games: %1 Laufende Spiele: %1 - - + + open games: %1 Offene Spiele: %1 - + Invite %1 %1 einladen - + Ignore %1 %1 ignorieren - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> <span style='color:blue;'>%1 wurde zu %2 von %3 eingeladen.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> <span style='color:red;'>%1 hat die Einladung zu %2 abgelehnt.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>%1 kann %2 nicht beitreten, da er beschäftigt ist.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. Sie sind einem Spiel mit dem Typ "nur Einladungen" beigetreten. Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerliste mit der rechten Maustaste klicken. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? Sie wurden von <b>%2</b> zu dem Spiel <b>%1</b> eingeladen.<br>Möchten Sie diesem Spiel beitreten? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? Sie werden keine Chat-Nachrichten oder Spieleinladungen mehr von diesem Spieler erhalten.<br>Möchten Sie den Spieler <b>%1</b> wirklich auf Ihre Ignorier-Liste setzen? @@ -2178,49 +2288,49 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli Spieler im Chat: %1 - - + + connected players: %1 Verbundene Spieler: %1 - + search for player ... nach Spieler suchen... - + Chat is only available to registered players. Der Chat steht nur registrierten Spielern zur Verfügung. - + Invite player ... Spieler einladen... - + Ignore player ... Spieler ignorieren... - + %1 is playing in "%2". %1 spielt in "%2". - + %1 is not playing at the moment. %1 spielt derzeit nicht. - - + + PokerTH - Info Message PokerTH - Infomeldung - + PokerTH - Question PokerTH - Frage @@ -2232,7 +2342,7 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli gameTable - + Speed: Tempo: @@ -2249,57 +2359,57 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli Spiel - + Ctrl+N Strg+N - + Quit Schließen - + About PokerTH ... Über PokerTH... - + Settings ... Einstellungen... - + Create Network Game ... Netzwerkspiel erstellen... - + Join Network Game ... Netzwerkspiel beitreten... - + Fullscreen Vollbild - + Hands Blätter - + Chat Chat - + Log Log - + Start Local Game ... Lokales Spiel starten... @@ -2308,59 +2418,59 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli Netzwerkspiel - + Internet Game ... Internetspiel... - + Ctrl+Q Strg+Q - + Show/Hide Chat Window Chatfenster zeigen/verstecken - + Show/Hide Log Window Logfenster zeigen/verstecken - - - + + + Show/Hide Hands Window Blätterfenster zeigen/verstecken - + Ctrl+O Strg+O - + Ctrl+J Strg+J - + Ctrl+F Strg+F - + Ctrl+T Strg+T - + Ctrl+H Strg+H - + Ctrl+L Strg+L @@ -2369,7 +2479,7 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli PokerTH 0.6 - Die Open-Source Texas Holdem Engine - + Ctrl+I Strg+I @@ -2378,22 +2488,22 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli All In - + Away Abwesend - + Manual Action (default) Manuelle Eingabe (Standard) - + Auto-Check / Auto-Fold Auto-Check und Auto-Fold - + Auto-Check / Auto-Call-Any Auto-Check und Auto-Call-any @@ -2403,37 +2513,37 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli PokerTH 0.6-beta - Die Open-Source Texas Holdem Engine - + Show/Hide Away Window Abwesend-Fenster zeigen/verstecken - + Ctrl+A Strg+A - + Kick Rauswerfen - + Vote Timeout: Zeitlimit: - + Yes Ja - + No Nein - + Chance Chance @@ -2442,47 +2552,47 @@ Sie können nun Spieler einladen, indem Sie auf deren Nicknamen in der Spielerli Einstellungen - + Configure PokerTH ... Konfiguriere PokerTH... - + Close Schließen - + Ctrl+X Strg+X - + Vote started by: Abstimmung gestartet von: - + Show/Hide Chance Window Chancenfenster zeigen/verstecken - + Ctrl+C Strg+C - + &View &Ansicht - + &Settings &Einstellungen - + Shortcut: <Shift> Kurzbefehl: <Umschalt> @@ -2604,23 +2714,23 @@ Bitte wählen Sie einen anderen Namen. ⌘N zum Start eines neuen Spiels - - - - - + + + + + Start Start - - - - - - - - + + + + + + + + Stop Stop @@ -2682,7 +2792,7 @@ Wenn der Server hinter einem NAT-Router betrieben wird, stellen Sie sicher, dass F1 - Bet/Raise | F2 - Check/Call | F3 - Fold/All-In - + Chat Chat @@ -2767,12 +2877,12 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Bitte gehen Sie auf <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> und laden Sie die aktuelle Version herunter. - + Closing PokerTH during network game PokerTH während eines Netzwerkspiels beenden - + You are the hosting server. Do you want to close PokerTH anyway? Sie sind der Gastgeber dieses Spiels. Möchten Sie PokerTH trotzdem beenden? @@ -2789,14 +2899,14 @@ Bitte gehen Sie auf <a href="http://www.pokerth.net/" target=" Diese Beta-Version von PokerTH ist veraltet.<br>Bitte gehen Sie auf <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> und laden Sie die aktuelle Version herunter. - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Die Open-Source Texas Holdem Engine - - - + + + Lobby Lobby @@ -2805,12 +2915,12 @@ Bitte gehen Sie auf <a href="http://www.pokerth.net/" target=" Ein interner Avatarfehler ist aufgetreten. Bitte informieren Sie hierüber einen Admin im Lobbychat. - + PokerTH - Internet Game Message PokerTH - Internetspiel-Meldung - + Attention! Do you really want to leave the current game and go back to the lobby? Vorsicht! Möchten Sie das aktuelle Spiel wirklich verlassen @@ -2871,42 +2981,55 @@ Bitte stellen Sie sicher, dass Sie mit dem Internet direkt verbunden sind.Beim Herunterladen der Serverliste konnte die Zieldatei nicht geöffnet werden. - + Chance Chance - + Kick Rauswurf - + Do you want to kick <b>%1</b><br>from this game? Möchten Sie <b>%1</b><br>aus diesem Spiel entfernen? - - + + <b>%1</b> secs left <b>%1</b> Sekunde(n) verbleiben - + vote Stimme - + votes Stimmen - + Chat is only available to registered players. Mehr Text passte nicht rein. Chat nur für registrierte Spieler. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. Spieler <b>%1</b> hat <b>%2</b> %3 gegen<br>sich. Noch <b>%4</b> Stimmen, um ihn zu entfernen. @@ -2916,12 +3039,12 @@ Bitte stellen Sie sicher, dass Sie mit dem Internet direkt verbunden sind.Sie haben <b>%1</b> %2 gegen sich.<br>Noch <b>%3</b> Stimmen bis zum Rauswurf. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Spieler <b>%1</b> hat <b>%2</b> %3 gegen<br>sich. Noch <b>%4</b> Stimme(n), um ihn rauszuwerfen. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Sie haben <b>%1</b> %2 gegen sich.<br>Noch <b>%3</b> Stimme(n) bis zum Rauswurf. @@ -4261,10 +4384,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Einstellungsfehler @@ -4281,7 +4404,7 @@ Please select an valid directory! Bitte wählen Sie ein gültiges Verzeichnis! - + Select your flipside picture Wähle das Rückseitenbild @@ -4290,24 +4413,32 @@ Bitte wählen Sie ein gültiges Verzeichnis! Bilder (*.png) - + Open Directory Öffne Verzeichnis - + Images (*.png *.jpg *.gif) Bilder (*.png *.jpg *.gif) - - + French (fran�ais) + Französisch (fran�ais) + + + Spanish (Espa�ol) + Español (Spanisch) + + + + Blinds Error Blinds-Fehler - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -4316,29 +4447,29 @@ ist kleiner als der derzeitige erste Small Blind! Der erste Small Blind wird auf den größten erlaubten Wert gesetzt. - + Dutch - Nederlands (Holländisch) + Nederlands (Holländisch) - + English - English (Englisch) + English (Englisch) - + French - Français (Französisch) + Französisch - + German - Deutsch + Deutsch - + Hungarian - Hungarian (Ungarisch) + Hungarian (Ungarisch) Norse @@ -4349,252 +4480,275 @@ Der erste Small Blind wird auf den größten erlaubten Wert gesetzt.Português (Portugiesisch) - + Russian - Russian (Russisch) + Russian (Russisch) - + Turkish - Turkçe (Türkisch) + Turkçe (Türkisch) - + Language Changed Sprache geändert - + You have changed application language to %1. Please restart PokerTH to load new language! Sie haben die Sprache auf %1 geändert. Bitte starten Sie PokerTH neu um die neue Sprache zu laden! - + Italian - Italiano (Italienisch) + Italiano (Italienisch) - + Slovak - Slovak (Slowakisch) + Slovak (Slowakisch) - + The entered flipside picture doesn't exist. Please enter an valid picture! Das Rückseitenbild existiert nicht. Bitte geben Sie ein gültiges Bild an! - - + + The log file directory doesn't exist. Please select an valid directory! Das Logdateien-Verzeichnis existiert nicht. Bitte wählen Sie ein gültiges Verzeichnis! - + Norwegian - Norsk (Norwegisch) + Norsk (Norwegisch) - + Spanish - Español (Spanisch) + Español (Spanisch) - + Bulgarian - Български (Bulgarisch) + Български (Bulgarisch) - + Polish - Polski (Polnisch) - - - - Chinese - 中文 (Chinesisch) + Polski (Polnisch) + Chinese + 中文 (Chinesisch) + + + Greek - Ελληνικά (Griechisch) + Ελληνικά (Griechisch) - + Swedish - Svenska (Schwedisch) + Svenska (Schwedisch) - + The entered server list address is not a valid URL. Please enter a valid server list address! Die eingegebene Adresse ist keine gültige URL. Bitte geben Sie eine gültige Serverlisten-Adresse ein! - + Finnish - Suomi (Finnisch) + Suomi (Finnisch) - + Afrikaans - Afrikaans (Afrikanisch) + Afrikaans (Afrikanisch) - + Catalan - Català (Katalanisch) + Català (Katalanisch) - + Czech - Česky (Tschechisch) + Tschechisch - + Danish - Dansk (Dänisch) + Dansk (Dänisch) - Tamil - தமிழ் (Tamilisch) + Lithuania + - - + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Tamil + தமிழ் (Tamilisch) + + + Chinese (简体中文) + Chinesisch (简体中文) + + + French (français) + Französisch (français) + + + + Maintainer Name Name des Betreuers - - + + Maintainer EMail E-Mail-Adr. des Betreuers - - + + Create Date Erstellt am - + Windows Behaviour Fensterverhalten - + scaleable skalierbar - + fixed fixiert - + Minimum Size Mindestgröße - + Maximum Size Maximale Größe - + Fixed Size Feste Größe - + State Status - + Please select your game table style Bitte wählen Sie Ihren Spieltisch-Stil - + PokerTH game table styles (*.xml) PokerTH-Spieltisch-Stile (*.xml) - + Game Table Style Error Spieltisch-Stilfehler - + Selected game table style file is already in the list. Please select another one to add! Die gewählte Spieltisch-Stildatei ist bereits in der Liste enthalten. Bitte wählen Sie eine andere, um sie hinzuzufügen! - + Game Table Style File Error Spieltisch-Stildatei-Fehler - + Could not load game table style file correctly. Style will not be placed into list! Die Spieltisch-Stildatei konnte nicht korrekt geladen werden. Der Stil wird nicht zur Liste hinzugefügt! - + Please select your card deck style Bitte wählen Sie Ihren Kartendeck-Stil - + PokerTH card deck styles (*.xml) PokerTH-Kartendeck-Stil (*.xml) - + Card Deck Style Error Kartendeck-Stilfehler - + Selected card deck style file is already in the list. Please select another one to add! Die gewählte Kartendeck-Stildatei ist bereits in der Liste enthalten. Bitte wählen Sie eine andere, um sie hinzuzufügen! - + Card Deck Style File Error Kartendeck-Stildatei-Fehler - + Could not load card deck style file correctly. Style will not be placed into list! Die Kartendeck-Stildatei konnte nicht korrekt geladen werden. Der Stil wird nicht zur Liste hinzugefügt! - + PokerTH - Log file PokerTH - Logdatei - + Do you really want to delete the selected log file? @@ -4603,24 +4757,22 @@ Der Stil wird nicht zur Liste hinzugefügt! Möchten Sie die ausgewählte Logdatei wirklich löschen? - + Save PokerTH log file PokerTH-Logdatei speichern - + PokerTH SQL log (*.pdb) PokerTH-SQL-Log (*.pdb) - Portuguese (Brazilian) - Português brasileiro (Brasilianisches Portugiesisch) + Português brasileiro (Brasilianisches Portugiesisch) - Portuguese (Portuguese) - Português (Portugiesisch) + Português (Portugiesisch) @@ -4818,108 +4970,108 @@ Please choose another one. Bitte wählen Sie einen anderen Nicknamen. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Netzwerkfehler - + Server address was not set. Serveradresse wurde nicht angegeben. - + An invalid port was set (ports 0-1023 are not allowed). Ein ungültiger Port wurde angegeben (die Ports 0-1023 sind nicht erlaubt). - + Could not create a socket for TCP communication. Socket für TCP-Übertragung kann nicht erstellt werden. - + Could not set the IP address. IP-Adresse kann nicht gesetzt werden. - + Could not set the port for this type of address. Der Port für diesen Adresstyp kann nicht gesetzt werden. - + The server name could not be resolved. Der Servername kann nicht aufgelöst werden. - + Bind failed - please choose a different port. Verbindung fehlgeschlagen - bitte einen anderen Port wählen. - + Internal network error: "listen" failed. Interner Netzwerkfehler: "Lauschen" fehlgeschlagen. - + Server execution was terminated. Serverbetrieb wurde beendet. - + Could not connect to the server. Keine Verbindung zum Server. - + Connection timed out. Please check the server address. @@ -4929,125 +5081,125 @@ Bitte überprüfen Sie die Serveradresse. Wenn der Server hinter einem NAT-Router betrieben wird, stellen Sie sicher, dass serverseitig die Portweiterleitung aktiviert wurde. - + Internal network error: "select" failed. Interner Netzwerkfehler: "Auswahl" fehlgeschlagen. - + Internal network error: "send" failed. Interner Netzwerkfehler: "Senden" fehlgeschlagen. - + Connection was closed by the server. Der Server hat die Verbindung beendet. - + Internal network error: Duplicate TCP connection. Interner Netzwerkfehler: Doppelte TCP-Verbindung. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Ein ungültiges Netzwerkpaket wurde empfangen. Bitte stellen Sie sicher, dass alle Spieler die gleiche Version von PokerTH benutzen. - + Internal state error. Please make sure that all players use the same version of PokerTH. Interner Statusfehler. Bitte stellen Sie sicher, dass alle Spieler die gleiche Version von PokerTH benutzen. - + Invalid server list URL. Please correct the address in the settings. Ungültige URL für die Serverliste. Bitte korrigieren Sie die Adresse in den Einstellungen. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Die MD5-Datei mit den Serverlisten konnte nicht geladen werden. Bitte stellen Sie sicher, dass die URL zu den Serverlisten korrekt ist. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. Die Synchronisierung der PokerTH-Internetserverliste ist fehlgeschlagen. Bitte stellen Sie sicher, dass die URL zu den Serverlisten korrekt ist. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. Die Liste mit den PokerTH-Internetservern enthält ungültige Daten. Sollten Sie eine eigene Serverliste benutzen, stellen Sie bitte sicher, dass ihr Format korrekt ist. - + Could not unzip the PokerTH internet server list. Die Liste mit den PokerTH-Internetservern konnte nicht entpackt werden. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Die Liste mit den PokerTH-Internetservern konnte nicht heruntergeladen werden. Bitte stellen Sie sicher, dass Sie mit dem Internet direkt verbunden sind. - + Could not open the target file when downloading the server list. Beim Herunterladen der Serverliste konnte die Zieldatei nicht geöffnet werden. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Der PokerTH-Server unterstützt diese Programmversion nicht. Bitte gehen Sie auf <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> und laden Sie die aktuelle Version herunter. - + Sorry, this server is already full. Schade, der Server ist bereits voll. - + Invalid login. Please check your username and password. Ungültige Anmeldung. Bitte prüfen Sie Ihren Benutzernamen und Ihr Kennwort. - + Your account is blocked indefinitely. Ihr Konto wurde unbefristet gesperrt. - + You cannot login at this time. Please try again in a few seconds. Im Moment können Sie sich nicht anmelden. Bitte versuchen Sie es in wenigen Sekunden erneut. - + This game is of type invite-only. You cannot join this game without being invited. Dieses Spiel ist vom Typ "Nur Einladungen". Sie können diesem Spiel nicht beitreten ohne eingeladen zu werden. - + Invalid password when joining the game. Please reenter the password and try again. Ungültiges Kennwort beim Betreten des Spieltisches. Bitte geben Sie das Kennwort erneut ein und versuchen Sie es nochmal. - + The password is too long. Please choose another one. Das Kennwort ist zu lang. Bitte wählen Sie ein kürzeres. @@ -5062,67 +5214,67 @@ Bitte wählen Sie einen anderen Namen. Der Spielername ist zu kurz, zu lang oder ungültig. Bitte wählen Sie einen anderen Namen. - + The game name is either too short or too long. Please choose another one. Der Spielname ist entweder zu kurz oder zu lang. Bitte wählen Sie einen anderen. - + The game could not be found. Das Spiel konnte nicht gefunden werden. - + The chat text is invalid. Der Chattext ist ungültig. - + The server referred to an unknown player. Aborting. Der Server verweist auf einen unbekannten Spieler. Abbruch. - + Internal error: The current player could not be found. Interner Fehler: Der aktuelle Spieler kann nicht gefunden werden. - + Internal error: The current player is not active. Interner Fehler: Der aktuelle Spieler ist nicht aktiv. - + You were kicked from the server. Sie wurden des Servers verwiesen. - + You were temporarily banned from the server. Sie wurden temporär vom Server ausgeschlossen. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Ihre Serververbindung wurde aufgrund zu langer Inaktivität unterbrochen. Sie sind willkommen sich wieder zu verbinden! - + The client player count is invalid. Die Anzahl der Mitspieler ist ungültig. - + Too many manual blinds were set. Please reconfigure the manual blinds. Es wurden zu viele manuelle Blinds gesetzt. Bitte die manuellen Blinds entsprechend ändern. - + An invalid avatar file was configured. Please choose a different avatar. Es wurde eine ungültige Avatardatei konfiguriert. Bitte einen anderen Avatar auswählen. - + The selected avatar file is too large. Please choose a different avatar. Die ausgewählte Avatardatei ist zu groß. Bitte einen anderen Avatar auswählen. @@ -5131,81 +5283,81 @@ Bitte wählen Sie einen anderen Namen. Derzeit können Sie kein neues Avatar hochladen. Bitte versuchen Sie es in ein paar Sekunden erneut. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Ein interner Avatarfehler ist aufgetreten. Bitte informieren Sie hierüber einen Admin im Lobbychat. - + Could not start game: Synchronization failed. Das Spiel konnte nicht gestartet werden: die Synchronisierung ist fehlgeschlagen. - + The server is down for maintenance. Please try again later. Der Server wurde für Wartungsarbeiten heruntergefahren. Bitte versuchen Sie es später wieder. - + An internal error occured. Ein interner Fehler ist aufgetreten. - - - + - - - - - - + + + + + + + + Network Notification Netzwerkbenachrichtigung - + You were kicked from the game. Sie wurden des Spiels verwiesen. - + Sorry, this game is already full. Sorry, dieses Spiel ist bereits voll. - + Unable to join - the server has already started the game. Betreten nicht möglich - der Server hat das Spiel bereits gestartet. - + Your admin state timed out due to inactivity. Feel free to create a new game! Das Zeitlimit Ihres Administratorstatus ist aufgrund Inaktivität abgelaufen. Erstellen Sie doch ein neues Spiel! - + You cannot join this type of game as guest. Sie können diesem Spieltyp als Gast nicht beitreten. - + The settings are invalid for this type of game. Die Einstellungen sind für diesen Spieltyp ungültig. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Eine neue Version von PokerTH ist verfügbar.<br>Bitte gehen Sie auf <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> und laden Sie die aktuelle Version herunter. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Diese Beta-Version von PokerTH ist veraltet.<br>Bitte gehen Sie auf <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> und laden Sie die aktuelle Version herunter. - + Server Message Servermeldung diff --git a/ts/pokerth_dk.ts b/ts/pokerth_dk.ts index 709a4a3d..d88b2dd3 100644 --- a/ts/pokerth_dk.ts +++ b/ts/pokerth_dk.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -103,14 +104,14 @@ Vælg venligst en kort-bagside og prøv igen! GameTableStyleReader - - - + + + Game Table Style Error Pokerbord-skin fejl - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -123,12 +124,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -139,12 +140,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -154,27 +155,27 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. @@ -195,7 +196,7 @@ Please contact the game table style builder %4. Kontakt venligst fremstilleren af pokerbord-skin'et %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -228,8 +229,8 @@ Please contact the game table style builder %3. Kontakt venligst fremstilleren af pokerbordet %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! En kort-bagside var valgt i stedet for et pokerbord-skin. @@ -352,94 +353,121 @@ Kontakt venligst fremstilleren af pokerbord-skin'et %3. Om - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project Projekt - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + Translation Oversættelse - - <!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-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=" ">translator name - mail address</span></p></body></html> - - - - + Thanks to Tak til - - <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - + License Licens - + Close Luk - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -569,8 +597,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-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;"> - for startvindue-baggrundsgrafik</p></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; } @@ -582,7 +609,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -894,9 +921,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1221,6 +1255,21 @@ Please choose another one! Fill up with computer opponents Fyld op med computermodstandere + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Start spil @@ -1373,7 +1422,7 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... Starter spil. Vent venligst ... @@ -1382,46 +1431,46 @@ p, li { white-space: pre-wrap; } %1's spil - + Joining a private Game Tilslut et privat spil - + You are about to join a private game. Please enter the password! Du er ved at tilslutte et privat spil. Indtast venligst adgangskode! - + open åben - - - - + + + + Game Info Spilinformation - - - + + + Game Spil - - - + + + Players Spillere - - - + + + State Tilstand @@ -1430,138 +1479,144 @@ p, li { white-space: pre-wrap; } Privat - + R - - - + + + P - - - + + + Available Players Tilgængelige spillere - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - + running igangværende - - + + running games: %1 igangværende spil: %1 - - + + open games: %1 åbne spil: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1570,85 +1625,85 @@ Feel free to invite other players by right-clicking on their nick in the availab spillere i chat: %1 - - + + connected players: %1 tilsluttede spillere: %1 - - + + Connected players - + hands hænder - + minutes minutter - + double blinds dobbelt blinds - + manual blinds order manuel blinds-orden - + Server Error Server fejl - + You should not kick yourself from this game! Du skal ikke smide dig selv ud af dette spil! - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1661,42 +1716,42 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - The Open-Source Texas Holdem Engine - + Hands Hænder - + Chat Chat - + Log Log - + Away Væk - + Manual Action (default) Manuel handling (standart) - + Auto-Check / Auto-Fold Auto-check / Auto-fold - + Auto-Check / Auto-Call-Any Auto-check / Auto-call-alle - + Speed: Hastighed: @@ -1705,139 +1760,139 @@ Feel free to invite other players by right-clicking on their nick in the availab Se - + Start Local Game ... Start lokalt spil ... - + Ctrl+N Ctrl+N - + Quit Afslut - + Ctrl+Q Ctrl+Q - + About PokerTH ... Om PokerTH ... - + Settings ... Indstillinger ... - + Create Network Game ... Opret netværksspil ... - + Ctrl+O Ctrl+O - + Join Network Game ... Tilslut netværksspil ... - + Ctrl+J Ctrl+J - + Fullscreen Fuldskærm - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Vis/skjul chatvindue - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Vis/skjul hænder-vindue - + Ctrl+H Ctrl+H - + Show/Hide Log Window Vis/skjul logvindue - + Ctrl+L Ctrl+L - + Internet Game ... Internetspil ... - + Ctrl+I Ctrl+I - + Show/Hide Away Window Vis/skjul væk-vindue - + Ctrl+A Ctrl+A - + Kick Smid ud - + Vote Timeout: Stem tidsudløb: - + Yes Ja - + No Nej - + Chance Skift @@ -1846,47 +1901,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Indstillinger - + Configure PokerTH ... Konfigurér PokerTH ... - + Close Luk - + Ctrl+X Ctrl+X - + Vote started by: Afstemning startet af: - + Show/Hide Chance Window Vis/skjul chance-vindue - + Ctrl+C Ctrl+C - + &View &Vis - + &Settings &Indstillinger - + Shortcut: <Shift> Genvejstast: <Shift> @@ -1894,14 +1949,14 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop Stop @@ -1914,7 +1969,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Ctrl+N for at starte et nyt spil - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - The Open-Source Texas Holdem Engine @@ -1927,18 +1982,18 @@ Feel free to invite other players by right-clicking on their nick in the availab F1 - All-In | F2 - Bet/Raise | F3 - Check/Call | F4 - Fold - - - - - + + + + + Start Start - - - + + + Lobby Lobby @@ -1955,44 +2010,57 @@ Feel free to invite other players by right-clicking on their nick in the availab Auto måde sat: Check eller fold. - + Chat Chat - + Closing PokerTH during network game Lukker PokerTH under et netværksspil - + You are the hosting server. Do you want to close PokerTH anyway? Du er vært for serveren. Ønsker du stadig at afslutte PokerTH? - + PokerTH - Internet Game Message PokerTH - Internet-spil besked - + Attention! Do you really want to leave the current game and go back to the lobby? Advarsel! Ønsker du virkelig at forlade spillet og gå tilbage til lobby'en? - + Chat is only available to registered players. - + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + + + Chance Chance - + Kick Smid ud @@ -2011,23 +2079,23 @@ ud fra dette spil? Spiller <b>%1</b> har %2 stemmer imod ham. - + Do you want to kick <b>%1</b><br>from this game? Ønsker du at smide <b>%1</b><br>ud fra dette spil? - - + + <b>%1</b> secs left <b>%1</b> sekunder tilbage - + vote Stem - + votes Stemmer @@ -2040,12 +2108,12 @@ ud fra dette spil? Du har <b>%1</b> %2 imod dig.<br><b>%3</b> stemmer nødvendige for udsmidning. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Spiller <b>%1</b> er <b>%2</b> %3<br>imod ham. <b>%4</b> stemme(r) nødvendige for udsmidning. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Du har <b>%1</b> %2 imod dig.<br><b>%3</b> stemme(r) nødvendige for udsmid. @@ -3223,124 +3291,129 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - Hollandsk - - - - English - Engelsk - - - - French - Fransk - - - - German - Tysk - - - - Hungarian - Ungarsk - - - - Italian - Italiensk - + Dutch + Hollandsk + + + + English + Engelsk + + + + French + Fransk + + + + German + Tysk + + + + Hungarian + Ungarsk + + + + Italian + Italiensk + + + Norwegian - Norsk + Norsk Portuguese Portugisisk - + Russian - Russisk + Russisk - + Slovak - Slovakisk + Slovakisk - + Spanish - Spansk + Spansk - + + Tamil + + + + Turkish - Tyrkisk + Tyrkisk - - - - + + + + Settings Error Indstillingsfejl - + The entered flipside picture doesn't exist. Please enter an valid picture! Det indtastede bagside-billede eksiterer ikke. Indtast venligts et brugbart billede! - - + + The log file directory doesn't exist. Please select an valid directory! Log-filens sti eksisterer ikke. Vælge venligst en brugbar sti! - + Language Changed Sprog ændret - + You have changed application language to %1. Please restart PokerTH to load new language! Du har ændret programmets sprog til %1. Genstart venligst PokerTH for at indlæse det nye sprog! - + Select your flipside picture Vælg dit bagside-billede - + Images (*.png *.jpg *.gif) Billeder (*.png *.jpg *.gif) - + Open Directory Åben sti - - + + Blinds Error Blinds-fejl - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3349,217 +3422,225 @@ er mindre end det nuværende første-small-blind! Dene første-small-blind-værdi vil blive sat to den maksimale tiladte værdi. - + Bulgarian - Bulgarisk + Bulgarisk - + Polish - Polsk - - - - Chinese - Kinesisk + Polsk + Chinese + Kinesisk + + + + Afrikaans + + + + + Catalan + + + + + Czech + + + + Greek - Græsk + Græsk - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Swedish - Svensk + Svensk - + The entered server list address is not a valid URL. Please enter a valid server list address! Den indtastede serverlise adresse er ikke en brugbar URL. Indtast venligst en brugbar serverliste adresse! - + Finnish - Finsk + Finsk - - Afrikaans - - - - - Catalan - - - - - Czech - - - - + Danish - Dansk + Dansk - - Tamil - - - - - + + Maintainer Name Vedligeholders navn - - + + Maintainer EMail Vedligeholders email - - + + Create Date Oprettelsesdato - + Windows Behaviour Vinduernes adfærd - + scaleable Skalérbar - + fixed fast - + Minimum Size Mindste størrelse - + Maximum Size Største størrelse - + Fixed Size Fast størrelse - + State Tilstand - + Please select your game table style Vælg venligst din pokerbord-skin - + PokerTH game table styles (*.xml) PokerTH pokerbord-skins(*.xml) - + Game Table Style Error Pokerbord-skin fejl - + Selected game table style file is already in the list. Please select another one to add! Det valgte pokerbord-skin er allerede på listen. Vælg venligst et andet at tilføje! - + Game Table Style File Error Pokerbord-skin fil-fejl - + Could not load game table style file correctly. Style will not be placed into list! Kunne ikke indlæse pokerbord-skin filen korrekt. Skin'et vil ikke blive tilføjet til listen! - + Please select your card deck style Vælg venligst din kort-bagside - + PokerTH card deck styles (*.xml) PokerTH kort-bagsider(*.xml) - + Card Deck Style Error Kort-bagside fejl - + Selected card deck style file is already in the list. Please select another one to add! Den valgte kort-bagsidefil er allerede på listen. Vælg venligst en anden for at tilføje! - + Card Deck Style File Error Kort-bagside-filfejl - + Could not load card deck style file correctly. Style will not be placed into list! Kunne ikke indlæse kort-bagsidefilen korrekt. Kortbagsiden vil ikke blive tilføjet til listen! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - Portugisisk (brasiliansk) + Portugisisk (brasiliansk) - Portuguese (Portuguese) - Portugisisk (Portugisisk) + Portugisisk (Portugisisk) @@ -3745,108 +3826,108 @@ Please choose another one. Vælg venligst et andet. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Netværksfejl - + Server address was not set. Server adressen er ikke blevet sat. - + An invalid port was set (ports 0-1023 are not allowed). En invalid port var sat (port 0-1023 er ikke tilladt). - + Could not create a socket for TCP communication. Kunne ikke oprette en adgang til TCP kommunikation. - + Could not set the IP address. Kunne ikke sætte IP adressen. - + Could not set the port for this type of address. Kunne ikke sætte porten for denne type adresse. - + The server name could not be resolved. Servernavnet kunne ikke blive besluttet. - + Bind failed - please choose a different port. Blind fejlet - vælg venligst en andet port. - + Internal network error: "listen" failed. En netværksfejl: "listen" fejlede. - + Server execution was terminated. Server-lukning blev afsluttet. - + Could not connect to the server. Kunne ikke tilslutte serveren. - + Connection timed out. Please check the server address. @@ -3857,124 +3938,124 @@ Undersøg venligst serveradressen. Hvis serveren er under en NAT-router, skal du være sikker på, at forward-porten er blevet sat op på serversiden. - + Internal network error: "select" failed. Netværksfejl: "select" fejlet. - + Internal network error: "send" failed. Netværksfejl: "send" fejlede. - + Connection was closed by the server. Tilslutning blev lukket af serveren. - + Internal network error: Duplicate TCP connection. Netværksfejl: Dobbelt TCP-tilslutning. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. En invalid netværkspakke blev modtaget. Undersøg venligst, at alle spillere benytter den samme version af PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Tilstandsfejl. Undersøg venligst, at alle spillere benytter den samme version af PokerTH. - + Invalid server list URL. Please correct the address in the settings. Invalid serverliste URL. Ret venligst adressen under indstillinger. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Kunne ikke åbne serverliste MD5-fil. Undersøg venligst, at serverliste-URL'en er korrekt. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. Synkronisering af PokerTH internet serverliste fejlede. Undersøg venligst, at serverliste URL'en er korrekt. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. PokerTH internet serverlisten indeholder invalide data. Hvis du benytter en brugerdefineret serverliste bedes du venligst undersøge, om formatet er korrekt. - + Could not unzip the PokerTH internet server list. Kunne ikke udpakke PokerTH internet serverliste. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Kunne ikke downloade PokerTH serverlisten. Undersøg venligst, at du er direkte tilsluttet til internettet. - + Could not open the target file when downloading the server list. Kunne ikke åbne målfilen under download af serverliste. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH-server understøtter ikke denne version af spillet.<br>Gå venligst ind på <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> og download den seneste version. - + Sorry, this server is already full. Undskyld, denne server er allerede fyldt op. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Invalid adgangskode under tilslutning til spil. Indtast venligst adgangskoden igen. - + The password is too long. Please choose another one. Adgangskoden er for lang. Vælg venligst en anden. @@ -3989,67 +4070,67 @@ Vælg venligst et andet navn. Spillernavnet er for kort, for langt eller ugyldigt. Vælg venligst et andet. - + The game name is either too short or too long. Please choose another one. Spil-navnet er enten for kort eller for langt. Vælg venligst et andet. - + The game could not be found. Spillet kunne ikke findes. - + The chat text is invalid. Chat-teksten er ugyldig. - + The server referred to an unknown player. Aborting. Serveren henviser til en ukendt spiller. Afbryder. - + Internal error: The current player could not be found. Fejl: Den nuværende spiller kunne ikke findes. - + Internal error: The current player is not active. Fejl: Den nuværende spiller er ikke aktiv. - + You were kicked from the server. Du er blevet smidt ud fra serveren. - + You were temporarily banned from the server. Du var midlertidigt blokeret fra serveren. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Din servertilslutning udløb pga. interaktivitet. Du er meget velkommen til at tilslutte igen! - + The client player count is invalid. Klient spillerantallet er ugyldigt. - + Too many manual blinds were set. Please reconfigure the manual blinds. For mange manuelle blinds var indstillet. Konfigurér venligst de manuelle blinds igen. - + An invalid avatar file was configured. Please choose a different avatar. En invalid avatarfil var konfigureret. Vælge venligst en anden avatar. - + The selected avatar file is too large. Please choose a different avatar. Den valgte avatarfil er for stor. Vælg venligst en anden avatar. @@ -4058,81 +4139,81 @@ Vælg venligst et andet navn. Du kan ikke uploade en ny avatarfil på nuværende tidspunkt. Prøv venligst igen om få sekunder. - + An internal avatar error occured. Please report this to an admin in the lobby chat. En avatarfejl opstod. Rapportér venligst dette til en admin i lobby-chatten. - + Could not start game: Synchronization failed. Kunne ikke starte spil: Synkronisering fejlede. - + The server is down for maintenance. Please try again later. Serveren er nede pga. vedligeholdelse. Prøv venligst igen senere. - + An internal error occured. En fejl opstod. - - - + - - - - - - + + + + + + + + Network Notification Netværksnotifikation - + You were kicked from the game. Du er blevet smidt ud af spillet. - + Sorry, this game is already full. Undskyld, dette spil er allerede fyldt. - + Unable to join - the server has already started the game. Ikke muligt at tilslutte - serveren har allerede startet spillet. - + Your admin state timed out due to inactivity. Feel free to create a new game! Din admintilstand er udløbet pga interaktivitet. Du er velkommen til at starte et nyt spil! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. En ny udgave af PokerTH er tilgængelig.<br>Gå venligst til <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> og download den nyeste version. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Denne beta-udgave af PokerTH er udløbet.<br>Gå venligst til <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> og download den nyeste version. - + Server Message Server-besked diff --git a/ts/pokerth_es.ts b/ts/pokerth_es.ts index e3393fd2..cb396bb1 100644 --- a/ts/pokerth_es.ts +++ b/ts/pokerth_es.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -100,14 +101,14 @@ Seleccione un estilo de baraja y vuelva a intentarlo. GameTableStyleReader - - - + + + Game Table Style Error Error en el estilo de mesa - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -127,12 +128,12 @@ Puede seguir utilizando este estilo, ya que el contenido faltante será sustitui Póngase en contacto con el autor del estilo a través de "%3". - + Game Table Style Error - Fields content missing Error en el estilo de mesa - Falta contenido de campos - + One or more pictures from current game table style "%1" were not found: %2 @@ -149,12 +150,12 @@ Puede seguir utilizando este estilo, ya que el contenido faltante será sustitui Póngase en contacto con el autor del estilo a través de "%3". - + Game Table Style Error - Pictures missing Error en el estilo de mesa - Faltan imágenes - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -169,27 +170,27 @@ Puede seguir utilizando este estilo, ya que el contenido faltante será sustitui Póngase en contacto con el autor del estilo a través de "%4". - + Game Table Style Error - Outdated Error en el estilo de mesa - Obsoleto - + Everything OK! Todo correcto. - + Some pictures are missing, please contact style maintainer for this issue. Faltan algunas imágenes. Por favor, informe al autor del estilo sobre este problema. - + Some style fields are missing, please contact style maintainer for this issue. Faltan algunos campos del estilo. Por favor, informe al autor del estilo sobre este problema. - + This style is outdated, please contact style maintainer for this issue. Este estilo es obsoleto. Por favor, informe al autor del estilo sobre este problema. @@ -204,7 +205,7 @@ La versión de estilo de mesa actual de PokerTH es "%2", pero este est Póngase en contacto con el autor del estilo %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -225,8 +226,8 @@ Faltan los valores de "%2". Póngase en contacto con el autor del estilo %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Se ha seleccionado un estilo de baraja en vez de uno de mesa. @@ -353,12 +354,96 @@ Póngase en contacto con el autor del estilo %3. Acerca de - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Proyecto - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -378,7 +463,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -399,20 +484,18 @@ 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=" "> - diseño inicial del interfaz gráfico</span></p></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-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=" ">translator name - mail address</span></p></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 style=" 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=" ">Miguel Revilla Rodríguez - yo@miguelrevilla.com</span></p></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; } @@ -435,7 +518,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -501,7 +584,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;"> - empaquetado para MacOS</p></body></html> - + License Licencia @@ -1198,12 +1281,12 @@ 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;"></p></body></html> - + Close Cerrar - + Thanks to Agradecimientos @@ -1211,7 +1294,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.5 Acerca de PokerTH 0.5 - + <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;"> @@ -1240,7 +1323,7 @@ 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;"></p></body></html> - + Translation Traducción @@ -1291,11 +1374,11 @@ p, li { white-space: pre-wrap; } Acerca de PokerTH 0.6 - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1399,7 +1482,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-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;"> - por la grabación de los sonidos de las fichas</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1547,8 +1630,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-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;"> - por la imagen de fondo de la pantalla de inicio</p></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; } @@ -1560,7 +1642,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -1833,9 +1915,16 @@ Seleccione otro nombre. + Game name: Nombre de la partida: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -2158,6 +2247,21 @@ Seleccione otro nombre. Fill up with computer opponents Completar con oponentes virtuales + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Iniciar partida @@ -2351,46 +2455,46 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - - - - + + + + Game Info Información de la partida - + Server Error Error en el servidor - + You should not kick yourself from this game! No puede expulsarse a usted mismo. - + Joining a private Game Accediendo a una partida privada - - - + + + Game Partida - - - + + + Players Jugadores - - - + + + State Estado @@ -2399,180 +2503,186 @@ p, li { white-space: pre-wrap; } Privado - + You are about to join a private game. Please enter the password! Va a unirse a una partida privada. Introduzca la contraseña. - + running en marcha - + open abierta - - + + Connected players Jugadores conectados - + hands manos - + minutes minutos - + double blinds duplicar ciegas - + manual blinds order orden manual de ciegas - + Starting game. Please wait ... Iniciando partida. Espere... - + R R - - - + + + P P - - - + + + Available Players Jugadores disponibles - + Invite player Invitar jugador - + Ignore player Ignorar jugador - + Player infos ... Información del jugador ... - - - + + + Standard Normal - - - + + + Registered players only Sólo usuarios registrados - - - + + + Invited players only Sólo usuarios invitados - - - + + + Ranking game Partida clasificatoria - + Connected players - max. %1 Jugadores conectados - máx. %1 - - + + T T - + Connected players - Max. %1 Jugadores conectados - máx. %1 - - + + running games: %1 partidas en marcha: %1 - - + + open games: %1 partidas abiertas: %1 - + Invite %1 Invitar a %1 - + Ignore %1 Ignorar a %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> <span style='color:blue;'>%1 ha sido invitado a %2 por %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> <span style='color:red;'>%1 ha rechazado la invitación a %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>%1 no se puede unir a %2 porque está ocupado.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. Ha entrado en una partida sólo para invitados. Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en la lista de jugadores. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? Ha sido invitado a la partida <b>%1</b> por <b>%2</b>.<br>¿Quiere unirse a esa partida? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? Ya no recibirá más mensajes de charla o invitaciones de este usuario.<br>¿Seguro que desea añadir al usuario <b>%1</b>a la lista de ignorados? @@ -2581,49 +2691,49 @@ Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en jugadores en charla: %1 - - + + connected players: %1 jugadores conectados: %1 - + search for player ... buscar jugador ... - + Chat is only available to registered players. La charla sólo está disponible para usuarios registrados. - + Invite player ... Invitar jugador ... - + Ignore player ... Ignorar jugador ... - + %1 is playing in "%2". %1 está jugando en "%2". - + %1 is not playing at the moment. %1 no está jugando en este momento. - - + + PokerTH - Info Message PokerTH - Mensaje de información - + PokerTH - Question PokerTH - Pregunta @@ -2643,7 +2753,7 @@ Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Speed: Velocidad: @@ -2660,62 +2770,62 @@ Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en Partida - + Ctrl+N Ctrl+N - + Quit Salir - + About PokerTH ... Acerca de PokerTH... - + Settings ... Preferencias... - + Create Network Game ... Crear partida en red... - + Join Network Game ... Unirse a partida en red... - + Fullscreen Pantalla completa - + Hands Manos - + Chat Charla - + Log Registro - + Start Local Game ... Iniciar partida local... - + Ctrl+Q Ctrl+Q @@ -2723,66 +2833,66 @@ Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en PokerTH 0.5 - The Open-Source Texas Holdem Engine PokerTH 0.5 - El motor de Texas Holdem de código abierto - + ⌘F ⌘F - + Show/Hide Chat Window Mostrar/Ocultar ventana de charla - + ⌘C ⌘C - + ⌘H ⌘H - + Show/Hide Log Window Mostrar/Ocultar ventana de registro - + ⌘L ⌘L - - - + + + Show/Hide Hands Window Mostrar/Ocultar ventana de manos - + Ctrl+O Ctrl+O - + Ctrl+J Ctrl+J - + Ctrl+F Ctrl+F - + Ctrl+T Ctrl+T - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L @@ -2795,32 +2905,32 @@ Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en Partida de red - + Internet Game ... Partida en Internet... - + Ctrl+I Ctrl+I - + Away Ausente - + Manual Action (default) Acción manual (predeterminado) - + Auto-Check / Auto-Fold Check / Fold automático - + Auto-Check / Auto-Call-Any Check / Call automático @@ -2830,37 +2940,37 @@ Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en PokerTH 0.6-beta - El motor de Texas Holdem de código abierto - + Show/Hide Away Window Mostrar/Ocultar ventana - + Ctrl+A Ctrl+A - + Kick Expulsar - + Vote Timeout: Tiempo de votación: - + Yes - + No No - + Chance Probabilidad @@ -2869,47 +2979,47 @@ Puede invitar a otros jugadores pulsando con el botón derecho sobre su apodo en Preferencias - + Configure PokerTH ... Configurar PokerTH... - + Close Cerrar - + Ctrl+X Ctrl+X - + Vote started by: Votación iniciada por: - + Show/Hide Chance Window Mostrar/Ocultar ventana de probabilidad - + Ctrl+C Ctrl+C - + &View &Ver - + &Settings &Preferencias - + Shortcut: <Shift> Acceso directo: <Shift> @@ -3035,23 +3145,23 @@ Elija un nombre diferente. Cmd+N para iniciar una nueva partida - - - - - + + + + + Start Iniciar - - - - - - - - + + + + + + + + Stop Detener @@ -3106,7 +3216,7 @@ Si el servidor está detrás de un enrutador NAT, asegúrese de que el puerto de Esta partida está llena. - + Chat Charla @@ -3169,12 +3279,12 @@ Seleccione otro. El servidor está desconectado por mantenimiento. Inténtelo de nuevo más tarde. - + Closing PokerTH during network game Cerrando PokerTH durante una partida en red - + You are the hosting server. Do you want to close PokerTH anyway? Usted está alojando la partida. ¿Seguro que desea cerrar PokerTH? @@ -3191,14 +3301,14 @@ Seleccione otro. El versión beta de PokerTH es obsoleta.<br>Visite <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> para descargar la última versión. - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - El motor de Texas Holdem de código abierto - - - + + + Lobby Sala @@ -3207,12 +3317,12 @@ Seleccione otro. Ha ocurrido un error interno. Informe al administrador en la sala de charla. - + PokerTH - Internet Game Message PokerTH - Mensaje de partida en Internet - + Attention! Do you really want to leave the current game and go back to the lobby? ¿Seguro que desea abandonar la partida actual @@ -3273,41 +3383,54 @@ Asegúrese de que está conectado a Internet. No se puede abrir el archivo de destino al descargar la lista de servidores. - + Chance Probabilidad - + Kick Expulsar - + Do you want to kick <b>%1</b><br>from this game? ¿Desea expulsar a <b>%1</b><br>de esta partida? - - + + <b>%1</b> secs left quedan <b>%1</b> segundos - + vote voto - + votes votos - + Chat is only available to registered players. La charla sólo está disponible para usuarios registrados. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. El jugador <b>%1</b> tiene <b>%2</b> %3<br>en contra. Son necesarios <b>%4</b> para expulsarle. @@ -3317,12 +3440,12 @@ Asegúrese de que está conectado a Internet. Usted tiene <b>%1</b> %2 en contra.<br>Son necesarios <b>%3</b> para expulsarle. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. El jugador <b>%1</b> tiene <b>%2</b> %3<br>en contra. Son necesarios <b>%4</b> votos para la expulsión. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Tiene <b>%1</b> %2 en contra.<br>Son necesarios <b>%3</b> votos para la expulsión. @@ -4641,10 +4764,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Error en las preferencias @@ -4661,7 +4784,7 @@ Please select an valid directory! Introduzca un directorio válido. - + Select your flipside picture Seleccione la imagen del respaldo @@ -4670,24 +4793,24 @@ Introduzca un directorio válido. Imágenes (*.png) - + Open Directory Abrir directorio - + Images (*.png *.jpg *.gif) Imágenes (*.png *.jpg *.gif) - - + + Blinds Error Error en las ciegas - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -4696,281 +4819,296 @@ es menor que la primera ciega pequeña actual. El valor de la primera ciega pequeña será el máximo permitido. - + Dutch - Holandés + Holandés - + English - Inglés + Inglés - + French - Francés + Francés - + German - Alemán + Alemán - + Hungarian - Húngaro + Húngaro Portuguese Portugués - + Russian - Ruso + Ruso - + Turkish - Turco + Turco - + Language Changed El idioma ha cambiado - + You have changed application language to %1. Please restart PokerTH to load new language! Ha cambiado el idioma de la aplicación a %1. Reinicie PokerTH para cargar el nuevo idioma. - + Italian - Italiano + Italiano - + Slovak - Eslovaco + Eslovaco - + The entered flipside picture doesn't exist. Please enter an valid picture! La imagen del respaldo introducida no existe. Seleccione una imagen válida. - - + + The log file directory doesn't exist. Please select an valid directory! El directorio del archivo de registro no existe. Seleccione un directorio válido. - + Norwegian - Noruego + Noruego - + Spanish - Español + Español - + Bulgarian - Búlgaro + Búlgaro - + Polish - Polaco - - - - Chinese - Chino + Polaco + Chinese + Chino + + + Greek - Griego + Griego - + Swedish - Sueco + Sueco - + The entered server list address is not a valid URL. Please enter a valid server list address! La dirección de la lista de servidores introducida no es una URL válida. Introduzca una dirección válida. - + Finnish - Finés + Finés - + Afrikaans - Afrikaans + Afrikaans - + Catalan - Catalán + Catalán - + Czech - Checo + Checo - + Danish - Danés + Danés - Tamil - Tamil + Lithuania + - - + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Tamil + Tamil + + + + Maintainer Name Nombre del mantenedor - - + + Maintainer EMail eMail del mantenedor - - + + Create Date Fecha de creación - + Windows Behaviour Comportamiento de las ventanas - + scaleable escalable - + fixed fijo - + Minimum Size Tamaño mínimo - + Maximum Size Tamaño máximo - + Fixed Size Tamaño fijo - + State Estado - + Please select your game table style Seleccione su estilo de mesa - + PokerTH game table styles (*.xml) Estilos de mesa de PokerTH (*.xml) - + Game Table Style Error Error en el estilo de mesa - + Selected game table style file is already in the list. Please select another one to add! El estilo de mesa seleccionado ya está en la lista. Seleccione otro para añadirlo. - + Game Table Style File Error Error en el archivo del estilo de mesa - + Could not load game table style file correctly. Style will not be placed into list! No se puede cargar el archivo de estilo de mesa. El estilo no aparecerá en la lista. - + Please select your card deck style Seleccione su estilo de baraja - + PokerTH card deck styles (*.xml) Estilos de baraja de PokerTH (*.xml) - + Card Deck Style Error Error en el estilo de baraja - + Selected card deck style file is already in the list. Please select another one to add! El estilo de baraja seleccionado ya está en la lista. Seleccione otro para añadirlo. - + Card Deck Style File Error Error en el archivo del estilo de baraja - + Could not load card deck style file correctly. Style will not be placed into list! No se puede cargar el archivo de estilo de baraja. El estilo no aparecerá en la lista. - + PokerTH - Log file PokerTH - Archivo de registro - + Do you really want to delete the selected log file? @@ -4979,24 +5117,22 @@ El estilo no aparecerá en la lista. ¿Seguro que desea eliminar el archivo de registro seleccionado? - + Save PokerTH log file Guardar archivo de registro de PokerTH - + PokerTH SQL log (*.pdb) Registro SQL de PokerTH (*.pdb) - Portuguese (Brazilian) - Portugués (Brasil) + Portugués (Brasil) - Portuguese (Portuguese) - Portugués (Portugal) + Portugués (Portugal) @@ -5190,108 +5326,108 @@ Please choose another one. Seleccione otro. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Error en la red - + Server address was not set. La dirección del servidor no está establecida. - + An invalid port was set (ports 0-1023 are not allowed). Se ha establecido un puerto no válido (no se permiten los puertos 0-1023). - + Could not create a socket for TCP communication. No se puede crear un socket de comunicaciones TCP. - + Could not set the IP address. No se puede establecer la dirección IP. - + Could not set the port for this type of address. No se puede establecer el puerto para este tipo de dirección. - + The server name could not be resolved. No se puede resolver el nombre del servidor. - + Bind failed - please choose a different port. Fallo en la comunicación. Seleccione otro puerto. - + Internal network error: "listen" failed. Error interno en la red: fallo en "listen". - + Server execution was terminated. Finalizada la ejecución del servidor. - + Could not connect to the server. No se puede conectar al servidor. - + Connection timed out. Please check the server address. @@ -5302,125 +5438,125 @@ 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. - + Internal network error: "select" failed. Error interno en la red: fallo en "select". - + Internal network error: "send" failed. Error interno en la red: fallo en "send". - + Connection was closed by the server. Conexión cerrada por el servidor. - + Internal network error: Duplicate TCP connection. Error interno en la red: conexión TCP duplicada. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Se ha recibido un paquete de red no válido. Asegúrese que todos los jugadores utilizan la misma versión de PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Error interno de estado. Asegúrese que todos los jugadores utilizan la misma versión de PokerTH. - + Invalid server list URL. Please correct the address in the settings. URL de lista de servidores no válida. Corrija la dirección en las preferencias. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. No se puede abrir el archivo MD5 de la lista de servidores. Asegúrese de que la URL de la lista de servidores es correcta. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. Ha fallado la sincronización con la lista de servidores de PokerTH. Asegúrese de que la URL de la lista es correcta. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. La lista de servidores de PokerTH contiene información no válida. Si ha utilizado una lista de servidores personalizada, asegúrese de que el formato es correcto. - + Could not unzip the PokerTH internet server list. No se puede descomprimir la lista de servidores de PokerTH. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. No se puede descargar la lista de servidores de PokerTH. Asegúrese de que está conectado a Internet. - + Could not open the target file when downloading the server list. No se puede abrir el archivo de destino al descargar la lista de servidores. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. El servidor de PokerTH no soporta esta versión del juego.<br>Por favor, visite <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> y descargue la última versión. - + Sorry, this server is already full. Lo sentimos, este servidor está lleno. - + Invalid login. Please check your username and password. Acceso no válido. Compruebe el nombre de usuario y contraseña. - + Your account is blocked indefinitely. Su cuenta ha sido bloqueada indefinidamente. - + You cannot login at this time. Please try again in a few seconds. No puede acceder en este momento. Inténtelo pasados unos segundos. - + This game is of type invite-only. You cannot join this game without being invited. Esta partida es sólo para invitados. No puede unirse a ella sin una invitación. - + Invalid password when joining the game. Please reenter the password and try again. Contraseña incorrecta al unirse a la partida. Vuelva a introducir la contraseña e inténtelo de nuevo. - + The password is too long. Please choose another one. La contraseña es demasiado larga. Elija otra. @@ -5435,67 +5571,67 @@ Por favor, elija un nombre diferente. El nombre del jugador es muy corto, muy largo o no es válido. Seleccione otro. - + The game name is either too short or too long. Please choose another one. El nombre de la partida es muy largo o muy corto. Seleccione otro. - + The game could not be found. No se encuentra la partida. - + The chat text is invalid. El texto de charla no es válido. - + The server referred to an unknown player. Aborting. El servidor se ha referido a un jugador desconocido. Abortando. - + Internal error: The current player could not be found. Error interno: no se encuentra al jugador actual. - + Internal error: The current player is not active. Error interno: el jugador actual no está activo. - + You were kicked from the server. Ha sido expulsado del servidor. - + You were temporarily banned from the server. Se le ha prohibido temporalmente el acceso al servidor. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! La conexión se ha cerrado por inactividad. Le invitamos a volver a conectarse. - + The client player count is invalid. El número de jugadores no es válido. - + Too many manual blinds were set. Please reconfigure the manual blinds. Hay demasiadas ciegas manuales. Reconfigure las ciegas manuales. - + An invalid avatar file was configured. Please choose a different avatar. Se ha configurado un archivo de avatar no válido. Seleccione otro. - + The selected avatar file is too large. Please choose a different avatar. El avatar seleccionado es demasiado grande. Seleccione otro. @@ -5504,81 +5640,81 @@ Por favor, elija un nombre diferente. No se puede subir un nuevo avatar en este momento. Inténtelo dentro de unos segundos. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Ha ocurrido un error interno. Informe al administrador en la charla principal. - + Could not start game: Synchronization failed. No se puede iniciar la partida: fallo en la sincronización. - + The server is down for maintenance. Please try again later. El servidor está desconectado por mantenimiento. Inténtelo más tarde. - + An internal error occured. Ha ocurrido un error interno. - - - + - - - - - - + + + + + + + + Network Notification Notificación de red - + You were kicked from the game. Ha sido expulsado de la partida. - + Sorry, this game is already full. Disculpe, esta partida está llena. - + Unable to join - the server has already started the game. Imposible unirse - el servidor ya ha comenzado la partida. - + Your admin state timed out due to inactivity. Feel free to create a new game! Ha perdido su estado de administrador por inactividad. Puede crear una nueva partida. - + You cannot join this type of game as guest. No puede unirse a esta partida como anónimo. - + The settings are invalid for this type of game. Las opciones no son válidas para este tipo de partida. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Hay una nueva versión de PokerTH disponible.<br>Por favor, visite <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> para descargarla. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Esta versión beta de PokerTH es obsoleta.<br>Por favor, visite <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> para descargar la última versión. - + Server Message Mensaje del servidor diff --git a/ts/pokerth_fi.ts b/ts/pokerth_fi.ts index 472a339a..618f7c62 100644 --- a/ts/pokerth_fi.ts +++ b/ts/pokerth_fi.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -100,14 +101,14 @@ Valitse korttipakkatyyli ja yritä uudestaan! GameTableStyleReader - - - + + + Game Table Style Error Pelipöytätyylin virhe - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -120,12 +121,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -136,12 +137,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -151,27 +152,27 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. @@ -186,7 +187,7 @@ Please contact the game table style builder %4. Ota yhteyttä pelipöytätyylin tekijään %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -207,8 +208,8 @@ Please contact the game table style builder %3. Ota yhteyttä pelipöytätyylin tekijään %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! korttipakktyyli valittiin pelipöytätyylin sijaan. @@ -327,94 +328,121 @@ Ota yhteyttä pelipöytätyylin tekijään %3. Tietoa - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project Projekti - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + Translation Käännös - - <!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-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=" ">translator name - mail address</span></p></body></html> - - - - + Thanks to Kiitokset - - <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - + License Lisenssi - + Close Sulje - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -562,8 +590,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-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;"> - aloitusikkunan taustakuvan grafiikoista</p></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; } @@ -575,7 +602,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -847,9 +874,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1174,6 +1208,21 @@ Please choose another one! Fill up with computer opponents Täytä tietokonevastuksilla + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Aloita peli @@ -1326,7 +1375,7 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... Aloitetaan peli. Odottakaa hetki ... @@ -1335,46 +1384,46 @@ p, li { white-space: pre-wrap; } %1'n peli - + Joining a private Game Liitytään yksityiseen peliin - + You are about to join a private game. Please enter the password! Olet liittymässä yksityiseen peliin. Anna salasana! - + open avoin - - - - + + + + Game Info Peli-info - - - + + + Game Peli - - - + + + Players Pelaajat - - - + + + State Tila @@ -1383,138 +1432,144 @@ p, li { white-space: pre-wrap; } Yksityinen - + R - - - + + + P - - - + + + Available Players Käytettävissä olevat pelaajat - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - + running käynnissä - - + + running games: %1 pelejä käynnissä: %1 - - + + open games: %1 avoimia pelejä: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1523,85 +1578,85 @@ Feel free to invite other players by right-clicking on their nick in the availab Pelaajia chatissa: %1 - - + + connected players: %1 yhdistettyjä pelaajia: %1 - - + + Connected players - + hands kädet - + minutes minuutit - + double blinds tupla sokkopanokset - + manual blinds order manuaalinen sokkopanosjärjestys - + Server Error Palvelinvirhe - + You should not kick yourself from this game! Sinun ei tule potkaista itseäsi tästä pelistä! - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1614,42 +1669,42 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - Avoimen lähdekoodin Texas Holdem -alusta - + Hands Kädet - + Chat Chat - + Log Logi - + Away Poissa - + Manual Action (default) Manuaalinen toiminto (oletus) - + Auto-Check / Auto-Fold Auto-Passaus / Auto-Luovutus - + Auto-Check / Auto-Call-Any Auto-Passaus / Auto-Katso-Kaikki - + Speed: Nopeus: @@ -1666,139 +1721,139 @@ Feel free to invite other players by right-clicking on their nick in the availab Verkkopeli - + Start Local Game ... Aloita paikallispeli ... - + Ctrl+N Ctrl+N - + Quit Lopeta - + Ctrl+Q Ctrl+Q - + About PokerTH ... Tietoa PokerTH:sta... - + Settings ... Asetukset ... - + Create Network Game ... Luo verkkopeli ... - + Ctrl+O Ctrl+O - + Join Network Game ... Liity verkkopeliin ... - + Ctrl+J Ctrl+J - + Fullscreen Kokonäyttö - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Näytä/piilota chatti-ikkuna - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Näytä/piilota kädet-ikkuna - + Ctrl+H Ctrl+H - + Show/Hide Log Window Näytä/piilota Logi-ikkuna - + Ctrl+L Ctrl+L - + Internet Game ... Internet-peli ... - + Ctrl+I Ctrl+I - + Show/Hide Away Window Näytä/piilota poissa-ikkuna - + Ctrl+A Ctrl+A - + Kick Potkaise - + Vote Timeout: Äänestyjen aikaraja: - + Yes Kyllä - + No Ei - + Chance Todennäköisyys @@ -1807,47 +1862,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Asetukset - + Configure PokerTH ... Säädä PokerTH:ä ... - + Close Sulje - + Ctrl+X Crtl+X - + Vote started by: Äänestyksen aloitti: - + Show/Hide Chance Window Näytä/Piilota todennäköisyysikkuna - + Ctrl+C Crtl+C - + &View &Näytä - + &Settings &Asetukset - + Shortcut: <Shift> Pikanäppäin: <Shift> @@ -1855,14 +1910,14 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop Pysäytä @@ -1875,7 +1930,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Ctrl+N aloittaaksesi uusi peli - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Avoimen lähdekoodin Texas Holdem -alusta @@ -1894,18 +1949,18 @@ Valitse toinen nimi. F1 - All-In | F2 - Panosta/Korota | F3 - Passaa/Katso | F4 - Luovuta - - - - - + + + + + Start Aloita - - - + + + Lobby Aula @@ -2116,27 +2171,27 @@ Valitse toinen nimi. Auto-tila asetettu: Passaa tai luovuta. - + Chat Chat - + Closing PokerTH during network game Suljetaan PokerTH verkkopelin aikana - + You are the hosting server. Do you want to close PokerTH anyway? Ylläpidät palvelinta. Haluatko silti sulkea PokerTH:n? - + PokerTH - Internet Game Message PokerTH - Internet-peliviesti - + Attention! Do you really want to leave the current game and go back to the lobby? Huomio! Haluatko todella jättää nykyisen pelin @@ -2197,41 +2252,54 @@ Varmista, että olet yhdistetty suoraan internetiin. Ei voitu avata kohdetiedostoa ladattaessa palvelinlistaa. - + Chance Todennäköisyys - + Kick Potkaise - + Do you want to kick <b>%1</b><br>from this game? Haluatko potkaista <b>%1</b><br>tästä pelistä? - - + + <b>%1</b> secs left <b>%1</b> sekunttia jäljellä - + vote ääni - + votes ääntä - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. Pelaajalla <b>%1</b> on <b>%2</b> %3<br>itseänsä vastaan. <b>%4</b> ääntä tarvitaan potkaisuun. @@ -2241,12 +2309,12 @@ Varmista, että olet yhdistetty suoraan internetiin. Sinulla on <b>%1</b> %2 itseäsi vastaan. <br><b>%3</b> ääntä tarvitaan potkaisuun. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Pelaajalla <b>%1</b> on <b>%2</b> %3<br>häntä vastaan. <b>%4</b> ääntä tarvitaan potkaisuun. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Sinulla on <b>%1</b> %2 itseäsi vastaan.<br><b>%3</b> ääntä tarvitaan potkaisuun. @@ -3440,124 +3508,129 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - hollanti - - - - English - englanti - - - - French - ranska - - - - German - saksa - - - - Hungarian - unkari - - - - Italian - italia - + Dutch + hollanti + + + + English + englanti + + + + French + ranska + + + + German + saksa + + + + Hungarian + unkari + + + + Italian + italia + + + Norwegian - norja + norja Portuguese portugali - + Russian - venäjä + venäjä - + Slovak - slovakia + slovakia - + Spanish - espanja + espanja - + + Tamil + + + + Turkish - turkki + turkki - - - - + + + + Settings Error Asetusvirhe - + The entered flipside picture doesn't exist. Please enter an valid picture! Valittua kääntöpuolikuvaa ei ole olemassa. Valitse olemassa oleva kuva! - - + + The log file directory doesn't exist. Please select an valid directory! Logikansiota ei ole olemassa. Valitse olemassa oleva kansio! - + Language Changed Kieli vaihdettu - + You have changed application language to %1. Please restart PokerTH to load new language! Olet vaihtanut ohjelman kieleen %1. Käynnistä PokerTH ladataksesi uusi kieli! - + Select your flipside picture Valitse kääntöpuolikuvasi - + Images (*.png *.jpg *.gif) Kuvat (*.png *.jpg *.gif) - + Open Directory Avaa kansio - - + + Blinds Error Sokkopanosvirhe - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3566,217 +3639,225 @@ on pienempi kuin nykyinen ensimmäinen pieni sokkopanos! Tämä "ensimmäinen pieni sokkopanosarvo" asetetaan suurimmaksi sallituksi. - + Bulgarian - bulgaria + bulgaria - + Polish - puola - - - - Chinese - kiina + puola + Chinese + kiina + + + + Afrikaans + + + + + Catalan + + + + + Czech + + + + Greek - kreikka + kreikka - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Swedish - ruotsi + ruotsi - + The entered server list address is not a valid URL. Please enter a valid server list address! Valittu palvelinlistaosoite ei ole kelvollinen URL. Valitse kelvollinen palvelinlistaosoite! - + Finnish - Suomi + Suomi - - Afrikaans - - - - - Catalan - - - - - Czech - - - - + Danish - Tanska + Tanska - - Tamil - - - - - + + Maintainer Name Ylläpitäjän nimi - - + + Maintainer EMail Ylläpitäjän Email - - + + Create Date Luontipäivämäärä - + Windows Behaviour Ikkunan käyttäyminen - + scaleable Skaalattava - + fixed määritelty - + Minimum Size Minimi koko - + Maximum Size Maksimi koko - + Fixed Size Määritelty koko - + State Tila - + Please select your game table style Valitse pelipöytätyylisi - + PokerTH game table styles (*.xml) PokerTH-pelipöytätyyli (*.xml) - + Game Table Style Error Pelipöytätyylin virhe - + Selected game table style file is already in the list. Please select another one to add! Valittu pelipöytätyyli on jo listassa. Valitse toinen lisätäksesi se! - + Game Table Style File Error Pelipöytätyylin virhe - + Could not load game table style file correctly. Style will not be placed into list! Pelipöytätyylin lataaminen ei onnistunut ongelmitta. Tyyliä ei aseteta listaan! - + Please select your card deck style Valitse korttipakkatyylisi - + PokerTH card deck styles (*.xml) PokerTH-korttipakkatyylit /*.xml) - + Card Deck Style Error Korttipakkatyylin virhe - + Selected card deck style file is already in the list. Please select another one to add! Valittu korttipakkatyyli on jo listassa. Valitse toinen lisätäksesi se! - + Card Deck Style File Error Korttipakkatyylin virhe - + Could not load card deck style file correctly. Style will not be placed into list! Korttipakkatyylin lataaminen ei onnistunut ongelmitta. Tyyliä ei aseteta listaan! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - Porugali (Brasilia) + Porugali (Brasilia) - Portuguese (Portuguese) - Portugali (Portugali) + Portugali (Portugali) @@ -3966,108 +4047,108 @@ Please choose another one. Valitse toinen nimi. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Verkkovirhe - + Server address was not set. Palvelinosoitetta ei ole asetettu. - + An invalid port was set (ports 0-1023 are not allowed). Portti määritetty väärin (portit 0-1023 eivät kelpaa). - + Could not create a socket for TCP communication. Ei voitu luoda sockettia TCP-yhteydelle. - + Could not set the IP address. Ei voitu asettaa IP-osoitetta. - + Could not set the port for this type of address. Ei voitu asettaa porttia tämän kaltaiselle osoitteelle. - + The server name could not be resolved. Palvelimen nimeä ei voitu selvittää. - + Bind failed - please choose a different port. Sokkopanos epäonnistui - valitse toinen portti. - + Internal network error: "listen" failed. Sisäinen verkkovirhe: "kuuntelu" epäonnistui. - + Server execution was terminated. Palvelimen ajo keskeytettiin. - + Could not connect to the server. Ei voitu yhdistää palvelimeen. - + Connection timed out. Please check the server address. @@ -4078,124 +4159,124 @@ Tarkista palvelinosoite. Jos palvelin on NAT-reitittimen takana, varmista, että porttiohjaus on asetettu palvelimen puolella. - + Internal network error: "select" failed. Sisäinen verkkovirhe: "valitse" epäonnistui. - + Internal network error: "send" failed. Sisäinen verkkovirhe: "lähetä" epäonnistui. - + Connection was closed by the server. Palvelin katkaisi yhteyden. - + Internal network error: Duplicate TCP connection. Sisäinen verkkovirhe: Kaksinkertainen TCP-yhteys. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Epäkelpo verkkopaketti vastaanotettiin. Varmista, että kaikilla pelaajilla on sama versio PokerTH:sta. - + Internal state error. Please make sure that all players use the same version of PokerTH. Sisäinen tilavirhe. Varmista, että kaikilla pelaajilla on sama versio PokerTH:sta. - + Invalid server list URL. Please correct the address in the settings. Epäkelpo palvelinlistan URL. Korjaa osoite asetuksissa. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Ei voitu avata palvelinlistan MD5-tiedostoa. Varmista, että palvelinlistan URL on oikein. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. PokerTH:n internetpalvelinlistan synkronointi epäonnistui. Varmista, että palvelinlistan URL on oikein. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. PokerTH:n internetpalvelinlista sisältää kelvotonta dataa. Jos käytät kustomoitua palvelinlistaa, varmita sen muodon oikeellisuus. - + Could not unzip the PokerTH internet server list. PokerTH:n internetpalvelinlistaa ei voitu purkaa. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. PokerTH: internetpalvelinlistaa ei voitu ladata. Varmista, että olet yhdistetty suoraan internetiin. - + Could not open the target file when downloading the server list. Ei voitu avata kohdetiedostoa ladattaessa palvelinlistaa. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH-palvelin ei tue tätä peliversiota.<br>Lataa osoittesta<a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> uusin versio pelistä. - + Sorry, this server is already full. Palvelin on jo täynnä. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Epäkelpo salasana liityttävään peliin. Kirjoita salasana uudestaan ja yritä uudestaan. - + The password is too long. Please choose another one. Salasana on liian pitkä. Valitse toinen. @@ -4210,67 +4291,67 @@ Valitse toinen nimi. Nimesi on liian lyhyt, pitkä ja epäkelpo. Valitse toinen nimi. - + The game name is either too short or too long. Please choose another one. Pelin nimi on joko liian lyhyt ja tai pitkä. Valitse toinen nimi. - + The game could not be found. Peliä ei löydetty. - + The chat text is invalid. Chattiteksti on epäkelpo. - + The server referred to an unknown player. Aborting. Palvelin viittasi tuntemattomaan pelaajaan. Hylätään. - + Internal error: The current player could not be found. Sisäinen virhe: Nykyistä pelaaja ei löydetä. - + Internal error: The current player is not active. Sisäinen virhe: Nykyinen pelaaja on toimeton. - + You were kicked from the server. Sinut potkaistiin palvelimelta. - + You were temporarily banned from the server. Sinut pannattiin väliaikaisesti palvelimelta. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Yhteytesi palvelimeen katkaistiin toimettomuun vuoksi. Olet tervetullut palaamaan takaisin! - + The client player count is invalid. Asiakaspelaajamäärä on epäkelpo. - + Too many manual blinds were set. Please reconfigure the manual blinds. Liian monta manuaalista sokkopanosta asetettiin. Määrittele manuaaliset sokkopanokset uudestaan. - + An invalid avatar file was configured. Please choose a different avatar. Epäkelpo avataritiedosto on määritelty. Valitse toinen avatari. - + The selected avatar file is too large. Please choose a different avatar. Valittu avataritiedosto on liian iso. Valitse toinen avatari. @@ -4279,81 +4360,81 @@ Valitse toinen nimi. Et voi ladata uutta avataritiedosto juuri nyt. Yritä muutaman sekunnin kuluttua uudestaan. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Tapahtui sisäinen avatarivirhe. Ilmoita asiasta ylläpitäjälle chattiaulassa. - + Could not start game: Synchronization failed. Ei voitu käynnistää peliä: Synkronointi epäonnistui. - + The server is down for maintenance. Please try again later. Palvelin on poissa käytössä huollon vuoksi. Yritä myöhemmin uudestaan. - + An internal error occured. Tapahtui sisäinen virhe. - - - + - - - - - - + + + + + + + + Network Notification Verkkohuomautus - + You were kicked from the game. Sinut potkaistiin pelistä. - + Sorry, this game is already full. Tämä peli on jo täynnä. - + Unable to join - the server has already started the game. Kykenemätön liittymään - palvelin on jo aloittanut pelin. - + Your admin state timed out due to inactivity. Feel free to create a new game! Ylläpitotilasi katkaistiin toimettomuuden vuoksi. Ole vapaa ja luo uusi peli! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH:sta on julkaistu uusi versio. <br>Lataa osoitteesta <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> uusin versio. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Tämä PokerTH:n beta on vanhentunut. <br>Lataa osoitteesta <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> uusin versio. - + Server Message Palvelinviesti diff --git a/ts/pokerth_fr.ts b/ts/pokerth_fr.ts index 569eb363..edab6f98 100644 --- a/ts/pokerth_fr.ts +++ b/ts/pokerth_fr.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -99,14 +100,14 @@ Veuillez sélectionner un style de carte et essayez à nouveau ! GameTableStyleReader - - - + + + Game Table Style Error Erreur de style de table de jeu - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -126,12 +127,12 @@ Toutefois, vous pouvez quand même jouer avec ce style, les fichiers manquants s Veuillez contacter l'auteur de ce style de table de jeu via "%3". - + Game Table Style Error - Fields content missing Erreur de style de table de jeu - Le contenu de certains champs est manquant - + One or more pictures from current game table style "%1" were not found: %2 @@ -148,12 +149,12 @@ Toutefois, vous pouvez quand même jouer avec ce style, les fichiers manquants s Veuillez contacter l'auteur de ce style de table de jeu via "%3". - + Game Table Style Error - Pictures missing Erreur de style de table de jeu - Images manquantes - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -168,27 +169,27 @@ Toutefois, vous pouvez quand même jouer avec ce style, les fichiers manquants s Veuillez contacter l'auteur de ce style de table de jeu via "%4". - + Game Table Style Error - Outdated Erreur de style de table de jeu - Obsolète - + Everything OK! Tout fonctionne ! - + Some pictures are missing, please contact style maintainer for this issue. Certaines images sont manquantes, veuillez contacter l'auteur pour lui demander de corriger ce problème. - + Some style fields are missing, please contact style maintainer for this issue. Certains champs sont manquants, veuillez contacter l'auteur pour lui demander de corriger ce problème. - + This style is outdated, please contact style maintainer for this issue. Ce style est obsolète, veuillez contacter l'auteur pour lui demander de le mettre à jour. @@ -203,7 +204,7 @@ La version courante du style de table de jeu est "%2", mais ce style e Veuillez contacter le mainteneur du style de table de jeu %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -224,8 +225,8 @@ La(es) valeur(s) "%2" est(sont) manquante(s). Veuillez contacter le mainteneur du style de table de jeu %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Un style de carte a été sélectionné au lieu d'un style de table de jeu. @@ -353,12 +354,96 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue A propos de - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Projet - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -378,7 +463,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -399,13 +484,12 @@ 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=" "> - graphismes originaux</span></p><br></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-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=" ">translator name - mail address</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -418,7 +502,6 @@ Guillaume Delacour - <a href="mailto: gui@iroqwa.org"><span s </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; } @@ -441,7 +524,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -507,7 +590,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;"> - Plate-forme MacOS</p></body></html> - + License Licence @@ -1204,12 +1287,12 @@ 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;"></p></body></html> - + Close Fermer - + Thanks to Remerciements à @@ -1217,7 +1300,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.5 À propos de PokerTH 0.5 - + <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;"> @@ -1246,7 +1329,7 @@ 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;"></p></body></html> - + Translation Traduction @@ -1297,11 +1380,11 @@ p, li { white-space: pre-wrap; } À propos de PokerTH 0.6 - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1389,7 +1472,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;"> - for self recorded chip sounds</p></body></html> <html><head><meta name="qrichtext" content="1" /><style type="text/css">p, li { white-space: pre-wrap; }</style></head><body style=" 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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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; font-weight:600;"> - <span style=" font-weight:400;">pour les différents avatars et images populaires</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark, 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;"> - pour les images d'avatars de personnes</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - pour les diverses images d'avatars</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;"></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-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;"> - pour les différents sons sous lincense GPL</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;"></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-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;"> - pour les différentes puces sonores enregistrés soi-même</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1499,8 +1582,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;"> - for startwindow background gfx</p></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:'Sans Serif'; font-size:9pt; 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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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; font-weight:600;"> - <span style=" font-weight:400;">for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for "misc" avatar pictures</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-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;"> - for different gpl lizensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx</p></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; } @@ -1512,7 +1594,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -1787,9 +1869,16 @@ Veuillez choisir un autre nom. + Game name: Nom de la partie : + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -2112,6 +2201,21 @@ Veuillez choisir un autre nom. Fill up with computer opponents Compléter avec des adversaires IA + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Démarrer la partie @@ -2301,46 +2405,46 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - - - - + + + + Game Info Infos sur la partie - + Server Error Erreur du serveur - + You should not kick yourself from this game! Vous ne pouvez pas vous expulser vous-même de la partie ! - + Joining a private Game Rejoindre une partie privée - - - + + + Game Partie - - - + + + Players Joueurs - - - + + + State Statut @@ -2349,166 +2453,172 @@ p, li { white-space: pre-wrap; } Privé - + You are about to join a private game. Please enter the password! Vous êtes sur le point de rejoindre une partie privée. Veuillez entrer le mot de passe. - + running en cours - + open ouvert - - + + Connected players Joueurs connectés - + hands mains - + minutes minutes - + double blinds blinds doublées - + manual blinds order ordre manuel des blinds - + Starting game. Please wait ... Jeu en cours de lancement, veuillez patienter... - + R R - - - + + + P Privée - - - + + + Available Players Joueurs disponibles - + Invite player Inviter le joueur - + Ignore player Ignorer le joueur - + Player infos ... Informations sur le joueur ... - - - + + + Standard Standard - - - + + + Registered players only Que les joueurs enregistrés - - - + + + Invited players only Que les joueurs invités - - - + + + Ranking game Classement - + Connected players - max. %1 Joueurs connectés - Maximum %1 - - + + T Type - + Connected players - Max. %1 Joueurs connectés - Maximum %1 - - + + running games: %1 Parties en cours : %1 - - + + open games: %1 Parties ouvertes : %1 - + Invite %1 Inviter %1 - + Ignore %1 Ignorer %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> <span style='color:blue;'>%1 a été invité dans la partie %2 par %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> <span style='color:red;'>%1 a décliné l'invitation de %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>%1 ne peut pas joindre la partie de %2 car il est occupé.</span> + + + + The game will start in<br><b>%1</b> seconds. + + Player %1 is playing in "%2". %1 est en train de jouer dans la partie "%2". @@ -2518,14 +2628,14 @@ p, li { white-space: pre-wrap; } %1 ne joue pas actuellement. - + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. Vous êtes entré dans une partie où seuls les joueurs invités sont admis. Invitez d'autres joueurs en faisant un clic droit sur leurs pseudos dans la liste des Joueurs disponibles - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? Vous avez été invité dans la partie <b>%1</b> par <b>%2</b>.<br>Voulez-vous joindre cette partie? @@ -2538,7 +2648,7 @@ Invitez d'autres joueurs en faisant un clic droit sur leurs pseudos dans la <span style='color:red;'>%1 ne peut pas joindre la partie de %2 car il est occupé.</span> - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? Vous êtes sur le point de mettre le joueur <b>%1</b> dans la liste de joueurs ignorés. Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joueur, continuer ? @@ -2548,18 +2658,18 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue joueurs sur le tchat : %1 - - + + connected players: %1 Joueurs connectés : %1 - + search for player ... Rechercher un joueur ... - + Chat is only available to registered players. Le tchat n'est accessible qu'aux joueurs enregistrés. @@ -2568,7 +2678,7 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue Inviter le joueur %1 - + Invite player ... Inviter le joueur ... @@ -2577,23 +2687,23 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue Ignorer le joueur %1 - + Ignore player ... Ignorer le joueur ... - + %1 is playing in "%2". %1 joue actuellement dans la partie "%2" - + %1 is not playing at the moment. %1 ne joue pas actuellement - - + + PokerTH - Info Message PokerTH - Message d'information @@ -2602,7 +2712,7 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue <span style='color:blue;'>%1 a été invité dans la partie %2 par %3.</span> - + PokerTH - Question PokerTH - Question @@ -2622,7 +2732,7 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Speed: Vitesse : @@ -2639,62 +2749,62 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue Partie - + Ctrl+N Ctrl+N - + Quit Quitter - + About PokerTH ... A propos de PokerTH ... - + Settings ... Paramètres ... - + Create Network Game ... Créer une partie en réseau ... - + Join Network Game ... Rejoindre une partie en réseau ... - + Fullscreen Plein écran - + Hands Mains - + Chat Tchat - + Log Journal - + Start Local Game ... Démarrer une partie solo ... - + Ctrl+Q Ctrl+Q @@ -2702,66 +2812,66 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue PokerTH 0.5 - The Open-Source Texas Holdem Engine PokerTH 0.5 - Le moteur 'Open-Source' Texas Holdem par excellence - + ⌘F ⌘F - + Show/Hide Chat Window Montrer/Cacher la fenêtre de tchat - + ⌘C ⌘C - + ⌘H ⌘H - + Show/Hide Log Window Montrer/Cacher la fenêtre de journal - + ⌘L ⌘L - - - + + + Show/Hide Hands Window Montrer/Cacher la fenêtre des mains - + Ctrl+O Ctrl+O - + Ctrl+J Ctrl+J - + Ctrl+F Ctrl+F - + Ctrl+T Ctrl+T - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L @@ -2774,32 +2884,32 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue Partie en réseau - + Internet Game ... Partie sur Internet ... - + Ctrl+I Ctrl+l - + Away Absence - + Manual Action (default) Action manuelle (défaut) - + Auto-Check / Auto-Fold Parole auto / Passer auto - + Auto-Check / Auto-Call-Any Parole auto / Payer auto @@ -2809,37 +2919,37 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue PokerTH 0.6-beta - Le moteur Open Source de Texas Hold'em - + Show/Hide Away Window Montrer/Cacher la fenêtre d'absence - + Ctrl+A Ctrl+A - + Kick Expulser - + Vote Timeout: Expiration du vote : - + Yes Oui - + No Non - + Chance Chance @@ -2848,47 +2958,47 @@ Vous ne pourrez plus discuter ou recevoir d'invitations de jeu avec ce joue Paramètres - + Configure PokerTH ... Configurer PokerTH ... - + Close Fermer - + Ctrl+X Ctrl+X - + Vote started by: Vote initié par : - + Show/Hide Chance Window Montrer/Cacher la fenêtre chance - + Ctrl+C Ctrl+C - + &View &Vue - + &Settings &Paramètres - + Shortcut: <Shift> Raccourci : <Shift> @@ -3014,23 +3124,23 @@ Veuillez choisir un nom différent. ⌘N pour démarrer une nouvelle partie - - - - - + + + + + Start Démarrer - - - - - - - - + + + + + + + + Stop Pause @@ -3085,7 +3195,7 @@ Si le serveur est derrière un pare-feu, vérifiez que le port a été ouvert et Désolé, la partie est déjà complète. - + Chat Tchat @@ -3148,12 +3258,12 @@ Veuillez choisir un autre pseudonyme. Le serveur est arrêté pour maintenance. Veuillez réessayer plus tard. - + Closing PokerTH during network game Fermer PokerTH durant la partie en réseau - + You are the hosting server. Do you want to close PokerTH anyway? Vous hébergez le serveur. Voulez-vous quand même fermer PokerTH ? @@ -3170,14 +3280,14 @@ Veuillez choisir un autre pseudonyme. Cettet version béta de PokerTH est obsolète. <br>Merci d'aller sur <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> et de télécharger la dernière version. - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Le moteur de Texas Holdem Open-Source - - - + + + Lobby Fermer @@ -3186,12 +3296,12 @@ Veuillez choisir un autre pseudonyme. Une erreur interne est survenue. Merci de la signaler à un administrateur sur le chat. - + PokerTH - Internet Game Message PokerTH - Message Partie Internet - + Attention! Do you really want to leave the current game and go back to the lobby? Attention ! Voulez-vous vraiment quitter la partie en cours @@ -3252,41 +3362,54 @@ Veuillez vérifier que vous êtes directement connectés à internet.Impossible d'ouvrir le fichier cible lors du téléchargement de la liste de serveurs. - + Chance Chance - + Kick Expulser - + Do you want to kick <b>%1</b><br>from this game? Voulez-vous expulser <b>%1</b><br>de cette partie ? - - + + <b>%1</b> secs left <b>%1</b> secondes restantes - + vote vote - + votes votes - + Chat is only available to registered players. Le tchat n'est accessible qu'aux joueurs enregistrés. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. Le joueur <b>%1</b> a <b>%2</b> %3<br> contre lui.<b>%4</b> votes requis pour l'expulser. @@ -3296,12 +3419,12 @@ Veuillez vérifier que vous êtes directement connectés à internet.Vous avez <b>%1</b> %2 contre vous.<br><b>%3</b> votes requis pour l'expulser. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Le joueur <b>%1</b> a <b>%2</b> %3<br> contre lui. <b>%4</b> vote(s) requis pour l'expulsion. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Vous avez <b>%1</b> %2 contre vous.<br><b>%3</b> vote(s) requis pour l'expulsion. @@ -4609,10 +4732,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Erreur de paramètres @@ -4629,7 +4752,7 @@ Please select an valid directory! Veuillez sélectionner un répertoire valide! - + Select your flipside picture Sélectionnez une image pour le dos des cartes @@ -4638,24 +4761,24 @@ Veuillez sélectionner un répertoire valide! Images (*.png) - + Open Directory Parcourir - + Images (*.png *.jpg *.gif) Images (*.png *.jpg *.gif) - - + + Blinds Error Erreur de blinds - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -4664,281 +4787,296 @@ est plus petit que la première blind courante ! La première blind sera fixée à la valeur maximum possible. - + Dutch - Hollandais + Hollandais - + English - Anglais + Anglais - + French - Français + Français - + German - Allemand + Allemand - + Hungarian - Hongrois + Hongrois Portuguese Portuguais - + Russian - Russe + Russe - + Turkish - Turque + Turque - + Language Changed Langue changée - + You have changed application language to %1. Please restart PokerTH to load new language! Vous avez changé la langue de l'application pour %1. Veuillez redémarrer PokerTH pour charger cette langue ! - + Italian - Italien + Italien - + Slovak - Slovaque + Slovaque - + The entered flipside picture doesn't exist. Please enter an valid picture! L'image pour le dos de carte n'existe pas. Veuillez entrer une image valide ! - - + + The log file directory doesn't exist. Please select an valid directory! Le répertoire du journal n'existe pas. Veuillez sélectionner un répertoire valide ! - + Norwegian - Norvégien + Norvégien - + Spanish - Espagnol + Espagnol - + Bulgarian - Bulgare + Bulgare - + Polish - Polonais - - - - Chinese - Chinois + Polonais + Chinese + Chinois + + + Greek - Grec + Grec - + Swedish - Suedois + Suedois - + The entered server list address is not a valid URL. Please enter a valid server list address! L'adresse de la liste de serveurs n'est pas une URL valide. Veuillez entrer une adresse de liste de serveurs valide ! - + Finnish - Finnois + Finnois - + Afrikaans - Afrikaans + Afrikaans - + Catalan - Catalan + Catalan - + Czech - Tchèque + Tchèque - + Danish - Danois + Danois - Tamil - Tamil + Lithuania + - - + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Tamil + Tamil + + + + Maintainer Name Nom de l'auteur - - + + Maintainer EMail Email de l'auteur - - + + Create Date Date de création - + Windows Behaviour Comportement de la fenêtre - + scaleable étirable - + fixed fixe - + Minimum Size Taille minimum - + Maximum Size Taille maximum - + Fixed Size Taille fixe - + State Statut - + Please select your game table style Veuillez sélectionner votre style de table de jeu - + PokerTH game table styles (*.xml) Styles de table de jeu PokerTH (*.xml) - + Game Table Style Error Erreur de style de table de jeu - + Selected game table style file is already in the list. Please select another one to add! Le fichier de style de table de jeu sélectionné est déjà dans la liste. Veuillez en sélectionner un autre à ajouter ! - + Game Table Style File Error Erreur sur le fichier style de table de jeu - + Could not load game table style file correctly. Style will not be placed into list! Impossible de charger correctement le fichier de style de table de jeu. Le style ne sera pas placé dans la liste ! - + Please select your card deck style Veuillez choisir votre style de carte - + PokerTH card deck styles (*.xml) Styles de carte PokerTH (*.xml) - + Card Deck Style Error Erreur de style de carte - + Selected card deck style file is already in the list. Please select another one to add! Le fichier de style de carte sélectionné est déjà dans la liste. Veuillez en sélectionner un autre à ajouter ! - + Card Deck Style File Error Erreur sur le fichier de carte - + Could not load card deck style file correctly. Style will not be placed into list! Impossible de charger correctement le fichier de carte. Le style ne sera pas placé dans la liste ! - + PokerTH - Log file PokerTH - Fichier de journalisation - + Do you really want to delete the selected log file? Voulez-vous vraiment supprimer ce fichier de journalisation ? @@ -4947,24 +5085,22 @@ Le style ne sera pas placé dans la liste ! Voulez-vous vraiment supprimer ce fichier de journalisation ? - + Save PokerTH log file Enregistrer le fichier de journalisation - + PokerTH SQL log (*.pdb) PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - Portuguais (Brésilien) + Portuguais (Brésilien) - Portuguese (Portuguese) - Portuguais (Portuguais) + Portuguais (Portuguais) @@ -5162,108 +5298,108 @@ Please choose another one. Veuillez choisir un autre pseudo. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Erreur réseau - + Server address was not set. L'adresse du serveur n'a pas été spécifiée. - + An invalid port was set (ports 0-1023 are not allowed). Un port invalide a été spécifié (les ports 0-1023 ne sont pas permis). - + Could not create a socket for TCP communication. Impossible d'ouvrir un interface de connexion TCP. - + Could not set the IP address. Impossible d'initialiser l'adresse IP. - + Could not set the port for this type of address. Impossible de définir le port pour ce type d'adresse. - + The server name could not be resolved. Impossible de résoudre le nom du serveur. - + Bind failed - please choose a different port. L'opération 'Bind' a échoué - veuillez sélectionner un autre port. - + Internal network error: "listen" failed. Erreur interne réseau : l'opération "listen" a échoué. - + Server execution was terminated. L'exécution du serveur s'est terminée. - + Could not connect to the server. Connexion au serveur impossible. - + Connection timed out. Please check the server address. @@ -5274,125 +5410,125 @@ SVP vérifiez l'adresse du serveur. Si le serveur est derrière un pare-feu, vérifiez que le port a été ouvert et configuré sur le serveur. - + Internal network error: "select" failed. Erreur interne réseau : l'opération "select" a échouée. - + Internal network error: "send" failed. Erreur interne réseau : l'opération "send" a échouée. - + Connection was closed by the server. La connexion a été intérrompue par le serveur. - + Internal network error: Duplicate TCP connection. Erreur interne du réseau : connexion TCP dupliquée. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Un paquet de données invalide a été reçu. Veuillez vous assurer que tous les joueurs utilisent la même version de PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Erreur de statut interne. Veuillez vous assurer que tous les joueurs utilisent la même version de PokerTH. - + Invalid server list URL. Please correct the address in the settings. L'adresse de la liste des serveurs est invalide. Veuillez corriger l'adresse dans les paramètres. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Impossible d'ouvrir le fichier MD5 de la liste de serveurs. Veuillez vérifier que l'URL de la liste de serveurs est correcte. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. La synchronisation de la liste de serveurs internet PokerTH a échouée. Veuillez vérifier que l'URL de la liste de serveurs est correcte. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. La liste de serveurs internet PokerTH contient des données invalides. Si vous utilisez une liste spécifique, vérifiez que son format est correct. - + Could not unzip the PokerTH internet server list. Impossible de décompresser la liste de serveurs internet PokerTH. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Impossible de téléchager la liste de serveurs internet PokerTH. Veuillez vérifier que vous êtes directement connectés à internet. - + Could not open the target file when downloading the server list. Impossible d'ouvrir le fichier cible lors du téléchargement de la liste de serveurs. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Le serveur PokerTH ne supporte pas cette version du jeu.<br> Merci d'aller sur <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> et de télécharger la dernière version. - + Sorry, this server is already full. Désolé, ce serveur a déjà atteint sa limite de joueurs. - + Invalid login. Please check your username and password. Nom d'utilisateur invalide. Veuillez vérifier votre nom d'utilisateur et mot de passe. - + Your account is blocked indefinitely. Votre compte a été bloqué indéfiniment. - + You cannot login at this time. Please try again in a few seconds. Vous ne pouvez pas vous connecter pour l'instant. Veuillez réessayer dans quelques secondes. - + This game is of type invite-only. You cannot join this game without being invited. Cette partie est réservée aux joueurs invités. Vous ne pouvez donc pas la rejoindre sans être invité. - + Invalid password when joining the game. Please reenter the password and try again. Mot de passe invalide pour la partie sélectionnée. Veuillez entrer le mot de passe à nouveau et réessayez. - + The password is too long. Please choose another one. Ce mot de passe est trop long. Veuillez en choisir un autre. @@ -5407,67 +5543,67 @@ Veuillez choisir un nom différent. Le nom de joueur est trop court, trop long ou invalide. Veuillez en choisir un autre. - + The game name is either too short or too long. Please choose another one. Le nom de partie est soit trop long soit trop court. Veuillez en choisir un autre. - + The game could not be found. La partie est introuvable. - + The chat text is invalid. Le message de tchat est invalide. - + The server referred to an unknown player. Aborting. Le serveur fait référence à un joueur inconnu. Arrêt de la procédure. - + Internal error: The current player could not be found. Erreur interne : le joueur courant n'a pas été trouvé. - + Internal error: The current player is not active. Erreur interne : le joueur courant n'est pas actif. - + You were kicked from the server. Vous avez été expulsé du serveur. - + You were temporarily banned from the server. Vous avez été temporairement bannis du serveur. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Votre connexion au serveur a expirée pour cause d'inactivité. Vous êtes invités à vous reconnecter ! - + The client player count is invalid. Le compte du nombre de joueur est invalide. - + Too many manual blinds were set. Please reconfigure the manual blinds. Trop de blinds manuelles configurés. Veuillez reconfigurer les blinds manuelles. - + An invalid avatar file was configured. Please choose a different avatar. Un avatar invalide a été choisit. Veuillez en choisir un autre. - + The selected avatar file is too large. Please choose a different avatar. Le fichier d'avatar sélectionné est trop volumineux. Veuillez en choisir un autre. @@ -5476,81 +5612,81 @@ Veuillez choisir un nom différent. Vous ne pouvez pas envoyer un fichier d'avatar maintenant. Veuillez réessayer dans quelques secondes. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Une erreur d'avatar interne est survenue. Merci de la signaler à un administrateur sur le tchat. - + Could not start game: Synchronization failed. Impossible de démarrer la partie : échec de la synchronisation. - + The server is down for maintenance. Please try again later. Le serveur est arrêté pour maintenance. Veuillez réessayer plus tard. - + An internal error occured. Une erreur interne est survenue. - - - + - - - - - - + + + + + + + + Network Notification Notification réseau - + You were kicked from the game. Vous avez été expulsé de la partie. - + Sorry, this game is already full. Désolé, la partie est déjà complète. - + Unable to join - the server has already started the game. Impossible de joindre - la partie a déjà commencé. - + Your admin state timed out due to inactivity. Feel free to create a new game! Votre status d'administrateur a expiré pour cause d'inactivité. Recréez une partie ! - + You cannot join this type of game as guest. Vous ne pouvez pas joindre ce type de partie en tant qu'invité. - + The settings are invalid for this type of game. Les paramètres ne sont pas valables pour ce type de jeu. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Une nouvelle version de PokerTH est disponible. <br>Merci d'aller sur <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> et de télécharger la dernière version. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Cette version bêta de PokerTH est obsolète. <br>Merci d'aller sur <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> et de télécharger la dernière version. - + Server Message Message du serveur diff --git a/ts/pokerth_gr.ts b/ts/pokerth_gr.ts index 6e883c9e..4b1d62fc 100644 --- a/ts/pokerth_gr.ts +++ b/ts/pokerth_gr.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -65,14 +66,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -85,12 +86,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -101,12 +102,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -116,40 +117,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -246,7 +247,7 @@ Please select a game table style and try again! About About - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -262,90 +263,117 @@ Please select a game table style and try again! © 2006-2007, FHammer, FThauer, LMay - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project Project - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + Translation Translation - - <!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-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=" ">translator name - mail address</span></p></body></html> - - - - + Thanks to Thanks to - - <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - + License License - + Close Κλείσιμο @@ -437,7 +465,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-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;">(sp)(sp)(sp)(sp)(sp)- for self recorded chip sounds</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -453,21 +481,6 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay {6 ?} {4 ?} {2006-2008,?} - - - <!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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> - - aboutPokerthImpl @@ -630,9 +643,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -957,6 +977,21 @@ Please choose another one! Fill up with computer opponents Συμπλήρωση με παίχτες-υπολογιστή + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Έναρξη Παιχνιδιού @@ -1105,7 +1140,7 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... Έναρξη παιχνιδιού. Παρακαλώ περιμένετε... @@ -1114,46 +1149,46 @@ p, li { white-space: pre-wrap; } %1's game - + Joining a private Game Είσοδος σε πριβέ Παιχνίδι - + You are about to join a private game. Please enter the password! Επιχειρείτε να εισέλθετε σε ένα πριβέ παιχνίδι. Παρακαλώ δώστε τον κωδικό! - + open ανοιχτό - - - - + + + + Game Info Πληροφορίες Παιχνιδιού - - - + + + Game Παιχνίδι - - - + + + Players Παίχτες - - - + + + State Κατάσταση @@ -1162,138 +1197,144 @@ p, li { white-space: pre-wrap; } Πριβέ - + R - - - + + + P - - - + + + Available Players Διαθέσιμοι Παίχτες - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - + running σε εξέλιξη - - + + running games: %1 παιχνίδια σε εξέλιξη: %1 - - + + open games: %1 Ανοιχτά παιχνίδια: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1302,85 +1343,85 @@ Feel free to invite other players by right-clicking on their nick in the availab Παίχτες στο chat: %1 - - + + connected players: %1 Συνδεδεμένοι παίχτες: %1 - - + + Connected players - + hands μοιρασιές - + minutes λεπτά - + double blinds διπλά blinds - + manual blinds order Σειρά χειροκίνητων blinds - + Server Error Πρόβλημα στον Server - + You should not kick yourself from this game! Δεν χρειάζεται να διώξεις τον εαυτό σου απ' το παιχνίδι! - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1393,42 +1434,42 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - The Open-Source Texas Holdem Engine - + Hands Αξία Φύλλων - + Chat Chat - + Log Log - + Away Away - + Manual Action (default) Χειροκίνητο (πρεπιλογή) - + Auto-Check / Auto-Fold Αυτόματο: Ντούκου / Πάσο - + Auto-Check / Auto-Call-Any Αυτόματο: Ντούκου / Μέσα-σε-όλα - + Speed: Ταχύτητα: @@ -1445,139 +1486,139 @@ Feel free to invite other players by right-clicking on their nick in the availab Παιχνίδι Δικτύου - + Start Local Game ... Τοπικό Παιχνίδι ... - + Ctrl+N Ctrl+N - + Quit Κλείσιμο - + Ctrl+Q Ctrl+Q - + About PokerTH ... About PokerTH ... - + Settings ... Επιλογές ... - + Create Network Game ... Δημιουργία Παιχνιδιού Δικτύου ... - + Ctrl+O Ctrl+O - + Join Network Game ... Είσοδος σε Παιχνίδι Δικτύου ... - + Ctrl+J Ctrl+J - + Fullscreen Πλήρης Οθόνη - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Εμφάνιση/Απόκρυψη Παραθύρου Chat - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Εμφάνιση/Απόκρυψη Παραθύρου Αξίας Φύλλων - + Ctrl+H Ctrl+H - + Show/Hide Log Window Εμφάνιση/Απόκρυψη Παραθύρου Log - + Ctrl+L Ctrl+L - + Internet Game ... Παιχνίδι στο Internet ... - + Ctrl+I Ctrl+I - + Show/Hide Away Window Εμφάνιση/Απόκρυψη Παραθύρου - + Ctrl+A Ctrl+A - + Kick - + Vote Timeout: - + Yes - + No - + Chance @@ -1586,47 +1627,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Επιλογές - + Configure PokerTH ... - + Close Κλείσιμο - + Ctrl+X - + Vote started by: - + Show/Hide Chance Window - + Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -1634,14 +1675,14 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop Παύση @@ -1654,7 +1695,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Ctrl+N - Νέο Παιχνίδι - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - The Open-Source Texas Holdem Engine @@ -1673,18 +1714,18 @@ Please choose another one. F1 - Όλα Μέσα | F2 - Ποντάρω/Ρελάνς | F3 - Ντούκου/Μέσα | F4 - Πάσο - - - - - + + + + + Start Έναρξη - - - + + + Lobby Lobby @@ -1895,78 +1936,91 @@ Please choose a different name. Αυτόματο: Ντούκου ή Πάσο. - + Chat Chat - + Closing PokerTH during network game Κλείσιμο PokerTH κατα τη διάρκεια παιχνιδιού σε δίκτυο - + You are the hosting server. Do you want to close PokerTH anyway? Φιλοξενείτε τον server. Θέλετε να κλείσετε το PokerTH? - + PokerTH - Internet Game Message PokerTH - Μήνυμα Παιχνιδιού Internet - + Attention! Do you really want to leave the current game and go back to the lobby? Προσοχή! Θέλετε σίγουρα να φύγετε απ' το παιχνίδι και να επιστρέψετε στο lobby? - + Chance - + Kick - + Do you want to kick <b>%1</b><br>from this game? - - + + <b>%1</b> secs left - + vote - + votes - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3537,124 +3591,124 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - Dutch - - - - English - English - - - - French - French - - - - German - German - - - - Hungarian - Hungarian - - - - Italian - Italian - + Dutch + Dutch + + + + English + English + + + + French + French + + + + German + German + + + + Hungarian + Hungarian + + + + Italian + Italian + + + Norwegian - Norwegian + Norwegian Portuguese Portuguese - + Russian - Russian + Russian - + Slovak - Slovak + Slovak - + Spanish - Spanish + Spanish - + Turkish - Turkish + Turkish - - - - + + + + Settings Error Λάθος Επιλογές - + The entered flipside picture doesn't exist. Please enter an valid picture! Η επιλεγμένη εικόνα για την τράπουλα δεν υπάρχει. Παρακαλώ επιλέξτε μια σωστή εικόνα! - - + + The log file directory doesn't exist. Please select an valid directory! Η διεύθυνση του αρχείου log δεν υπάρχει. Παρακαλώ επιλέξτε μια σωστή διεύθυνση! - + Language Changed Η γλώσσα άλλαξε - + You have changed application language to %1. Please restart PokerTH to load new language! Έχετε επιλέξει την γλώσσα %1. Παρακαλώ επανεκκινήστε το PokerTH για να "φορτωθεί" η νέα γλώσσα! - + Select your flipside picture Επιλέξτε την εικόνα της τράπουλας - + Images (*.png *.jpg *.gif) Εικόνες (*.png *.jpg *.gif) - + Open Directory Άνοιγμα φακέλου - - + + Blinds Error Λάθος Blinds - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3663,213 +3717,218 @@ This first-small-blind-value will be set to maximum allowed value. Το πρώτο-μικρό-blind θα τεθεί στην μέγιστη επιτρεπόμενη τιμή. - + Bulgarian - Bulgarian + Bulgarian - - Polish - Polish + + Afrikaans + - - Chinese + + Catalan + Chinese + + + + + Czech + + + + + Danish + + + + + Finnish + + + + Greek - + + Lithuania + + + + + Polish + Polish + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Swedish - + + Tamil + + + + The entered server list address is not a valid URL. Please enter a valid server list address! - - Finnish - - - - - Afrikaans - - - - - Catalan - - - - - Czech - - - - - Danish - - - - - Tamil - - - - - + + Maintainer Name - - + + Maintainer EMail - - + + Create Date - + Windows Behaviour - + scaleable - + fixed - + Minimum Size - + Maximum Size - + Fixed Size - + State Κατάσταση - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -4054,108 +4113,108 @@ Please choose another one. Παρακαλώ επιλέξτε άλλο nickname. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Λάθος Δικτύου - + Server address was not set. Η Server address δεν είχε ορισθεί. - + An invalid port was set (ports 0-1023 are not allowed). Έχει ορισθεί λάθος port (δεν επιτρέπονται ports από 0 εως 1023). - + Could not create a socket for TCP communication. Could not create a socket for TCP communication. - + Could not set the IP address. Could not set the IP address. - + Could not set the port for this type of address. Could not set the port for this type of address. - + The server name could not be resolved. Το όνομα του server δεν μπορεί να βρεθεί. - + Bind failed - please choose a different port. Bind failed - Παρακαλώ διαλέξτε διαφορετικό port. - + Internal network error: "listen" failed. Εσωτερικό λάθος δικτύου: "listen" failed. - + Server execution was terminated. Η λειτουργία του server τερματίστηκε. - + Could not connect to the server. Αδυναμία σύνδεσης με το server. - + Connection timed out. Please check the server address. @@ -4166,119 +4225,119 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up Αν ο server βρίσκεται σε NAT-Router, βεβαιωθείτε ότι το port forwarding λειτουργεί. - + Internal network error: "select" failed. Εσωτερικό λάθος δικτύου: "select" failed. - + Internal network error: "send" failed. Εσωτερικό λάθος δικτύου: "send" failed. - + Connection was closed by the server. Η σύνδεση τερματίστηκε απ' τον server. - + Internal network error: Duplicate TCP connection. Εσωτερικό λάθος δικτύου: Duplicate TCP connection. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Λήψη λανθασμένου πακέτου δικτύου. Παρακαλώ βεβαιωθείτε ότι όλοι οι παίχτες χρησιμοποιούν την ίδια έκδοση του PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Εσωτερικό λάθος. Παρακαλώ βεβαιωθείτε ότι όλοι οι παίχτες χρησιμοποιούν την ίδια έκδοση του PokerTH. - + Invalid server list URL. Please correct the address in the settings. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. - + Could not unzip the PokerTH internet server list. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. - + Could not open the target file when downloading the server list. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Ο server του PokerTH δεν υποστηρίζει αυτή την έκδοση του παιχνιδιού.<br>Παρακαλώ επισκεφθείτε την διεύθυνση <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> και "κατεβάστε" την τελευταία έκδοση. - + Sorry, this server is already full. Συγνώμη, αυτός ο server είναι γεμάτος. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Λανθασμένος κωδικός κατά την είσοδο στο παιχνίδι. Παρακαλώ δώστε τον κωδικό και ξαναπροσπαθήστε. - + The password is too long. Please choose another one. Ο κωδικός είναι πολύ μεγάλος. Παρακαλώ επιλέξτε κάποιον άλλο. @@ -4293,146 +4352,146 @@ Please choose a different name. Το όνομα σας είναι πολύ μικρό, ή λανθασμένο. Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. - + The game name is either too short or too long. Please choose another one. Το όνομα του παιχνιδιού είναι πολύ μικρό ή πολύ μεγάλο. Παρακαλώ επιλέξτε ένα διαφορετικό όνομα. - + The game could not be found. Το παιχνίδι δεν βρέθηκε. - + The chat text is invalid. Το κείμενο του chat δεν είναι έγκυρο. - + The server referred to an unknown player. Aborting. Ο server αναφέρεται σε έναν άγνωστο παίχτη. Ακύρωση. - + Internal error: The current player could not be found. Εσωτερικό λάθος: Ο παίχτης δεν μπορεί να βρεθεί. - + Internal error: The current player is not active. Εσωτερικό λάθος: Ο παίχτης δεν είναι ενεργός. - + You were kicked from the server. "Διώχθηκες" απ' τον server. - + You were temporarily banned from the server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! - + The client player count is invalid. Η μέτρηση των παιχτών είναι λανθασμένη. - + Too many manual blinds were set. Please reconfigure the manual blinds. Πολλά χειροκίνητα blinds. Παρακαλώ επανακαθορίστε τα χειροκίνητα blinds. - + An invalid avatar file was configured. Please choose a different avatar. Η εικόνα δεν είναι σωστή. Παρακαλώ επιλέξτε μια διαφορετική εικόνα. - + The selected avatar file is too large. Please choose a different avatar. Η επιλεγμένη εικόνα είναι πολύ μεγάλη. Παρακαλώ επιλέξτε μια διαφορετική εικόνα. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Εσωτερικό λάθος στην εικόνα. Παρακαλώ αναφέρετε το λάθος σε κάποιον admin στο lobby chat. - + Could not start game: Synchronization failed. Αδύνατον να ξεκινήσει το παιχνίδι: Αποτυχία συγχρονισμού. - + The server is down for maintenance. Please try again later. Ο server δεν λειτουργεί λόγω συντήρησης. Παρακαλώ ξαναπροσπαθήστε αργότερα. - + An internal error occured. Εσωτερικό λάθος. - - - + - - - - - - + + + + + + + + Network Notification Network Notification - + You were kicked from the game. Σας "έδιωξαν" απ' το παιχνίδι. - + Sorry, this game is already full. Συγνώμη, αυτό το παιχνίδι είναι γεμάτο. - + Unable to join - the server has already started the game. Δεν μπορείτε να εισέλθετε - το παιχνίδι έχει ήδη ξεκινήσει. - + Your admin state timed out due to inactivity. Feel free to create a new game! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Μια νέα έκδοση του PokerTH είναι διαθέσιμη.<br>Παρακαλώ επισκεφθείτε την διεύθυνση <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> και "κατεβάστε" την τελευταία έκδοση. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Αυτή η δοκιμαστική έκδοση του PokerTH έχει ξεπερασθεί.<br>Παρακαλώ επισκεφθείτε την διεύθυνση <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> και "κατεβάστε" την τελευταία έκδοση. - + Server Message diff --git a/ts/pokerth_hu.ts b/ts/pokerth_hu.ts index 1cc6bebb..c54e8ef5 100644 --- a/ts/pokerth_hu.ts +++ b/ts/pokerth_hu.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -100,14 +101,14 @@ Válassz egy pakli stílust és próbáld újra! GameTableStyleReader - - - + + + Game Table Style Error Póker Asztal Stílus Hiba - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -120,12 +121,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -136,12 +137,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -151,27 +152,27 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. @@ -186,7 +187,7 @@ Please contact the game table style builder %4. Vedd fel a kapcsolatot a készítőjével: %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -207,8 +208,8 @@ A(z) %2 értékei hiányoznak Vedd fel a kapcsolatot a készítőjével: %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Póker asztal stílus helyet kártya pakli stílust jelöltél ki. @@ -327,66 +328,93 @@ Vedd fel a kapcsolatot a készítőjével: %3. Infó - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Projekt - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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-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=" ">translator name - mail address</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> @@ -432,17 +460,17 @@ 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;"> - MacOSX csomag></body></html> - + License Licenc - + Close Bezár - + Thanks to Köszönet @@ -450,7 +478,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.5 A PokerTH 0.5-ről - + <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;"> @@ -479,7 +507,7 @@ 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;"></p></body></html> - + Translation Fordítás @@ -513,11 +541,11 @@ p, li { white-space: pre-wrap; } A PokerTH 0.6-ről - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -607,8 +635,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;"> - for startwindow background gfx</p></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:'Sans Serif'; font-size:9pt; 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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">Wikimédia tartalom</span></a></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> - <span style=" font-weight:400;">a különböző népszerű felhasználói képek forrásaihoz</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-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;"> - a felhasználók képeihez</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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - a "kiegészítők" képeihez</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-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;"> - különböző licencű hangokhoz</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-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;"> - a saját felvételű zseton hangokért</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-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;"> - a különböző javításokért</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-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;"> - az internetes játék szerver fenntartásáért és adminisztrálásáért</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-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;"> - a kezdőablak hátterének grafikájáért</p></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; } @@ -620,7 +647,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -892,9 +919,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1223,6 +1257,21 @@ Please choose another one! Fill up with computer opponents Feltöltés számítógépes ellenfelekkel + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Játék indítása @@ -1399,46 +1448,46 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - - - - + + + + Game Info Játék infó - + Server Error Szerver hiba - + You should not kick yourself from this game! Nem tudod saját magadat kirúgni a játékból! - + Joining a private Game Csatlakozás privát játékhoz - - - + + + Game Játék - - - + + + Players Játékosok - - - + + + State Állapot @@ -1447,179 +1496,185 @@ p, li { white-space: pre-wrap; } Privát - + You are about to join a private game. Please enter the password! Egy privát játékot választottál. A csatlakozáshoz add meg a jelszót! - + running folyamatban - + open nyitott - - + + Connected players - + hands osztás - + minutes perc - + double blinds vakok kétszerezése - + manual blinds order egyéni vaksorrend - + Starting game. Please wait ... Játék indítása. Kérlek várj... - + R - - - + + + P - - - + + + Available Players Rendelkésre álló játékosok - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - - + + running games: %1 futó játékok: %1 - - + + open games: %1 nyitott játékok: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1628,49 +1683,49 @@ Feel free to invite other players by right-clicking on their nick in the availab csevegő játékosok: %1 - - + + connected players: %1 csatlakozott játékosok: %1 - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1690,7 +1745,7 @@ Feel free to invite other players by right-clicking on their nick in the availab QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Speed: Sebesség: @@ -1707,62 +1762,62 @@ Feel free to invite other players by right-clicking on their nick in the availab Játék - + Ctrl+N Ctrl+N - + Quit Kilépés - + About PokerTH ... A PokerTH -ról ... - + Settings ... Beállítások ... - + Create Network Game ... Hálózati játék létrehozása ... - + Join Network Game ... Belépés hálózati játékba ... - + Fullscreen Teljes képernyő - + Hands Sorrend - + Chat Társalgó - + Log Napló - + Start Local Game ... Helyi játék indítása ... - + Ctrl+Q Ctrl+Q @@ -1770,66 +1825,66 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.5 - The Open-Source Texas Holdem Engine PokerTH 0.5 - A nyílt forráskódú Texas Holdem játék - + ⌘F ⌘F - + Show/Hide Chat Window Társalgó mutatása/elrejtése - + ⌘C ⌘C - + ⌘H ⌘H - + Show/Hide Log Window Napló mutatása/elrejtése - + ⌘L ⌘L - - - + + + Show/Hide Hands Window Sorrend mutatása/elrejtése - + Ctrl+O Ctrl+O - + Ctrl+J Ctrl+J - + Ctrl+F Ctrl+F - + Ctrl+T Ctrl+T - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L @@ -1838,32 +1893,32 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.5 - A nyílt forráskódú Texas Holdem játék {0.6 ?} - + Internet Game ... Internetes játék ... - + Ctrl+I Ctrl+I - + Away Távollét - + Manual Action (default) Egyéni akció (alapértelmezés) - + Auto-Check / Auto-Fold Auto-Passz / Auto-Eldobás - + Auto-Check / Auto-Call-Any Auto-Passz / Auto-Bármi-tartás @@ -1873,37 +1928,37 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - A nyílt forráskódú Texas Holdem játék - + Show/Hide Away Window Távollét mutatása/elrejtése - + Ctrl+A Ctrl+A - + Kick Kidobás - + Vote Timeout: Szavazás időkorlátja: - + Yes igen - + No nem - + Chance Esélyek @@ -1912,47 +1967,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Beállítások - + Configure PokerTH ... PokerTH beállítása... - + Close Bezár - + Ctrl+X Ctrl-X - + Vote started by: A szavazást kezdeményezte: - + Show/Hide Chance Window Esélyek mutatása/elrejtése - + Ctrl+C Ctrl+C - + &View &Nézet - + &Settings &Beállítások - + Shortcut: <Shift> Billentyűparancs: <Shift> @@ -2078,23 +2133,23 @@ Kérlek válassz egy másik nevet. Cmd+N - új játék indítása - - - - - + + + + + Start Indítás - - - - - - - - + + + + + + + + Stop Állj @@ -2124,7 +2179,7 @@ Ha a szerver NAT router mögött van, akkor bizonyosodj meg róla hogy a port to A kliens játékos száma érvénytelen. - + Chat Társalgó @@ -2149,75 +2204,88 @@ Ha a szerver NAT router mögött van, akkor bizonyosodj meg róla hogy a port to F1 - All-In | F2 -Emel/Ráemel | F3 - Passz/Tart | F4 - Eldob - + Closing PokerTH during network game PokerTH bezárása hálózati játék alatt - + You are the hosting server. Do you want to close PokerTH anyway? Te vagy a hálózati kiszolgáló. Biztosan bezárod az alkalmazást? - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - A nyílt forrású Texas Holdem motor - - - + + + Lobby Előszoba - + PokerTH - Internet Game Message PokerTH - Internetes játék üzenetei - + Attention! Do you really want to leave the current game and go back to the lobby? Figyelem! Biztosan elhagyod az aktuális játékot, és kilépsz a társalgóba? - + Chance Esélyek - + Kick Kidobás - + Do you want to kick <b>%1</b><br>from this game? Ki akarod dobni <b>%1</b>-t<br>a játékból? - - + + <b>%1</b> secs left <b>%1</b> mp. maradt - + vote szavazat - + votes szavazat - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. <b>%1</b> játékos elllen <b>%2</b> %3<br>gyűlt össze. <b>%4</b> szavat kell a kidobáshoz. @@ -2227,12 +2295,12 @@ and go back to the lobby? <b>%1</b> %2 gyűlt össze ellened.<br><b>%3</b> szavazat kell a kidobáshoz. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. <b>%1</b> játékos elllen <b>%2</b> %3<br>gyűlt össze. <b>%4</b> szavat kell a kidobáshoz. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. <b>%1</b> %2 gyűlt össze ellened.<br><b>%3</b> szavazat kell a kidobáshoz. @@ -3498,10 +3566,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Beállítási hiba @@ -3518,7 +3586,7 @@ Please select an valid directory! Kérlek válassz egy valós mappát! - + Select your flipside picture Válaszd ki a kártya hátoldalának képét @@ -3527,24 +3595,24 @@ Kérlek válassz egy valós mappát! Képek (*.png) - + Open Directory Mappa megnyitása - + Images (*.png *.jpg *.gif) Képek (*.png *.jpg *.gif) - - + + Blinds Error Hiba a vak tétekben - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3552,303 +3620,316 @@ This first-small-blind-value will be set to maximum allowed value. Az első kisvak a legnagyobb megengedett értékre módosul. - + Dutch - holland - - - - English - angol + holland - French - francia + Afrikaans + - German - német + Catalan + + Czech + + + + + English + angol + + + + French + francia + + + + German + német + + + Hungarian - magyar + magyar Portuguese portugál - + Russian - orosz + orosz - + Turkish - török + török - + Language Changed Nyelv módosítva - + You have changed application language to %1. Please restart PokerTH to load new language! Az alkalmazás új nyelve: %1. A beállítás a PokerTH újraindítása után jut érvényre. - + Italian - olasz + olasz - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Slovak - szlovák + szlovák - + + Tamil + + + + The entered flipside picture doesn't exist. Please enter an valid picture! A kért kártya hátoldal kép nem létezik. Kérlek válassz egy valós képet! - - + + The log file directory doesn't exist. Please select an valid directory! A napló fájl mappája nem elérhető. Kérlek válassz egy valós mappát! - + Norwegian - norvég + norvég - + Spanish - spanyol + spanyol - + Bulgarian - bolgár + bolgár - + Polish - lengyel - - - - Chinese - kínai + lengyel + Chinese + kínai + + + Greek - görög + görög - + Swedish - svéd + svéd - + The entered server list address is not a valid URL. Please enter a valid server list address! A megadott szerver lista URL-je érvénytelen. Kérlek adj meg egy valós szerver lista címet! - + Finnish - finn + finn - - Afrikaans - - - - - Catalan - - - - - Czech - - - - + Danish - dán + dán - - Tamil - - - - - + + Maintainer Name Készítette - - + + Maintainer EMail Email cím - - + + Create Date Dátum - + Windows Behaviour Ablak viselkedése - + scaleable alkalmazkodó - + fixed rögzített - + Minimum Size Legkisebb Méret - + Maximum Size Legnagyobb Méret - + Fixed Size Rögzített Méret - + State Állapot - + Please select your game table style Válaszd ki a póker asztal stílusát - + PokerTH game table styles (*.xml) PokerTH póker asztal stílus (*.xml) - + Game Table Style Error Póker Asztal Stílus Hiba - + Selected game table style file is already in the list. Please select another one to add! A kiválasztott asztal stílus már szerepel a listán Válassz másikat! - + Game Table Style File Error Póker Asztal Stílus Fájl Hiba - + Could not load game table style file correctly. Style will not be placed into list! Nem sikerült az asztal stílus betöltése. A stílus nem kerül a listára! - + Please select your card deck style Válaszd ki a kártya pakli stílusát - + PokerTH card deck styles (*.xml) PokerTH kártya pakli stílus (*.xml) - + Card Deck Style Error Kártya Pakli Stílus Hiba - + Selected card deck style file is already in the list. Please select another one to add! A kiválasztott pakli stílus már szerepel a listán Válassz másikat! - + Card Deck Style File Error Kártya Pakli Stílus Fájl Hiba - + Could not load card deck style file correctly. Style will not be placed into list! Nem sikerült a pakli stílus betöltése. A stílus nem kerül a listára! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - portugál (brazil) + portugál (brazil) - Portuguese (Portuguese) - portugál (portugál) + portugál (portugál) @@ -4042,108 +4123,108 @@ Please choose another one. Kérlek válassz másik nevet. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Hálózati hiba - + Server address was not set. Szerver cím nincs beállítva. - + An invalid port was set (ports 0-1023 are not allowed). Hibás port van beállítva (A portok 0-1023-ig nem engedélyezettek). - + Could not create a socket for TCP communication. Nem lehet létrehozni socket-et a TCP kommunikációhoz. - + Could not set the IP address. Nem lehet beállítani az IP címet. - + Could not set the port for this type of address. Nem lehet beállítani a port-ot ehhez a cím típushoz. - + The server name could not be resolved. A szerver név feloldása nem lehetséges. - + Bind failed - please choose a different port. Kapcsolódás sikertelen - kérlek válassz másik port-ot. - + Internal network error: "listen" failed. Belső hálózati hiba: sikertelen "fülelés". - + Server execution was terminated. Szerver futtatása befejezve. - + Could not connect to the server. Nem lehet kapcsolódni a szerverhez. - + Connection timed out. Please check the server address. @@ -4153,124 +4234,124 @@ Kérlek ellenőrizd a szerver címét. Ha a szerver NAT router mögött van, akkor bizonyosodj meg róla hogy a port továbbítás engedélyezett. - + Internal network error: "select" failed. Belső hálózati hiba: sikertelen "kiválasztás". - + Internal network error: "send" failed. Belső hálózati hiba: sikertelen "küldés". - + Connection was closed by the server. A szerver megszakította a kapcsolatot. - + Internal network error: Duplicate TCP connection. Belső hálózati hiba: Duplikált TCP kapcsolat. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Érvénytelen hálózati csomag került fogadásra. Kérlek bizonyosodj meg róla, hogy az összes játékos ugyanazt a verziót használja. - + Internal state error. Please make sure that all players use the same version of PokerTH. Belső hiba. Kérlek bizonyosodj meg róla, hogy az összes játékos ugyanazt a verziót használja. - + Invalid server list URL. Please correct the address in the settings. Érvénytelen szerver lista URL. Kérlek javítsd a címet a beállításoknál. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Nem sikerült megnyitni a szerver lista MD5 fájlt. Kérlek győződj meg róla, hogy a szerver lista címe megfelelő. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. Nem sikerült a PokerTH internetes szerver listát szinkronizálni. Kérlek győződj meg a szerver lista címének érvényességéről. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. A PokerTH internetes szerver listája hibás adatot tartalmaz. Ha egyéni szerver listát használsz, kérlek győződj meg a formátum érvényességéről. - + Could not unzip the PokerTH internet server list. Nem sikerült a PokerTH internetes szerver lista kicsomagolása. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Nem sikerült a PokerTH internetes szerver lista letöltése. Kérlek ellenőrizd az internetes kapcsolatodat. - + Could not open the target file when downloading the server list. A szerver lista letöltése közben a cél fájlt nem sikerült megnyitni. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. A PokerTH szerver nem támogatja ezt a verziót.<br>Kérlek látogass el a következő címre <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> és töltsd le a legfrisebb verziót. - + Sorry, this server is already full. Elnézést, ez a szerver jelenleg tele van. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Hibás jelszó a játékhoz való csatlakozáskor. Kérlek írd be a jelszót még egyszer és próbáld újra. - + The password is too long. Please choose another one. A jelszó túl hosszú. Kérlek válassz egy rövidebbet. @@ -4286,68 +4367,68 @@ Kérlek válassz egy másik nevet. Kérlek válassz egy másik nevet. - + The game name is either too short or too long. Please choose another one. A játék nevet vagy túl rövid vagy túl hosszú. Kérlek válassz egy másik nevet. - + The game could not be found. A játék nem található. - + The chat text is invalid. A chat üzenet érvénytelen. - + The server referred to an unknown player. Aborting. A szerver egy ismeretlen játékosra hivatkozott. Megszakítás. - + Internal error: The current player could not be found. Belső hiba: az aktuális játékos nem található. - + Internal error: The current player is not active. Belső hiba: az aktuális játékos nem aktív. - + You were kicked from the server. A szerver kidobott a játékból. - + You were temporarily banned from the server. Ideiglenesen ki vagy tiltva a szerverről. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! A szerver kapcsolat inaktivitás miatt megszakadt. Bármikor újra csatlakozhatsz! - + The client player count is invalid. A kliens játékosok száma érvénytelen. - + Too many manual blinds were set. Please reconfigure the manual blinds. Túl sok vak tét van megadva. Kérlek módosítsd a vak beállításokat. - + An invalid avatar file was configured. Please choose a different avatar. Érvénytelen avatar fájl lett megadva. Kérlek válassz másik avatart. - + The selected avatar file is too large. Please choose a different avatar. A kiválasztott avatar fájl túl nagy. Kérlek válassz másik avatart. @@ -4356,81 +4437,81 @@ Kérlek válassz egy másik nevet. Jelenleg nem tudsz új avatar fájlt feltölteni. Kérlek próbáld újra néhány másodperc múlva. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Belső avatar hiba lépett fel. kérlekk jelezd ezt egy adminnak a társalgóban. - + Could not start game: Synchronization failed. A játék indítása sikertelen: szinkronizációs hiba - + The server is down for maintenance. Please try again later. A szerver karbantartás miatt nem üzemel. Kérlek próbáld újra később. - + An internal error occured. Belső hiba lépett fel. - - - + - - - - - - + + + + + + + + Network Notification Hálózati figyelmeztetés - + You were kicked from the game. Kidobtak a játékból. - + Sorry, this game is already full. Elnézést, ez a játék jelenleg tele van. - + Unable to join - the server has already started the game. Csatlakozás sikertelen - a szerver már elindította a játékot. - + Your admin state timed out due to inactivity. Feel free to create a new game! Inaktivitás miatt nem vagy már admin. Kezdj nyugodtan új játékot! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Elérhető a PokerTH egy újabb verziója. <br>Kérlek látodass el a <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> oldalra és töltsd le a legfrisebb verziót. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Ez a PokerTH béta verzió már idejétmúlt. <br>Kérlek látodass el a <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> oldalra és töltsd le a legfrisebb verziót. - + Server Message Szerver Üzenet diff --git a/ts/pokerth_it.ts b/ts/pokerth_it.ts index e40eb482..8aee4b4b 100644 --- a/ts/pokerth_it.ts +++ b/ts/pokerth_it.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -99,14 +100,14 @@ Seleziona uno stile appropriato e riprova! GameTableStyleReader - - - + + + Game Table Style Error Errore sullo stile del tavolo da gioco - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -119,12 +120,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -135,12 +136,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -150,27 +151,27 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. @@ -185,7 +186,7 @@ Please contact the game table style builder %4. Contatta il responsabile dello stile, %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -206,8 +207,8 @@ I valori di "%2" sono mancanti. Contatta il responsabile dello stile, %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! È stato selezionato uno stile per il mazzo di carte al posto di uno stile per il tavolo da gioco. @@ -348,70 +349,12 @@ Contatta il responsabile dello stile, %3. Informazioni su PokerTH 0.6-beta - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - - <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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-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=" ">translator name - mail address</span></p></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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - + Close Chiudi @@ -629,7 +572,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;">&lt;Emiliano Volta&gt; - &lt;Italiano&gt;</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> &lt;emiliano.volta@gmail.com&gt;</p></body></html> - + <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;"> @@ -1424,11 +1367,11 @@ 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:9pt; 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-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;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - idea iniziale, achitettura di base, implementazione gui, pacchetto linux</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - idea iniziale, architettura di base, sviluppo motore</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - sviluppo di rete, pacchetto windows</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - grafica gui, webdesign</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erhard List (<a href="mailto:dunkanx@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">dunkanx@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - pacchetto MacOS</p></body></html> - + License Licenza - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1444,7 +1387,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1461,21 +1404,106 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Progetto - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</p></td></tr></table></body></html> + + + + Thanks to Ringraziamenti a - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + Translation Traduzione - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1621,8 +1649,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;"> - per l'hosting e l'amministrazione del server di gioco su Internet</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-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;"> - per la grafica di sfondo della finestra di avvio</p></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; } @@ -1634,7 +1661,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -1955,9 +1982,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -2271,6 +2305,21 @@ Please choose another one! &Kick Player &Espelli giocatore + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Blinds raise interval: Intervallo per l'aumento dei blind: @@ -2478,13 +2527,13 @@ p, li { white-space: pre-wrap; } Partita di %1 - - + + connected players: %1 giocatori connessi: %1 - + double blinds raddoppia blind @@ -2493,51 +2542,51 @@ p, li { white-space: pre-wrap; } partita - - - - + + + + Game Info Informazioni partita - + hands mani - + Joining a private Game Accesso a partita privata in corso - + manual blinds order ordine manuale dei blind - + minutes minuti - - - + + + Game Partita - - - + + + Players Giocatori - - - + + + State Stato @@ -2546,13 +2595,13 @@ p, li { white-space: pre-wrap; } Privato - + open aperta - - + + open games: %1 partite aperte: %1 @@ -2561,199 +2610,205 @@ p, li { white-space: pre-wrap; } giocatori in chat: %1 - + running iniziata - + R - - - + + + P - - - + + + Available Players Giocatori Disponibili - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - - + + running games: %1 partite in corso: %1 - - + + Connected players - + Server Error Errore del server - + search for player ... - + Chat is only available to registered players. - + Invite %1 - + Ignore %1 - + %1 is playing in "%2". - + %1 is not playing at the moment. - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + Invite player ... - + Ignore player ... - + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? - - + + PokerTH - Info Message - + PokerTH - Question - + Starting game. Please wait ... Avvio partita. Attendere prego... - + You are about to join a private game. Please enter the password! Stai per unirti ad una partita privata. Inserisci la password! - + You should not kick yourself from this game! Non puoi auto-espellerti da questa partita! @@ -2761,7 +2816,7 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTable - + About PokerTH ... Informazioni su PokerTH... @@ -2770,17 +2825,17 @@ Feel free to invite other players by right-clicking on their nick in the availab All In - + Auto-Check / Auto-Call-Any Auto-Check / Auto-Call (sempre) - + Auto-Check / Auto-Fold Auto-Check / Auto-Fold - + Away Away @@ -2788,76 +2843,76 @@ Feel free to invite other players by right-clicking on their nick in the availab Back to lobby Torna alla lobby - + ⌘C ⌘C - + Chat Chat - + Create Network Game ... Crea partita in rete... - + Ctrl+A Ctrl+A - + Ctrl+F Ctrl+F - + Ctrl+H Ctrl+H - + Ctrl+I Ctrl+I - + Ctrl+J Ctrl+J - + Ctrl+L Ctrl+L - + Ctrl+N Ctrl+N - + Ctrl+O Ctrl+O - + Ctrl+Q Ctrl+Q - + Ctrl+T Ctrl+T - + ⌘F ⌘F - + Fullscreen Tutto schermo @@ -2865,36 +2920,36 @@ Feel free to invite other players by right-clicking on their nick in the availab Game Partita - + ⌘H ⌘H - + Hands Mani - + Internet Game ... Partita in Internet... - + Join Network Game ... Unisciti a una partita in rete... - + ⌘L ⌘L - + Log Registro - + Manual Action (default) Azione manuale (predefinito) @@ -2924,44 +2979,44 @@ Feel free to invite other players by right-clicking on their nick in the availab QMainWindow { background-image: url(:/guiv2/resources/guiv2/table.png); background-position: bottom center; background-origin: content; } - + Quit Esci - + Settings ... Impostazioni... - + Show/Hide Away Window Mostra/Nascondi finestra away - + Show/Hide Chat Window Mostra/Nascondi finestra di chat - - - + + + Show/Hide Hands Window Mostra/Nascondi finestra mani - + Show/Hide Log Window Mostra/Nascondi finestra registro - + Speed: Velocità: - + Start Local Game ... Inizia una partita locale... @@ -2974,27 +3029,27 @@ Feel free to invite other players by right-clicking on their nick in the availab Visualizza - + Kick Espelli - + Vote Timeout: Timeout voto: - + Yes - + No No - + Chance Probabilità @@ -3003,47 +3058,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Impostazioni - + Configure PokerTH ... Configura PokerTH... - + Close Chiudi - + Ctrl+X Ctrl+X - + Vote started by: Voto iniziato da: - + Show/Hide Chance Window Mostra/Nascondi Finestra Probabilità - + Ctrl+C Ctrl+C - + &View &Visualizza - + &Settings &Impostazioni - + Shortcut: <Shift> Scorciatoia: <Shift> @@ -3083,7 +3138,7 @@ Assicurarsi che tutti i giocatori abbiano la stessa versione di PokerTH.E' stata specificata una porta non valida (le porte 0-1023 non sono permesse). - + Attention! Do you really want to leave the current game and go back to the lobby? Attenzione! Vuoi veramente abbandonare la partita corrente @@ -3102,12 +3157,12 @@ e tornare al prepartita? Bind fallito - selezionare una porta diversa. - + Chat Chat - + Closing PokerTH during network game Si sta chiudendo PokerTH durante una partita in rete @@ -3206,9 +3261,9 @@ Please reenter the password and try again. Reinserire la password e riprovare. - - - + + + Lobby Prepartita @@ -3225,12 +3280,12 @@ Reinserire la password e riprovare. Notifica in Rete - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Il Motore Texas Holdem Open-Source - + PokerTH - Internet Game Message PokerTH - Messaggio partita su Internet @@ -3251,23 +3306,23 @@ Reinserire la password e riprovare. Spiacente, il server è già al completo. - - - - - + + + + + Start Inizio - - - - - - - - + + + + + + + + Stop Ferma @@ -3357,7 +3412,7 @@ Visitare l'URL <a href="http://www.pokerth.net/" target=" Impossibile partecipare - la partita è già iniziata. - + You are the hosting server. Do you want to close PokerTH anyway? Stai facendo da server. Vuoi comunque chiudere PokerTH? @@ -3436,41 +3491,54 @@ Assicurarsi di essere connessi direttamente ad internet. Impossibile aprire il file di destinazione durante il download della lista server. - + Chance Probabilità - + Kick Espelli - + Do you want to kick <b>%1</b><br>from this game? Vuoi espellere <b>%1</b><br>da questa partita? - - + + <b>%1</b> secs left <b>%1</b> sec. rimasti - + vote voto - + votes voti - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. Il Giocatore <b>%1</b> ha <b>%2</b> %3<br>contro di lui. <b>%4</b> voti necessari all'espulsione. @@ -3480,12 +3548,12 @@ Assicurarsi di essere connessi direttamente ad internet. Hai <b>%1</b> %2 contro di te.<br><b>%3</b> voti necessari per essere espulso. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Il giocatore <b>%1</b> ha <b>%2</b> %3<br>contro di lui. <b>%4</b> voto/i necessari all'espulsione. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Hai <b>%1</b> %2 contro di te.<br><b>%3</b> voto/i necessari all'espulsione. @@ -4804,52 +4872,67 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - + + Blinds Error Errore relativo ai blind - + Dutch - Olandese - - - - English - Inglese + Olandese - French - Francese + Afrikaans + - German - Tedesco + Catalan + + Czech + + + + + English + Inglese + + + + French + Francese + + + + German + Tedesco + + + Hungarian - Ungherese + Ungherese Images (*.png) Immmagine (*.png) - + Images (*.png *.jpg *.gif) Immagini (*.png *.jpg *.gif) - + Italian - Italiano + Italiano - + Language Changed La lingua è stata cambiata @@ -4858,12 +4941,12 @@ p, li { white-space: pre-wrap; } Norvegese - + Norwegian - Norvegese + Norvegese - + Open Directory Apri cartella @@ -4872,35 +4955,55 @@ p, li { white-space: pre-wrap; } Portoghese - + Russian - Russo + Russo - + Select your flipside picture Seleziona un'immagine per il dorso delle carte - - - - + + + + Settings Error Errore nelle impostazioni - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Slovak - Slovacco + Slovacco - + Spanish - Spagnolo + Spagnolo - + + Tamil + + + + The entered flipside picture doesn't exist. Please enter an valid picture! L'immagine selezionata per il dorso delle carte non esiste. @@ -4913,8 +5016,8 @@ Please enter an valid picture! Inserite un'immagine valida! - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -4923,8 +5026,8 @@ This first-small-blind-value will be set to maximum allowed value. Il valore del primo small blind verrà impostato al massimo consentito. - - + + The log file directory doesn't exist. Please select an valid directory! La cartella per il file di registro non esiste. @@ -4937,229 +5040,207 @@ Please select an valid directory! Inserite una directory valida! - + Turkish - Turco + Turco - + You have changed application language to %1. Please restart PokerTH to load new language! Hai cambiato la lingua dell'applicazione in %1. Riavvia PokerTH per caricare la nuova lingua! - + Bulgarian - Bulgaro + Bulgaro - + Polish - Polacco - - - - Chinese - Cinese + Polacco + Chinese + Cinese + + + Greek - Greco + Greco - + Swedish - Svedese + Svedese - + The entered server list address is not a valid URL. Please enter a valid server list address! L'indirizzo della lista server immesso non è un URL valido. Inserisci un indirizzo valido! - + Finnish - Finlandese + Finlandese - - Afrikaans - - - - - Catalan - - - - - Czech - - - - + Danish - Danese + Danese - - Tamil - - - - - + + Maintainer Name Nome responsabile - - + + Maintainer EMail E-mail responsabile - - + + Create Date Data creazione - + Windows Behaviour Comportamento finestra - + scaleable scalabile - + fixed fissa - + Minimum Size Dimensione minima - + Maximum Size Dimensione massima - + Fixed Size Dimensione fissa - + State Stato - + Please select your game table style Seleziona lo stile del tavolo da gioco - + PokerTH game table styles (*.xml) Stili tavolo da gioco di PokerTH (*.xml) - + Game Table Style Error Errore sullo stile del tavolo da gioco - + Selected game table style file is already in the list. Please select another one to add! Lo stile del tavolo da gioco selezionato è già presente nella lista. Selezionane un altro! - + Game Table Style File Error Errore sul file dello stile del tavolo da gioco - + Could not load game table style file correctly. Style will not be placed into list! Impossibile caricare correttamente il file contenente lo stile. Lo stile non verrà aggiunto alla lista! - + Please select your card deck style Seleziona lo stile del mazzo di carte - + PokerTH card deck styles (*.xml) Stili mazzo di carte di PokerTH (*.xml) - + Card Deck Style Error Errore sullo stile del mazzo di carte - + Selected card deck style file is already in the list. Please select another one to add! Lo stile del mazzo di carte selezionato è già presente nella lista. Selezionane un altro! - + Card Deck Style File Error Errore sul file dello stile del mazzo di carte - + Could not load card deck style file correctly. Style will not be placed into list! Impossibile caricare correttamente il file contenente lo stile. Lo stile non verrà aggiunto alla lista! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - Portoghese (Brasiliano) + Portoghese (Brasiliano) - Portuguese (Portuguese) - Portoghese (Portoghese) + Portoghese (Portoghese) @@ -5357,108 +5438,108 @@ Please choose another one. Scegline un altro. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Errore di rete - + Server address was not set. Indirizzo del server mancante. - + An invalid port was set (ports 0-1023 are not allowed). È stata specificata una porta non valida (le porte 0-1023 non sono permesse). - + Could not create a socket for TCP communication. Impossibile creare un socket di comunicazione TCP. - + Could not set the IP address. Impossibile impostare l'indirizzo IP. - + Could not set the port for this type of address. Impossibile impostare la porta per questo tipo di indirizzo. - + The server name could not be resolved. Impossibile risolvere il nome del server. - + Bind failed - please choose a different port. Bind non riuscito - seleziona una porta diversa. - + Internal network error: "listen" failed. Errore di rete interno: "listen" non riuscito. - + Server execution was terminated. L'esecuzione del server è stata interrotta. - + Could not connect to the server. Impossibile connettersi al server. - + Connection timed out. Please check the server address. @@ -5469,124 +5550,124 @@ Controlla l'indirizzo del server. Se il server è alle spalle di un router NAT, assicurati che sia stato abilitato il port forwarding. - + Internal network error: "select" failed. Errore di rete interno: "select" non riuscita. - + Internal network error: "send" failed. Errore di rete interno: "send" non riuscito. - + Connection was closed by the server. Connessione interrotta dal server. - + Internal network error: Duplicate TCP connection. Errore di rete interno: connessione TCP duplicata. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. È stato ricevuto un pacchetto non valido. Assicurati che tutti i giocatori abbiano la stessa versione di PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Errore di stato interno. Assicurati che tutti i giocatori abbiano la stessa versione di PokerTH. - + Invalid server list URL. Please correct the address in the settings. URL della lista server non valido. Correggi l'indirizzo nelle impostazioni. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Impossibile aprire il file MD5 della lista dei server. Assicurati che l'URL della lista dei server sia corretto. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. La sincronizzazione della lista server internet di PokerTH non è riuscita. Assicurati che l'URL della lista server sia corretto. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. La lista server internet di PokerTH contiene dati non validi. Se utilizzi una lista server personalizzata, assicurati che il suo formato sia corretto. - + Could not unzip the PokerTH internet server list. Impossibile decomprimere la lista dei server Internet di PokerTH. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Impossibile scaricare la lista server internet di PokerTH. Assicurati di essere connesso direttamente ad internet. - + Could not open the target file when downloading the server list. Impossibile aprire il file di destinazione durante il download della lista server. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Il server di PokerTH non supporta questa versione del gioco. <br>Visita l'URL <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> e scarica l'ultima versione. - + Sorry, this server is already full. Spiacente, il server è già al completo. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Password sbagliata per la partita selezionata. Reinserisci la password e riprova. - + The password is too long. Please choose another one. Questa password è troppo lunga. Scegline una diversa. @@ -5601,67 +5682,67 @@ Scegli un nome diverso. Il nome del giocatore è troppo corto, troppo lungo o non valido. Scegline un altro. - + The game name is either too short or too long. Please choose another one. Il nome della partita è troppo corto o troppo lungo. Scegline un altro. - + The game could not be found. Impossibile trovare la partita. - + The chat text is invalid. Il testo nella chat non è valido. - + The server referred to an unknown player. Aborting. Il server ha contattato un giocatore sconosciuto. Operazione annullata. - + Internal error: The current player could not be found. Errore interno: Impossibile trovare il giocatore corrente. - + Internal error: The current player is not active. Errore interno: Il giocatore corrente non è attivo. - + You were kicked from the server. Sei stato espulso dal server. - + You were temporarily banned from the server. Sei stato temporaneamente bandito dal server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! La connessione al server è andata in timeout per inattività. Riconnettiti, sei il benvenuto! - + The client player count is invalid. Il numero di giocatori non è valido. - + Too many manual blinds were set. Please reconfigure the manual blinds. Sono stati impostati troppi blind manuali. Devi riconfigurare i blind. - + An invalid avatar file was configured. Please choose a different avatar. È stato impostato un file di avatar non valido. Scegli un avatar diverso. - + The selected avatar file is too large. Please choose a different avatar. Il file di avatar selezionato è troppo grande. Scegli un avatar diverso. @@ -5670,81 +5751,81 @@ Scegli un nome diverso. Non puoi caricare un nuovo avatar in questo momento. Per favore, riprova tra qualche secondo. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Si è verificato un errore interno sugli avatar. Per favore, riferisci l'accaduto ad un admin nella chat prepartita. - + Could not start game: Synchronization failed. Impossibile avviare la partita: sincronizzazione non riuscita. - + The server is down for maintenance. Please try again later. Il server è down per manutenzione. Riprova più tardi. - + An internal error occured. Errore interno. - - - + - - - - - - + + + + + + + + Network Notification Notifica di rete - + You were kicked from the game. Sei stato espulso dalla partita. - + Sorry, this game is already full. Spiacente, la partita è già al completo. - + Unable to join - the server has already started the game. Impossibile partecipare - la partita è già iniziata. - + Your admin state timed out due to inactivity. Feel free to create a new game! Il tuo status di admin è andato in timeout per inattività. Sentiti libero di creare una nuova partita! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. È disponibile una nuova release di PokerTH.<br>Visita l'URL <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> e scarica l'ultima versione. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Questa versione beta di PokerTH è obsoleta.<br>Visitare l'URL <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> e scaricare l'ultima versione. - + Server Message Messaggio del server diff --git a/ts/pokerth_lt.ts b/ts/pokerth_lt.ts new file mode 100644 index 00000000..9f745b2d --- /dev/null +++ b/ts/pokerth_lt.ts @@ -0,0 +1,3688 @@ + + + +UTF-8 + + CardDeckStyleReader + + + + + + + Card Deck Style Error + Kortų kaladės stiliaus klaida + + + + Selected card deck style "%1" seems to be outdated. + The current PokerTH card deck style version is "%2", but this style has version "%3" set. + +Please contact the card deck style builder %4. + Pasirinktas kortų kaladės stilius "%1", atrodo, kad jau paseno. + Esama PokerTH kortų kaladės stiliaus versija yra "%2", tačiau šis stilius yra skirtas "%3" versijai. + +Prašome susisiekti su kortų kaladės stiliaus kūrėju %4. + + + + Selected card deck style "%1" seems to be incomplete or defective. + +The value(s) of "%2" is/are missing. + +Please contact the card deck style builder %3. + Pasirinkitas kortų kaladės stilius "%1", atrodo, kad yra nepilnas ar sugadintas. + +Trūksta "%2" rekšmės ar rekšmių. + +Prašome susisiekti su kortų kaladės stiliaus kūrėju %3. + + + + Cannot load card deck style file: %1 + +Please check the style file or choose another style! + Negalima įkelti kortų kaladės stiliaus failas: %1 + +Prašome patikrinti stiliaus failą arba pasirinkti kitą stilių! + + + + Selected card deck style "%1" seems to be incomplete or defective. +The card picture(s) "%2" is/are not available. + +Please contact the card deck style builder %3. + Pasirinktas kortų kaladės stilius "%1", atrodo, kad yra nepilnas ar sugadintas. +Kortos paveikslėlis ar paveikslėliai "%2" yra nepasiekiami. + +Prašome susisiekti su kortų kaladės stiliaus kūrėju %3. + + + + A game table style was selected instead of a card deck style. +Please select a card deck style and try again! + Žaidimo stalo stilius buvo pasirinktas vietoj kortų kaladės stiliaus. +Prašome pasirinkti kortų kaladės stilių ir mėginti dar kartą! + + + + GameTableStyleReader + + + + + Game Table Style Error + Žaidimo stalo stiliaus klaida + + + + Selected game table style "%1" seems to be incomplete or defective. + +The value(s) of: +%2 +is/are missing. + +Anyway you can play with this style, because the missing content will be filled up by PokerTH default style. + +Please contact the game table style builder via "%3". + Pasirinktas žaidimo stalo stilius "%1", atrodo, kad yra nepilnas ar sugadintas. + +Trūksta: +%2 + reikšmės ar rekšmių. + +Vistiek galite žaisti su šiuo stiliu, nes trūkstamas turinys bus užpildytas PokerTH numatytuoju stiliumi. + +Prašome susisiekti su žaidimo lentos stiliaus kūrėju, kaip "%3". + + + + Game Table Style Error - Fields content missing + Žaidimo stalo stiliaus klaida - trūksta lauko turinio + + + + One or more pictures from current game table style "%1" were not found: + +%2 + +Anyway you can play with this style, because the missing content will be filled up by PokerTH default style. + +Please contact the game table style builder via "%3". + Vienas ar daugiau paveikslėlių iš esamo žaidimo stalo stiliaus "%1" buvo nerasti: + +%2 + +Vistiek galite žaisti su šiuo stiliumi, nes trūkstamas turinys bus užpildytas PokerTH numatytuoju stiliumi. + +Prašome susisiekti su žaidimo stalo stiliaus kūrėju, kaip "%3". + + + + Game Table Style Error - Pictures missing + Žaidimo stalo stiliaus klaida - trūksta paveikslėlio + + + + Selected game table style "%1" seems to be outdated. +The current PokerTH game table style version is "%2", but this style has version "%3" set. + +Anyway you can play with this style, because the missing content will be filled up by PokerTH default style. + +Please contact the game table style builder via "%4". + Pasirinktas žaidimo stalo stilius "%1", atrodo, kad bus pasenęs. +Esamas PokerTH žaidimo stalo stiliaus versija yra "%2", tačiau šis stilius yra skirtas "%3" versijai. + +Vistiek galite žaisti su šiuo stiliumi, nes trūkstamas turinys bus užpildytas PokerTH numatytuoju stiliumi. + +Prašome susisiekti su žaidimo stalo stiliaus kūrėju, kaip "%4". + + + + Game Table Style Error - Outdated + Žaidimo stalo stiliaus klaida - pasenęs + + + + Everything OK! + Viskas GERAI! + + + + Some pictures are missing, please contact style maintainer for this issue. + Trūksta kai kurių paveikslėlių, prašome susisiekti su stiliaus prižiūrėtoju dėl šios laidos. + + + + Some style fields are missing, please contact style maintainer for this issue. + Trūksta kai kurių stiliaus laukų, prašome susisiekti su stiliaus prižiūrėtoju dėl šios laidos. + + + + This style is outdated, please contact style maintainer for this issue. + Šis stilius yra pasenęs, prašome susisiekti su stiliaus prižiūrėtoju dėl šios laidos. + + + + Cannot load game table style file: %1 + +Please check the style file or choose another style! + Negalima įkelti žaidimo stalo stiliaus failo: %1 + +Prašome patikrinti stiliaus failą arba pasirinkti kitą stilių! + + + + + A card deck style was selected instead of a game table style. +Please select a game table style and try again! + Kortų kaladės stilius buvo pasirinktas vietoj žaidimo stalo stiliaus. +Prašome pasirinkti žaidimo stalo stilių ir bandyti dar kartą! + + + + MyAvatarLabel + + + Start vote to kick this player + Pradėti balsavimą, kad pašalintumėte šį žaidėją + + + + Ignore Player + Žaidėjo ignoravimas + + + + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on ignore list? + Jūs daugiau nebegausite pokalbio žinučių ar kvietimų žaisti iš šio naudotojo.<br>Ar tikrai norite patalpinti žaidėją <b>%1</b> į ignoravimo sąrašą? + + + + PokerTH - Question + PokerTH - klausimas + + + + ServerListDialog + + + Server List + Serverio sąrašas + + + + Server Name + Serverio pavadinimas + + + + Country/Region + Šalis/Regionas + + + + aboutPokerth + + + About + Apie + + + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> + + + + Project + Projektas + + + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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-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-weight:600;">Projekto tinklapis: </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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Autoriai: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - idėjos iniciatorius, pagrindinės architektūros, grafinės sąsajos realizuotojas, grafinės sąsajos taisytojas, linux paketo sudarytojas</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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - idėjos iniciatorius, pagrindinės architektūros, varikliuko kūrėjas</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - pagrindinės architektūros, tinklo kūrėjas, Windows paketo, MacOS paketo sudarytojas</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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - grafinės sąsajoskompozicijos iniciatorius</span></p></body></html> + + + + Translation + Vertimas + + + <!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-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=" ">translator name - mail address</span></p></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-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=" ">Lulilo - dalelemanes@gmail.com</span></p></body></html> + + + + Thanks to + Ačiū + + + <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">už įvairius populerius avatarų paveikslėlių išteklius</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-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=" "> - už žmonių avatarų paveikslėlius</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - už "misc" avatarų paveikslėlius</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-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=" "> - už įvairius gpl licenzijuotus garsus</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-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=" "> - už paties įrašytus žetono garsus</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-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=" "> - už įvairias pataisas</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-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=" "> - už interneto-žaidimo-serverio prieglobą ir administravimą</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-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=" "> - už pradžios lango fono gfx ir danuxi1 stalo foną</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-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=" "> - už forumo prižiūrėjimą ir organizuotą klaidų sekimą ir funkcijų aprašymus</span></p></body></html> + + + + License + Licenzija + + + + Close + Uždaryti + + + <!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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Pokerio varikliukas populiariam "Texas Hold'em" pokeriui</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Vieno žaidėjo žaidimai, kartu su 9 kompiuterio varžovais</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Daugelio žaidėjų tinklo žaidimai<br />- Internetiniai žaidimai<br />- Keičiama grafinė sąsaja su internetine stiliaus galerija</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> + + + + aboutPokerthImpl + + + PokerTH %1 + PokerTH %1 + + + + About PokerTH %1 + Apie PokerTH %1 + + + + changeCompleteBlindsDialog + + + Change Blinds Settings + Keisti statymų nuostatas + + + + First small blind: + Pirmasis mažasis statymas: + + + + Raise blinds: + Didinti statymus: + + + + + Every: + Po kiekvienos: + + + + hands + rankos + + + + minutes + minutės + + + + Raise mode: + Didinimo būsena: + + + + + Always double blinds + Visuomet dvigubinti statymus + + + + + Manual blinds order: + Rankinių statymų tvarka: + + + + Delete + Šalinti + + + + Add + Pridėti + + + + Afterwards: + Vėliau: + + + + Always raise by: + Visuomet didinti iki: + + + + $ + $ + + + + Keep last blind + Išlaikyti paskutinį statymą + + + + changeCompleteBlindsDialogImpl + + + Manual Blinds Order + Rankinių statymų tvarka + + + + You cannot set more than 30 manual blinds. + Jūs negalite nustatyti daugiau nei 30 rankinių statymų. + + + + changeContentDialog + + + Network Error + Tinklo klaida + + + + Name: + Pavadinimas: + + + + Save in configuration + Įrašyti konfigūracijoje + + + + changeContentDialogImpl + + + You cannot join Internet-Game-Lobby with "Human Player" as nickname. +Please choose another one. + Jūs negalite jungtsi prie Interneto-Žaidimo-Fojė su "Žmogus žaidėjas" slapyvardžiu. +Prašome pasirinkti kitą. + + + + + + Nick name: + Slapyvardžio pavadinimas: + + + + Your player name is already used by another player. +Please choose a different name. + Jūsų žaidėjo vardas jau yra naudojamas kito žaidėjo. +Prašome pasirinkti kitą vardą. + + + + The player name is too short, too long or invalid. Please choose another one. + Žaidėjo vardas yra per trumpas, per ilgas arba netinkamas. Prašome pasirinkti kitą. + + + + There is already a game with your choosen game name. +Please choose another one! + Čia jau yra žaidimas su tokiu žaidimo pavadinimu. +Prašome pasirinkti kitą! + + + + + Game name: + Žaidimo pavadinimas: + + + + There is a forbidden word in your choosen game name. +Please choose another one! + + + + + connectToServerDialog + + + Connect to Server + Prisijungti prie serverio + + + + Connecting to Server ... + Prisijungiama prie serverio ... + + + + Cancel + Atšaukti + + + + connectToServerDialogImpl + + + Resolving address... + Nustatomas adresas... + + + + Connecting to server... + Prisijungiama prie serverio ... + + + + Starting session... + Pradeda sesija... + + + + Connection established! + Ryšys užmegztas! + + + + Reading server list... + Skaitomas serverio sąrašas... + + + + createInternetGameDialog + + + Create Internet Game + Sukurti žaidimą internetu + + + + Internet Game Settings + Žaidimo internetu nuostatos + + + + Default game name: + Numatytas žaidimo pavadinimas: + + + + Game type: + Žaidimo tipas: + + + + Standard + Standartinis + + + + Registered players only + Tik užsiregistravusiems žaidėjams + + + + Invited players only + Tik pakviestiems žaidėjams + + + + Ranking game + Žaidimas dėl reitingų + + + + Maximum number of players: + Didžiausias žaidėjų skaičius: + + + + Start Cash: + Pradiniai pinigai: + + + + $ + $ + + + + Blinds + Statymai + + + + Use saved blinds settings + Naudoti įrašytas statymų nuostatas + + + + Change blinds settings ... + Keisti statymų nuostatas ... + + + + Timeout for player action: + Pertraukėlė žaidėjo veiksmui atlikti: + + + + + s + s + + + + Password: + Slaptažodis: + + + + Delay between hands: + Delsti tarp rankų: + + + + Create Game + Sukurti žaidimą + + + + Cancel + Atšaukti + + + + createInternetGameDialogImpl + + + <i>First small blind: $%1</i> + <i>Pirmasis mažasis statymas: $%1</i> + + + + <i>Double blinds every %1'th hand</i> + <i>Dvigubas statymas kiekvieną %1 ranką</i> + + + + %1's game + %1 žaidimas + + + + createNetworkGameDialog + + + Create Network Game + Sukurti tinklo žaidimą + + + + Network Game Settings + Tinklo žaidimo nuostatos + + + + Maximum number of players: + Didžiausias žaidėjų skaičius: + + + + Start Cash: + Pradiniai pinigai: + + + + $ + $ + + + + Blinds + Statymai + + + + Use saved blinds settings + Naudoti įrašytas statymų nuostatas + + + + Change blinds settings ... + Keisti statymų nuostatas ... + + + + Timeout for player action: + Pertraukėlė žaidėjo veiksmui atlikti: + + + + Delay between hands: + Delsti tarp rankų: + + + + + s + s + + + + Create Game + Sukurti žaidimą + + + + Cancel + Atšaukti + + + + gameLobbyDialog + + + Internet Game Lobby + Žaidimo internetu Fojė + + + + Game Info + Žaidimo informacija + + + + Game type: + Žaidimo tipas: + + + + Connected Players + Prisijungę žaidėjai + + + + search for player ... + ieškoti žaidėjo ... + + + + Start Cash: + Pradiniai pinigai: + + + + First small blind: + Pirmasis mažasis statymas: + + + + Blinds raise interval: + Statymų didinimo intervalas: + + + + Blinds raise mode: + Statymų didinimo būsena: + + + + Timeout for player action (sec): + Pertraukėlė žaidėjo veiksmui atlikti (sek.): + + + + Fill up with computer opponents + Užpildyti su kompiuterio varžovais + + + + &Start Game + &Pradėti žaidimą + + + + &Kick Player + &Pašalinti žaidėją + + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + + + + Manual blinds list: + Rankinių statymų sąrašas: + + + + &Leave Game + &Palikti žaidimą + + + + Join &any game + Jungtis prie &bet kurio žaidimo + + + + &Create Game + &Sukurti žaidimą + + + + &Join Game + &Jungtis prie žaidimo + + + + <!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;">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"> +<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;">Spragtelėkite čia, kad pamatytumėte reitingus internete</span></a></p></td></tr></table></body></html> + + + + 0 - No game list filter + 0 - Be žaidimo sąrašo skirstymo + + + + 1 - Show open games + 1 - Rodyti atvirus žaidimus + + + + 2 - Show open & non-full games + 2 - Rodyti atvirus & neužpildytus žaidimus + + + + 3 - Show open & non-full & non-private games + 3 - Rodyti atvirus & neužpildytus & neprivačius žaidimus + + + + 4 - Show open & non-full & private games + 4 - Rodyti atvirus & neužpildytus & privačius žaidimus + + + + Lobby-Chat + Fojė-Pokalbis + + + + <!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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">http://www.pokerth.net</span></a></p></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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">http://www.pokerth.net</span></a></p></body></html> + + + + gameLobbyDialogImpl + + + Starting game. Please wait ... + Pradedamas žaidimas. Prašome palaukti ... + + + + Joining a private Game + Jungiamasi prie privataus žaidimo + + + + You are about to join a private game. Please enter the password! + Jūs esate čia, kad prisijungtumėte prie privataus žaidimo. Prašome įrašyti slaptažodį! + + + + open + atviras + + + + + + + Game Info + Žaidimo informacija + + + + + + Game + Žaidimas + + + + + + Players + Žaidėjai + + + + + + State + Būsena + + + + R + R + + + + + + P + P + + + + + + Available Players + Pasiekiami žaidėjai + + + + Invite player + Pakviesti žaidėją + + + + Ignore player + Ignorouti žaidėją + + + + Player infos ... + Žaidėjo informacija ... + + + + + + Standard + Standartinis + + + + + + Registered players only + Tik užsiregistravę žaidėjai + + + + + + Invited players only + Tik pakviesti žaidėjai + + + + + + Ranking game + Žaidimas dėl reitingų + + + + Connected players - max. %1 + Prisijungusių vartotojų - max. %1 + + + + + T + T + + + + Connected players - Max. %1 + Prisijungusių vartotojų - Max. %1 + + + + running + vykdoma + + + + + running games: %1 + vyksta žaidimų: %1 + + + + + open games: %1 + atviri žaidimai: %1 + + + + Invite %1 + Pakviesti %1 + + + + Ignore %1 + Ignoruoti %1 + + + + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> + <span style='color:blue;'>%1 buvo pakviestas į %2 nuo %3.</span> + + + + <span style='color:red;'>%1 has rejected the invitation to %2.</span> + <span style='color:red;'>%1 atmetė pakvietimą į %2.</span> + + + + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> + <span style='color:red;'>%1 negali jungtis %2, nes yra užimta(s).</span> + + + + + The game will start in<br><b>%1</b> seconds. + + + + + You have entered a game with type "invite-only". +Feel free to invite other players by right-clicking on their nick in the available players list. + Jūs atsidūrėte žaidimo su "tik su pakvietimais" tipu. +Nesivaržykite pakviesti kitus žaidėjus spragtelėdami dešinį mygtuką ant jų slapyvardžių prieinamame žaidėjų sąraše. + + + + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? + Jūs buvote pakviestas į žaidimą <b>%1</b> nuo <b>%2</b>.<br>Ar norite jungtis prie žaidimo? + + + + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? + Jūs nebegausite daugiau pokalbio žinučių arba žaidimo pakvietimų iš šio naudotojo.<br>Ar tikrai norite patalpinti žaidėją <b>%1</b> į ignoravimo sąrašą? + + + + + connected players: %1 + prisijungę žaidėjai: %1 + + + + + Connected players + Prisijungę žaidėjai + + + + hands + rankos + + + + minutes + minutės + + + + double blinds + dvigubi statymai + + + + manual blinds order + rankinių statymų tvarka + + + + Server Error + Serverio klaida + + + + You should not kick yourself from this game! + Jūs negalėsite išmesti savęs iš šio žaidimo! + + + + search for player ... + ieškoti žaidėjo ... + + + + Chat is only available to registered players. + Pokalbis yra prieinamas tik užsiregistravusiems žaidėjams. + + + + Invite player ... + Pakviesti žaidėją ... + + + + Ignore player ... + Ignoruoti žaidėją ... + + + + %1 is playing in "%2". + %1 žaidžia "%2". + + + + %1 is not playing at the moment. + %1 šiuo metu nežaidžia. + + + + + PokerTH - Info Message + PokerTH - informacinė žinutė + + + + PokerTH - Question + PokerTH - klausimas + + + + gameTable + + + PokerTH 0.6-beta - The Open-Source Texas Holdem Engine + PokerTH 0.6-beta - atviro kodo Texas Holdem varikliukas + + + + Hands + Rankos + + + + Chat + Pokalbis + + + + Log + Žurnalas + + + + Away + Išėjęs + + + + Manual Action (default) + Rankinis veiksmas (numatytas) + + + + Auto-Check / Auto-Fold + Automatiškai tikrinti / Automatiškai atsisakyti + + + + Auto-Check / Auto-Call-Any + Automatiškai tikrinti / Automatiškai sutikti su visais + + + + Speed: + Greitis: + + + + Start Local Game ... + Pradėti vietinį žaidimą ... + + + + Ctrl+N + Ctrl+N + + + + Quit + Išeiti + + + + Ctrl+Q + Ctrl+Q + + + + About PokerTH ... + Apie PokerTH ... + + + + Settings ... + Nuostatos ... + + + + Create Network Game ... + Sukurti tinklo žaidimą ... + + + + Ctrl+O + Ctrl+O + + + + Join Network Game ... + Jungtis prie tinklo žaidimo ... + + + + Ctrl+J + Ctrl+J + + + + Fullscreen + Visas ekranas + + + + Ctrl+F + Ctrl+F + + + + Show/Hide Chat Window + Rodyti/Slėpti pokalbio langą + + + + Ctrl+T + Ctrl+T + + + + + + Show/Hide Hands Window + Rodyti/Slėpti rankų langą + + + + Ctrl+H + Ctrl+H + + + + Show/Hide Log Window + Rodyti/Slėpti sąrašo langą + + + + Ctrl+L + Ctrl+L + + + + Internet Game ... + Žaidimas internetu ... + + + + Ctrl+I + Ctrl+I + + + + Show/Hide Away Window + Rodyti/Slėpti išėjusius langus + + + + Ctrl+A + Ctrl+A + + + + Kick + Pašalinti + + + + Vote Timeout: + Balsavimui skirtasis laikas: + + + + Yes + Taip + + + + No + Ne + + + + Chance + Keisti + + + + Configure PokerTH ... + Konfigūruoti PokerTH ... + + + + Close + Uždaryti + + + + Ctrl+X + Ctrl+X + + + + Vote started by: + Balsavimą pradėjo: + + + + Show/Hide Chance Window + Rodyti/Slėpti pakeistą langą + + + + Ctrl+C + Ctrl+C + + + + &View + &Rodyti + + + + &Settings + &Nuostatos + + + + Shortcut: <Shift> + Šaukinys: <Shift> + + + + gameTableImpl + + + + + + + + + + Stop + Stabdyti + + + + PokerTH %1 - The Open-Source Texas Holdem Engine + PokerTH %1 - atviro kodo Texas Holdem varikliukas + + + + + + + + Start + Pradėti + + + + + + Lobby + Fojė + + + + Chat + Pokalbis + + + + Closing PokerTH during network game + Uždaromas PokerTH per tinklo žaidimą + + + + You are the hosting server. Do you want to close PokerTH anyway? + Jūs esate prieglobos serveris. Ar norite vistiek uždaryti PokerTH? + + + + PokerTH - Internet Game Message + PokerTH - žaidimo internetu žinutė + + + + Attention! Do you really want to leave the current game +and go back to the lobby? + Dėmesio! Ar tikrai norite palikti esamą žaidimą +ir grįžti į fojė? + + + + Chat is only available to registered players. + Pokalbis yra prieinamas tik užsiregistravusiems žaidėjams. + + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + + + + Chance + Keisti + + + + Kick + Pašalinti + + + + Do you want to kick <b>%1</b><br>from this game? + Ar norite pašalinti <b>%1</b><br>iš šio žaidimo? + + + + + <b>%1</b> secs left + <b>%1</b> sek. liko + + + + vote + balsavimas + + + + votes + balsai + + + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. + Žaidėjas <b>%1</b> yra <b>%2</b> %3<br>prieš jį. <b>%4</b> balso ar balsų reikia pašalinimui. + + + + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. + Jūs turite <b>%1</b> %2 prieš tave.<br><b>%3</b> balso ar balsų reikia pašalinimui. + + + + internetGameLoginDialog + + + Internet Game Login + Prisijungimas prie žaidimo internetu + + + + Registered user + Registruotas naudotojas + + + + Username: + Naudotojo vardas: + + + + Password: + Slaptažodis: + + + + Remember password (not recommended) + Įsiminti slaptažodį (nerekomenduojama) + + + + Login as guest + Prisijungti kaip svečias + + + + Login + Prisijungti + + + + Cancel + Atšaukti + + + + <!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 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://create-gaming-account.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">Create new user account</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"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body> +<table 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://create-gaming-account.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">Sukurti naujo naudotojo paskyrą</span></a></p></td></tr></table></body></html> + + + + joinNetworkGameDialog + + + Join Network Game + Jungti tinklo žaidimą + + + + Connect to Network Game + Prisijungti prie tinklo žaidimo + + + + Server Profiles + Serverio profilis + + + + Name + Pavadinimas + + + + Address + Adrasas + + + + Port + Prievadas + + + + IPv6 + IPv6 + + + + SCTP + SCTP + + + + Save + Įrašyti + + + + Delete + Šalinti + + + + Use SCTP + Naudoti SCTP + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" 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;"> <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol"><span style=" text-decoration: underline; color:#0000ff;">What is this?</span></a></p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" 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;"> <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol"><span style=" text-decoration: underline; color:#0000ff;">Kas tai?</span></a></p></body></html> + + + + Use IPv6 + Naudoti IPv6 + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" 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;"> <a href="http://en.wikipedia.org/wiki/Ipv6"><span style=" text-decoration: underline; color:#0000ff;">What is this?</span></a></p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" 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;"> <a href="http://en.wikipedia.org/wiki/Ipv6"><span style=" text-decoration: underline; color:#0000ff;">Kas tai?</span></a></p></body></html> + + + + Port: + Prievadas: + + + + IP Address / Domain Name: + IP adresas / Srities vardas: + + + + Profile Name: + Profilio pavadinimas: + + + + myServerProfile1 + manoServerioProfilis1 + + + + Connect + Prisijungti + + + + Close + Uždaryti + + + + joinNetworkGameDialogImpl + + + + + + Load Server-Profile-File Error + Serverio įkėlimas-Profilis-Failo klaida + + + + + + + Could not load server-profiles-file: + + Nepavyksta įkelti serverio-profilių-failo: + + + + + Save Server Profile Error + Įrašyto serverio profilio klaida + + + + A profile with the name: %1 already exists. +Would you like to overwrite ? + Profilis su tokiu vardu: %1 jau egistuoja. +Galbūt norėtumėte pakeisti ? + + + + Read Server-Profile List Error + Skaitomo serverio-Profilio sąrašo klaida + + + + Could not read server-profiles list + Nepavyksta skaityti serverio-profilių sąrašo + + + + + Save Server-Profile-File Error + Serverio įrašymas-Profilis-Failo klaida + + + + + Could not save server-profiles-file: + + Nepavyksta įrašyti serverio-profilių-failo: + + + + + manualBlindsOrderDialog + + + Manual Blinds Order + Rankinių statymų tvarka + + + + Delete + Šalinti + + + + + $ + $ + + + + Add + Pridėti + + + + Afterwards: + Vėliau: + + + + Always double blinds + Visuomet dvigubinti statymus + + + + Always raise by: + Visuomet didinti iki: + + + + Keep last blind + Išlaikyti paskutinį statymą + + + + manualBlindsOrderDialogImpl + + + Manual Blinds Order + Rankinių statymų tvarka + + + + You cannot set more than 30 manual blinds. + Jūs negalite nustatyti daugiau nei 30 rankinių statymų. + + + + myMessageDialog + + + Dialog + Dialogas + + + + MessageText + PranešimoTekstas + + + + Do not show this message again. + Daugiau neberodyti šio pranešimo. + + + + newGameDialog + + + Start Local Game + Pradėti vietinį žaidimą + + + + Local Game Settings + Vietinio žaidimo nuostatos + + + + Number of players: + Žaidėjų skaičius: + + + + Start Cash: + Pradiniai pinigai: + + + + $ + $ + + + + Blinds + Statymai + + + + Use saved blinds settings + Naudoti įrašytas statymų nuostatas + + + + Change blinds settings ... + Keisti statymų nuostatas ... + + + + Game Speed: + Žaidimo greitis: + + + + selectAvatarDialog + + + Please select an avatar + Prašome pasirinkti avatarą + + + + Select an avatar + Pasirinkti avatarą + + + + People + Žmonės + + + + Miscellaneous + Įvairūs + + + + Load avatar from external file + Įkelti avatarą iš išorinio failo + + + + selectAvatarDialogImpl + + + + + Avatar File Error + Avataro failo klaida + + + + Please select an avatar from the list! + Prašome pasirinkti avatarą iš sąrašo! + + + + The file size of the chosen picture is too big. (max. 30KB) +Please choose a smaller picture! + Failo dydis pasirinkto paveikslėlio yra per didelis. (max. 30KB) +Prašome pasirinkti mažesnį paveikslėlį! + + + + The entered avatar picture doesn't exist. +Please enter an valid picture! + Įvestas avataro paveikslėlis neegzistuoja. +Prašome įvesti galiojantį paveikslėlį! + + + + Select external avatar picture + Pasirinkti išorinį avataro paveikslėlį + + + + Images (*.png *.jpg *.gif) + Paveikslėliai (*.png *.jpg *.gif) + + + + settingsDialog + + + Settings + Nuostatos + + + + + Interface + Sąsaja + + + + Language: + Kalba: + + + + Show fade-out animation for non-winning cards + Rodyti išnykstančią animaciją nelaiminčioms kortoms + + + + Show flip-card animation + Rodyti apverstos kortos animaciją + + + + Show buttons for small blind and big blind + Rodyti mygtukus mažajam statymui ir didžiajam statymui + + + + Show own cards only on mouse click + Rodyti nuosavas kortas tik po pelės spragtelėjimo + + + + Reverse order of F-Keys (F1 - F4) + Atvirkštinė F-klavišų tvarka (F1 - F4) + + + + Network / Internet Game + Tinklo / interneto žaidimas + + + + Switch keyboard focus to bet-input-field if it's your turn + Perjungti klaviatūros židinį į statymo-įvedimo-lauką, jei yra Jūsų ėjimas + + + + + Sound + Garsas + + + + Disable splashscreen on startup + Išjungti ekrano užsklandą sistemos paleidime + + + + Game Table + Žaidimo stalas + + + + + Description + Aprašymas + + + + + Maintainer + Prižiūrėtojas + + + + State + Būsena + + + + Card Deck + Kortų kaladė + + + + Card Back + Kortos nugarėlė + + + + Use card back from card style + Naudoti kortos nugarėlę iš kortos stiliaus + + + + Use custom card back picture: + Naudoti savitą kortos nugarėlės paveikslėlį: + + + + Play sound effects + Leisti garso efektus + + + + Sound Volume: + Garso lygis: + + + + 10 + 10 + + + + Sound Categories + Garso kategorijos + + + + Play game actions sounds like "check", "call", "raise" + Leisti žaidimo veiksmo garsus, panašius į "tikrinti", "atsakyti", "didinti" + + + + Play lobby chat notifications + Leistii fojė pokalbio pranešimus + + + + Play network/internet game notifications like "player joined the game" + Leisti tinklo/interneto žaidimo pranešimus, panašius į "žaidėjas prisijungęs prie žaidimo" + + + + Local Game Settings + Vietinio žaidimo nuostatos + + + + Number of players: + Žaidėjų skaičius: + + + + + Start Cash: + Pradinis statymas: + + + + + + + $ + $ + + + + + First small blind: + Pirmasis mažasis statymas: + + + + + Raise blinds: + Didinti statymus: + + + + + + + Every: + Po kiekvienos: + + + + + hands + rankos + + + + + minutes + minutės + + + + + Raise mode: + Didinimo būsena: + + + + + Always double blinds + Visuomet dvigubinti statymus + + + + + Manual blinds order: + Rankinių statymų tvarka: + + + + + Edit ... + Taisyti ... + + + + Game Speed: + Žaidimo greitis: + + + + Pause between hands (press "start" button to go on) + Pauzė tarp rankų (spauskite "pradėti" mygtuką, kad tęstumėte) + + + + Show game settings dialog on every new game + Rodyti žaidimo nuostatų dialogo langą per kiekvieną naują žaidimą + + + + Network Game Settings + Tinklo žaidimo nuostatos + + + + Maximum number of players: + Didžiausias žaidėjų skaičius: + + + + Timeout for player action: + Pertraukėlė žaidėjo veiksmui atlikti: + + + + Export as html + Eksportuoti kaip html + + + + Export as txt + Eksportuoti kaip txt + + + + Save as ... + Įrašyti kaip ... + + + + Delete + Šalinti + + + + Log File + Žurnalo failas + + + + + s + s + + + + Network Server Settings + Tinklo serverio nuostatos + + + + + Server Port: + Serverio prievadas: + + + + + Use SCTP + Naudoti SCTP + + + + + Use IPv6 + Naudoti IPv6 + + + + + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> + <a href="http://en.wikipedia.org/wiki/Ipv6">Kas tai?</a> + + + + + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">Kas tai?</a> + + + + Internet Game Settings + Žaidimo internetu nuostatos + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style="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-style:italic;">Note: Default </span><span style=" font-weight:600; font-style:italic;">Game Settings</span><span style=" font-style:italic;"> like "Maximum number of players", "Start Cash" and "Small Blind" will be used </span><span style=" font-weight:600; font-style:italic;">from Network Game Settings.</span></p></body></html> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style="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-style:italic;">Pastaba: Numatytosios </span><span style=" font-weight:600; font-style:italic;">Žaidimo nuostatos</span><span style=" font-style:italic;">, panašios į "Didžiausias žaidėjų skaičius", "Pradiniai pinigai" ir "Mažasis statymas" bus naudojamos </span><span style=" font-weight:600; font-style:italic;">iš tinklo žaidimo nuostatų.</span></p></body></html> + + + + Server Address: + Serverio adresas: + + + + Use password for private game: + Naudoti slaptažodį privačiam žaidimui: + + + + Computer Engine + Kompiuterio varikliukas + + + + Opponent 6: + Priešininkas 6: + + + + Opponent 5: + Priešininkas 5: + + + + Opponent 4: + Priešininkas 4: + + + + Opponent 3: + Priešininkas 3: + + + + Opponent 2: + Priešininkas 2: + + + + Opponent 1: + Priešininkas 1: + + + + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style="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> + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style="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;">Pastaba: Geriausia avataro kokybė su paveikslėlio koeficientu, panašiu į </span><span style=" font-weight:600; font-style:italic;">plotis=50, aukštis=50.</span></p></body></html> + + + + Enable/Disable Logging + Įjungti/Išjungti prisijungimą + + + + Store log files for + Žurnalo failo atmintinė + + + + Log File Directory: + Žurnalo failo katalogas: + + + + Write log after every: + Įrašyti žurnalą po kiekvieno: + + + + action (high frequent disc access) + veiksmo (disko prieigos aukštas dažnis) + + + + hand (medium disc access) + rankos (vidutinė disko prieiga) + + + + game (low disc access) + žaidimo (žema disko prieiga) + + + + + Log Messages + Žurnalo žinutės + + + + Player Nicks/Avatars + Žaidėjo slapyvardžiai/avatarai + + + + Show right toolbox + Rodyti dešinįjį priemonių komplektą + + + + Show left toolbox + Rodyti kairįjį priemonių komplektą + + + + Automatic Server Configuration URL + Automatinė serverio konfigūracija URL + + + + Serverlist Address: + Serverio sąrašo adresas: + + + + Manual Server Configuration + Rankinė serverio konfigūracija + + + + Day(s) + Diena(os) + + + + Local Game + Vietinis žaidimas + + + + Network Game + Tinklo žaidimas + + + + Internet Game + Žaidimas internetu + + + + Nicks/Avatars + Slapyvardžiai/Avatarai + + + + Show cards chance monitor + Rodyti kortų parodymo galimybę + + + + Avatar Server: + Avataro serveris: + + + + + Style + Stilius + + + + Don't translate poker strings like check, call, raise from game table style + Nėra verčiamos pokerio eilutės, panašios į tikrinti, atsakyti, didinti iš žaidimo stalo stiliaus + + + + + Add ... + Pridėti ... + + + + + Remove + Pašalinti + + + + + Preview - Information: + Peržiūra - Informacija: + + + + <!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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://gtstyles.pokerth.net/"><span style=" text-decoration: underline; color:#0000ff;">Get new PokerTH game table styles ...</span></a></p></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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://gtstyles.pokerth.net/"><span style=" text-decoration: underline; color:#0000ff;">Gauti naujus PokerTH žaidimo stalo stilius ...</span></a></p></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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://cdstyles.pokerth.net/"><span style=" text-decoration: underline; color:#0000ff;">Get new PokerTH card deck styles ...</span></a></p></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> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://cdstyles.pokerth.net/"><span style=" text-decoration: underline; color:#0000ff;">Gauti naujus PokerTH kortų kaladžių stilius ...</span></a></p></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:8pt; font-weight:400; font-style:normal;"> +<table 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-style:italic;">Note: Best quality with image ratio like </span><span style=" font-weight:600; font-style:italic;">width=48, height=76.</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:8pt; font-weight:400; font-style:normal;"> +<table 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-style:italic;">Pastaba: Geriausios kokybės su paveikslėlio koeficientu, panašiu į </span><span style=" font-weight:600; font-style:italic;">plotis=48, aukštis=76.</span></p></td></tr></table></body></html> + + + + Delay between hands: + Delsti tarp rankų: + + + + Server + Serveris + + + + Game + Žaidimas + + + + Default game name: + Numatytas žaidimo pavadinimas: + + + + Default game type: + Numatytas žaidimo tipas: + + + + Standard + Standartinis + + + + Registered players only + Tik užsiregistravę žaidėjai + + + + Invited players only + Tik pakviesti žaidėjai + + + + Ranking game + Žaidimas dėl reitingų + + + + Show lobby chat + Rodyti fojė pokalbius + + + + Ignored Players + Ignoruojami žaidėjai + + + + Player + Žaidėjas + + + + Remove Player + Pašalinti žaidėją + + + + <!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-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Human Player:<br /><span style=" font-style:italic;">(This nick will also be used for the online game login)</span></p></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-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Žmogus žaidėjas:<br /><span style=" font-style:italic;">(Šis slapyvardis taip pat bus naudojamas internetinio žaidimo prisijungimui)</span></p></body></html> + + + + Opponent 7: + Priešininkas 7: + + + + Opponent 8: + Priešininkas 8: + + + + Opponent 9: + Priešininkas 9: + + + + settingsDialogImpl + + + Dutch + Olandų + + + + English + Anglų + + + + French + Prancūzų + + + + German + Vokiečių + + + + Hungarian + Vengrų + + + + Italian + Italų + + + + Lithuania + + + + + Norwegian + Norvegų + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Russian + Rusų + + + + Slovak + Slovakų + + + + Spanish + Ispanų + + + + Turkish + Turkų + + + + + + + Settings Error + Nuostatų klaida + + + + The entered flipside picture doesn't exist. +Please enter an valid picture! + Įvesta atvirkštinė paveikslėlio pusė neegzistuoja. +Prašome įvesti galiojantį paveikslėlį! + + + + + The log file directory doesn't exist. +Please select an valid directory! + Žurnalo failo katalogas neegzistuoja. +Prašome pasirinkti galiojantį katalogą! + + + + Language Changed + Kalba pakeista + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + Jūs pakeitėte programos kalbą į %1. +Prašome perkrauti PokerTH, kad įkeltumėte naują kalbą! + + + + Select your flipside picture + Pasirinkite paveikslėlio atvirkštinę pusę + + + + Images (*.png *.jpg *.gif) + Paveikslėliai (*.png *.jpg *.gif) + + + + Open Directory + Atverti katalogą + + + + + Blinds Error + Statymų klaida + + + + + The first element in your manual-blinds-list +is smaller than current first-small-blind! +This first-small-blind-value will be set to maximum allowed value. + Pirmas elementas rankinio-statymo-sąraše +yra mažesnis už esamą pirmąjį-mažajį-statymą! +Ši pirma-mažojo-statymo-rekšmė bus nustatyta iki didžiausios leidžiamos rekšmės. + + + + Bulgarian + Bulgarų + + + + Polish + Lenkų + + + + Chinese + Kinų + + + + Greek + Graikų + + + + Swedish + Švedų + + + + The entered server list address is not a valid URL. +Please enter a valid server list address! + Įvestas serverio sąrašo adresas nėra galiojantis URL. +Prašome įvesti galiojantį serverio sąrašo adresą! + + + + Finnish + Užbaigti + + + + Afrikaans + Afrikanų + + + + Catalan + Katalonų + + + + Czech + Čekų + + + + Danish + Danų + + + + Tamil + Tamilų + + + + + Maintainer Name + Prižiūrėtojo vardas + + + + + Maintainer EMail + Prižiūrėtojo el.paštas + + + + + Create Date + Sukūrimo data + + + + Windows Behaviour + Langų elgsena + + + + scaleable + išplečiamas + + + + fixed + fiksuotas + + + + Minimum Size + Mažiausias dydis + + + + Maximum Size + Didžiausias dydis + + + + Fixed Size + Fiksuotas dydis + + + + State + Būsena + + + + Please select your game table style + Prašome pasirinkti savo žaidimo stalo stilių + + + + PokerTH game table styles (*.xml) + PokerTH žaidimo stalo stiliai (*.xml) + + + + Game Table Style Error + Žaidimo stalo stiliaus klaida + + + + Selected game table style file is already in the list. +Please select another one to add! + Pasirinktas žaidimo stalo stiliaus failas jau yra sąraše. +Prašome pasirinkti kitą! + + + + Game Table Style File Error + Žaidimo stalo stiliaus failo klaida + + + + Could not load game table style file correctly. +Style will not be placed into list! + Nepavyko įkelti žaidimo stalo stiliaus failo teisingai. +Stilius nebus įkeltas į sąrašą! + + + + Please select your card deck style + Prašome pasirinkti savo kortų kaladės stilių + + + + PokerTH card deck styles (*.xml) + PokerTH kortų kaladės stiliai (*.xml) + + + + Card Deck Style Error + Kortų kaladės stiliaus klaida + + + + Selected card deck style file is already in the list. +Please select another one to add! + Pasirinktas kortų kaladės stiliaus failas jau yra sąraše. +Prašome pasirinkti kitą! + + + + Card Deck Style File Error + Kortų kaladės stiliaus failo klaida + + + + Could not load card deck style file correctly. +Style will not be placed into list! + Nepavyko įkelti kortų kaladės stiliaus failo teisingai. +Stilius nebus įkeltas į sąrašą! + + + + PokerTH - Log file + PokerTH - žurnalo failas + + + + Do you really want to delete the selected log file? + Ar tikrai norite pašalinti pasirinktą žurnalo failą? + + + + Save PokerTH log file + Išsaugoti PokerTH žurnalo failą + + + + PokerTH SQL log (*.pdb) + PokerTH SQL žurnalas (*.pdb) + + + Portuguese (Brazilian) + Portugalų (Brazilijos) + + + Portuguese (Portuguese) + Portugalų (Portugalijos) + + + + startNetworkGameDialog + + + Start Network Game + Pradėti tinklo žaidimą + + + + Connected Players + Prisijungę žaidėjai + + + + Fill up with computer opponents + Užpildyti su kopiuterio varžovais + + + + Maximum number of players: + Didžiausias žaidėjų skaičius: + + + + 0 + 0 + + + + Kick Player + Pašalinti žaidėją + + + + Chat + Pokalbis + + + + Start Game + Pradėti žaidimą + + + + Cancel + Atšaukti + + + + startNetworkGameDialogImpl + + + Server Error + Serverio klaida + + + + You should not kick yourself from this game! + Jūs negalėsite išmesti savęs iš šio žaidimo! + + + + startWindow + + + PokerTH 0.6.3 - The Open-Source Texas Holdem Engine + PokerTH 0.6.3 - atviro kodo Texas Holdem varikliukas + + + + &2 Internet Game + &2 Žaidimas internetu + + + + &3 Create Network Game + &3 Sukurti tinklo žaidimą + + + + &4 Join Network Game + &4 Jungtis prie tinklo žaidimo + + + + &1 Start Local Game + &1 Pradėti tinklo žaidimą + + + + + + + QPushButton { text-align:left; font-weight:bold; padding-left: 1px; padding-bottom: 3px; padding-top: 3px; padding-right: 3px;} + QPushButton { text-align:left; font-weight:bold; padding-left: 1px; padding-bottom: 3px; padding-top: 3px; padding-right: 3px;} + + + + Network Game + Tinklo žaidimas + + + + Start Local Game ... + Pradėti vietinį žaidimą ... + + + + Ctrl+N + Ctrl+N + + + + Internet Game ... + Žaidimas internetu ... + + + + Ctrl+I + Ctrl+I + + + + About PokerTH + Apie PokerTH + + + + Configure PokerTH ... + Konfigūruoti PokerTH ... + + + + Quit + Išeiti + + + + Create Network Game ... + Sukurti tinklo žaidimą ... + + + + Join Network Game ... + Jungtis prie tinklo žaidimo ... + + + + Ctrl+Q + Ctrl+Q + + + + &PokerTH + &PokerTH + + + + &Settings + &Nuostatos + + + + startWindowImpl + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Network Error + Tinklo klaida + + + + Server address was not set. + Serverio adresas nebuvo nustatytas. + + + + An invalid port was set (ports 0-1023 are not allowed). + Vidinis prievadas buvo nustatytas (prievadai 0-1023 yra neleidžiami). + + + + Could not create a socket for TCP communication. + Nepavyko sukurti jungties TCP ryšiui. + + + + Could not set the IP address. + Netinkamas IP adresas. + + + + Could not set the port for this type of address. + Netinkamas prievadas šio tipo adresui. + + + + The server name could not be resolved. + Serverio pavadinimo nepavyksta nustatyti. + + + + Bind failed - please choose a different port. + Surišimas nepavyko - prašome pasirinkti kitą prievadą. + + + + Internal network error: "listen" failed. + Vidinė tinklo klaida: "pasiklausymas" nepavyko. + + + + Server execution was terminated. + Serverio vykdymas buvo nutrauktas. + + + + Could not connect to the server. + Netinkamas prisijungimas prie serverio. + + + + Connection timed out. +Please check the server address. + +If the server is behind a NAT-Router, make sure port forwarding has been set up on server side. + Prisijungimo laikas baigėsi. +Prašome patikrinti serverio adresą. + +Jei serveris yra už NAT-maršruto parinktuvo, įsitikinkite ar prievadas persiunčiant buvo nustatytas serverio pusėje. + + + + Internal network error: "select" failed. + Vidinė tinklo klaida: "pasirinkti" nepavyko. + + + + Internal network error: "send" failed. + Vidinė tinklo klaida: "nusiųsti" nepavyko. + + + + Connection was closed by the server. + Prisijungimas buvo nutrauktas iš serverio. + + + + Internal network error: Duplicate TCP connection. + Vidinė tinklo klaida: Dubliuojasi TCP prisijungimas. + + + + An invalid network packet was received. +Please make sure that all players use the same version of PokerTH. + Vidinis tinklo paketas buvo gautas. +Prašome įsitikinti, kad visi žaidėjai naudoja tokią pačią PokerTH versiją. + + + + Internal state error. +Please make sure that all players use the same version of PokerTH. + Vidinės būsenos klaida. +Prašome įsitikinti, kad visil žaidėjai naudoja tokią pačią PokerTH versiją. + + + + Invalid server list URL. +Please correct the address in the settings. + Netinkamas serverio sąrašo URL. +Prašome ištaisyti adresą nuostatose. + + + + Could not open the server list MD5 file. +Please make sure that the server list URL is correct. + Nepavyko atverti serverio sąrašo MD5 failo. +Prašome įsitikinti, kad serverio sąrašo URL yra teisingas. + + + + Synchronization of the PokerTH internet server list has failed. +Please make sure that the server list URL is correct. + PokerTH interneto serverio sąrašo sinchronizavimas nepavyko. +Prašome įsitikinti, kad serverio sąrašo URL yra teisingas. + + + + The PokerTH internet server list contains invalid data. +If you use a custom server list, please make sure its format is correct. + PokerTH interneto serverio sąrašo turinys netinkamų duomenų. +Jei naudojate savitą serverio sąrašą, prašome įsitikinti ar šis formatas yra teisingas. + + + + Could not unzip the PokerTH internet server list. + Nepavyko išarchyvuoti PokerTH interneto serverio sąrašo. + + + + Could not download the PokerTH internet server list. +Please make sure you are directly connected to the internet. + Nepavyko atsiųsti PokerTH interneto serverio sąrašo. +Prašome įsitikinti ar esate tiesiogiai prisijungęs prie interneto. + + + + Could not open the target file when downloading the server list. + Nepavyko atverti paskirties failo, kuomet buvo atsiunčiamas serverio sąrašas. + + + + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. + PokerTH serveris nesupranta šios žaidimo versijos.<br>Prašome eiti į <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> ir atsisiųsti naujausią versiją. + + + + Sorry, this server is already full. + Atsiprašome, šis serveris jau yra užpildytas. + + + + Invalid login. +Please check your username and password. + Netinkamas prisijungimas. +Prašome patikrinti vartotojo vardą ir slaptažodį. + + + + Your account is blocked indefinitely. + Jūsų paskyrą yra užblokuota neribotam laikui. + + + + You cannot login at this time. Please try again in a few seconds. + Jūs negalite šiuo metu prisijungti. Prašome pamėginti vėl po penkių sekundžių. + + + + This game is of type invite-only. You cannot join this game without being invited. + Šis žaidimas yra tik su pakvietimais tipo. Jūs negalite jungtis prie šio žaidimo be pakvietimo. + + + + Invalid password when joining the game. +Please reenter the password and try again. + Netinkamas slaptažodis jungiantis prie žaidimą. +Prašome įvesti slaptažodį ir mėginti dar kartą. + + + + The password is too long. Please choose another one. + Slaptažodis yra per ilgas. Prašome pasirinkti kitą. + + + + The game name is either too short or too long. Please choose another one. + Žaidimo pavadinimas yra per trumpas arba per ilgas. Prašome pasirinkti kitą. + + + + The game could not be found. + Žaidimo nepavyko rasti. + + + + The chat text is invalid. + Pokalbio tekstas yra netinkamas. + + + + The server referred to an unknown player. Aborting. + Serveris kreipėsi į nežinomą žaidėją. Nutraukiama. + + + + Internal error: The current player could not be found. + Vidinė klaida: Esamo žaidėjo nepavyko rasti. + + + + Internal error: The current player is not active. + Vidinė klaida: Esamas žaidėjas nėra aktyvus. + + + + You were kicked from the server. + Jūs buvote pašalintas iš serverio. + + + + You were temporarily banned from the server. + Jūs buvote laikinai pašalintas iš serverio. + + + + Your server connection timed out due to inactivity. You are very welcome to reconnect! + Jūsų serverio prisijungimo laikas baigėsi dėl neveiksnumo. Jūs esate labai kviečiamas vėl prisijungti! + + + + The client player count is invalid. + Kliento žaidėjas yra apskaičiuotas netinkamai. + + + + Too many manual blinds were set. Please reconfigure the manual blinds. + Per daug rankinių statymų buvo nustatyta. Prašome perkonfigūruoti rankinius statymus. + + + + An invalid avatar file was configured. Please choose a different avatar. + Vidinis avataro failas buvo sukonfigūruotas. Prašome pasirinkti kitą avatarą. + + + + The selected avatar file is too large. Please choose a different avatar. + Pasirinktas avataro failas yra per didelis. Prašome pasirinkti kitą avatarą. + + + + An internal avatar error occured. Please report this to an admin in the lobby chat. + Įvyko vidinė avataro klaida. Prašome pranešti apie tai administratoriui fojė pokalbio lange. + + + + Could not start game: Synchronization failed. + Nepavyko pradėti žaidimo: Sinchronizavimas nepavyko. + + + + The server is down for maintenance. Please try again later. + Serveris neveikia dėl apžiūros. Prašome pabandyti vėliau. + + + + An internal error occured. + Įvyko vidinė klaida. + + + + + + + + + + + + + Network Notification + Tinklo pranešimas + + + + You were kicked from the game. + Jūs buvote pašalintas iš žaidimo. + + + + Sorry, this game is already full. + Atsiprašome, šis žaidimas jau yra užpildytas. + + + + Unable to join - the server has already started the game. + Negalima prisijungti - serveris jau pradėjęs žaidimą. + + + + Your admin state timed out due to inactivity. Feel free to create a new game! + Jūsų administratoriaus būsenos laikas baigėsi dėl neveiklumo. Nesivaržykite sukurti naujo žaidimo! + + + + You cannot join this type of game as guest. + Jūs negalite jungtis prie šio žaidimo tipo kaip svečias. + + + + The settings are invalid for this type of game. + Nuostatos yra netinkamos šio tipo žaidimui. + + + + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. + Nauja PokerTH laida yra prieinama.<br>Prašome eiti į <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> ir atsisiųsti naujausią versiją. + + + + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. + Ši PokerTH beta laida yra pasenusi.<br>Prašome eiti į <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> ir atsisųsti naujausią versiją. + + + + Server Message + Serverio žinutė + + + + PokerTH %1 + PokerTH %1 + + + + timeoutMsgBoxImpl + + + Timeout Warning + Skirto laiko pabaigos įspėjimas + + + + Please click "OK" to stop the countdown! + Prašome spragtelėti "GERAI", kad sustabdytumėte nebuvimą! + + + + You are game-admin of an open game which will time out in %1 seconds. + Jūs esate administratorius atviro žaidimo, kurio laikas pasibaigs po %1 sekundės. + + + + Your connection is about to time out due to inactivity in %1 seconds. + Jūsų prisijungimo laikas pasibaigs dėl neveiksnumo maždaug po %1 sekundės. + + + diff --git a/ts/pokerth_nl.ts b/ts/pokerth_nl.ts index 67be0489..e999c110 100644 --- a/ts/pokerth_nl.ts +++ b/ts/pokerth_nl.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -100,14 +101,14 @@ Selecteer een speelkaartenstijl en probeer het opnieuw. GameTableStyleReader - - - + + + Game Table Style Error Speeltafelstijlfout - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -128,12 +129,12 @@ De stijl is toch te gebruiken, want de ontbrekende inhoud wordt ingevuld door de De maker van de speeltafelstijl is te bereiken via %3. - + Game Table Style Error - Fields content missing Speeltafelstijlfout - ontbrekende veldinhoud - + One or more pictures from current game table style "%1" were not found: %2 @@ -150,12 +151,12 @@ De stijl is toch te gebruiken, want de ontbrekende inhoud wordt ingevuld door de De maker van de speeltafelstijl is te bereiken via %3. - + Game Table Style Error - Pictures missing Speeltafelstijlfout - ontbrekende afbeeldingen - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -170,27 +171,27 @@ De stijl is toch te gebruiken, want de ontbrekende inhoud wordt ingevuld door de De maker van de speeltafelstijl is te bereiken via %4. - + Game Table Style Error - Outdated Speeltafelstijlfout - te oud - + Everything OK! Alles in orde - + Some pictures are missing, please contact style maintainer for this issue. Er ontbreken afbeeldingen, hier kan contact over worden opgenomen met de maker van de stijl. - + Some style fields are missing, please contact style maintainer for this issue. Er ontbreken stijlvelden, hier kan contact over worden opgenomen met de maker van de stijl. - + This style is outdated, please contact style maintainer for this issue. De stijl is te oud, hier kan contact over worden opgenomen met de maker van de stijl. @@ -205,7 +206,7 @@ De huidige versie van speeltafelstijlen voor PokerTH is "%2" maar deze De maker van de stijl is te bereiken via %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -226,8 +227,8 @@ De waarde(s) "%2" ontbreekt/ontbreken. De maker van de stijl is te bereiken via %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Er is een speelkaartenstijl geselecteerd in plaats van een speeltafelstijl. @@ -354,12 +355,96 @@ De maker van de stijl is te bereiken via %3. Info - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Project - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -379,7 +464,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -400,20 +485,18 @@ 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=" "> - eerste ontwerp voor de grafische interface</span></p></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-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=" ">translator name - mail address</span></p></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 style=" 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=" ">Jan Hein Dykstra - janheyn@gmail.com</span></p></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; } @@ -436,7 +519,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -483,7 +566,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: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-weight:600;">Projectpagina: </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://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Makers: </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - idee, basisarchitectuur, implementatie van de grafische interface, Linuxpakket, webmaster@pokerth.net</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - idee, basisarchitectuur, ontwikkeling van de simulator</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - netwerkprogrammatuur, Windowspakket</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - ontwerp van de grafische interface, webdesign</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erhard List (<a href="mailto:dunkanx@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">dunkanx@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - MacOS-pakket</p></body></html> - + License Licentie @@ -1180,12 +1263,12 @@ 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;"></p></body></html> - + Close Sluiten - + Thanks to Met dank aan @@ -1193,7 +1276,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.5 Info over PokerTH 0.5 - + <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;"> @@ -1222,7 +1305,7 @@ 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;"></p></body></html> - + Translation Vertaling @@ -1282,7 +1365,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; 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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1299,7 +1382,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -1643,7 +1726,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; font-family:'Nimbus Sans L';"> Erhard List (<a href="mailto:dunkanx@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">dunkanx@pokerth.net</span></a>)</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Nimbus Sans L';"> - MacOS-pakket</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1747,7 +1830,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-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;"> - voor zelf opgenomen fichegeluiden</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1895,8 +1978,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-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;"> - voor het ontwerp van de achtergrond van het startvenster</p></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; } @@ -1908,7 +1990,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -2193,9 +2275,16 @@ Kies een andere naam. + Game name: Naam van spel: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -2712,6 +2801,21 @@ p, li { white-space: pre-wrap; } &Kick Player Speler ver&wijderen + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Blinds raise interval: Interval verhoging blinds: @@ -2801,20 +2905,20 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - - - - + + + + Game Info Info over spel - + Server Error Serverfout - + You should not kick yourself from this game! U mag zichzelf niet uit dit spel verwijderen. @@ -2823,235 +2927,241 @@ p, li { white-space: pre-wrap; } spel - + R R - - - + + + P P - - - + + + Available Players Aanwezige spelers - + Invite player Speler uitnodigen - + Ignore player Speler negeren - + Player infos ... Spelersinfo ... - - - + + + Standard Standaard - - - + + + Registered players only Alleen geregistreerde spelers - - - + + + Invited players only Alleen uitgenodigde spelers - - - + + + Ranking game Spel voor ranking - + Connected players - max. %1 Spelers met verbinding - max. %1 - + Joining a private Game Meedoen met een privéspel - + You are about to join a private game. Please enter the password! U wilt meedoen met een privéspel. Voer het wachtwoord in. - - + + T T - + Connected players - Max. %1 Spelers met verbinding - max. %1 - + running bezig - + open open - - + + Connected players Spelers met verbinding - + hands hand(en) - + minutes min. - + double blinds verdubbelen - + manual blinds order eigen lijst - + search for player ... Speler zoeken ... - + Chat is only available to registered players. Alleen geregistreerde spelers kunnen chatten. - + Invite %1 %1 uitnodigen - + Ignore %1 %1 negeren - + %1 is playing in "%2". %1 speelt in "%2". - + %1 is not playing at the moment. %1 speelt momenteel niet. - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> <span style='color:blue;'>%1 is uitgenodigd voor %2 door %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> <span style='color:red;'>%1 heeft de uitnodiging voor %2 afgeslagen.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>%1 is bezig en kan niet meedoen met %2.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + Invite player ... Speler uitnodigen ... - + Ignore player ... Speler negeren ... - + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. Er wordt meegedaan aan een spel van het type "alleen op uitnodiging". Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de lijst Aanwezige spelers. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? Uitnodiging ontvanger van <b>%2</b> voor spel <b>%1</b>.<br>Meedoen met dit spel? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? Er zullen geen chatberichten of speluitnodigingen meer worden ontvangen van deze gebruiker. <br>Speler <b>%1</b> werkelijk op de lijst Genegeerde spelers zetten? - - + + PokerTH - Info Message PokerTH - Infobericht - + PokerTH - Question PokerTH - Vraag - + Starting game. Please wait ... Spel starten. Een ogenblik geduld ... - - - + + + Game Spel - - - + + + Players Spelers - - - + + + State Status @@ -3060,14 +3170,14 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de Privé - - + + running games: %1 %1 spel(len) bezig - - + + open games: %1 %1 open spel(len) @@ -3076,8 +3186,8 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de %1 speler(s) in de chat - - + + connected players: %1 %1 speler(s) met verbinding @@ -3097,7 +3207,7 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Speed: Snelheid: @@ -3114,62 +3224,62 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de Spel - + Ctrl+N Ctrl+N - + Quit Afsluiten - + About PokerTH ... Info over PokerTH ... - + Settings ... Instellingen ... - + Create Network Game ... Netwerkspel maken ... - + Join Network Game ... Meedoen met netwerkspel ... - + Fullscreen Volledig scherm - + Hands Handen - + Chat Chat - + Log Log - + Start Local Game ... Lokaal spel starten ... - + Ctrl+Q Ctrl+Q @@ -3177,71 +3287,71 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de PokerTH 0.5 - The Open-Source Texas Holdem Engine PokertTH 0.5 - De Open-Source Texas Holdem Simulator - + ⌘F ⌘F - + Show/Hide Chat Window Chat-venster aan/uit - + ⌘C ⌘C - + ⌘H ⌘H - + Show/Hide Log Window Log-venster aan/uit - + ⌘L ⌘L - - - + + + Show/Hide Hands Window Handen-venster aan/uit - + Ctrl+O Ctrl+O - + Shortcut: <Shift> Sneltoets: <Shift> - + Ctrl+J Ctrl+J - + Ctrl+F Ctrl+F - + Ctrl+T Ctrl+T - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L @@ -3254,12 +3364,12 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de Netwerkspel - + Internet Game ... Internetspel ... - + Ctrl+I Ctrl+I @@ -3268,22 +3378,22 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de All-in - + Away Afwezig - + Manual Action (default) Handmatige acties (standaard) - + Auto-Check / Auto-Fold Automatisch checken/passen - + Auto-Check / Auto-Call-Any Automatisch checken/meegaan @@ -3297,37 +3407,37 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de Terug naar de lobby - + Show/Hide Away Window Afwezig-venster aan/uit - + Ctrl+A Ctrl+A - + Kick Verwijderen - + Vote Timeout: Stemmen kan - + Yes Ja - + No Nee - + Chance Kansen @@ -3336,42 +3446,42 @@ Andere spelers kunnen worden uitgenodigd door op hun naam te rechtsklikken in de Instellingen - + Configure PokerTH ... PokerTH instellen ... - + Close Sluiten - + Ctrl+X Ctrl+X - + Vote started by: In stemming gebracht door - + Show/Hide Chance Window Kansen-venster aan/uit - + Ctrl+C Ctrl+C - + &View &Beeld - + &Settings In&stellingen @@ -3497,23 +3607,23 @@ Kies een andere naam. Cmd+N om een nieuw spel te starten - - - - - + + + + + Start Start - - - - - - - - + + + + + + + + Stop Stop @@ -3576,7 +3686,7 @@ Als de server zich achter een NAT-router bevindt, controleer dan daar of port fo F1 - Betten/Raisen | F2 - Checken/Callen | F3 - Folden/All-In - + Chat Chat @@ -3660,12 +3770,12 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Deze bètarelease van PokerTH is te oud.Ga naar <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> en download de nieuwste versie. - + Closing PokerTH during network game PokerTH afsluiten tijdens netwerkspel - + You are the hosting server. Do you want to close PokerTH anyway? U bent de server van dit spel. Wilt u PokerTH toch sluiten? @@ -3682,26 +3792,26 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Deze bètarelease van PokerTH is te oud.<br>Ga naar <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/</a> en download de nieuwste versie. - - - + + + Lobby Lobby - + PokerTH - Internet Game Message PokerTH - Bericht van internetspel - + Attention! Do you really want to leave the current game and go back to the lobby? Opgelet! Wilt u werkelijk het huidige spel verlaten en teruggaan naar de lobby? - + PokerTH %1 - The Open-Source Texas Holdem Engine PokertTH %1 - De Open-Source Texas Hold'em-simulator @@ -3764,41 +3874,54 @@ Zorg ervoor dat u een directe verbinding met internet hebt. Kan het doelbestand niet openen bij het downloaden van de serverlijst. - + Chance Kansen - + Kick Verwijderen - + Do you want to kick <b>%1</b><br>from this game? Wilt u <b>%1</b><br>uit dit spel verwijderen? - - + + <b>%1</b> secs left nog <b>%1</b> sec. - + vote stem - + votes stemmen - + Chat is only available to registered players. Alleen geregistreerde spelers kunnen chatten. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. <b>%2</b> %3 uitgebracht tegen <b>%1</b>.<br><b>%4</b> stemmen zijn nodig voor verwijdering. @@ -3808,12 +3931,12 @@ Zorg ervoor dat u een directe verbinding met internet hebt. U heeft <b>%1</b> %2 tegen zich.<br><b>%3</b> stemmen zijn nodig voor verwijdering. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. <b>%2</b> %3 uitgebracht tegen <b>%1</b>.<br>Nog <b>%4</b> stem(men) nodig voor verwijderen. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. U heeft <b>%1</b> %2 tegen zich.<br> Nog <b>%3</b> stem(men) nodig voor verwijderen. @@ -5177,10 +5300,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Fout in instellingen @@ -5197,7 +5320,7 @@ Please select an valid directory! Selecteer een geldige map! - + Select your flipside picture Uw afbeelding voor de kaartachterkant selecteren @@ -5206,24 +5329,24 @@ Selecteer een geldige map! Afbeeldingen (*.png) - + Open Directory Open map - + Images (*.png *.jpg *.gif) Afbeeldingen (*.png *.jpg *.gif) - - + + Blinds Error Fout in blinds - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -5232,29 +5355,29 @@ is lager dan de eerste kleine blind. De eerste kleine blind wordt ingesteld op de maximale waarde. - + Dutch - Nederlands + Nederlands - + English - English (Engels) + English (Engels) - + French - Français (Frans) + Français (Frans) - + German - Deutsch (Duits) + Deutsch (Duits) - + Hungarian - Magyar (Hongaars) + Magyar (Hongaars) Italien @@ -5269,266 +5392,279 @@ De eerste kleine blind wordt ingesteld op de maximale waarde. Português Brasil (Brz. Portugees) - + Russian - Русский (Russisch) + Русский (Russisch) Solvak Slowaaks - + Turkish - Türkçe (Turks) + Türkçe (Turks) - + Language Changed Taal is gewijzigd - + You have changed application language to %1. Please restart PokerTH to load new language! De taal van het programma is gewijzigd naar %1. Start PokerTH opnieuw om de nieuwe taal te laden. - + Italian - Italiano (Italiaans) + Italiano (Italiaans) - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Slovak - Slovensky (Slowaaks) + Slovensky (Slowaaks) - + The entered flipside picture doesn't exist. Please enter an valid picture! De ingestelde afbeelding voor de kaartachterkant bestaat niet. Stel een geldige afbeelding in. - - + + The log file directory doesn't exist. Please select an valid directory! De map voor logbestanden bestaat niet. Selecteer een geldige map. - + Norwegian - Norsk (Noors) + Norsk (Noors) - + Spanish - Español (Spaans) + Español (Spaans) - + Bulgarian - Български (Bulgaars) + Български (Bulgaars) - + Polish - Polski (Pools) - - - - Chinese - 中文 (Chinees) + Polski (Pools) + Chinese + 中文 (Chinees) + + + Greek - Ελληνικά (Grieks) + Ελληνικά (Grieks) - + Swedish - Svenska (Zweeds) + Svenska (Zweeds) - + The entered server list address is not a valid URL. Please enter a valid server list address! Het ingevoerde serverlijstadres is geen geldige URL. Voer een geldig serverlijstadres in. - - - Finnish - Suomi (Fins) - - - - Afrikaans - Afrikaans (Afrikaans) - - - - Catalan - Català (Catalaans) - - - - Czech - Čeština (Tsjechisch) - - - - Danish - Dansk (Deens) - + Finnish + Suomi (Fins) + + + + Afrikaans + Afrikaans (Afrikaans) + + + + Catalan + Català (Catalaans) + + + + Czech + Čeština (Tsjechisch) + + + + Danish + Dansk (Deens) + + Portuguese (Brazilian) - Português Brasil (Brz. Portugees) + Português Brasil (Brz. Portugees) - Portuguese (Portuguese) - Português (Portugees) + Português (Portugees) - + Tamil - தமிழ் (Tamil) + தமிழ் (Tamil) - - + + Maintainer Name Maker(s) - - + + Maintainer EMail E-mailadres - - + + Create Date Gemaakt op - + Windows Behaviour Venstergrootte - + scaleable schaalbaar - + fixed gefixeerd - + Minimum Size Minimumgrootte - + Maximum Size Maximumgrootte - + Fixed Size Gefixeerde grootte - + State Status - + Please select your game table style Selecteer een speeltafelstijl - + PokerTH game table styles (*.xml) Speeltafelstijlen voor PokerTH (*.xml) - + Game Table Style Error Speeltafelstijlfout - + Selected game table style file is already in the list. Please select another one to add! De geselecteerde speeltafelstijl staat al in de lijst. Selecteer een andere stijl om die toe te voegen. - + Game Table Style File Error Speeltafelstijlbestandfout - + Could not load game table style file correctly. Style will not be placed into list! Kan het stijlbestand voor de speeltafel niet laden. De stijl wordt niet in de lijst geplaatst. - + Please select your card deck style Selecteer een speelkaartenstijl - + PokerTH card deck styles (*.xml) Speelkaartenstijlen voor PokerTH (*.xml) - + Card Deck Style Error Speelkaartenstijlfout - + Selected card deck style file is already in the list. Please select another one to add! De geselecteerde speelkaartenstijl staat al in de lijst. Selecteer een andere stijl om die toe te voegen. - + Card Deck Style File Error Speelkaartenstijlbestandfout - + Could not load card deck style file correctly. Style will not be placed into list! Kan het stijlbestand voor de speelkaarten niet laden. De stijl wordt niet in de lijst geplaatst. - + PokerTH - Log file PokerTH - Logbestand - + Do you really want to delete the selected log file? @@ -5537,12 +5673,12 @@ De stijl wordt niet in de lijst geplaatst. Het geselecteerde logbestand werkelijk verwijderen? - + Save PokerTH log file PokerTH-logbestand opslaan - + PokerTH SQL log (*.pdb) PokerTH SQL-logbestand (*.pdb) @@ -5742,108 +5878,108 @@ Please choose another one. Kies een andere naam. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Netwerkfout - + Server address was not set. Er is geen serveradres ingesteld. - + An invalid port was set (ports 0-1023 are not allowed). Ongeldige poort ingesteld (poorten 0-1023 zijn niet toegestaan). - + Could not create a socket for TCP communication. Kan geen socket maken voor TCP-communicatie. - + Could not set the IP address. Kan het IP-adres niet instellen. - + Could not set the port for this type of address. Kan de poort niet instellen voor dit adrestype. - + The server name could not be resolved. Kan geen server vinden met de opgegeven naam. - + Bind failed - please choose a different port. Kan niet verbinden - kies een andere poort. - + Internal network error: "listen" failed. Interne netwerkfout: "listen" niet uitvoerbaar. - + Server execution was terminated. Het uitvoeren op de server is afgebroken. - + Could not connect to the server. Kan geen verbinding maken met de server. - + Connection timed out. Please check the server address. @@ -5854,125 +5990,125 @@ Controleer het serveradres. Als de server zich achter een NAT-router bevindt, controleer dan daar of port forwarding goed ingesteld is. - + Internal network error: "select" failed. Interne netwerkfout: "select" niet uitvoerbaar. - + Internal network error: "send" failed. Interne netwerkfout: "send" niet uitvoerbaar. - + Connection was closed by the server. De verbinding is verbroken door de server. - + Internal network error: Duplicate TCP connection. Interne netwerkfout: Dubbele TCP-verbinding. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Ongeldig netwerkpakket ontvangen. Zorg ervoor dat alle spelers dezelfde versie van PokerTH gebruiken. - + Internal state error. Please make sure that all players use the same version of PokerTH. Interne statusfout. Zorg ervoor dat alle spelers dezelfde versie van PokerTH gebruiken. - + Invalid server list URL. Please correct the address in the settings. Ongeldige URL van serverlijst. Voer het juiste adres in bij de instellingen. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Kan het MD5-bestand van de serverlijst niet openen. Zorg ervoor dat de serverlijst-URL juist is. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. De synchronisatie van de internetserverlijst van PokerTH is mislukt. Zorg ervoor dat de serverlijst-URL juist is. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. De internetserverlijst van PokerTH bevat ongeldige gegevens. Als u een eigen serverlijst gebruikt, is de indeling ervan mogelijk onjuist. - + Could not unzip the PokerTH internet server list. Kan de internetserverlijst van PokerTH niet decomprimeren. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Kan de internetserverlijst van PokerTH niet downloaden. Zorg ervoor dat u een directe verbinding met internet hebt. - + Could not open the target file when downloading the server list. Kan het doelbestand niet openen bij het downloaden van de serverlijst. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. De PokerTH-server ondersteunt deze versie van het spel niet.<br>Ga naar <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> en download de nieuwste versie. - + Sorry, this server is already full. Deze server is al vol. - + Invalid login. Please check your username and password. Ongeldige login. Controleer de gebruikersnaam en het wachtwoord. - + Your account is blocked indefinitely. Deze account is voor onbepaalde tijd geblokkeerd. - + You cannot login at this time. Please try again in a few seconds. Er kan nu niet worden ingelogd. Wacht enkele momenten en probeer het opnieuw. - + This game is of type invite-only. You cannot join this game without being invited. Dit spel is van het type "alleen op uitnodiging". Zonder uitnodiging kan niet worden meegedaan. - + Invalid password when joining the game. Please reenter the password and try again. Ongeldig wachtwoord bij het verbinden. Voer het wachtwoord opnieuw in en probeer het opnieuw. - + The password is too long. Please choose another one. Het wachtwoord is te lang. Kies een ander wachtwoord. @@ -5987,67 +6123,67 @@ Kies een andere naam. De spelersnaam is te kort, te lang of ongeldig. Kies een andere naam. - + The game name is either too short or too long. Please choose another one. De naam van het spel is te kort of te lang. Kies een andere naam. - + The game could not be found. Kan het spel niet vinden. - + The chat text is invalid. Ongeldige chattekst. - + The server referred to an unknown player. Aborting. De server verwees naar een onbekende speler. Verbinding verbroken. - + Internal error: The current player could not be found. Interne fout: De huidige speler kan niet worden gevonden. - + Internal error: The current player is not active. Interne fout: De huidige speler is niet actief. - + You were kicked from the server. U bent verwijderd van de server. - + You were temporarily banned from the server. U bent tijdelijk verbannen van de server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! De verbinding met de server is verlopen wegens gebrek aan activiteit, maar er kan gewoon opnieuw verbinding worden gemaakt. - + The client player count is invalid. Het aantal spelers dat meedoet klopt niet. - + Too many manual blinds were set. Please reconfigure the manual blinds. Er zijn te veel blinds ingesteld. Stel de blinds opnieuw in. - + An invalid avatar file was configured. Please choose a different avatar. Er is een ongeldig avatarbestand ingesteld. Kies een andere avatar. - + The selected avatar file is too large. Please choose a different avatar. Het geselecteerde avatarbestand is te groot. Kies een andere avatar. @@ -6056,81 +6192,81 @@ Kies een andere naam. U kunt momenteel geen nieuw avatarbestand uploaden. Wacht enkele seconden en probeer het opnieuw. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Er is een interne avatarfout opgetreden. Meld dit bij het chatten in de lobby aan een administrator. - + Could not start game: Synchronization failed. Kan spel niet starten: synchronisatie mislukt. - + The server is down for maintenance. Please try again later. Wegens onderhoud is de server niet beschikbaar. Probeer het later opnieuw. - + An internal error occured. Interne fout opgetreden. - - - + - - - - - - + + + + + + + + Network Notification Netwerkmelding - + You were kicked from the game. U bent uit het spel verwijderd. - + Sorry, this game is already full. Dit spel is al vol. - + Unable to join - the server has already started the game. Kan niet meer meedoen - de server heeft het spel al gestart. - + Your admin state timed out due to inactivity. Feel free to create a new game! Uw status van spelleider is verlopen wegens gebrek aan activiteit, maar u kunt gewoon een nieuw spel maken. - + You cannot join this type of game as guest. Gasten kunnen niet meedoen aan dit type spel. - + The settings are invalid for this type of game. De instellingen zijn ongeldig voor dit speltype. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Er is een nieuwe release van PokerTH beschikbaar.<br>Ga naar <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> en download de nieuwste versie. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Deze bètarelease van PokerTH is te oud.<br>Ga naar <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/</a> en download de nieuwste versie. - + Server Message Serverbericht diff --git a/ts/pokerth_no.ts b/ts/pokerth_no.ts index d61673d9..dc58ab7a 100644 --- a/ts/pokerth_no.ts +++ b/ts/pokerth_no.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -54,14 +55,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -74,12 +75,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -90,12 +91,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -105,40 +106,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -200,66 +201,93 @@ Please select a game table style and try again! Om - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Prosjekt - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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-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=" ">translator name - mail address</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> @@ -286,7 +314,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: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-weight:600;">Nettside for prosjektet: </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://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Utviklere: </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - opprinnelig idé, grunn-arkitektur, GUI, linux-pakke, webmaster@pokerth.net</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - opprinnelig idé, grunn-arkitektur, motor-utvikling</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - nettverk, windows-pakke</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - GUI-grafikk, nett-design</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erhard List (<a href="mailto:dunkanx@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">dunkanx@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - MacOS-pakke</p></body></html> - + License Lisens @@ -639,12 +667,12 @@ 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: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;">This Software is published under the Terms of GPL v2:</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> GNU GENERAL PUBLIC LICENSE</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Version 2, June 1991</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Copyright (C) 1989, 1991 Free Software Foundation, Inc.,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Everyone is permitted to copy and distribute verbatim copies</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> of this license document, but changing it is not allowed.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Preamble</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> The licenses for most software are designed to take away your</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">freedom to share and change it. By contrast, the GNU General Public</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">License is intended to guarantee your freedom to share and change free</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">software--to make sure the software is free for all its users. This</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">General Public License applies to most of the Free Software</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Foundation's software and to any other program whose authors commit to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">using it. (Some other Free Software Foundation software is covered by</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">the GNU Lesser General Public License instead.) You can apply it to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">your programs, too.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> When we speak of free software, we are referring to freedom, not</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">price. Our General Public Licenses are designed to make sure that you</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">have the freedom to distribute copies of free software (and charge for</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">this service if you wish), that you receive source code or can get it</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">if you want it, that you can change the software or use pieces of it</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">in new free programs; and that you know you can do these things.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> To protect your rights, we need to make restrictions that forbid</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">anyone to deny you these rights or to ask you to surrender the rights.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These restrictions translate to certain responsibilities for you if you</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">distribute copies of the software, or if you modify it.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> For example, if you distribute copies of such a program, whether</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">gratis or for a fee, you must give the recipients all the rights that</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">you have. You must make sure that they, too, receive or can get the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">source code. And you must show them these terms so they know their</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">rights.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> We protect your rights with two steps: (1) copyright the software, and</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">(2) offer you this license which gives you legal permission to copy,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">distribute and/or modify the software.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Also, for each author's protection and ours, we want to make certain</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">that everyone understands that there is no warranty for this free</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">software. If the software is modified by someone else and passed on, we</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">want its recipients to know that what they have is not the original, so</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">that any problems introduced by others will not reflect on the original</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">authors' reputations.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Finally, any free program is threatened constantly by software</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">patents. We wish to avoid the danger that redistributors of a free</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">program will individually obtain patent licenses, in effect making the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">program proprietary. To prevent this, we have made it clear that any</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">patent must be licensed for everyone's free use or not licensed at all.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> The precise terms and conditions for copying, distribution and</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">modification follow.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> GNU GENERAL PUBLIC LICENSE</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 0. This License applies to any program or other work which contains</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">a notice placed by the copyright holder saying it may be distributed</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">under the terms of this General Public License. The "Program", below,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">refers to any such program or work, and a "work based on the Program"</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">means either the Program or any derivative work under copyright law:</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">that is to say, a work containing the Program or a portion of it,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">either verbatim or with modifications and/or translated into another</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">language. (Hereinafter, translation is included without limitation in</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">the term "modification".) Each licensee is addressed as "you".</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Activities other than copying, distribution and modification are not</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">covered by this License; they are outside its scope. The act of</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">running the Program is not restricted, and the output from the Program</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">is covered only if its contents constitute a work based on the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Program (independent of having been made by running the Program).</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Whether that is true depends on what the Program does.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 1. You may copy and distribute verbatim copies of the Program's</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">source code as you receive it, in any medium, provided that you</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">conspicuously and appropriately publish on each copy an appropriate</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">copyright notice and disclaimer of warranty; keep intact all the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">notices that refer to this License and to the absence of any warranty;</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and give any other recipients of the Program a copy of this License</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">along with the Program.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You may charge a fee for the physical act of transferring a copy, and</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">you may at your option offer warranty protection in exchange for a fee.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 2. You may modify your copy or copies of the Program or any portion</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">of it, thus forming a work based on the Program, and copy and</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">distribute such modifications or work under the terms of Section 1</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">above, provided that you also meet all of these conditions:</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> a) You must cause the modified files to carry prominent notices</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> stating that you changed the files and the date of any change.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> b) You must cause any work that you distribute or publish, that in</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> whole or in part contains or is derived from the Program or any</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> part thereof, to be licensed as a whole at no charge to all third</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> parties under the terms of this License.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> c) If the modified program normally reads commands interactively</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> when run, you must cause it, when started running for such</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> interactive use in the most ordinary way, to print or display an</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> announcement including an appropriate copyright notice and a</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> notice that there is no warranty (or else, saying that you provide</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> a warranty) and that users may redistribute the program under</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> these conditions, and telling the user how to view a copy of this</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> License. (Exception: if the Program itself is interactive but</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> does not normally print such an announcement, your work based on</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> the Program is not required to print an announcement.)</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">These requirements apply to the modified work as a whole. If</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">identifiable sections of that work are not derived from the Program,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">and can be reasonably considered independent and separate works in</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">themselves, then this License, and its terms, do not apply to those</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">sections when you distribute them as separate works. But when you</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">distribute the same sections as part of a whole which is a work based</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">on the Program, the distribution of the whole must be on the terms of</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">this License, whose permissions for other licensees extend to the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">entire whole, and thus to each and every part regardless of who wrote it.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Thus, it is not the intent of this section to claim rights or contest</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">your rights to work written entirely by you; rather, the intent is to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">exercise the right to control the distribution of derivative or</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">collective works based on the Program.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">In addition, mere aggregation of another work not based on the Program</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">with the Program (or with a work based on the Program) on a volume of</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">a storage or distribution medium does not bring the other work under</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">the scope of this License.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 3. You may copy and distribute the Program (or a work based on it,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">under Section 2) in object code or executable form under the terms of</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Sections 1 and 2 above provided that you also do one of the following:</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> a) Accompany it with the complete corresponding machine-readable</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> source code, which must be distributed under the terms of Sections</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 1 and 2 above on a medium customarily used for software interchange; or,</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> b) Accompany it with a written offer, valid for at least three</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> years, to give any third party, for a charge no more than your</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> cost of physically performing source distribution, a complete</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> machine-readable copy of the corresponding source code, to be</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> distributed under the terms of Sections 1 and 2 above on a medium</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> customarily used for software interchange; or,</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> c) Accompany it with the information you received as to the offer</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> to distribute corresponding source code. (This alternative is</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> allowed only for noncommercial distribution and only if you</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> received the program in object code or executable form with such</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> an offer, in accord with Subsection b above.)</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The source code for a work means the preferred form of the work for</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">making modifications to it. For an executable work, complete source</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">code means all the source code for all modules it contains, plus any</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">associated interface definition files, plus the scripts used to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">control compilation and installation of the executable. However, as a</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">special exception, the source code distributed need not include</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">anything that is normally distributed (in either source or binary</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">form) with the major components (compiler, kernel, and so on) of the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">operating system on which the executable runs, unless that component</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">itself accompanies the executable.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If distribution of executable or object code is made by offering</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">access to copy from a designated place, then offering equivalent</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">access to copy the source code from the same place counts as</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">distribution of the source code, even though third parties are not</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">compelled to copy the source along with the object code.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 4. You may not copy, modify, sublicense, or distribute the Program</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">except as expressly provided under this License. Any attempt</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">otherwise to copy, modify, sublicense or distribute the Program is</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">void, and will automatically terminate your rights under this License.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">However, parties who have received copies, or rights, from you under</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">this License will not have their licenses terminated so long as such</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">parties remain in full compliance.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 5. You are not required to accept this License, since you have not</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">signed it. However, nothing else grants you permission to modify or</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">distribute the Program or its derivative works. These actions are</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">prohibited by law if you do not accept this License. Therefore, by</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">modifying or distributing the Program (or any work based on the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Program), you indicate your acceptance of this License to do so, and</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">all its terms and conditions for copying, distributing or modifying</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">the Program or works based on it.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 6. Each time you redistribute the Program (or any work based on the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Program), the recipient automatically receives a license from the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">original licensor to copy, distribute or modify the Program subject to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">these terms and conditions. You may not impose any further</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">restrictions on the recipients' exercise of the rights granted herein.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You are not responsible for enforcing compliance by third parties to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">this License.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 7. If, as a consequence of a court judgment or allegation of patent</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">infringement or for any other reason (not limited to patent issues),</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">conditions are imposed on you (whether by court order, agreement or</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">otherwise) that contradict the conditions of this License, they do not</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">excuse you from the conditions of this License. If you cannot</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">distribute so as to satisfy simultaneously your obligations under this</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">License and any other pertinent obligations, then as a consequence you</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">may not distribute the Program at all. For example, if a patent</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">license would not permit royalty-free redistribution of the Program by</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">all those who receive copies directly or indirectly through you, then</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">the only way you could satisfy both it and this License would be to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">refrain entirely from distribution of the Program.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If any portion of this section is held invalid or unenforceable under</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">any particular circumstance, the balance of the section is intended to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">apply and the section as a whole is intended to apply in other</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">circumstances.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">It is not the purpose of this section to induce you to infringe any</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">patents or other property right claims or to contest validity of any</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">such claims; this section has the sole purpose of protecting the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">integrity of the free software distribution system, which is</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">implemented by public license practices. Many people have made</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">generous contributions to the wide range of software distributed</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">through that system in reliance on consistent application of that</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">system; it is up to the author/donor to decide if he or she is willing</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">to distribute software through any other system and a licensee cannot</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">impose that choice.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This section is intended to make thoroughly clear what is believed to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">be a consequence of the rest of this License.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 8. If the distribution and/or use of the Program is restricted in</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">certain countries either by patents or by copyrighted interfaces, the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">original copyright holder who places the Program under this License</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">may add an explicit geographical distribution limitation excluding</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">those countries, so that distribution is permitted only in or among</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">countries not thus excluded. In such case, this License incorporates</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">the limitation as if written in the body of this License.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 9. The Free Software Foundation may publish revised and/or new versions</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">of the General Public License from time to time. Such new versions will</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">be similar in spirit to the present version, but may differ in detail to</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">address new problems or concerns.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Each version is given a distinguishing version number. If the Program</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">specifies a version number of this License which applies to it and "any</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">later version", you have the option of following the terms and conditions</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">either of that version or of any later version published by the Free</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Software Foundation. If the Program does not specify a version number of</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">this License, you may choose any version ever published by the Free Software</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Foundation.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 10. If you wish to incorporate parts of the Program into other free</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">programs whose distribution conditions are different, write to the author</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">to ask for permission. For software which is copyrighted by the Free</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Software Foundation, write to the Free Software Foundation; we sometimes</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">make exceptions for this. Our decision will be guided by the two goals</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">of preserving the free status of all derivatives of our free software and</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">of promoting the sharing and reuse of software generally.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> NO WARRANTY</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">REPAIR OR CORRECTION.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">POSSIBILITY OF SUCH DAMAGES.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> END OF TERMS AND CONDITIONS</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> How to Apply These Terms to Your New Programs</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> If you develop a new program, and you want it to be of the greatest</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">possible use to the public, the best way to achieve this is to make it</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">free software which everyone can redistribute and change under these terms.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> To do so, attach the following notices to the program. It is safest</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">to attach them to the start of each source file to most effectively</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">convey the exclusion of warranty; and each file should have at least</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">the "copyright" line and a pointer to where the full notice is found.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> &lt;one line to give the program's name and a brief idea of what it does.&gt;</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Copyright (C) &lt;year&gt; &lt;name of author&gt;</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> This program is free software; you can redistribute it and/or modify</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> it under the terms of the GNU General Public License as published by</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> the Free Software Foundation; either version 2 of the License, or</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> (at your option) any later version.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> This program is distributed in the hope that it will be useful,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> but WITHOUT ANY WARRANTY; without even the implied warranty of</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> GNU General Public License for more details.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> You should have received a copy of the GNU General Public License along</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> with this program; if not, write to the Free Software Foundation, Inc.,</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Also add information on how to contact you by electronic and paper mail.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the program is interactive, make it output a short notice like this</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">when it starts in an interactive mode:</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Gnomovision version 69, Copyright (C) year name of author</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> This is free software, and you are welcome to redistribute it</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> under certain conditions; type `show c' for details.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The hypothetical commands `show w' and `show c' should show the appropriate</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">parts of the General Public License. Of course, the commands you use may</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">be called something other than `show w' and `show c'; they could even be</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">mouse-clicks or menu items--whatever suits your program.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You should also get your employer (if you work as a programmer) or your</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">school, if any, to sign a "copyright disclaimer" for the program, if</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">necessary. Here is a sample; alter the names:</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Yoyodyne, Inc., hereby disclaims all copyright interest in the program</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> `Gnomovision' (which makes passes at compilers) written by James Hacker.</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> &lt;signature of Ty Coon&gt;, 1 April 1989</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Ty Coon, President of Vice</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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This General Public License does not permit incorporating your program into</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">proprietary programs. If your program is a subroutine library, you may</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">consider it more useful to permit linking proprietary applications with the</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">library. If this is what you want to do, use the GNU Lesser General</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Public License instead of this License.</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;"></p></body></html> - + Close Lukk - + Thanks to Takk til @@ -652,7 +680,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.5 Om PokerTH 0.5 - + <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;"> @@ -669,7 +697,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: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-weight:600;">PokerTH 0.5</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-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker-motor for den populære poker-varianten "Texas Holdem"</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Enkeltspiller-spill med opp til 6 datamaskinstyrte motstandere</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Flerspiller-spill over nettverk</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Utviklet i C++ / QT4</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;"></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-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">© 2006-2007, FHammer &amp; FThauer</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;"></p></body></html> - + Translation Oversettelse @@ -689,25 +717,10 @@ p, li { white-space: pre-wrap; } Om PokerTH 0.6 - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - - - <!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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> - - aboutPokerthImpl @@ -869,9 +882,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1263,6 +1283,21 @@ p, li { white-space: pre-wrap; } &Join Game + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + 0 - No game list filter @@ -1316,270 +1351,276 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - - - - + + + + Game Info - + Server Error Feil hos tjener - + You should not kick yourself from this game! Du burde ikke kaste deg selv ut fra spillet! - + Joining a private Game - - - + + + Game Spill - - - + + + Players - - - + + + State - + You are about to join a private game. Please enter the password! - + running - + open - - + + Connected players - + hands - + minutes - + double blinds - + manual blinds order - + Starting game. Please wait ... - + R - - - + + + P - - - + + + Available Players - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - - + + running games: %1 - - + + open games: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? - - + + connected players: %1 - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1595,7 +1636,7 @@ Feel free to invite other players by right-clicking on their nick in the availab QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Speed: Hastighet: @@ -1612,62 +1653,62 @@ Feel free to invite other players by right-clicking on their nick in the availab Spill - + Ctrl+N Ctrl+N - + Quit Avslutt - + About PokerTH ... Om PokerTH... - + Settings ... Innstillinger... - + Create Network Game ... Start nettverks-spill... - + Join Network Game ... Bli med i et nettverksspill... - + Fullscreen Fullskjerm - + Hands Hender - + Chat Prat - + Log Logg - + Start Local Game ... Start lokalt spill... - + Ctrl+Q Ctrl+Q @@ -1675,66 +1716,66 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.5 - The Open-Source Texas Holdem Engine PokerTH 0.5 - Åpen kildekode Texas Holdem - + ⌘F ⌘F - + Show/Hide Chat Window - + ⌘C ⌘C - + ⌘H ⌘H - + Show/Hide Log Window - + ⌘L ⌘L - - - + + + Show/Hide Hands Window - + Ctrl+O - + Ctrl+J - + Ctrl+F - + Ctrl+T - + Ctrl+H - + Ctrl+L @@ -1743,32 +1784,32 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.5 - Åpen kildekode Texas Holdem {0.6 ?} - + Internet Game ... - + Ctrl+I - + Away - + Manual Action (default) - + Auto-Check / Auto-Fold - + Auto-Check / Auto-Call-Any @@ -1778,37 +1819,37 @@ Feel free to invite other players by right-clicking on their nick in the availab - + Show/Hide Away Window - + Ctrl+A - + Kick Kast ut - + Vote Timeout: - + Yes - + No - + Chance @@ -1817,47 +1858,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Innstillinger - + Configure PokerTH ... - + Close Lukk - + Ctrl+X - + Vote started by: - + Show/Hide Chance Window - + Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -1877,23 +1918,23 @@ Feel free to invite other players by right-clicking on their nick in the availab F1 - Kast/Sats allt | F2 - Pass/Syn | F3 - Sats/Høyne - - - - - + + + + + Start Start - - - - - - - - + + + + + + + + Stop Stopp @@ -2030,89 +2071,102 @@ Hvis tjeneren er bak en NAT-ruter, forsikre deg om at videresending er satt opp Ugyldig antall spillere. - + Chat Prat - + Closing PokerTH during network game - + You are the hosting server. Do you want to close PokerTH anyway? - + PokerTH %1 - The Open-Source Texas Holdem Engine - - - + + + Lobby - + PokerTH - Internet Game Message - + Attention! Do you really want to leave the current game and go back to the lobby? - + Chance - + Kick Kast ut - + Do you want to kick <b>%1</b><br>from this game? - - + + <b>%1</b> secs left - + vote - + votes - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3296,10 +3350,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Feil i instillinger @@ -3316,7 +3370,7 @@ Please select an valid directory! Vennligst velg en gyldig katalog! - + Select your flipside picture Velg bakside-bilde @@ -3325,316 +3379,321 @@ Vennligst velg en gyldig katalog! Bilder (*.png) - + Open Directory Åpne mappe - + Images (*.png *.jpg *.gif) - - + + Blinds Error - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Russian - - - - - Turkish - - - - + Language Changed - + + Afrikaans + + + + + Bulgarian + + + + + Catalan + + + + + Chinese + + + + + Czech + + + + + Danish + + + + + Dutch + + + + + English + + + + + Finnish + + + + + French + + + + + German + + + + + Greek + + + + + Hungarian + + + + + Italian + + + + + Lithuania + + + + + Norwegian + + + + + Polish + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Russian + + + + + Slovak + + + + + Spanish + + + + + Swedish + + + + + Tamil + + + + + Turkish + + + + You have changed application language to %1. Please restart PokerTH to load new language! - - Italian - - - - - Slovak - - - - + The entered flipside picture doesn't exist. Please enter an valid picture! - - + + The log file directory doesn't exist. Please select an valid directory! - - Norwegian - - - - - Spanish - - - - - Bulgarian - - - - - Polish - - - - - Chinese - - - - - Greek - - - - - Swedish - - - - + The entered server list address is not a valid URL. Please enter a valid server list address! - - Finnish - - - - - Afrikaans - - - - - Catalan - - - - - Czech - - - - - Danish - - - - - Tamil - - - - - + + Maintainer Name - - + + Maintainer EMail - - + + Create Date - + Windows Behaviour - + scaleable - + fixed - + Minimum Size - + Maximum Size - + Fixed Size - + State - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -3813,108 +3872,108 @@ Style will not be placed into list! startWindowImpl - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Nettverksfeil - + Server address was not set. Tjener-adresse var ikke satt. - + An invalid port was set (ports 0-1023 are not allowed). En ugyldig port var satt (porter 0-1023 er ikke tillatt). - + Could not create a socket for TCP communication. Kunne ikke lage en kontakt for TCP-kommunikasjon. - + Could not set the IP address. Kunne ikke sette IP-adressen. - + Could not set the port for this type of address. Kunne ikke sette porten for denne typen adresse. - + The server name could not be resolved. Tjenernavnet kunne ikke konverteres. - + Bind failed - please choose a different port. Kunne ikke binde - vennligst velg en annen port. - + Internal network error: "listen" failed. Intern nettverksfeil - "listen" feilet. - + Server execution was terminated. Tjener-utførelse ble avbrutt. - + Could not connect to the server. Kunne ikke koble til tjeneren. - + Connection timed out. Please check the server address. @@ -3925,119 +3984,119 @@ Vennligst sjekk tjener-adressen. Hvis tjeneren er bak en NAT-ruter, forsikre deg om at videresending er satt opp riktig. - + Internal network error: "select" failed. Intern nettverksfeil - "select" feilet. - + Internal network error: "send" failed. Intern nettverksfeil - "send" feilet. - + Connection was closed by the server. Tilkoblingen ble stengt av tjeneren. - + Internal network error: Duplicate TCP connection. Intern nettverksfeil - Dobbel TCP-tilkobling. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. En ugyldig TCP-pakke ble mottatt. Vennligst forsikre deg om at alle spillere bruker samme versjon av PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Intern tilstands-feil. Vennligst forsikre deg om at alle spillere bruker samme versjon av PokerTH. - + Invalid server list URL. Please correct the address in the settings. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. - + Could not unzip the PokerTH internet server list. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. - + Could not open the target file when downloading the server list. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. - + Sorry, this server is already full. Beklager, tjeneren har ikke plass til flere spillere. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Ugyldig passord. Prøv igjen. - + The password is too long. Please choose another one. Passordet er for langt. Vennligst velg et annet. @@ -4048,146 +4107,146 @@ Please choose a different name. Vennligst velg et annet navn. - + The game name is either too short or too long. Please choose another one. - + The game could not be found. - + The chat text is invalid. - + The server referred to an unknown player. Aborting. Tjeneren referete til en ukjent spiller. Avbryter. - + Internal error: The current player could not be found. - + Internal error: The current player is not active. - + You were kicked from the server. Du ble kastet ut fra tjeneren. - + You were temporarily banned from the server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! - + The client player count is invalid. Ugyldig antall spillere. - + Too many manual blinds were set. Please reconfigure the manual blinds. - + An invalid avatar file was configured. Please choose a different avatar. - + The selected avatar file is too large. Please choose a different avatar. - + An internal avatar error occured. Please report this to an admin in the lobby chat. - + Could not start game: Synchronization failed. - + The server is down for maintenance. Please try again later. - + An internal error occured. En intern feil oppstod. - - - + - - - - - - + + + + + + + + Network Notification - + You were kicked from the game. - + Sorry, this game is already full. - + Unable to join - the server has already started the game. Kan ikke bli med - tjeneren har allerede startet spillet. - + Your admin state timed out due to inactivity. Feel free to create a new game! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. - + Server Message diff --git a/ts/pokerth_pl.ts b/ts/pokerth_pl.ts index 2202219e..29f2cd5e 100644 --- a/ts/pokerth_pl.ts +++ b/ts/pokerth_pl.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -65,14 +66,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -85,12 +86,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -101,12 +102,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -116,40 +117,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -255,85 +256,112 @@ Please select a game table style and try again! O programie - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Projekt - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + Translation Tłumaczenie - - <!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-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=" ">translator name - mail address</span></p></body></html> - - - - + Thanks to Podziękowania - - <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - + License Licencja - + Close Zamknij @@ -351,7 +379,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; 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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -368,7 +396,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -549,21 +577,6 @@ p, li { white-space: pre-wrap; }(new line) <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Nimbus Sans L';"><span style=" font-weight:600;">doc_dos</span></p>(new line) <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Nimbus Sans L';">(sp)(sp)(sp)(sp)(sp)- za własnoręcznie nagrane odgłosy żetonów</p></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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> - - aboutPokerthImpl @@ -726,9 +739,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1049,6 +1069,21 @@ Please choose another one! Fill up with computer opponents Dopełnij przeciwnikami komputerowymi + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Zacznij grę @@ -1213,46 +1248,46 @@ p, li { white-space: pre-wrap; } gra - - - - + + + + Game Info Informacje o grze - + Server Error Błąd serwera - + You should not kick yourself from this game! Nie powinieneś wyrzucać sam siebie z tej gry! - + Joining a private Game Dołącz do gry prywatnej - - - + + + Game Gra - - - + + + Players Gracze - - - + + + State Stan @@ -1261,179 +1296,185 @@ p, li { white-space: pre-wrap; } Prywatne - + You are about to join a private game. Please enter the password! Próbujesz wejść do gry prywatnej. Proszę wpisz hasło! - + running w trakcie - + open otwarta - - + + Connected players - + hands rozdania - + minutes minuty - + double blinds podwajane - + manual blinds order własne - + Starting game. Please wait ... Tworzenie gry. Proszę czekać ... - + R - - - + + + P - - - + + + Available Players Dostępni gracze - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - - + + running games: %1 gry w trakcie: %1 - - + + open games: %1 otwarte gry : %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1442,49 +1483,49 @@ Feel free to invite other players by right-clicking on their nick in the availab osób na chacie: %1 - - + + connected players: %1 podłączonych graczy: %1 - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1496,22 +1537,22 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTable - + Hands Układy pokerowe - + Chat Chat - + Log Log - + Speed: Prędkość: @@ -1528,94 +1569,94 @@ Feel free to invite other players by right-clicking on their nick in the availab Gra - + Start Local Game ... Rozpocznij grę lokalną ... - + Ctrl+N Ctrl+N - + Quit Zakończ - + Ctrl+Q Ctrl+Q - + About PokerTH ... O programie PokerTH ... - + Settings ... Ustawienia ... - + Create Network Game ... Utwórz grę sieciową ... - + Ctrl+O Ctrl+O - + Join Network Game ... Dołącz do gry sieciowej ... - + Ctrl+J Ctrl+J - + Fullscreen Pełny ekran - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Pokaż/ukryj okno chatu - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Pokaż/ukryj okno układów pokerowych - + Ctrl+H Ctrl+H - + Show/Hide Log Window Pokaż/ukryj okno logu - + Ctrl+L Ctrl+L @@ -1628,12 +1669,12 @@ Feel free to invite other players by right-clicking on their nick in the availab Gra sieciowa - + Internet Game ... Gra internetowa ... - + Ctrl+I Ctrl+I @@ -1642,22 +1683,22 @@ Feel free to invite other players by right-clicking on their nick in the availab All In - + Away Nieobecność - + Manual Action (default) Czekaj na decyzję gracza (domyślnie) - + Auto-Check / Auto-Fold Automatycznie czekaj/odrzuć - + Auto-Check / Auto-Call-Any Automatycznie czekaj/sprawdzaj-dowolną-stawkę @@ -1667,37 +1708,37 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - Open-Source'owa gra Texas Holdem - + Show/Hide Away Window Pokaż/ukryj okno nieobecności - + Ctrl+A - + Kick - + Vote Timeout: - + Yes - + No - + Chance @@ -1706,47 +1747,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Ustawienia - + Configure PokerTH ... - + Close Zamknij - + Ctrl+X - + Vote started by: - + Show/Hide Chance Window - + Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -1754,14 +1795,14 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop Stop @@ -1774,11 +1815,11 @@ Feel free to invite other players by right-clicking on their nick in the availab Ctrl+N aby rozpocząć nową grę - - - - - + + + + + Start Start @@ -1929,7 +1970,7 @@ Proszę wybrać inny nick. Niestety ten serwer jest w tej chwili pełny. - + Chat Chat @@ -2014,24 +2055,24 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Proszę wejdź na stronę <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> i śćiągnij ostatnią wersję. - + Closing PokerTH during network game Zamknięcie PokerTH podczas gry siecowej - + You are the hosting server. Do you want to close PokerTH anyway? Jesteś gospodarzem. Chcesz naprawdę zamknąć PokerTH? - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Open-Source'owa gra Texas Holdem - - - + + + Lobby Chat gier internetowych @@ -2052,63 +2093,76 @@ Proszę wejdź na stronę <a href="http://www.pokerth.net/" target= Ta wersja beta PokerTH jest przestarzała.<br>Proszę odwiedzić stronę <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> i zainstalować najnowszą wersję. - + PokerTH - Internet Game Message PokerTH - Komunikat gry internetowej - + 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 gier internetowych? - + Chance - + Kick - + Do you want to kick <b>%1</b><br>from this game? - - + + <b>%1</b> secs left - + vote - + votes - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3304,37 +3358,37 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Błąd w ustawieniach - + Select your flipside picture Wybierz własny obrazek - + Open Directory Otwórz folder - + Images (*.png *.jpg *.gif) Pliki graficzne (*.png *.jpg *.gif)Zjęcia (*.png *.jpg *.gif) - - + + Blinds Error Błąd ustawień ślepych - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3344,29 +3398,69 @@ Pierwszy mały ślepy zostanie ustawiony na maksymalną możliwą wartość. - + Dutch - Holenderski - - - - English - Angielski + Holenderski - French - Francuski + Afrikaans + + + + + Bulgarian + - German - Niemiecki + Catalan + + + + + Chinese + + Czech + + + + + Danish + + + + + English + Angielski + + + + Finnish + + + + + French + Francuski + + + + German + Niemiecki + + + + Greek + + + + Hungarian - Węgierski + Węgierski Norse @@ -3377,270 +3471,235 @@ możliwą wartość. Portugalski - + Russian - Rosyjski + Rosyjski - + Turkish - Turecki + Turecki - + Language Changed Język został zmieniony - + You have changed application language to %1. Please restart PokerTH to load new language! Zmieniłeś język na %1. Proszę ponownie uruchomić PokerH aby wczytać nowy język! - + Italian - Włoski + Włoski - + + Lithuania + + + + + Polish + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Slovak - Słowacki + Słowacki - + + Spanish + + + + + Swedish + + + + + Tamil + + + + The entered flipside picture doesn't exist. Please enter an valid picture! Wybrany własny obrazek talii nie istnieje. Proszę wybrać inny obrazek! - - + + The log file directory doesn't exist. Please select an valid directory! Wybrany folder dla plików logu nie istnieje. Proszę wybrać inny folder! - + Norwegian - Norweski + Norweski - - Bulgarian - - - - - Polish - - - - - Spanish - - - - - Chinese - - - - - Greek - - - - - Swedish - - - - + The entered server list address is not a valid URL. Please enter a valid server list address! - - Finnish - - - - - Afrikaans - - - - - Catalan - - - - - Czech - - - - - Danish - - - - - Tamil - - - - - + + Maintainer Name - - + + Maintainer EMail - - + + Create Date - + Windows Behaviour - + scaleable - + fixed - + Minimum Size - + Maximum Size - + Fixed Size - + State Stan - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -3825,108 +3884,108 @@ Please choose another one. Proszę wybrierz inny nick. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error - + Server address was not set. Adres serwera nie został ustawiony. - + An invalid port was set (ports 0-1023 are not allowed). Ustawiony został niepoprawny port (porty 0-1023 nie są dozwolone). - + Could not create a socket for TCP communication. Nie udało się utworzyć gniazda sieciowego TCP. - + Could not set the IP address. Nie udało się ustawić adresu IP. - + Could not set the port for this type of address. Nie udało się ustawić portu dla tego typu adresu. - + The server name could not be resolved. Nie udało się znaleźć nazwy serwera. - + Bind failed - please choose a different port. Błąd - proszę wybrać inny port. - + Internal network error: "listen" failed. Wewnętrzny błąd sieciowy: "listen" nie wykonało się poprawnie. - + Server execution was terminated. Serwer został zatrzymany. - + Could not connect to the server. Nie udało się polączyć z serwerem. - + Connection timed out. Please check the server address. @@ -3937,119 +3996,119 @@ Proszę sprawdź adres serwera. Jeśli serwer jest w sieci z routerem NAT, to upewnij się, że "port forwarding" został poprawnie skonfigurowany. - + Internal network error: "select" failed. Wewnętrzny błąd sieciowy: "select" nie wykonało się poprawnie. - + Internal network error: "send" failed. Wewnętrzny błąd sieciowy: "send" nie wykonało się poprawnie. - + Connection was closed by the server. Połączenie zostało zerwane przez serwer. - + Internal network error: Duplicate TCP connection. Wewnętrzny błąd sieciowy: zdublowane połączenie TCP. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Została wyslana niepoprawna informacja sieciowa. Proszę upewnij się, że wszyscy gracze używają tej samej wersji PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Wewnętrzny błąd stanu. Proszę upewnij się, że wszyscy gracze używają tej samej wersji PokerTH. - + Invalid server list URL. Please correct the address in the settings. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. - + Could not unzip the PokerTH internet server list. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. - + Could not open the target file when downloading the server list. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Serwer PokerTH nie obsługuje wersji gry, której używasz.<br>Proszę odwiedzić stronę <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> i zainstalować najnowszą wersję. - + Sorry, this server is already full. Niestety ten serwer jest już pełny. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Niepoprawne hasło. Proszę wpisz hasło jeszcze raz. - + The password is too long. Please choose another one. Hasło jest za długie. Proszę wprowadź inne hasło. @@ -4064,146 +4123,146 @@ Proszę wybrać inny nick. Nick gracza jest za krótki, za długi lub niepoprawny. Proszę wprowadź inny nick. - + The game name is either too short or too long. Please choose another one. Nazwa gry jest za długa albo za krótka. Proszę wprowadź inną. - + The game could not be found. Gra nie została znaleziona. - + The chat text is invalid. Tekst rozmowy jest niepoprawny. - + The server referred to an unknown player. Aborting. Nieznany gracz na serwerze. Przerwanie gry. - + Internal error: The current player could not be found. Błąd wewnętrzny: Aktualny gracz nie mógł zostać odnależniony. - + Internal error: The current player is not active. Błąd wewnętrzny: Aktualny gracz nie jest aktywny. - + You were kicked from the server. Zostałeś wyrzucony z serwera. - + You were temporarily banned from the server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! - + The client player count is invalid. Niewłaściwa liczba graczy. - + Too many manual blinds were set. Please reconfigure the manual blinds. Za dużo ustawionych własnych ślepych. Proszę jeszze raz skonfigurować. - + An invalid avatar file was configured. Please choose a different avatar. Został ustawiony nieoprawny plik avataru. Proszę wybrać inny. - + The selected avatar file is too large. Please choose a different avatar. Wybrany avatar jest za duży. Proszę wybrać inny. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Wystąpił błąd z wbudowanym avatarem. Proszę poinformuj o tym administratora w chacie gier internetowych. - + Could not start game: Synchronization failed. Nie udało się rozpoczać gry. Synchronizacja zakończona niepowodzeniem. - + The server is down for maintenance. Please try again later. Serwer jest w tej chwili nieosiągalny ze względu na konserwacje. Proszę spróbować póżniej. - + An internal error occured. Wystąpił błąd wewnętrzny. - - - + - - - - - - + + + + + + + + Network Notification Informacja sieciowa - + You were kicked from the game. Zostałeś wyrzucony z serwera. - + Sorry, this game is already full. Niestety ten serwer jest w tej chwili pełny. - + Unable to join - the server has already started the game. Nie możesz dołączyć do tej gry - rozgrywka się już rozpoczęła. - + Your admin state timed out due to inactivity. Feel free to create a new game! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Nowa wersja PokerTH jest dostępna.<br>Proszę odwiedzić stronę <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> i zainstalować najnowszą wersję. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Ta wersja beta PokerTH jest przestarzała.<br>Proszę odwiedzić stronę <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> i zainstalować najnowszą wersję. - + Server Message diff --git a/ts/pokerth_ptbr.ts b/ts/pokerth_ptbr.ts index 93035f6a..beee935d 100644 --- a/ts/pokerth_ptbr.ts +++ b/ts/pokerth_ptbr.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -311,7 +312,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; font-weight:600;"> - <span style=" font-weight:400;">para diferentes recursos populares do avatar</span></p><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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - Para imagens de avatar</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;"></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-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;"> - para diferentes licenças de som gpl</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;"></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-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;"> - para o próprio chip de som gravado</p></body></html> - + <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;"> @@ -752,7 +753,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">(new line) + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">(new line) <html><head><meta name="qrichtext" content="1" /><style type="text/css">(new line) p, li { white-space: pre-wrap; }(new line) </style></head><body style=" font-weight:400; font-style:normal;">(new line) @@ -778,7 +779,7 @@ p, li { white-space: pre-wrap; }(new line) p, li { white-space: pre-wrap; } </style></head><body style=" 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=" ">translator name - mail address</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">(new line) + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">(new line) <html><head><meta name="qrichtext" content="1" /><style type="text/css">(new line) p, li { white-space: pre-wrap; }(new line) </style></head><body style=" font-weight:400; font-style:normal;">(new line) @@ -811,7 +812,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">(new line) + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">(new line) <html><head><meta name="qrichtext" content="1" /><style type="text/css">(new line) p, li { white-space: pre-wrap; }(new line) </style></head><body style=" font-weight:400; font-style:normal;">(new line) @@ -850,7 +851,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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> <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;"><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:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -968,7 +969,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;"> - for self recorded chip sounds</p></body></html> <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;"><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-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; font-weight:600;"> - <span style=" font-weight:400;">por diferentes e populares imagens de avatar</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - para imagens de avatar</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por "mix" de imagens de avatar</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;"></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-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;"> - por diferentes gpl sons licenciados</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;"></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-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;"> - pela própria gravação de sons</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1034,7 +1035,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;"> - for self recorded chip sounds</p></body></html> <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;"><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-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; font-weight:600;"> - <span style=" font-weight:400;">por diferentes e populares imagens de avatar</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - para imagens de avatar</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por "mix" de imagens de avatar</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;"></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-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;"> - por diferentes gpl sons licenciados</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;"></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-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;"> - pela própria gravação de sons</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1125,7 +1126,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;"> - for startwindow background gfx</p></body></html> <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;"><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-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; font-weight:600;"> - <span style=" font-weight:400;">por diferentes e populares imagens de avatar</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - para imagens de avatar</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por "mix" de imagens de avatar</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;"></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-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;"> - por diferentes gpl sons licenciados</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;"></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-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;"> - pela própria gravação de sons</p></body></html><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; Indentidade-text:0px;"><span style=" font-weight:600;">thiger, dunkanx, BerndA </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por diferentes atualizações</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-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;"> - pela administração e manutenção dos servidores</p></body></html><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" 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;"> - pelo efeito de background da inicialização do windows</p></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; } @@ -1137,7 +1138,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine para o popular "Texas Hold'em" Poker</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogadores com até 9 oponentes de máquinas</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogos online<br />- Jogos online pela Internet<br />- Guia de mudanças online para galeria de estilos</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;"></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;"></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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine para o popular "Texas Hold'em" Poker</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogadores com até 9 oponentes de máquinas</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogos online<br />- Jogos online pela Internet<br />- Guia de mudanças online para galeria de estilos</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;"></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;"></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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1194,6 +1195,87 @@ 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-family:'Sans Serif';"> - initial gui graphics design</span></p></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: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;">Página do projeto: </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><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';"> #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-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;">Autores: </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';"> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" font-family:'Sans Serif'; text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" font-family:'Sans Serif';">)</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';"> - ideia inicial, arquitetura básica, implementação de guia, guia de edição de gráficos, pacote 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-family:'Sans Serif';"> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" font-family:'Sans Serif'; text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" font-family:'Sans Serif';">)</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';"> - ideia inicial, arquitetura básica, desenvolvimento da engenharia</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';"> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" font-family:'Sans Serif'; text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" font-family:'Sans Serif';">)</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';"> - Arquitetura básica, desenvolvimento de rede, pacote windows, pacote 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-family:'Sans Serif';"> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" font-family:'Sans Serif'; text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" font-family:'Sans Serif';">)</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';"> - Guia de design inicial de gráficos</span></p></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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + aboutPokerthImpl @@ -1339,6 +1421,11 @@ Por favor, escolha outro! Game name: Nome do jogo: + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1782,6 +1869,18 @@ 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;"><a href="http://www.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">http://www.pokerth.net</span></a></p></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><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="http://www.pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">http://www.pokerth.net</span></a></p></body></html> + + Sort alphabetically + + + + Sort by country + + + + Display idle players + + gameLobbyDialogImpl @@ -1995,6 +2094,10 @@ Sinta se avontade para convidar outro jogador clicando no apelido na lista de jo %1's game %1's jogo + + The game will start in<br><b>%1</b> seconds. + + gameTable @@ -2633,6 +2736,17 @@ Por favor tenha certeza de que está conectado a internet. You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Você tem <b>%1</b> %2 contra você.<br><b>%3</b> votos necessários para chutar. + + PokerTH - Warning + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3772,23 +3886,23 @@ Esta primeira-small-blind-valor será configurada como valor máximo permitido.< Dutch - Holandês + Holandês English - Inglês + Inglês French - Françes + Françes German - Alemão + Alemão Hungarian - Húngaro + Húngaro Norse @@ -3800,11 +3914,11 @@ Esta primeira-small-blind-valor será configurada como valor máximo permitido.< Russian - Russo + Russo Turkish - Turco + Turco Language Changed @@ -3818,11 +3932,11 @@ Por favor reinicie o PokerTH para carregar o novo idioma! Italian - Italiano + Italiano Slovak - Slovak + Slovak The entered flipside picture doesn't exist. @@ -3836,31 +3950,31 @@ Please select an valid directory! Norwegian - Noruegues + Noruegues Spanish - Espanhol + Espanhol Bulgarian - Bulgaro + Bulgaro Polish - Polonês + Polonês Chinese - Chinês + Chinês Greek - Grego + Grego Swedish - Sueco + Sueco The entered server list address is not a valid URL. @@ -3870,27 +3984,27 @@ Por favor entre com um endereço válido! Finnish - Finlandês + Finlandês Afrikaans - Africano + Africano Catalan - Catalão + Catalão Czech - Tcheco + Tcheco Danish - Dinamarquês + Dinamarquês Tamil - Tâmil + Tâmil Maintainer Name @@ -4004,16 +4118,28 @@ Style will not be placed into list! Portuguese (Brazilian) - Potuguês (Brasil) + Potuguês (Brasil) Portuguese (Portuguese) - Potuguês (Portugal) + Potuguês (Portugal) Do you really want to delete the selected log file? + + Lithuania + + + + Portuguese-Brazilian + + + + Portuguese-Portuguese + + startNetworkGameDialog diff --git a/ts/pokerth_ptpt.ts b/ts/pokerth_ptpt.ts index 8e94e368..506d3bbb 100644 --- a/ts/pokerth_ptpt.ts +++ b/ts/pokerth_ptpt.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -89,14 +90,14 @@ Por favor selecione o estilo das cartas e tente denovo! GameTableStyleReader - - - + + + Game Table Style Error Erro no estilo de jogo - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -117,12 +118,12 @@ De qualquer maneira pode jogar com este estilo de jogo, porque o conteúdo em fa Por favor contacte o criador do estilo da mesa via "%3". - + Game Table Style Error - Fields content missing Erro no estilo de mesa de jogo - Campos do conteúdo em falta - + One or more pictures from current game table style "%1" were not found: %2 @@ -139,12 +140,12 @@ De qualquer maneira pode jogar com este estilo de jogo, porque o conteúdo em fa Por favor contacte o criador do estilo da mesa via "%3". - + Game Table Style Error - Pictures missing Erro no estilo de mesa de jogo - Imagens em fata - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -159,27 +160,27 @@ De qualquer maneira pode jogar com este estilo de jogo, porque o conteúdo em fa Por favor contacte o criador do estilo da mesa via "%4". - + Game Table Style Error - Outdated Erro no estilo de mesa de jogo - Desactualizado - + Everything OK! Tudo OK! - + Some pictures are missing, please contact style maintainer for this issue. Faltam algums imagens, por favor contacte quem mantém este estilo devido a este problema. - + Some style fields are missing, please contact style maintainer for this issue. Faltam alguns campos no estilo, por favor contacte quem mantém este estilo devido a este problema. - + This style is outdated, please contact style maintainer for this issue. Este estilo está desactualizado, por favor contacte quem mantém este estilo devido a este problema. @@ -193,7 +194,7 @@ A versão corrente do estilo de jogo do PokerTH é "%2", mas este esti Por favor contate o criador de estilos %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -214,8 +215,8 @@ O valor(es) do "%2" está/estão faltando. Por favor contate o desevenvolvedor do estilo %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! O estilo de cartas selecionado e diferente do estilo de jogo. @@ -358,7 +359,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; font-weight:600;"> - <span style=" font-weight:400;">para diferentes recursos populares do avatar</span></p><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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - Para imagens de avatar</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;"></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-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;"> - para diferentes licenças de som gpl</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;"></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-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;"> - para o próprio chip de som gravado</p></body></html> - + <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;"> @@ -769,22 +770,106 @@ p, li { white-space: pre-wrap; } Sobre PokerTH 0.5 - + Close Fechar - + License Licença - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Projeto - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -804,7 +889,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -825,25 +910,23 @@ 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=" "> - desenho dos gráficos inicias do gui</span></p></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-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=" ">translator name - mail address</span></p></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 style=" 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=" ">Nome do tradutor- endereço de mail</span></p></body></html> - + Thanks to Obrigado a - <!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; } @@ -866,7 +949,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -890,7 +973,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=" "> - pela moderação doforum e organização do bugtracker e pedidos de funcionalidades</span></p></body></html> - + Translation Tradução @@ -905,7 +988,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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> <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;"><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:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -916,7 +999,7 @@ p, li { white-space: pre-wrap; } - Jogo do popular "Texas Holdem" Poker- Singleplayer com até 6 oponentes-computador- Multiplayer com jogos via rede- Codificado em C++ / QT4© 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -1024,7 +1107,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;"> - for self recorded chip sounds</p></body></html> <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;"><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-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; font-weight:600;"> - <span style=" font-weight:400;">por diferentes e populares imagens de avatar</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - para imagens de avatar</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por "mix" de imagens de avatar</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;"></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-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;"> - por diferentes gpl sons licenciados</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;"></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-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;"> - pela própria gravação de sons</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1090,7 +1173,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;"> - for self recorded chip sounds</p></body></html> <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;"><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-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; font-weight:600;"> - <span style=" font-weight:400;">por diferentes e populares imagens de avatar</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - para imagens de avatar</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por "mix" de imagens de avatar</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;"></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-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;"> - por diferentes gpl sons licenciados</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;"></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-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;"> - pela própria gravação de sons</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -1181,8 +1264,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;"> - for startwindow background gfx</p></body></html> <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;"><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-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; font-weight:600;"> - <span style=" font-weight:400;">por diferentes e populares imagens de avatar</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;"></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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - para imagens de avatar</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;"></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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por "mix" de imagens de avatar</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;"></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-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;"> - por diferentes gpl sons licenciados</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;"></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-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;"> - pela própria gravação de sons</p></body></html><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; Indentidade-text:0px;"><span style=" font-weight:600;">thiger, dunkanx, BerndA </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - por diferentes atualizações</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-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;"> - pela administração e manutenção dos servidores</p></body></html><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" 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;"> - pelo efeito de background da inicialização do windows</p></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; } @@ -1194,7 +1276,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogo de Poker para o popular Poker "Texas Hold'em" </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogos Singleplayer até 9 oponentes-computador</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogos com vários jogadores em rede<br />- Jogos na Internet<br />- Interface alteravel via de galeria de estilos online</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;"></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;"></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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogo de Poker para o popular Poker "Texas Hold'em" </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogos Singleplayer até 9 oponentes-computador</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Jogos com vários jogadores em rede<br />- Jogos na Internet<br />- Interface alteravel via de galeria de estilos online</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;"></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;"></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;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -1426,9 +1508,16 @@ Por favor escolha outro! + Game name: Nome do jogo: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1755,6 +1844,21 @@ Por favor escolha outro! Fill up with computer opponents Preenxer com oponentes computadores + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Iniciar Jogo @@ -1952,46 +2056,46 @@ p, li { white-space: pre-wrap; } jogo - - - - + + + + Game Info Info de jogo - + Server Error Erro de Servidor - + You should not kick yourself from this game! Não se pode chutar deste jogo! - + Joining a private Game A entrar num jogo privado - - - + + + Game Jogo - - - + + + Players Jogadores - - - + + + State Estado @@ -2000,180 +2104,186 @@ p, li { white-space: pre-wrap; } Privado - + You are about to join a private game. Please enter the password! Está prestes a entrar num jogo privado. Por favor introduza a senha! - + running executando - + open abrir - - + + Connected players Jogadores ligados - + hands mãos - + minutes minutos - + double blinds duplicar blinds - + manual blinds order ordem manual de blinds - + Starting game. Please wait ... Começando o jogo. Por favor aguarde ... - + R R - - - + + + P P - - - + + + Available Players Jogadores disponiveis - + Invite player Convidar jogador - + Ignore player ignorar jogador - + Player infos ... Informações do jogador ... - - - + + + Standard Por defeito - - - + + + Registered players only Apenas jogadores registados - - - + + + Invited players only Apenas jogadores convidados - - - + + + Ranking game Jogo com pontuações - + Connected players - max. %1 Jogadores ligados - max. %1 - - + + T T - + Connected players - Max. %1 Jogadores ligados - Max %1 - - + + running games: %1 jogos em curso: %1 - - + + open games: %1 jogos abertos: %1 - + Invite %1 Convidar %1 - + Ignore %1 Ignorar %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> <span style='color:blue;'>%1 foi convidado para %2 por %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> <span style='color:red;'>%1 rejeitou o convite para %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>%1 não pode entrar em %2 porque está ocupado.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. Entrou num jogo do tipo "apenas-convidados". Esteja à vontade para convidar outros jogadores clicando com o botão do lado direito no nome deles na lista de jogadores. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? Foi convidado para o jogo <b>%1</b> por <b>%2</b>.<br>Gostaria de entrar neste jogo? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? Não vai receber mais mensagens nem convites de jogo deste utilizador <br> Tem a certeza que quer colocar o jogador <b>%1</b> na sua lista de ignorados? @@ -2182,49 +2292,49 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d jogadores no chat: %1 - - + + connected players: %1 jogadores ligados: %1 - + search for player ... procurar jogador ... - + Chat is only available to registered players. O chat só está disponivél para jogadores registados. - + Invite player ... Convidar jogador ... - + Ignore player ... Ignorar jogador ... - + %1 is playing in "%2". %1 está a jogar em "%2". - + %1 is not playing at the moment. %1 não está a jogar de momento. - - + + PokerTH - Info Message PokerTH - Mensagem de informação - + PokerTH - Question PokerTH - Pergunta @@ -2236,67 +2346,67 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d gameTable - + About PokerTH ... Sobre PokerTH ... - + Chat Chat - + Shortcut: <Shift> Atalho: <Shift> - + Create Network Game ... Criar Jogo em rede ... - + Ctrl+F Ctrl+F - + Ctrl+H Ctrl+H - + Ctrl+J Ctrl+J - + Ctrl+L Ctrl+L - + Ctrl+N Ctrl+N - + Ctrl+O Ctrl+O - + Ctrl+Q Ctrl+Q - + Ctrl+T Ctrl+T - + Fullscreen Ecran Completo @@ -2305,17 +2415,17 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d Jogo - + Hands Mãos - + Join Network Game ... Entrar num jogo de rede ... - + Log Registo @@ -2332,39 +2442,39 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d QMainWindow { background-image: url(:/guiv2/resources/guiv2/table.png); background-position: bottom center; background-origin: content; } - + Quit Sair - + Settings ... Configurações ... - + Show/Hide Chat Window Mostrar/Esconder Janela de Chat - - - + + + Show/Hide Hands Window Mostrar/Esconder Janela de Mãos - + Show/Hide Log Window Mostrar/Esconder Janela de Registro - + Speed: Velocidade: - + Start Local Game ... Iniciar Jogo Local ... @@ -2385,12 +2495,12 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d Jogo em Rede - + Internet Game ... Jogo na internet ... - + Ctrl+I Ctrl+I @@ -2399,22 +2509,22 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d Apostar tudo - + Away Ausente - + Manual Action (default) Acção Manual (padrão) - + Auto-Check / Auto-Fold Auto-Check / Auto-Desistir - + Auto-Check / Auto-Call-Any Auto-Check / Auto-Qualquer-Call @@ -2428,37 +2538,37 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d Voltar a Sala - + Show/Hide Away Window Mostrar/Esconder Janela de indisponível - + Ctrl+A Ctrl+A - + Kick Chutar - + Vote Timeout: Tempo de votação: - + Yes Sim - + No Não - + Chance Estatistica @@ -2467,42 +2577,42 @@ Esteja à vontade para convidar outros jogadores clicando com o botão do lado d Configurações - + Configure PokerTH ... Configurar PokerTh ... - + Close Fechar - + Ctrl+X Ctrl+X - + Vote started by: Votação iniciada por: - + Show/Hide Chance Window Mostrar/Esconder Janela de Estatistica - + Ctrl+C Ctrl+C - + &View &Ver - + &Settings &Configurações @@ -2614,23 +2724,23 @@ Por favor redigite a senha e tente novamente. Desculpe, este servidor está cheio. - - - - - + + + + + Start Começar - - - - - - - - + + + + + + + + Stop Parar @@ -2707,7 +2817,7 @@ Por favor escolha um nome diferente. F1 - Bet/Aumentar | F2 - Check/Call | F3 - Desistir/Apostar tudo - + Chat Chat @@ -2792,12 +2902,12 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Por favor vá para <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> e faça o download da última versão. - + Closing PokerTH during network game Fechando o PokerTH durante o jogo em rede - + You are the hosting server. Do you want to close PokerTH anyway? É o servidor do jogo. Mesmo assim quer realmente fechar o PokerTH? @@ -2814,14 +2924,14 @@ Por favor vá para <a href="http://www.pokerth.net/" target="_ Está versão beta do PokerTH está desatualizada.<br>Por favor vá para <a href="http://www.pokerth.net/"target="_blank">http://www.pokerth.net/<a/> e faça o download da última versão. - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Jogo Texas Holdem Open-Source - - - + + + Lobby Lobby @@ -2830,12 +2940,12 @@ Por favor vá para <a href="http://www.pokerth.net/" target="_ Um erro interno de avatar ocorreu. Por favor reporte ao admin do lobby bate-papo. - + PokerTH - Internet Game Message PokerTH - Mensagem do jogo da Internet - + Attention! Do you really want to leave the current game and go back to the lobby? Atenção! Deseja realmente sair do jogo actual @@ -2896,41 +3006,54 @@ Por favor tenha certeza de que está conectado a internet. Não foi possivel abrir o arquivo especifico quando realizou o download do servidor. - + Chance Estatistica - + Kick Chutar - + Do you want to kick <b>%1</b><br>from this game? Quer chutar <b>%1</b><br>deste jogo? - - + + <b>%1</b> secs left <b>%1</b> segundos restantes - + vote voto - + votes votos - + Chat is only available to registered players. O chat só está disponivél para jogadores registados. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. Jogador <b>%1</b> tem <b>%2</b> %3<br> contra ele. <b>%4</b> votos necessários para chutar. @@ -2940,12 +3063,12 @@ Por favor tenha certeza de que está conectado a internet. Você tem <b>%1</b> %2 contra você.<br><b>%3</b> votos necessários para chutar. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Jogador <b>%1</b> tem <b>%2</b> %3<br> contra ele. <b>%4</b> votos necessários para chutar. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Têm <b>%1</b> %2 contra si.<br><b>%3</b> votos necessários para chutar. @@ -4278,20 +4401,20 @@ p, li { white-space: pre-wrap; } Imagens (*.png) - + Open Directory Abrir Pasta - + Select your flipside picture Selecionar sua imagem do lado oposto - - - - + + + + Settings Error Erro de Configuração @@ -4308,19 +4431,19 @@ Please select an valid directory! Por favor selecione um diretório valido! - + Images (*.png *.jpg *.gif) Imagens (*.png *.jpg *.gif) - - + + Blinds Error Erro de Blinds - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -4329,29 +4452,29 @@ This first-small-blind-value will be set to maximum allowed value. Esta primeira-small-blind-valor será configurada como valor máximo permitido. - + Dutch - Neerlandês + Neerlandês - + English - Inglês + Inglês - + French - Françes + Françes - + German - Alemão + Alemão - + Hungarian - Húngaro + Húngaro Norse @@ -4362,258 +4485,271 @@ Esta primeira-small-blind-valor será configurada como valor máximo permitido.< Português - + Russian - Russo + Russo - + Turkish - Turco + Turco - + Language Changed Idioma Alterado - + You have changed application language to %1. Please restart PokerTH to load new language! Alterou o idioma da aplicação para %1. Por favor reinicie o PokerTH para carregar o novo idioma! - + Italian - Italiano + Italiano - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Slovak - Esloveno + Esloveno - + The entered flipside picture doesn't exist. Please enter an valid picture! A imagem do lado oposto do baralho não existe.Por favor escolha uma imagem válida! - - + + The log file directory doesn't exist. Please select an valid directory! A pasta do ficheiro de registo não existe.Por favor selecione um diretório valido! - + Norwegian - Noruegues + Noruegues - + Spanish - Espanhol + Espanhol - + Bulgarian - Bulgaro + Bulgaro - + Polish - Polaco - - - - Chinese - Chinês + Polaco + Chinese + Chinês + + + Greek - Grego + Grego - + Swedish - Sueco + Sueco - + The entered server list address is not a valid URL. Please enter a valid server list address! O endereço do servidor não é uma URL válida. Por favor introduza um endereço válido! - - - Finnish - Finlandês - - - - Afrikaans - Afrikaans - - - - Catalan - Catalão - - - - Czech - Checo - - - - Danish - Dinamarquês - + Finnish + Finlandês + + + + Afrikaans + Afrikaans + + + + Catalan + Catalão + + + + Czech + Checo + + + + Danish + Dinamarquês + + Portuguese (Brazilian) - Português (Brazileiro) + Português (Brazileiro) - Portuguese (Portuguese) - Português (Português) + Português (Português) - + Tamil - Tâmil + Tâmil - - + + Maintainer Name Nome do técnico - - + + Maintainer EMail Email do técnico - - + + Create Date Data de Criação - + Windows Behaviour Comportamento da Janela - + scaleable escalável - + fixed fixado - + Minimum Size Tamanho mínimo - + Maximum Size Tamanho máximo - + Fixed Size Tamanho Fixo - + State Estado - + Please select your game table style Por favor selecione um estilo de jogo - + PokerTH game table styles (*.xml) Estilo de jogo do PokerTH (*.xml) - + Game Table Style Error Erro no estilo de jogo - + Selected game table style file is already in the list. Please select another one to add! O estilo de jogo selecionado já está na lista. Por favor escolha outro para adicionar! - + Game Table Style File Error Erro no ficheiro de estilos do jogo - + Could not load game table style file correctly. Style will not be placed into list! Não foi possivel carregar o ficheiro de estilos corretamente. Estilo não irá ser inserido na lista! - + Please select your card deck style Por favor selecione um estilo de cartas - + PokerTH card deck styles (*.xml) Estilo de cartas do PokerTH (*.xml) - + Card Deck Style Error Erro no Estilo de Cartas - + Selected card deck style file is already in the list. Please select another one to add! O estilo de cartas selecionado já está na lista. Por favor escolha outro para adicionar! - + Card Deck Style File Error Erro no Estilo de Cartas - + Could not load card deck style file correctly. Style will not be placed into list! Não foi possivel carregar o ficheiro de estilos de cartas corretamente. Estilo não irá ser inserido na lista! - + PokerTH - Log file PokerTH - Ficheiro de registo - + Do you really want to delete the selected log file? @@ -4622,12 +4758,12 @@ Style will not be placed into list! Tem a certeza que deseja apagar o ficheiro de registo seleccionado? - + Save PokerTH log file Guardar ficheiro de registo do PokerTH - + PokerTH SQL log (*.pdb) Registo SQL do PokerTH (*.pdb) @@ -4827,108 +4963,108 @@ Please choose another one. Por favor escolha outro. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Erro de Ligação - + Server address was not set. Endereço de servidor não foi definido. - + An invalid port was set (ports 0-1023 are not allowed). Porta inválida adicionada (portas 0-1023 não são permitidas). - + Could not create a socket for TCP communication. Não foi possível criar um socket para comunicação por TCP. - + Could not set the IP address. Não foi possível adicionar o endereço IP. - + Could not set the port for this type of address. Não foi possível adicionar a porta para este endereço. - + The server name could not be resolved. O nome do servidor não pode ser resovildo. - + Bind failed - please choose a different port. A ligação falhou - por favor escolha uma porta diferente. - + Internal network error: "listen" failed. Erro interno de rede: "listen" falhou. - + Server execution was terminated. Execusão do servidor foi terminada. - + Could not connect to the server. Não foi possível ligar ao servidor. - + Connection timed out. Please check the server address. @@ -4939,125 +5075,125 @@ Por favor verifique o endereço do servidor. Caso o servidor esteja atrás de um NAT-Router, tenha certeza de que a porta de reencaminhamento está configurada no lado do servidor. - + Internal network error: "select" failed. Erro interno de rede: "selecionar" falhou. - + Internal network error: "send" failed. Erro interno de rede: "enviar" falhou. - + Connection was closed by the server. Ligação fechada pelo servidor. - + Internal network error: Duplicate TCP connection. Erro interno de rede: Conexão TCP duplicada. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Um pacote inválido foi recebido. Por favor tenha certeza de que todos os jogadores usam a mesma versão do PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Erro interno de estado. Por favor tenha certeza de que todos os jogadores usam a mesma versão do PokerTH. - + Invalid server list URL. Please correct the address in the settings. Lista de URL servidor inválida. Por favor coloque o endereço correto nas configurações. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Impossivel abrir o ficheiro MD5 da lista de servidores. Por favor verifique que este e a lista de URL correta. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. A sincronização com a lista do servidor do PokerTH falhou. Por favor tenha certeza que a lista da URL é correta. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. A lista de servidores de PokerTH contém informação invalida. Se está a usar uma lista própria de servidores, por favor tenha certeza de que está no formato correto. - + Could not unzip the PokerTH internet server list. Não foi possível descompactar a lista de servidores do PokerTH. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Não foi possivel fazer o download da lista de servidores do PokerTH. Por favor tenha certeza de que está ligado à internet. - + Could not open the target file when downloading the server list. Não foi possivel abrir o ficheiro especifico quando realizou o download do servidor. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. O servidor do PokerTH não suporta esta versão do jogo.<br>Por favor vá para <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> e faça o download da última versão. - + Sorry, this server is already full. Desculpe, este servidor está cheio. - + Invalid login. Please check your username and password. Login inválido. Por favor verifique o seu nome de utilizador e palavra-passe. - + Your account is blocked indefinitely. A sua conta está bloqueada indefinidamente. - + You cannot login at this time. Please try again in a few seconds. Não pode efectuar o login agora. Por favor tente mais tarde. - + This game is of type invite-only. You cannot join this game without being invited. Este jogo é do tipo apenas-convidados. Não pode entrar neste jogo sem ser convidado. - + Invalid password when joining the game. Please reenter the password and try again. Senha inválida ao tentar entrar no jogo. Por favor redigite a senha e tente novamente. - + The password is too long. Please choose another one. A senha é muito longa. Por favor escolha outra. @@ -5072,67 +5208,67 @@ Por favor escolha um nome diferente. O nome do jogador é muito curto, longo ou invalido. Por favor escolha outro. - + The game name is either too short or too long. Please choose another one. O nome do jogo é muito curto ou longo. Por favor escolha outro. - + The game could not be found. O jogo não pode ser encontrado. - + The chat text is invalid. O texto do chat é invalido. - + The server referred to an unknown player. Aborting. O servidor refere-se a um jogador desconhecido. Abortando. - + Internal error: The current player could not be found. Erro interno: O jogador actual não pode ser encontrado. - + Internal error: The current player is not active. Erro interno: O jogador actual não está ativo. - + You were kicked from the server. Foi chutado do servidor. - + You were temporarily banned from the server. Está temporariamente banido deste servidor. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Sua ligação expirou devido à inatividade. É muito bem-vindo para religar! - + The client player count is invalid. A conta do cliente é invalida. - + Too many manual blinds were set. Please reconfigure the manual blinds. Muitos manual blinds configurados. Por favor reconfigure os blinds manuais. - + An invalid avatar file was configured. Please choose a different avatar. Um avatar invalido foi configurado. Por favor escolha outro. - + The selected avatar file is too large. Please choose a different avatar. O avatar selecionado é muito grande. Por favor escolha outro avatar. @@ -5141,81 +5277,81 @@ Por favor escolha um nome diferente. Não pode enviar um novo avatar neste momento. Tente novamente em alguns segundos. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Ocorreu um erro interno de avatar. Por favor reporte ao admin do lobby do chat. - + Could not start game: Synchronization failed. Não pode ser iniciado o jogo: Falha de Sincronização. - + The server is down for maintenance. Please try again later. O servidor está em baixo para manutenção. Por favor tente mais tarde. - + An internal error occured. Ocorreu um erro interno. - - - + - - - - - - + + + + + + + + Network Notification Notificação de Rede - + You were kicked from the game. Foi chutado do jogo. - + Sorry, this game is already full. Desculpe, este jogo está cheio. - + Unable to join - the server has already started the game. Impossível entrar - o servidor já começou o jogo. - + Your admin state timed out due to inactivity. Feel free to create a new game! Seu estado de admin expirou devido à inatividade. Sinta-se avontade para criar um novo jogo! - + You cannot join this type of game as guest. Não pode entrar neste jogo como convidado. - + The settings are invalid for this type of game. As definições estão inválidas para este tipo de jogo. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Uma nova versão do PokerTH está disponivel.<br>Por favor vá para <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> e faça o download da última versão. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Está versão beta do PokerTH está desatualizada.<br>Por favor vá para <a href="http://www.pokerth.net/"target="_blank">http://www.pokerth.net/<a/> e faça o download da última versão. - + Server Message Servidor de Mensagem diff --git a/ts/pokerth_ru.ts b/ts/pokerth_ru.ts index 36cb1c05..fc51659e 100644 --- a/ts/pokerth_ru.ts +++ b/ts/pokerth_ru.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -77,14 +78,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error Ошибка стиля игрового стола - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -97,12 +98,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -113,12 +114,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -128,27 +129,27 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. @@ -163,7 +164,7 @@ Please contact the game table style builder %4. Пожалуйста, свяжитесь с создателем стиля игрового стола %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -184,8 +185,8 @@ Please contact the game table style builder %3. Пожалуйста, свяжитесь с создателем стиля игрового стола %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Выбран файл стиля колоды вместо файл стиля игрового стола. @@ -311,7 +312,7 @@ Please contact the game table style builder %3. About О программе - + <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;"> @@ -340,7 +341,7 @@ 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;"></p></body></html> - + Project Проект @@ -387,80 +388,107 @@ 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;"> - сборка для MacOS</p></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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> - - - - + Translation Перевод - - <!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-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=" ">translator name - mail address</span></p></body></html> - - - - + Thanks to Благодарности - + <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + License Лицензия - + Close Закрыть @@ -520,7 +548,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; 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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -537,7 +565,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -633,7 +661,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.6-beta О программе PokerTH 0.6-beta - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -701,7 +729,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" 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;">Перевод на русский язык: dtiger, metavoid</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -718,8 +746,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay {6 ?} {4 ?} {2006-2008,?} - - + <!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; } @@ -731,7 +758,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -975,9 +1002,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1320,6 +1354,21 @@ Please choose another one! Fill up with computer opponents Заполнить компьютерными оппонентами + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Начать игру @@ -1518,46 +1567,46 @@ p, li { white-space: pre-wrap; } Вы хотите присоединиться к приватной игре. Пожалуйста, введите пароль! - - - - + + + + Game Info Информация об игре - + Server Error Ошибка сервера - + You should not kick yourself from this game! Вы не можете отключить себя от этой игры! - + Joining a private Game Присоединиться к закрытой игре - - - + + + Game Игра - - - + + + Players Игроки - - - + + + State Состояние @@ -1566,179 +1615,185 @@ p, li { white-space: pre-wrap; } Закрытая - + You are about to join a private game. Please enter the password! Вы хотите присоединиться к закрытой игре. Пожалуйста, введите пароль! - + running идет игра - + open открыта - - + + Connected players - + hands партий - + minutes минут - + double blinds удвоений ставок - + manual blinds order самостоятельное управление ставками - + Starting game. Please wait ... Старт игры. Пожалуйста, подождите... - + R - - - + + + P - - - + + + Available Players Доступные игроки - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - - + + running games: %1 Текущих игр: %1 - - + + open games: %1 Открытых игр: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1747,49 +1802,49 @@ Feel free to invite other players by right-clicking on their nick in the availab Игроков в чате: %1 - - + + connected players: %1 Подключенных игроков: %1 - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1813,17 +1868,17 @@ Feel free to invite other players by right-clicking on their nick in the availab QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Hands Комбинации - + Chat Чат - + Speed: Скорость: @@ -1832,7 +1887,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Стоп - + Log Журнал @@ -1845,110 +1900,110 @@ Feel free to invite other players by right-clicking on their nick in the availab Игра - + Start Local Game ... Начать локальную игру ... - + Ctrl+N Ctrl+N - + Quit Выход - + Ctrl+Q Ctrl+Q - + About PokerTH ... О программе PokerTH ... - + Settings ... Наcтройки ... - + Create Network Game ... Создать сетевую игру ... - + Join Network Game ... Присоединиться к сетевой игре ... - + Fullscreen Полноэкранный режим - + ⌘F ⌘F - + Show/Hide Chat Window Показать/Скрыть окно чата - + ⌘C ⌘C - + ⌘H ⌘H - + Show/Hide Log Window Показать/Скрыть окно журнала сообщений - + ⌘L ⌘L - - - + + + Show/Hide Hands Window Показать/Скрыть окно комбинаций - + Ctrl+O Ctrl+O - + Ctrl+J Ctrl+J - + Ctrl+F Ctrl+F - + Ctrl+T Ctrl+T - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L @@ -1961,12 +2016,12 @@ Feel free to invite other players by right-clicking on their nick in the availab Сетевая игра - + Internet Game ... Игра в Интернете ... - + Ctrl+I Ctrl+I @@ -1975,22 +2030,22 @@ Feel free to invite other players by right-clicking on their nick in the availab Ва-банк - + Away Режим отсутствия - + Manual Action (default) Самостоятельная игра (по умолчанию) - + Auto-Check / Auto-Fold Автопропуск / Автосброс - + Auto-Check / Auto-Call-Any Автопропуск / Автоответ @@ -2004,37 +2059,37 @@ Feel free to invite other players by right-clicking on their nick in the availab Вернуться в общую комнату - + Show/Hide Away Window Показать/Скрыть окно "Режим отсутствия" - + Ctrl+A Ctrl+A - + Kick Отключить - + Vote Timeout: Голосование истекает: - + Yes Да - + No Нет - + Chance Шансы @@ -2043,47 +2098,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Наcтройки - + Configure PokerTH ... Настройки - + Close Закрыть - + Ctrl+X - + Vote started by: Голосование начато : - + Show/Hide Chance Window Показывать/Скрывать Окно Шансов - + Ctrl+C Ctrl+C - + &View &Вид - + &Settings &Настройки - + Shortcut: <Shift> Быстро: <Shift> @@ -2091,14 +2146,14 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop Стоп @@ -2115,11 +2170,11 @@ Feel free to invite other players by right-clicking on their nick in the availab F1 - Сбросить/Ва-банк | F2 - Пропуск/Ответить | F3 - Ставка/Повысить - - - - - + + + + + Start Старт @@ -2288,7 +2343,7 @@ Please choose a different name. F1 - Ставка/Повысить | F2 - Пропуск/Ответить | F3 - Сбросить/Ва-банк - + Chat Чат @@ -2373,12 +2428,12 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Зайдите на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> и скачайте самую новую версию. - + Closing PokerTH during network game Закрытие PokerTH во время сетевой игры - + You are the hosting server. Do you want to close PokerTH anyway? Вы являетесь сервером игры. Вы точно хотите закрыть PokerTH? @@ -2395,14 +2450,14 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Эта бета-версия PokerTH устарела.<br>Зайдите на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> и скачайте самую свежую версию. - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Движок покера Texas Holdem c открытым кодом - - - + + + Lobby Общая комната @@ -2411,63 +2466,76 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Произошла ошибка при обработке аватары. Пожалуйста, сообщите об этом администратору в общей комнате. - + PokerTH - Internet Game Message PokerTH - Сообщение Игры в Интернете - + Attention! Do you really want to leave the current game and go back to the lobby? Внимание! Вы действительно хотите покинуть текущую игру и вернуться в общую комнату? - + Chance Шансы - + Kick Отключить - + Do you want to kick <b>%1</b><br>from this game? Вы действительно хотите отключить <b>%1</b><br>от игры? - - + + <b>%1</b> secs left <b>%1</b>сек. осталось - + vote голос - + votes голосов - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Игрок <b>%1</b> проголосовал против <b>%2</b> %3<br>. <b>%4</b> голоса(ов) необходимо для отключения. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. У вас <b>%1</b> %2 против вас.<br><b>%3</b> голоса(ов) необходимо для отключения. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3801,10 +3869,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Ошибка в настройках @@ -3821,7 +3889,7 @@ Please select an valid directory! Укажите правильный каталог! - + Select your flipside picture Выберите свою картинку рубашки карт @@ -3830,24 +3898,24 @@ Please select an valid directory! Картинки (*.png) - + Open Directory Открыть каталог - + Images (*.png *.jpg *.gif) Картинки (*.png *.jpg *.gif) - - + + Blinds Error Ошибка ставок - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3856,29 +3924,44 @@ This first-small-blind-value will be set to maximum allowed value. Значение начальной ставки будет установлено на максимально возможное значение. - + Dutch - Голландский - - - - English - Английский + Голландский - French - Французский + Afrikaans + - German - Немецкий + Catalan + + Czech + + + + + English + Английский + + + + French + Французский + + + + German + Немецкий + + + Hungarian - Венгерский + Венгерский Norse @@ -3889,274 +3972,272 @@ This first-small-blind-value will be set to maximum allowed value. Португальский - + Russian - Русский + Русский - + Turkish - Турецкий + Турецкий - + Language Changed Язык изменен - + You have changed application language to %1. Please restart PokerTH to load new language! Вы выбрали %1 язык. Закройте и запустите PokerTH заново! - + Italian - Итальянский + Итальянский - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Slovak - Словацкий + Словацкий - + + Tamil + + + + The entered flipside picture doesn't exist. Please enter an valid picture! Указанная картика рубашки карт не существует. Укажите правильную картинку! - - + + The log file directory doesn't exist. Please select an valid directory! Указанный каталог для лога не существует. Укажите правильный каталог! - + Norwegian - Норвежский + Норвежский - + Spanish - Испанский + Испанский - + Bulgarian - Болгарский + Болгарский - + Polish - Польский - - - - Chinese - Китайский + Польский + Chinese + Китайский + + + Greek - Греческий + Греческий - + Swedish - Шведский + Шведский - + The entered server list address is not a valid URL. Please enter a valid server list address! Введенный список серверов не является ссылкой. Введите правильный адрес! - + Finnish - Финский + Финский - - Afrikaans - - - - - Catalan - - - - - Czech - - - - + Danish - Датский + Датский - - Tamil - - - - - + + Maintainer Name Имя сопровождающего - - + + Maintainer EMail EMail сопровождающего - - + + Create Date Создать дату - + Windows Behaviour Оформление окна - + scaleable масштабируемый - + fixed фиксированная - + Minimum Size Минимальный размер - + Maximum Size Максимальный размер - + Fixed Size Фиксированный размер - + State Состояние - + Please select your game table style Пожалуйста, выберите стиль игрового стола - + PokerTH game table styles (*.xml) Стили столов PokerTH (*.xml) - + Game Table Style Error Ошибка стиля игрового стола - + Selected game table style file is already in the list. Please select another one to add! Выбранный стиль игрового стола уже в списке. Выберите еще один для добаления! - + Game Table Style File Error Ошибка файла стиля игрового стола - + Could not load game table style file correctly. Style will not be placed into list! Некоректный файл стиля игрового стола. Стиль не будет добавлен в список! - + Please select your card deck style Пожалуйста, выберите ваш стиль колоды - + PokerTH card deck styles (*.xml) Стили колоды PokerTH (*.xml) - + Card Deck Style Error Ошибка стиля колоды карт - + Selected card deck style file is already in the list. Please select another one to add! Выбранный стиль колоды уже в списке. Выберите еще один для добавления! - + Card Deck Style File Error Ошибка файла стиля колоды карт - + Could not load card deck style file correctly. Style will not be placed into list! Некорректный файл стиля колоды карт. Стиль не будет добавлен в список! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - Португальский (Бразильский) + Португальский (Бразильский) - Portuguese (Portuguese) - Португальский (Португальский) + Португальский (Португальский) @@ -4350,108 +4431,108 @@ Please choose another one. Выберите другое имя. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Сетевая ошибка - + Server address was not set. Не установлен адрес сервера. - + An invalid port was set (ports 0-1023 are not allowed). Указан неверный порт (диапазон 0-1023 не допускается). - + Could not create a socket for TCP communication. Не могу создать сокет для TCP-соединения. - + Could not set the IP address. Не могу установить IP адрес. - + Could not set the port for this type of address. Не могу установить порт для этого типа адреса. - + The server name could not be resolved. Не могу определить имя сервера. - + Bind failed - please choose a different port. Подключение на порт не удалось - выберите другой порт. - + Internal network error: "listen" failed. Внутренняя сетевая ошибка: неудачная команда "listen". - + Server execution was terminated. Работа сервера была прервана. - + Could not connect to the server. Не могу соединиться с сервером. - + Connection timed out. Please check the server address. @@ -4462,124 +4543,124 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up Если сервер находится за NAT-маршрутизатором, удостоверьтесь, что обращение к порту сервера разрешено. - + Internal network error: "select" failed. Внутренняя сетевая ошибка: неудачная команда "select". - + Internal network error: "send" failed. Внутренняя сетевая ошибка: неудачная команда"send". - + Connection was closed by the server. Соединение было закрыто сервером. - + Internal network error: Duplicate TCP connection. Внутренняя сетевая ошибка: двойное TCP-соединение. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Принят неверный сетевой пакет. Убедитесь, что все игроки используют одинаковую версию PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Ошибка внутреннего состояния. Убедитесь, что все игроки используют одинаковую версию PokerTH. - + Invalid server list URL. Please correct the address in the settings. Неверная ссылка на список серверов. Пожалуйста, поправбте адрес в настройках. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Не возможно открыть MD5 файл списка серверов. Убедитесь, что ссылка на список серверов верна. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. Синхронизация списка интернет серверов PokerTH неудачно завершилась. Убедитесь, что ссылка на список серверов верна. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. Список серверов PokerTH содержит неверные сведения. Если вы используете собственный список серверов, убедитесь, что формат корректен. - + Could not unzip the PokerTH internet server list. Невозможно распаковать список серверов PokerTH. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Не возможно скачать список интернет серверов PokerTH. Проверьте правильность подключения к интернет. - + Could not open the target file when downloading the server list. не возможно загрузить указанный файл во время загрузки списка серверов. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Сервер PokerTH не поддерживает эту версию игры.<br>Зайдите на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> и скачайте самую свежую версию. - + Sorry, this server is already full. Извините, сервер уже занят. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Неверный пароль при подключении. Введите пароль заново и подключитесь снова. - + The password is too long. Please choose another one. Слишком длинный пароль. Выберите другой. @@ -4594,67 +4675,67 @@ Please choose a different name. Имя игрока слишком длинное, слишком короткое или неправильное. Выберите другое имя. - + The game name is either too short or too long. Please choose another one. Название игры слишком длинное или слишком короткое. Выберите другое название. - + The game could not be found. Игра не найдена. - + The chat text is invalid. Тескт чата неверный. - + The server referred to an unknown player. Aborting. Сервер обращается к неизвестному игроку. Остановка. - + Internal error: The current player could not be found. Внутренняя ошибка: Текущий игрок не найден. - + Internal error: The current player is not active. Внутренняя ошибка: Текущий игрок не активен. - + You were kicked from the server. Вы были отключены от сервера. - + You were temporarily banned from the server. Вы были временно забанены на сервере. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Ваше соединение с сервером более не активно. Перезайдите! - + The client player count is invalid. Неверное количество игроков на сервере. - + Too many manual blinds were set. Please reconfigure the manual blinds. Слишком много самостоятельных ставок. Пересмотрите список ставок. - + An invalid avatar file was configured. Please choose a different avatar. Указан неверный файл аватары. Задайте другую аватару. - + The selected avatar file is too large. Please choose a different avatar. Выбранный файл аватары слишком большой. Задайте другую аватару. @@ -4663,81 +4744,81 @@ Please choose a different name. Вы не можете загрузить файл аватары в данный момент. Попробуйте через пару секунд. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Произошла ошибка при обработке аватары. Пожалуйста, сообщите об этом администратору в общей комнате. - + Could not start game: Synchronization failed. Не могу начать игру: Синхронизация не удалась. - + The server is down for maintenance. Please try again later. Сервер находится на техобслуживании. Попробуйте позже. - + An internal error occured. Произошла внутренняя ошибка. - - - + - - - - - - + + + + + + + + Network Notification Сетевое предупреждение - + You were kicked from the game. Вы были отключены от игры. - + Sorry, this game is already full. Извините, все места в игре уже заняты. - + Unable to join - the server has already started the game. Подключение невозможно - игра уже начата. - + Your admin state timed out due to inactivity. Feel free to create a new game! Ваша игра слишком долго была неактивна. Создайте новую игру! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Вышла новая версия PokerTH.<br>Зайдите на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> и скачайте самую свежую версию. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Эта бета-версия PokerTH устарела.<br>Зайдите на <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> и скачайте самую свежую версию. - + Server Message Сообщение сервера diff --git a/ts/pokerth_sk.ts b/ts/pokerth_sk.ts index 59ddf490..71cbfb54 100644 --- a/ts/pokerth_sk.ts +++ b/ts/pokerth_sk.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -100,14 +101,14 @@ Prosím, vyberte štýl kariet a skúste to znovu! GameTableStyleReader - - - + + + Game Table Style Error Chyba v súbore so štýlom herného stola - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -128,12 +129,12 @@ Môžete pokračovať v hre pri použití tohto štýlu, ale chýbajúci obsah b Prosím, kontaktujte autora štýlu herného stola na "%3". - + Game Table Style Error - Fields content missing Chyba v súbore so štýlom herného stola - Chýbajúci obsah poľa - + One or more pictures from current game table style "%1" were not found: %2 @@ -150,12 +151,12 @@ Môžete však použiť na hru tento štýl, pretože chýbajúci obsah bude vyp Prosím, kontaktujte autora štýlu herného stola na "%3". - + Game Table Style Error - Pictures missing Chyba v súbore so štýlom herného stola - Chýbajúce obrázky - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -170,27 +171,27 @@ Môžete však použiť na hru tento štýl, pretože chýbajúci obsah bude vyp Prosím, kontaktujte autora štýlu herného stola na "%4". - + Game Table Style Error - Outdated Chyba štýlu herného stola - Neaktuálny - + Everything OK! Všetko je OK! - + Some pictures are missing, please contact style maintainer for this issue. Nejaké obrázky chýbajú, prosím, kontaktujte správcu štýlu pre vyriešenie tohto problému. - + Some style fields are missing, please contact style maintainer for this issue. Nejaké polia štýlu chýbajú, prosím, kontaktujte správcu štýlu kvôli tomuto problému. - + This style is outdated, please contact style maintainer for this issue. Tento štýl nie je aktuálny, prosím, kontaktujte správcu štýlu. @@ -205,7 +206,7 @@ Please contact the game table style builder %4. Prosím, napíšte zostaviteľovi herného stola %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -226,8 +227,8 @@ Hodnota(y) "%2" chýba(jú). Prosím, napíšte zostaviteľovi herného stola %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! Vybrali ste štýl kariet miesto štýlu herného stola. @@ -357,7 +358,7 @@ Prosím, napíšte zostaviteľovi štýlu herného stola %3. About O - + <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;"> @@ -386,12 +387,11 @@ 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;"></p></body></html> - + Project Projekt - <!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; } @@ -411,7 +411,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -432,18 +432,17 @@ 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=" "> - úvodný návrh grafiky gui</span></p></body></html> - + Translation Preklad - <!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-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=" ">translator name - mail address</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -462,12 +461,11 @@ 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;"> jose1711@gmail.com</p></body></html> - + Thanks to Poďakovanie - <!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; } @@ -490,7 +488,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -514,12 +512,97 @@ 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=" "> - za moderovanie fóra a spravovanie bug trackera a želaní užívateľov</span></p></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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + License Licencia - + Close Zavrieť @@ -537,7 +620,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; 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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -554,7 +637,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -748,7 +831,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; 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-size:12pt; font-weight:600;">PokerTH 0.6-beta</span></p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -849,7 +932,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-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;"> - za ním nahrané zvuky žetónov</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -996,8 +1079,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-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;"> - za grafiku na pozadí úvodného okna</p></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; } @@ -1009,7 +1091,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -1196,9 +1278,16 @@ Prosím, zvoľte si iný názov! + Game name: Názovy hry: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1521,6 +1610,21 @@ Prosím, zvoľte si iný názov! Fill up with computer opponents Vyplniť počitačovými súpermi + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Spustiť hru @@ -1718,46 +1822,46 @@ p, li { white-space: pre-wrap; } hra - - - - + + + + Game Info Info o hre - + Server Error Chyba servera - + You should not kick yourself from this game! Nemali by ste z tejto hry vykopnúť sám seba! - + Joining a private Game Pripájam sa k súkromnej hre - - - + + + Game Hra - - - + + + Players Hráči - - - + + + State Stav @@ -1766,180 +1870,186 @@ p, li { white-space: pre-wrap; } Súkromný - + You are about to join a private game. Please enter the password! Chcete sa pripojiť k súkromnej hre. Prosím zadajte heslo! - + running spúšťam - + open otvorená - - + + Connected players Pripojení hráči - + hands rozdania - + minutes minúty - + double blinds dvojité stávky - + manual blinds order ručné stanovenie stávok - + Starting game. Please wait ... Spúšťam hru. Prosím čakajte... - + R R - - - + + + P - - - + + + Available Players Dostupní hráči - + Invite player Pozvať hráča - + Ignore player Ignorovať hráča - + Player infos ... Informácie o hráčovi ... - - - + + + Standard Štandardná - - - + + + Registered players only Iba registrovaní hráči - - - + + + Invited players only Iba pozvaní hráči - - - + + + Ranking game Vyhodnocovaná hra - + Connected players - max. %1 Pripojení hráči - max. %1 - - + + T - + Connected players - Max. %1 Pripojení hráči - Max. %1 - - + + running games: %1 spustené hry: %1 - - + + open games: %1 otvorené hry: %1 - + Invite %1 Pozvať %1 - + Ignore %1 Ignorovať %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> <span style='color:blue;'>%1 bol(a) pozvaný(á) k %2 užívateľom %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> <span style='color:red;'>%1 odmietol pozvanie k %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> <span style='color:red;'>%1 sa nemôže pridať k %2, pretože je zaneprázdnený.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. Pridali ste sa k hre, ktorej typ je "len na pozvánku". Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich priezvisko v zozname dostupných hráčov. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? Prišla vám pozvánka ku hre <b>%1</b> od <b>%2</b>.<br>Želáte si pridať sa k tejto hre? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? Od tohto užívateľa už neobdržíte správy v chate alebo pozvánky do hry.<br>Naozaj si prajete pridať hráča <b>%1</b> do zoznamu ignorovaných? @@ -1948,49 +2058,49 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie hráči na chate: %1 - - + + connected players: %1 pripojení hráči: %1 - + search for player ... hľadanie hráča... - + Chat is only available to registered players. Chat je dostupný len registrovaným hráčom. - + Invite player ... Pozvať hráča... - + Ignore player ... Ignorovať hráča... - + %1 is playing in "%2". %1 hrá v "%2". - + %1 is not playing at the moment. %1 momentálne nehrá. - - + + PokerTH - Info Message PokerTH - Informačná správa - + PokerTH - Question PokerTH - Otázka @@ -2014,22 +2124,22 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Hands Rozdania - + Chat Chat - + Log Záznam - + Speed: Rýchlosť: @@ -2046,110 +2156,110 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie Hra - + Start Local Game ... Spustiť lokálnu hru... - + Ctrl+N Ctrl+N - + Quit Ukončiť - + Ctrl+Q Ctrl+Q - + About PokerTH ... O PokerTH... - + Settings ... Nastavenia... - + Create Network Game ... Vytvoriť sieťovú hru... - + Join Network Game ... Pripojiť sa k sieťovej hre... - + Fullscreen Celá obrazovka - + ⌘F ⌘F - + Show/Hide Chat Window Zobraziť/skryť okno chatu - + ⌘C ⌘C - + ⌘H ⌘H - + Show/Hide Log Window Zobraziť/skryť okno s logmi - + ⌘L ⌘L - - - + + + Show/Hide Hands Window Zobraziť/skryť okno rozdaní - + Ctrl+O Ctrl+O - + Ctrl+J Ctrl+J - + Ctrl+F Ctrl+F - + Ctrl+T Ctrl+T - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L @@ -2162,12 +2272,12 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie Sieťová hra - + Internet Game ... Internetová hra... - + Ctrl+I Ctrl+I @@ -2176,22 +2286,22 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie Vsadiť všetko - + Away Preč - + Manual Action (default) Manuálna akcia (východzie) - + Auto-Check / Auto-Fold Auto-Ok / Auto-Zložiť - + Auto-Check / Auto-Call-Any Auto-Ok / Auto-Dorovnať-čokoľvek @@ -2201,37 +2311,37 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie PokerTH 0.6-beta - Open-source Engine pre Texas Holdem - + Show/Hide Away Window Zobraziť/skryť okno neprítomnosti - + Ctrl+A Ctrl+A - + Kick Vykopnúť - + Vote Timeout: Čas pre hlasovanie: - + Yes Áno - + No Nie - + Chance Šanca @@ -2240,47 +2350,47 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie Nastavenia - + Configure PokerTH ... Nastaviť PokerTH ... - + Close Zavrieť - + Ctrl+X Ctrl+X - + Vote started by: Hlasovanie navrhol(la): - + Show/Hide Chance Window Zobraziť/skryť okno so šancou - + Ctrl+C Ctrl+C - + &View &Zobraziť - + &Settings &Nastavenia - + Shortcut: <Shift> Skratka: <Shift> @@ -2288,14 +2398,14 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie gameTableImpl - - - - - - - - + + + + + + + + Stop Zastaviť @@ -2312,11 +2422,11 @@ Môžete pozývať ďalších hráčov kliknutím pravým tlačidlom na ich prie F1 - Zložiť karty/Vsadiť všetko | F2 - Zdržať sa/Dorovnať | F3 - Stávka/Zvýšiť - - - - - + + + + + Start Štart @@ -2477,7 +2587,7 @@ Prosím, vyberte si iné meno. Ľutujem, táto hra je už plná. - + Chat Chat @@ -2562,12 +2672,12 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Prosím navštívte <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> a stiahnite najnovšiu verziu. - + Closing PokerTH during network game Zatváram PokerTH počas sieťovej hry - + You are the hosting server. Do you want to close PokerTH anyway? Vy ste hosťujúci server. Chcete ukončiť PokerTH i napriek tomu? @@ -2584,14 +2694,14 @@ Prosím navštívte <a href="http://www.pokerth.net/" target=" Táto betaverzia PokerTH je zastaralá.<br>Prosím navštívte <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> a stiahnite si najnovšiu verziu. - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Open-Source Texas Holdem Engine - - - + + + Lobby Lobby @@ -2600,12 +2710,12 @@ Prosím navštívte <a href="http://www.pokerth.net/" target=" Došlo k internej chybe avatara. Prosím nahláste ju adminovi v lobby chate. - + PokerTH - Internet Game Message PokerTH - Správa hry na internete - + Attention! Do you really want to leave the current game and go back to the lobby? Upozornenie! Určite chcete opustiť momentálnu hru @@ -2666,41 +2776,54 @@ Uistite sa, prosím, že ste pripojený priamo na internet. Nepodarilo sa otvoriť cieľový súbor pri sťahovaní zoznamu serverov. - + Chance Šanca - + Kick Vykopnúť - + Do you want to kick <b>%1</b><br>from this game? Želáte si vykopnúť <b>%1</b><br>z tejto hry? - - + + <b>%1</b> secs left zostáva <b>%1</b> sekúnd - + vote hlas - + votes hlasy(ov) - + Chat is only available to registered players. Chat je dostupný len registrovaným hráčom. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> votes needed to kick. Proti hráčovi <b>%1</b> bol(o) <b>%2</b> <b>%3</b>.<br><b>Na vykopnutie treba <b>%4</b>. @@ -2710,12 +2833,12 @@ Uistite sa, prosím, že ste pripojený priamo na internet. Proti vám bol(o) <b>%1</b> %2.<br><b>%3</b> hlasov je treba na vykopnutie. - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. Hráč <b>%1</b> má <b>%2</b> %3<br>proti. Na vykopnutie je potrebných <b>%4</b> hlasy(ov). - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. Je proti vám <b>%1</b> %2. <br><b>Na vykopnutie je potrebných <b>%3</b> hlasy(ov). @@ -4036,10 +4159,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Chyba v nastaveniach @@ -4056,7 +4179,7 @@ Please select an valid directory! Prosím, vyberte platný adresár! - + Select your flipside picture Vyberte si obrázok pre rub kariet @@ -4065,24 +4188,24 @@ Prosím, vyberte platný adresár! Obrázky (*.png) - + Open Directory Otvoriť adresár - + Images (*.png *.jpg *.gif) Obrázky (*.png *.jpg *.gif) - - + + Blinds Error Chyba stávok - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -4091,29 +4214,34 @@ je menší ako momentálna prvá malá stávka! Hodnota prvej malej stávky bude nastavená na maximálnu možnú úroveň. - + + Do you really want to delete the selected log file? + + + + Dutch - Holandsky + Holandsky - + English - Anglicky + Anglicky - + French - Francúzsky + Francúzsky - + German - Nemecky + Nemecky - + Hungarian - Maďarsky + Maďarsky Norse @@ -4124,274 +4252,286 @@ Hodnota prvej malej stávky bude nastavená na maximálnu možnú úroveň.Portugalsky - + Russian - Rusky + Rusky - + Turkish - Turecky + Turecky - + Language Changed Zmenený jazyk - + You have changed application language to %1. Please restart PokerTH to load new language! Zmenili ste jazyk aplikácie na %1. Prosím reštartujte PokerTH pre načítanie nového jazyka! - + Italian - Taliansky + Taliansky - + Slovak - Slovensky + Slovensky - + The entered flipside picture doesn't exist. Please enter an valid picture! Zadaný obrázok pre rub karty neexistuje. Prosím zadajte platný obrázok! - - + + The log file directory doesn't exist. Please select an valid directory! Adresár pre súbor s logmi neexistuje. Prosím zadajte platný adresár! - + Norwegian - Nórsky + Nórsky - + Spanish - Španielsky + Španielsky - + Bulgarian - Bulharsky + Bulharsky - + Polish - Poľsky - - - - Chinese - Čínsky + Poľsky + Chinese + Čínsky + + + Greek - Grécky + Grécky - + Swedish - Švédsky + Švédsky - + The entered server list address is not a valid URL. Please enter a valid server list address! Zadaná adresa zoznamu serverov nie je platná URL. Zadajte, prosím, platnú adresu zoznamu serverov! - + Finnish - Fínsky + Fínsky - + Afrikaans - Afrikaansky + Afrikaansky - + Catalan - Katalánsky + Katalánsky - + Czech - Česky + Česky - + Danish - Dánsky + Dánsky - Tamil - Tamilsky + Lithuania + - - + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Tamil + Tamilsky + + + + Maintainer Name Meno správcu - - + + Maintainer EMail E-mail správcu - - + + Create Date Dátum vytvorenia - + Windows Behaviour Správanie okien - + scaleable škálovateľný - + fixed fixná veľkosť - + Minimum Size Minimálne rozmery - + Maximum Size Maximálne rozmery - + Fixed Size Fixné rozmery - + State Stav - + Please select your game table style Prosím, vyberte si váš štýl herného stola - + PokerTH game table styles (*.xml) Štýly herných stolov PokerTH (*.xml) - + Game Table Style Error Chyba v štýle herného stola - + Selected game table style file is already in the list. Please select another one to add! Vybraný súbor so štýlom herného stola je už v zozname. Prosím, zvoľte si iný štýl na pridanie! - + Game Table Style File Error Chyba v súbore so štýlom herného stola - + Could not load game table style file correctly. Style will not be placed into list! Nepodarilo sa korektne načítať súbor so štýlom herného stola. Štýl nebude pridaný do zoznamu! - + Please select your card deck style Prosím, vyberte si váš štýl kariet - + PokerTH card deck styles (*.xml) Štýly kariet PokerTH (*.xml) - + Card Deck Style Error Chyba v štýle kariet - + Selected card deck style file is already in the list. Please select another one to add! Vybraný súbor so štýlom kariet je už v zozname. Prosím, zvoľte si iný štýl na pridanie! - + Card Deck Style File Error Chyba v súbore so štýlom kariet - + Could not load card deck style file correctly. Style will not be placed into list! Nepodarilo sa korektne načítať súbor so štýlom kariet. Štýl nebude pridaný do zoznamu! - + PokerTH - Log file PokerTH - Súbor so záznamom - Do you really want to delete the seleted log file? - Naozaj chcete vymazať vybraný súbor so záznamom? + Naozaj chcete vymazať vybraný súbor so záznamom? - + Save PokerTH log file Uložiť súbor so záznamom PokerTH - + PokerTH SQL log (*.pdb) PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - Portugalsky (Brazília) + Portugalsky (Brazília) - Portuguese (Portuguese) - Portugalsky (Portugalsko) + Portugalsky (Portugalsko) @@ -4585,108 +4725,108 @@ Please choose another one. Prosím vyberte si inú prezývku. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Chyba siete - + Server address was not set. Adresa servera nebola nastavená. - + An invalid port was set (ports 0-1023 are not allowed). Bol nastavený neplatný port (nie sú povolené porty 0-1023). - + Could not create a socket for TCP communication. Nepodarilo sa vytvoriť socket pre komunikáciu TCP. - + Could not set the IP address. Nepodarilo sa nastaviť IP adresu. - + Could not set the port for this type of address. Nepodarilo sa nastaviť port pre tento typ adresy. - + The server name could not be resolved. Meno servera sa nepodarilo resolvnúť. - + Bind failed - please choose a different port. Bind zlyhal - prosím, vyberte iný port. - + Internal network error: "listen" failed. Interná chyba siete: "listen" zlyhalo. - + Server execution was terminated. Spustenie servera bolo zrušené. - + Could not connect to the server. Nepodarilo sa pripojiť k serveru. - + Connection timed out. Please check the server address. @@ -4697,125 +4837,125 @@ Prosím, skontrolujte adresu serveru. Ak je server za NAT routrom, ubezpečte sa, že je na strane servera zapnuté presmerovanie portov (port forwarding). - + Internal network error: "select" failed. Interná chyba siete: "select" zlyhalo. - + Internal network error: "send" failed. Interná chyba siete: "send" zlyhalo. - + Connection was closed by the server. Spojenie bolo uzatvorené serverom. - + Internal network error: Duplicate TCP connection. Interná chyba siete: Duplikované TCP spojenie. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Bol prijatý neplatný sieťový paket. Prosím, uistite sa, že všetci hráči používajú rovnakú verziu PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Chyba interného stavu. Prosím, uistite sa, že všetci hráči používajú rovnakú verziu PokerTH. - + Invalid server list URL. Please correct the address in the settings. Neplatné URL zoznamu serverov. Prosím, opravte adresu v nastaveniach. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Nepodarilo sa otvoriť MD5 súbor zoznamu serverov. Uistite sa, prosím, že URL zoznamu serverov je správna. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. Synchronizácia zoznamu internetových serverov PokerTH zlyhala. Uistite sa, prosím, že URL zoznamu serverov je správna. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. Zoznam internetových serverov PokerTH obsahuje neplatné údaje. Ak používate vlastný zoznam serverov, uistite sa, prosím, že má správny formát. - + Could not unzip the PokerTH internet server list. Nepodarilo sa rozzipovať zoznam internetových serverov PokerTH. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. Nepodarilo sa stiahnuť zoznam internetových serverov PokerTH. Uistite sa, prosím, že ste pripojený priamo na internet. - + Could not open the target file when downloading the server list. Nepodarilo sa otvoriť cieľový súbor pri sťahovaní zoznamu serverov. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH server nepodporuje túto verziu hry.<br>Prosím navštívte <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> a stiahnite najnovšiu verziu. - + Sorry, this server is already full. Ľutujem, tento server je už plný. - + Invalid login. Please check your username and password. Neplatný login. Prosím, skontrolujte meno užívateľa a heslo. - + Your account is blocked indefinitely. Váš účet je trvalo blokovaný. - + You cannot login at this time. Please try again in a few seconds. Prihlásenie nie je v tejto chvíli možné. Skúste to, prosím, znovu o niekoľko sekúnd. - + This game is of type invite-only. You cannot join this game without being invited. Tento typ hry je len na pozvánku. Nemôžete sa pridať k tejto hre bez toho, aby vás niekto pozval. - + Invalid password when joining the game. Please reenter the password and try again. Neplatné heslo pri pripájaní sa k hre. Prosím, skúste to znovu. - + The password is too long. Please choose another one. Heslo je príliš dlhé. Prosím, zvoľte si iné heslo. @@ -4830,67 +4970,67 @@ Prosím, vyberte si iné meno. Meno hráča je príliš krátke, príliš dlhé alebo neplatné. Prosím vyberte iné. - + The game name is either too short or too long. Please choose another one. Názov hry je buď príliš krátky alebo príliš dlhý. Prosím zvoľte iný názov. - + The game could not be found. Hru sa nepodarilo nájsť. - + The chat text is invalid. Text chatu je neplatný. - + The server referred to an unknown player. Aborting. Server sa odvolal na neznámeho hráča. Ukončujem. - + Internal error: The current player could not be found. Interná chyba: Nepodarilo sa nájsť aktuálneho hráča. - + Internal error: The current player is not active. Interná chyba: Aktuálny hráč nie je aktívny. - + You were kicked from the server. Boli ste vykopnutý zo serveru. - + You were temporarily banned from the server. Boli ste dočasne zablokovaný na serveri. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Vaše pripojenie k serveru vypršalo z dôvodu neaaktivity. Stačí sa len znovu pripojiť! - + The client player count is invalid. Počet hráčov klienta je neplatný. - + Too many manual blinds were set. Please reconfigure the manual blinds. Bolo nastavených priliš veľa manuálnych stávok. Prosím upravte nastavenia manuálnych stávok. - + An invalid avatar file was configured. Please choose a different avatar. Bol nastavený neplatný súbor s avatarom. Prosím vyberte iného avatara. - + The selected avatar file is too large. Please choose a different avatar. Vybraný súbor s avatarom je príliš veľký. Prosím vyberte iného avatara. @@ -4899,81 +5039,81 @@ Prosím, vyberte si iné meno. Teraz nemôžete uploadovať nový súbor s avatarom. Skúste to, prosím, o niekoľko sekúnd. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Došlo k internej chybe avatara. Prosím nahláste ju adminovi v lobby chate. - + Could not start game: Synchronization failed. Nepodarilo sa spustiť hru: Zlyhala synchronizácia. - + The server is down for maintenance. Please try again later. Server je mimo prevádzky kvôli údržbe. Prosím skúste to neskôr. - + An internal error occured. Nastala interná chyba. - - - + - - - - - - + + + + + + + + Network Notification Sieťová notifikácia - + You were kicked from the game. Boli ste vykopnutý z hry. - + Sorry, this game is already full. Ľutujem, táto hra je už plná. - + Unable to join - the server has already started the game. Nepodarilo sa pripojiť k hre - na serveri už začala hra. - + Your admin state timed out due to inactivity. Feel free to create a new game! Vaše administrátorský stav vypršal z dôvodu neaktivity. Kedykoľvek môžete vytvoriť novú hru! - + You cannot join this type of game as guest. K tejto hre sa nemôžete pripojiť ako hosť. - + The settings are invalid for this type of game. Nastavenia sú neplatné pre tento typ hry. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Je dostupné nové vydanie PokerTH.<br>Prosím navštívte <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> a stiahnite si najnovšiu verziu. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Táto betaverzia PokerTH je zastaralá.<br>Prosím navštívte <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> a stiahnite si najnovšiu verziu. - + Server Message Správa serveru diff --git a/ts/pokerth_sv.ts b/ts/pokerth_sv.ts index 46beabff..f33997d7 100644 --- a/ts/pokerth_sv.ts +++ b/ts/pokerth_sv.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -65,14 +66,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -85,12 +86,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -101,12 +102,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -116,40 +117,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -246,7 +247,7 @@ Please select a game table style and try again! About Om - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -263,90 +264,117 @@ Please select a game table style and try again! - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project Projekt - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + Translation Översättning - - <!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-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=" ">translator name - mail address</span></p></body></html> - - - - + Thanks to Tack till - - <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - + License Licens - + Close Stäng @@ -438,7 +466,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-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;"> - för nyskapade ljudklipp</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -455,21 +483,6 @@ p, li { white-space: pre-wrap; } {6 ?} {4 ?} {2006-2008,?} - - - <!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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> - - aboutPokerthImpl @@ -632,9 +645,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -959,6 +979,21 @@ Please choose another one! Fill up with computer opponents Fyll ut med dator-spelare + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Starta spel @@ -1107,7 +1142,7 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... Startar spel. Vänligen vänta ... @@ -1116,46 +1151,46 @@ p, li { white-space: pre-wrap; } %1s spel - + Joining a private Game Ansluter till privat spel - + You are about to join a private game. Please enter the password! Du ansluter till ett privat parti. Vänligen ange lösenordet. - + open öppet - - - - + + + + Game Info Spelinformation - - - + + + Game - - - + + + Players Spelare - - - + + + State Status @@ -1164,138 +1199,144 @@ p, li { white-space: pre-wrap; } Privat - + R - - - + + + P - - - + + + Available Players Tillgängliga spelare - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - + running aktivt - - + + running games: %1 aktiva spel: %1 - - + + open games: %1 öppna spel: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1304,85 +1345,85 @@ Feel free to invite other players by right-clicking on their nick in the availab Spelare i chatten: %1 - - + + connected players: %1 Anslutna spelare: %1 - - + + Connected players - + hands händer - + minutes minuter - + double blinds Dubbla mörkar vid höjning - + manual blinds order Manuell mörk-ordning - + Server Error Serverfel - + You should not kick yourself from this game! Du borde inte kicka dig själv från spelet! - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1395,42 +1436,42 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - Den öppna pokermotorn för Texas Hold'em - + Hands Kombinationer - + Chat Chatt - + Log Logg - + Away Frånvarande - + Manual Action (default) Manuell handling (förval) - + Auto-Check / Auto-Fold Automatiskt Passa / Lägga sig - + Auto-Check / Auto-Call-Any Automatiskt Passa / Syna Allt - + Speed: Hastighet: @@ -1447,139 +1488,139 @@ Feel free to invite other players by right-clicking on their nick in the availab Nätverksspel - + Start Local Game ... Starta lokalt spel - + Ctrl+N Ctrl+N - + Quit Avsluta - + Ctrl+Q Ctrl+Q - + About PokerTH ... Om PokerTH - + Settings ... Inställningar - + Create Network Game ... Skapa nätverks-spel - + Ctrl+O Ctrl+O - + Join Network Game ... Anslut till nätverks-spel - + Ctrl+J Ctrl+J - + Fullscreen Helskärm - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Visa/Göm chatten - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window Visa/Göm kombinationer - + Ctrl+H Ctrl+H - + Show/Hide Log Window Visa/Göm loggen - + Ctrl+L Ctrl+L - + Internet Game ... Internetspel - + Ctrl+I Ctrl+I - + Show/Hide Away Window Visa/Göm Frånvaro-fönstret - + Ctrl+A Ctrl+A - + Kick - + Vote Timeout: - + Yes - + No - + Chance @@ -1588,47 +1629,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Inställningar - + Configure PokerTH ... - + Close Stäng - + Ctrl+X - + Vote started by: - + Show/Hide Chance Window - + Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -1636,14 +1677,14 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTableImpl - - - - - - - - + + + + + + + + Stop Sluta @@ -1656,7 +1697,7 @@ Feel free to invite other players by right-clicking on their nick in the availab Ctrl+N för att starta ett nytt spel - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Den öppna pokermotorn för Texas Hold'em @@ -1675,18 +1716,18 @@ Välj ett nytt namn. F1 - "All in" (Satsa allt) | F2 - Satsa/Höj | F3 - Pass/Syn | F4 - Lägg - - - - - + + + + + Start Starta - - - + + + Lobby Lobby @@ -1897,78 +1938,91 @@ Vänligen välj ett nytt namn. Automatiskt läge valt: Pass eller Lägg. - + Chat Chatt - + Closing PokerTH during network game Stänger PokerTH under nätverksspel - + You are the hosting server. Do you want to close PokerTH anyway? Du är värdserver för spelet, vill du stänga ner i alla fall? - + PokerTH - Internet Game Message PokerTH - Internetspels-meddelande - + Attention! Do you really want to leave the current game and go back to the lobby? OBS! Vill du verkligen lämna det nuvarande spelet och återvända till lobbyn? - + Chance - + Kick - + Do you want to kick <b>%1</b><br>from this game? - - + + <b>%1</b> secs left - + vote - + votes - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3128,124 +3182,124 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - Holländska - - - - English - Engelska - - - - French - Franska - - - - German - Tyska - - - - Hungarian - Ungerska - - - - Italian - Italienska - + Dutch + Holländska + + + + English + Engelska + + + + French + Franska + + + + German + Tyska + + + + Hungarian + Ungerska + + + + Italian + Italienska + + + Norwegian - Norska + Norska Portuguese Portugisiska - + Russian - Ryska + Ryska - + Slovak - Slovakiska + Slovakiska - + Spanish - Spanska + Spanska - + Turkish - Turkiska + Turkiska - - - - + + + + Settings Error Inställningsfel - + The entered flipside picture doesn't exist. Please enter an valid picture! Den angivna kortbilden finns inte. Välj en giltig bild. - - + + The log file directory doesn't exist. Please select an valid directory! Den angivna mappen finns inte. Välj en giltig mapp för loggfiler. - + Language Changed Nytt språk valt - + You have changed application language to %1. Please restart PokerTH to load new language! Du har bytt språk till %1. Starta om PokerTH för att se förändringen. - + Select your flipside picture Välj bild för kortens baksida - + Images (*.png *.jpg *.gif) Bilder (*.png *.jpg *.gif) - + Open Directory Öppna mapp - - + + Blinds Error Mörk-fel - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3254,213 +3308,218 @@ This first-small-blind-value will be set to maximum allowed value. Det kommer sättas till det maximalt tillåtna värdet. - + Bulgarian - Bulgariska + Bulgariska - - Polish - Polska + + Afrikaans + - - Chinese + + Catalan + Chinese + + + + + Czech + + + + + Danish + + + + + Finnish + + + + Greek - + + Lithuania + + + + + Polish + Polska + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Swedish - + + Tamil + + + + The entered server list address is not a valid URL. Please enter a valid server list address! - - Finnish - - - - - Afrikaans - - - - - Catalan - - - - - Czech - - - - - Danish - - - - - Tamil - - - - - + + Maintainer Name - - + + Maintainer EMail - - + + Create Date - + Windows Behaviour - + scaleable - + fixed - + Minimum Size - + Maximum Size - + Fixed Size - + State Status - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -3645,108 +3704,108 @@ Please choose another one. Välj ett nytt namn. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Nätverksfel - + Server address was not set. Ingen server-adress angiven - + An invalid port was set (ports 0-1023 are not allowed). En ogiltig port var angiven (port 0-1023 är ogiltig). - + Could not create a socket for TCP communication. Kunde inte etablera TCP-kommunikation. - + Could not set the IP address. Kunde inte bestämma IP-adress. - + Could not set the port for this type of address. Kunde inte ställa in porten för den här typen av adress. - + The server name could not be resolved. Kunde inte koppla servernamnet till en IP-adress. - + Bind failed - please choose a different port. Uppkoppling misslyckades, vänligen välj en annan port. - + Internal network error: "listen" failed. Internt nätverksfel: "listen" misslyckades. - + Server execution was terminated. Servern avslutade oväntat. - + Could not connect to the server. Kunde inte ansluta till servern. - + Connection timed out. Please check the server address. @@ -3757,119 +3816,119 @@ Vänligen kontrollera serveradressen. Om servern befinner sig bakom en NAT-router, försäkra dig om att serverns portar har blivit korrekt inställda. - + Internal network error: "select" failed. Internt nätverksfel: "select" misslyckades. - + Internal network error: "send" failed. Internt nätverksfel: "send" misslyckades. - + Connection was closed by the server. Anslutningen avbröts av servern. - + Internal network error: Duplicate TCP connection. Internt nätverksfel: Duplicerad TCP-anslutning. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Ett ogiltigt nätverkspaket har mottagits. Försäkra dig om att alla spelare använder samma version av PokerTH. - + Internal state error. Please make sure that all players use the same version of PokerTH. Internt programfel. Försäkra dig om att alla spelare använder samma version av PokerTH. - + Invalid server list URL. Please correct the address in the settings. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. - + Could not unzip the PokerTH internet server list. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. - + Could not open the target file when downloading the server list. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH servern stöder inte den här versionen av spelet.<br>Vänligen gå till <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> och ladda ner den senaste versionen. - + Sorry, this server is already full. Tyvärr, den här servern är fullsatt. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Ogiltigt lösenord för det här partiet. Vänligen ange det korrekta lösenordet. - + The password is too long. Please choose another one. Lösenordet är för långt. Vänligen välj ett nytt lösenord. @@ -3884,146 +3943,146 @@ Vänligen välj ett nytt namn. Ditt angivna namn är för kort/långt eller ogiltigt. Vänligen välj ett nytt namn. - + The game name is either too short or too long. Please choose another one. Namnet på partiet är antingen för kort eller för långt. Vänligen ange ett nytt namn. - + The game could not be found. Partiet kunde inte hittas. - + The chat text is invalid. Chatt-texten är ogiltig. - + The server referred to an unknown player. Aborting. Servern hänvisade till en okänd spelare. Avbryter. - + Internal error: The current player could not be found. Internt fel: Den aktuella spelaren kunde inte hittas. - + Internal error: The current player is not active. Internt fel: Den aktuella spelaren är inte aktiv. - + You were kicked from the server. Du slängdes ut från servern. - + You were temporarily banned from the server. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! - + The client player count is invalid. Antalet klienter är ogiltigt. - + Too many manual blinds were set. Please reconfigure the manual blinds. För många manuella mörkar angivna. Vänligen ställ in mörkarna på nytt. - + An invalid avatar file was configured. Please choose a different avatar. En ogiltig avatar var angiven. Vänligen välj en annan avatar. - + The selected avatar file is too large. Please choose a different avatar. Filstorleken på den valda avataren är för stor. Välj en annan avatar. - + An internal avatar error occured. Please report this to an admin in the lobby chat. Ett internt avatarfel uppstod. Var vänlig och rapportera detta till en admin i lobbyn. - + Could not start game: Synchronization failed. Kunde inte starta spelet: Synkroniseringen misslyckades. - + The server is down for maintenance. Please try again later. Servern är nere för underhåll, vänligen försök senare. - + An internal error occured. Ett internt fel har inträffat. - - - + - - - - - - + + + + + + + + Network Notification Nätverksmeddelande - + You were kicked from the game. Du slängdes ut från spelet. - + Sorry, this game is already full. Tyvärr, det här spelet är fullsatt. - + Unable to join - the server has already started the game. Kan inte ansluta - servern har redan påbörjat spelet. - + Your admin state timed out due to inactivity. Feel free to create a new game! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. En ny version av PokerTH är tillgänglig. <br>Vänligen gå till <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> och ladda ner den senaste versionen. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. Den här betaversionen av PokerTH är för gammal. <br>Vänligen gå till <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> och ladda ner den senaste versionen. - + Server Message diff --git a/ts/pokerth_ta.ts b/ts/pokerth_ta.ts index e8c67d0b..691b477a 100644 --- a/ts/pokerth_ta.ts +++ b/ts/pokerth_ta.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -67,14 +68,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error விளையாட்டு மேசை வடிவம் தவறு - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -87,12 +88,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -103,12 +104,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -118,27 +119,27 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. @@ -153,7 +154,7 @@ Please contact the game table style builder %4. தயவு செய்து விளையாட்டு மேசை வடிவத்தை உருவாக்குபவரிடம் கேட்கவும் %4. - + Cannot load game table style file: %1 Please check the style file or choose another style! @@ -174,8 +175,8 @@ Please contact the game table style builder %3. தயவு செய்து விளையாட்டு மேசை வடிவத்தை உருவாக்குபவரிடம் கேட்கவும் %3. - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! விளையாட்டு மேசை வடிவத்தை தேர்ந்தெடுப்பதற்கு பதிலாக சீட்டு-அட்டை கட்டின் வடிவம் தேர்ந்தெடுக்கப்பட்டுள்ளது. @@ -247,17 +248,101 @@ Please contact the game table style builder %3. அதைப்பற்றி - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - + Project பணி திட்டம் - + + <!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:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</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; } @@ -277,7 +362,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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -298,30 +383,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=" "> - ஆரம்ப ஜியுஐ வரைபட வடிவம்</span></p></body></html> - + Translation மொழிபெயர்ப்பு - <!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-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=" ">translator name - mail address</span></p></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 style=" 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=" ">மொழிபெயர்ப்பாளரின் பெயர் - மெயில் முகவரி</span></p></body></html> - + Thanks to நன்றிகள் - <!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; } @@ -344,7 +427,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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></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 style=" font-weight:400; font-style:normal;"> @@ -368,17 +451,16 @@ 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=" "> - பொதுக்குழுவை பராமரிப்பதற்கும் பிழைகளை சீர் செய்வதற்கும் மற்றும் புது அம்சங்களை சேர்க்கவும்</span></p></body></html> - + License உரிமம் - + Close மூடு - - + <!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; } @@ -390,7 +472,7 @@ 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;"></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;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></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> @@ -563,9 +645,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -894,6 +983,21 @@ Please choose another one! &Kick Player &Kவிளையாட்டு வீரரை துரத்துக + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Cash: பணம் செலுத்த ஆரம்பி: @@ -994,197 +1098,203 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Starting game. Please wait ... விளையாட்டு ஆரம்பமாகிறது. தயவு செய்து காத்திருக்கவும் ... - + Joining a private Game ஒரு தனியார் விளையாட்டில் இணைந்துகொண்டிருக்கிறது - + You are about to join a private game. Please enter the password! நீங்கள் ஒரு தனியார் விளையாட்டில் இணைய போகிறீர்கள். தயவு செய்து இரகசிய சொல்லை தரவும்! - + open திற - - - - + + + + Game Info விளையாட்டை பற்றிய செய்தி - - - + + + Game விளையாட்டு - - - + + + Players விளையாட்டு வீரர்கள் - - - + + + State வீரரின் தற்போதைய நிலவரம் - + R - - - + + + P - - - + + + Available Players விளையாட இருக்கும் வீரர்கள் - + Invite player விளையாட்டு வீரரை விளையாட அழையுங்கள் - + Ignore player விளையாட்டு வீரரை புறக்கணிக்கவும் - + Player infos ... - - - + + + Standard சாதாரண - - - + + + Registered players only பதிவு செய்த விளையாட்டு வீரர்கள் மட்டும் - - - + + + Invited players only அழைக்கப்பட்ட விளையாட்டு வீரர்கள் மட்டும் - - - + + + Ranking game தரவரிசை விளையாட்டு - + Connected players - max. %1 விளையாட்டில் இணைந்துள்ள வீரர்கள் - அதிகபட்சம். %1 - - + + T - + Connected players - Max. %1 விளையாட்டில் இணைந்துள்ள வீரர்கள் - அதிகபட்சம். %1 - + running நடைபெற்றுகொண்டிருக்கும் - - + + running games: %1 நடைபெற்றுகொண்டிருக்கும் விளையாட்டு: %1 - - + + open games: %1 ஆரம்பித்த விளையாட்டுகள்: %1 - + Invite %1 - + Ignore %1 - + %1 is playing in "%2". - + %1 is not playing at the moment. - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1193,54 +1303,54 @@ Feel free to invite other players by right-clicking on their nick in the availab உரையாடும் இடத்தில் உள்ள வீரர்கள்: %1 - - + + connected players: %1 இணைந்துள்ள விளையாட்டு வீரர்கள்: %1 - - + + Connected players இணைந்துள்ள விளையாட்டு வீரர்கள் - + hands சுற்றுகள் - + minutes நொடிகள் - + double blinds இரட்டிப்பு பந்தயத்தொகை - + manual blinds order சுய பந்தயத்தொகை வரிசை - + Server Error விளையாட்டு வழங்கியில் பிழை - + You should not kick yourself from this game! உங்களை நீங்களே விளையாட்டிலிருந்து வெளியே தள்ள கூடாது! - + search for player ... - + Chat is only available to registered players. @@ -1249,7 +1359,7 @@ Feel free to invite other players by right-clicking on their nick in the availab %1 என்ற விளையாட்டு வீரரை அழையுங்கள் - + Invite player ... விளையாட்டு வீரரை அழையுங்கள் ... @@ -1258,7 +1368,7 @@ Feel free to invite other players by right-clicking on their nick in the availab %1 என்ற விளையாட்டு வீரரை புறக்கணிக்கவும் - + Ignore player ... விளையாட்டு வீரரை புறக்கணிக்கவும் ... @@ -1269,8 +1379,8 @@ You can invite other players with right-click on their nick in the left availabl மற்றவர்களை அழைக்க இடது பக்கமுள்ள வீரர்களின் பட்டியலில் மௌசின் வலது பொத்தானை அழுத்தி விளையாட அழையுங்கள். - - + + PokerTH - Info Message போகர்டேஹோ - செய்தி தகவல் @@ -1295,7 +1405,7 @@ You can invite other players with right-click on their nick in the left availabl இனிமேல் இந்த நபரிடமிருந்து உரையாடல் செய்தியோ விளையாட்டு அழைப்பிதலோ பெற முடியாது.<br>நீங்கள் இந்த விளையாட்டு வீரரை <b>%1</b> புறக்கணிப்பு பட்டியலில் போட விரும்புகிறீர்களா? - + PokerTH - Question போகர்டேஹோ - வினா @@ -1308,224 +1418,224 @@ You can invite other players with right-click on their nick in the left availabl போகர்டேஹோ 0.6-பீட்டா - சுதந்திர-மூலநிரல் டெக்சாஸ் ஹோல்தேம் பொறி - + Hands சுற்றுகள் - + Chat உரையாடல் - + Log பதிவு - + Away தற்காலிகம் - + Manual Action (default) சுயமாக விளையாடுதல் (எப்பொழுதும் உபயோகிக்க) - + Auto-Check / Auto-Fold தானாகவே பணயத்தை தள்ளி வை / இச்சுற்றில் சரணடை - + Auto-Check / Auto-Call-Any தானாகவே பணயத்தை தள்ளி வை / எவரேனும் செய்ததை செய் - + Speed: வேகம்: - + Start Local Game ... உள்ளக கணினி விளையாட்டை தொடங்குக .... - + Ctrl+N - + Quit வெளியேறு - + Ctrl+Q - + About PokerTH ... போகர்டெஹோ பற்றிய செய்தி ... - + Settings ... அமைப்பு ... - + Create Network Game ... கணினி விளையாட்டு வலை உருவாக்குக ... - + Ctrl+O - + Join Network Game ... கணினி விளையாட்டு வலையில் சேர்க ... - + Ctrl+J - + Fullscreen முழு திரையில் காட்டு - + Ctrl+F - + Show/Hide Chat Window உரையாடல் விண்டோவை காண்பி / மறைத்து வை - + Ctrl+T - - - + + + Show/Hide Hands Window ஜெயிக்கும் மாதிரியை காண்பி / மறைத்து வை - + Ctrl+H - + Show/Hide Log Window பதிவு விண்டோவை காண்பி / மறைத்து வை - + Ctrl+L - + Internet Game ... இணையதள விளையாட்டு ... - + Ctrl+I - + Show/Hide Away Window தற்காலிகம் விண்டோவை காண்பி / மறைத்து வை - + Ctrl+A - + Kick துரத்து - + Vote Timeout: ஒட்டு போடும் காலவரம்பு: - + Yes ஆம் - + No இல்லை - + Chance ஜெயிக்கும் வாய்ப்பு - + Configure PokerTH ... போகர்டெஹோ ஐ தேவைக்கேற்ப மாற்றியமைத்து கொள்க ... - + Close மூடி விடு - + Ctrl+X - + Vote started by: ஒட்டு ஆரம்பித்தவர்: - + Show/Hide Chance Window ஜெயிக்கும் வாய்ப்பு விண்டோவை காண்பி / மறைத்து வை - + Ctrl+C - + &View &Vதோற்ற்றம் - + &Settings &Sஅமைப்பு - + Shortcut: <Shift> குறுக்கு வழி:<Shift> @@ -1533,108 +1643,121 @@ You can invite other players with right-click on their nick in the left availabl gameTableImpl - - - - - - - - + + + + + + + + Stop நிறுத்து - + PokerTH %1 - The Open-Source Texas Holdem Engine போகர்டெஹோ %1 - சுதந்திர-மூலநிரல் டெக்சாஸ் ஹோல்தேம் பொறி - - - - - + + + + + Start ஆரம்பி - - - + + + Lobby வரவேற்ப்பறை - + Chat உரையாடல் - + Closing PokerTH during network game விளையாட்டு வலையில் போகர்டேஹோ வை மூடும் பொழுது - + You are the hosting server. Do you want to close PokerTH anyway? நீங்கள்தான் இந்த விளையாட்டை ஆரம்பித்தீர்கள். நீங்கள் போகர்டேஹோ வை நிச்சயம் மூட வேண்டுமா? - + PokerTH - Internet Game Message போகர்டேஹோ - இணையதள விளையாட்டு செய்தி - + Attention! Do you really want to leave the current game and go back to the lobby? கவனிக்க! தற்சமயம் விளையாடும் விளையாட்டிலிருந்து நிச்சயம் நீங்கள் விலகி வரவேர்ப்பரைக்கு திரும்பி செல்ல விரும்புகிறீர்களா? - + Chat is only available to registered players. - + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + + + Chance ஜெயிக்கும் வாய்ப்பு - + Kick துரத்து - + Do you want to kick <b>%1</b><br>from this game? நீங்கள் <b>%1</b>என்பவரை <br>விளையாட்டிலிருந்து துரத்த விரும்புகிறீர்களா? - - + + <b>%1</b> secs left <b>%1</b> நொடிகள் மீதமுள்ளது - + vote ஒட்டு - + votes ஒட்டுகள் - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. விளையாட்டு வீரர் <b>%1</b> என்பவருக்கு எதிராக <b>%2</b> %3<br>உள்ளது. அவரை துரத்த <b>%4</b> ஓட்டுகள் தேவை. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. உங்களுக்கு எதிராக <b>%1</b> %2 உள்ளது.<br>உங்களை வெளியேற்ற <b>%3</b> ஓட்டுகள் தேவை. @@ -2737,125 +2860,140 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - Dutch - டட்ச் - - - - English - ஆங்கிலம் - - - - French - பிரெஞ்சு - - - - German - ஜெர்மன் - - - - Hungarian - ஹங்கரியன் - - - - Italian - இத்தாலியன் - - Norwegian - நார்வீஜியன் + Dutch + டட்ச் + + + + English + ஆங்கிலம் + + + + French + பிரெஞ்சு - Russian - ரஷ்யன் - - - - Slovak - ஸ்லோவாக் + German + ஜெர்மன் - Spanish - ஸ்பானிஷ் + Hungarian + ஹங்கரியன் + + + + Italian + இத்தாலியன் - Tamil - தமிழ் + Lithuania + - Turkish - டர்கிஷ் + Norwegian + நார்வீஜியன் - - - - + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Russian + ரஷ்யன் + + + + Slovak + ஸ்லோவாக் + + + + Spanish + ஸ்பானிஷ் + + + + Tamil + தமிழ் + + + + Turkish + டர்கிஷ் + + + + + + Settings Error அமைப்பு பிழை - + The entered flipside picture doesn't exist. Please enter an valid picture! கொடுத்த சீட்டு அட்டையின் பின்புற படத்தை காணவில்லை. தயவு செய்து சரியான படத்தை தரவும்! - - + + The log file directory doesn't exist. Please select an valid directory! பதிவு கோப்பையின் முகவரியை காணவில்லை. தயவு செய்து சரியான முகவரியை தேர்ந்தெடுக்கவும்! - + Language Changed மொழி மாற்றப்பட்டது - + You have changed application language to %1. Please restart PokerTH to load new language! நீங்கள் விளையாட்டை %1 என்ற மொழிக்கு மாற்றிவிட்டீர்கள். புது மொழியின் செயர்ப்பாட்டை காண தயவு செய்து போகர்டேஹோ வை மீண்டும் துவக்கவும்! - + Select your flipside picture சீட்டு அட்டையின் பின்புற படத்தை தேர்ந்தெடுக்கவும் - + Images (*.png *.jpg *.gif) வடிவங்கள் (*.png *.jpg *.gif) - + Open Directory திறந்த முகவரி - - + + Blinds Error பந்தயப்பண பிழை - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -2864,212 +3002,210 @@ This first-small-blind-value will be set to maximum allowed value. குறைந்தபட்ச ஆரம்ப கட்டாய பந்தயப்பணத்திற்கு அதிகப்படியான மதிப்பு வழங்கப்படும். - + Bulgarian - பல்கேரியன் + பல்கேரியன் - + Polish - போலிஷ் - - - - Chinese - சைனீஸ் + போலிஷ் + Chinese + சைனீஸ் + + + + Afrikaans + + + + + Catalan + + + + Greek - க்ரீக் + க்ரீக் - + Swedish - ஸ்வீடிஷ் + ஸ்வீடிஷ் - + The entered server list address is not a valid URL. Please enter a valid server list address! கொடுக்கப்பட்ட விளையாட்டு வழங்கி பட்டியலின் முகவரி சரியல்ல. தயவு செய்து சரியான முகவரியை தரவும்! - + Finnish - பின்னிஷ் + பின்னிஷ் - - Afrikaans - - - - - Catalan - - - - + Czech - செக் + செக் - + Danish - டானிஷ் + டானிஷ் - - + + Maintainer Name பராமரிப்பாளரின் பெயர் - - + + Maintainer EMail பராமரிப்பாளரின் இமெயில் - - + + Create Date தயாரிக்கப்பட்ட தேதி - + Windows Behaviour விண்டோவின் குணங்கள் - + scaleable மாற்ற தக்கது - + fixed நிர்ணயிக்கப்பட்டது - + Minimum Size குறைந்தபட்ச அளவு - + Maximum Size அதிகபட்ச அளவு - + Fixed Size நிர்ணயிக்கப்பட்ட அளவு - + State வீரரின் தற்போதைய நிலவரம் - + Please select your game table style தயவு செய்து உங்கள் விளையாட்டு மேசை வடிவத்தை தேர்ந்தெடுக்கவும் - + PokerTH game table styles (*.xml) போகர்டேஹோ வின் விளையாட்டு மேசை வடிவங்கள் (*.xml) - + Game Table Style Error விளையாட்டு மேசை வடிவத்தின் பிழை - + Selected game table style file is already in the list. Please select another one to add! தேர்ந்தெடுத்த விளையாட்டு மேசை வடிவத்தின் கோப்பை ஏற்கனவே பட்டியலில் உள்ளது. தயவு செய்து சேர்க்க வேறொன்றை தேர்ந்தெடுக்கவும்! - + Game Table Style File Error விளையாட்டு மேசை வடிவ கோப்பையின் பிழை - + Could not load game table style file correctly. Style will not be placed into list! விளையாட்டு மேசை வடிவ கோப்பையை சரியாக துவக்க முடியவில்லை. வடிவம் பட்டியலில் சேர்க்கப்படாது! - + Please select your card deck style தயவு செய்து உங்கள் சீட்டு அட்டை வடிவத்தை தேர்ந்தெடுக்கவும் - + PokerTH card deck styles (*.xml) போகர்டேஹோ வின் சீட்டு அட்டை வடிவங்கள் (*.xml) - + Card Deck Style Error சீட்டு அட்டை வடிவம் பிழை - + Selected card deck style file is already in the list. Please select another one to add! தேர்ந்தெடுத்த சீட்டு அட்டை வடிவத்தின் கோப்பை ஏற்கனவே பட்டியலில் உள்ளது. தயவு செய்து சேர்க்க வேறொன்றை தேர்ந்தெடுக்கவும்! - + Card Deck Style File Error சீட்டு அட்டை வடிவ கோப்பை பிழை - + Could not load card deck style file correctly. Style will not be placed into list! சீட்டு அட்டை வடிவ கோப்பையை சரியாக துவக்க முடியவில்லை. வடிவம் பட்டியலில் சேர்க்கப்படாது ! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - Portuguese (Brazilian) - போர்துகீஸ் (பிரேசிலியன்) + போர்துகீஸ் (பிரேசிலியன்) - Portuguese (Portuguese) - போர்துகீஸ் (போர்துகீஸ்) + போர்துகீஸ் (போர்துகீஸ்) @@ -3243,108 +3379,108 @@ Please choose another one. தயவு செய்து வேறொரு பெயரை தேர்ந்தெடுக்கவும். - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error கணினி விளையாட்டு வலை செயல் இழந்தது - + Server address was not set. விளையாட்டு வழங்கி முகவரி நிர்ணயிக்கப்படவில்லை. - + An invalid port was set (ports 0-1023 are not allowed). ஒரு தவறான போர்ட் நிர்மாணிக்க பட்டுள்ளது (போர்ட் 0-1023 உபயோகிக்க அனுமதி இல்லை). - + Could not create a socket for TCP communication. திசிபி தொடர்புக்கு சாக்கெட் உருவாக்க இயலவில்லை. - + Could not set the IP address. ஐபி முகவரி உருவாக்க இயலவில்லை. - + Could not set the port for this type of address. இந்த வகை முகவரிக்கு போர்ட் உருவாக்க இயலவில்லை. - + The server name could not be resolved. கணினி வழங்கியின் பெயரை புரிந்துகொள்ள இயலவில்லை. - + Bind failed - please choose a different port. நிரல்களை புணைக்கும் செயல் தோற்றது - தயவு செய்து வேறொரு போர்டை தேர்ந்தெடுக்கவும். - + Internal network error: "listen" failed. விளையாட்டு வலையினுள் பிழை: "சாக்கெட் உள்நோக்குதல் " தோற்றது. - + Server execution was terminated. விளையாட்டு வழங்கியின் செயல் முடிவுக்கு கொண்டு வரப்பட்டுள்ளது. - + Could not connect to the server. விளையாட்டு வழங்கியுடன் தொடர்பு கொள்ள இயலவில்லை. - + Connection timed out. Please check the server address. @@ -3355,125 +3491,125 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up விளையாட்டு வழங்கி என்எதி கணினி வழிநடத்திக்கு பின்னால் இருந்தால் அதன் போர்ட் முன்னோக்குதல் திறன் அமைக்கப்பட்டுள்ளதா என சரி பார்க்கவும். - + Internal network error: "select" failed. விளையாட்டு வலையினுள் பிழை: "தேர்ந்தெடுத்தல்" தோற்றது. - + Internal network error: "send" failed. விளையாட்டு வலையினுள் பிழை: "அனுப்புதல்" தோற்றது. - + Connection was closed by the server. விளையாட்டு வழங்கியினால் தொடர்பு மூடப்பட்டுள்ளது. - + Internal network error: Duplicate TCP connection. விளையாட்டு வலையினுள் பிழை: நகல் திசிபி இணைப்பு. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. தவறான விளையாட்டு வலை பொட்டலம் வந்துள்ளது. விளையாட்டு வீரர்கள் அனைவரும் சரியான போகர்டேஹோ பிரதியை உபயோகிக்கின்றனரா என தயவு செய்து சரி பார்க்கவும். - + Internal state error. Please make sure that all players use the same version of PokerTH. விளையாட்டின் உள்நிலை பிழை. விளையாட்டு வீரர்கள் அனைவரும் சரியான போகர்டேஹோ பிரதியை உபயோகிக்கின்றனரா என தயவு செய்து சரி பார்க்கவும். - + Invalid server list URL. Please correct the address in the settings. பட்டியலில் உள்ள விளையாட்டு வழங்கியின் முகவரி தவறு. தயவு செய்து விளையாட்டு வழங்கியின் அமைப்பில் முகவரியை மாற்றவும். - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. பட்டியலில் உள்ள விளையாட்டு வழங்கியின் MD5 எனும் கோப்பை திறக்க முடியவில்லை. தயவு செய்து விளையாட்டு வழங்கியின் முகவரியை பட்டியலில் சரி பார்க்கவும். - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. போகர்டேஹோ இன் இணையதள விளையாட்டு வழங்கிகளின் பிணைப்பு தவறிவிட்டது. தயவு செய்து விளையாட்டு வழங்கியின் முகவரியை பட்டியலில் சரி பார்க்கவும். - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. போகர்டேஹோ இன் இணையதள விளையாட்டு வழங்கியின் பட்டியலில் தவறான தகவல் உள்ளது. நீங்கள் உங்களுக்கென சிறப்பாக உருவாக்க பட்ட விளையாட்டு வழங்கி பட்டியலை உபயோகித்தால் தயவு செய்து அதன் வடிவமைப்பை சரி பார்க்கவும். - + Could not unzip the PokerTH internet server list. போகர்டேஹோ வின் இணையதள விளையாட்டு வழங்கியின் பட்டியலை அன்சிப் செய்ய முடியவில்லை. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. போகர்டேஹோ இன் இணையதள விளையாட்டு வழங்கியின் பட்டியலை இணையதளத்தில் இருந்து இறக்குமதி செய்ய முடியவில்லை. தயவு செய்து நீங்கள் இணையதளத்துடன் நேரதியாக இணைந்துளீரா என சரி பார்க்கவும். - + Could not open the target file when downloading the server list. இணையதள விளையாட்டு வழங்கியின் பட்டியலை இணையதளத்தில் இருந்து இறக்குமதி செய்யும் பொழுது தேவையான கோப்பையை திறக்க முடியவில்லை. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. விளையாட்டின் இப்பிரதிக்கு போகர்டேஹோ இன் விளையாட்டு வழங்கி ஆதரவு தரவில்லை.<br>தயவு செய்து இந்த <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a>இந்த முகவரிக்கு சென்று புதிய பிரதியை இனையதளத்தில் இருந்து இறக்குமதி செய்யவும். - + Sorry, this server is already full. மன்னிக்கவும் விளையாட்டு வழங்கி முன்னதாகவே நிரம்பி வழிகிறது. - + Invalid login. Please check your username and password. தவறான நுழைவு. தயவு செய்து உங்களின் உபயோகிக்கும் பெயர் மற்றும் இரகசிய வார்த்தையை சரி பார்க்கவும். - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. தற்சமயம் உங்களால் நுழைய முடியாது. தயவு செய்து சிறிது வினாடிகள் கழித்து முயற்ச்சி செய்து பார்க்கவும். - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. விளையட்டினுள் நுழையும் பொழுது உபயோகித்த இரகசிய வார்த்தை தவறு. தயவு செய்து சரியான இரகசிய வார்த்தையை உபயோகித்து மீண்டும் முயற்ச்சி செய்யவும். - + The password is too long. Please choose another one. இரகசிய வார்த்தையின் நீளம் அதிகமாக உள்ளது. தயவு செய்து வேறொன்றை தேர்ந்தெடுக்கவும். @@ -3487,146 +3623,146 @@ Please choose a different name. விளையாட்டு வீரர் பெயரின் நீளம் மிகவும் குறைவாக உள்ளது அல்லது மிகவும் நீளமாக உள்ளது அல்லது செல்லாது. தயவு செய்து வேறொன்றை தேர்ந்தெடுக்கவும். - + The game name is either too short or too long. Please choose another one. விளையாட்டின் பெயர் நீளம் மிகவும் குறைவாக உள்ளது அல்லது மிகவும் நீளமாக உள்ளது. தயவு செய்து வேறொன்றை தேர்ந்தெடுக்கவும். - + The game could not be found. விளையாட்டை கண்டுபிடிக்க முடியவில்லை. - + The chat text is invalid. கூறிய வார்த்தை செல்லாது. - + The server referred to an unknown player. Aborting. விளையாட்டு வழங்கி தவறான விளையாட்டு வீரரை குறிப்பிட்டுள்ளது. விளையாட்டு முடிவுக்கு கொண்டுவரபடுகின்றது. - + Internal error: The current player could not be found. உட்பிழை: தற்போதய விளையாட்டு வீரரை கண்டு பிடிக்க முடியவில்லை. - + Internal error: The current player is not active. உட்பிழை: தற்போதய விளையாட்டு வீரர் உபயோகத்தில் இல்லை. - + You were kicked from the server. விளையாட்டு வழங்கியினால் நீங்கள் வெளியேற்றப்பட்டுள்ளீர். - + You were temporarily banned from the server. நீங்கள் தற்சமையம் விளையாட்டு வழங்கியை உபயோகிப்பதிலிருந்து தள்ளிவைக்கப்பட்டுளீர். - + Your server connection timed out due to inactivity. You are very welcome to reconnect! நீண்ட நேரம் விளையாடாமல் இருந்ததால் விளையாட்டு வளங்கியுடனான தொடர்பு துண்டிக்கப்பட்டுள்ளது. விளையட்டினுள் மீண்டும் சேர உங்களை வரவேற்கிறோம்! - + The client player count is invalid. விளையாட்டு வாடிக்கையாளர்களின் எண்ணிக்கை செல்லாது. - + Too many manual blinds were set. Please reconfigure the manual blinds. சுய பந்தயத்தொகைகளின் எண்ணிக்கை அதிகமாக நிர்ணயிக்கப்பட்டுள்ளது. தயவு செய்து அதன் எண்ணிக்கையை மாற்றியமைக்கவும். - + An invalid avatar file was configured. Please choose a different avatar. அவதார் எனப்படும் கோப்பையின் அமைப்பு செல்லாது. தயவு செய்து வேறொரு அவதாரத்தை தேர்ந்தெடுக்கவும். - + The selected avatar file is too large. Please choose a different avatar. தேர்ந்தெடுத்த அவதார் எனப்படும் கோப்பையின் அளவு மிகவும் அதிகமாக உள்ளது. தயவு செய்து வேறொரு அவதார் கோப்பையை தேர்ந்தெடுக்கவும். - + An internal avatar error occured. Please report this to an admin in the lobby chat. அவதார் கொப்பையினுள் பிழை ஏற்ப்பட்டுள்ளது. தயவு செய்து இதை பேசும் வரவேற்ப்பரையில் உள்ள நிர்வாகியிடம் கூறவும். - + Could not start game: Synchronization failed. விளையாட்டை ஆரம்பிக்க முடியவில்லை: பிணைப்பு தோற்றது. - + The server is down for maintenance. Please try again later. விளையாட்டு வழங்கி பழுது பார்க்கப்பட்டுகொண்டிருக்கிறது. தயவு செய்து பின்னர் முயற்சி செய்து பார்க்கவும். - + An internal error occured. ஒரு உட்பிழை ஏற்ப்பட்டுள்ளது. - - - + - - - - - - + + + + + + + + Network Notification விளையாட்டு வலையினுல்லிருந்து அறிவிப்பு - + You were kicked from the game. நீங்கள் விளையாட்டிலிருந்து நீக்கப்பட்டுள்ளீர். - + Sorry, this game is already full. மன்னிக்கவும், இந்த விளையாட்டு ஏற்கனவே நிரம்பிவிட்டது. - + Unable to join - the server has already started the game. விளையாட்டில் சேர முடியாய்வில்லையா - ஏற்கனவே விளையாட்டு வழங்கியில் விளையாட்டு ஆரம்பமாகிவிட்டது. - + Your admin state timed out due to inactivity. Feel free to create a new game! நீண்ட நேரம் விளையாடாமல் இருந்ததால் நீங்கள் ஆரம்பித்த விளையாட்டு நிறைவுக்கு கொண்டுவரப்பட்டுள்ளது. வேண்டுமெனில் மீண்டும் ஒரு விளையாட்டை ஆரம்பிக்கவும்! - + You cannot join this type of game as guest. இவ்வகையான விளையாட்டில் ஒரு விருந்தாளியாக நீங்கள் சேர முடியாது. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. போகர்டேஹோ வின் புதிய பிரதி இணையதளத்தில் உள்ளது.<br>தயவு செய்து இந்த முகவரிக்கு <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> சென்று புதிய பிரதியை இறக்குமதி செய்யவும். - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. இந்த போகர்டேஹோ வின் பீட்டா வெளியீடு காலம் கடந்தது.<br>தயவு செய்து இந்த முகவரிக்கு <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> சென்று புதிய பிரதியை இறக்குமதி செய்யவும். - + Server Message விளையாட்டு வழங்கியிடமிருந்து தகவல் diff --git a/ts/pokerth_tr.ts b/ts/pokerth_tr.ts index 12dc221f..f731999f 100644 --- a/ts/pokerth_tr.ts +++ b/ts/pokerth_tr.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -65,14 +66,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -85,12 +86,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -101,12 +102,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -116,40 +117,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -259,66 +260,93 @@ Please select a game table style and try again! Hakkında - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project Proje - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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-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=" ">translator name - mail address</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> @@ -345,17 +373,17 @@ 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: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-weight:600;">Proje Sayfası: </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://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Yazarlar: </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - Başlangıç fikri, basit yapı, gui gerçekleştirimi, linux paketi, webmaster@pokerth.net</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - başlangıç fikri, basit yapı, lokomotif geliştirici</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> -ağ geliştirimi, windows paketi</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - gui grafik tasarımı, web tasarım</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erhard List (<a href="mailto:dunkanx@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">dunkanx@pokerth.net</span></a>)</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - MacOS paketi</p></body></html> - + License Lisans - + Close Kapat - + Thanks to Teşekkürler @@ -363,7 +391,7 @@ p, li { white-space: pre-wrap; } About PokerTH 0.5 PokerTH 0.5 Hakkında - + <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;"> @@ -380,7 +408,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: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-weight:600;">PokerTH 0.5</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-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Popüler "Texas Holdem"Pokeri için, poker motoru</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Tek oyunculu oyunlar için, en fazla 6 bilgisayar rakiple oynanabilir</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Çok oyunculu ağ oyunları</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- C++ / QT4 ile kodlanmıştır</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;"></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-weight:600;"></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"><span style=" font-weight:400;">© 2006-2007, FHammer &amp; FThauer</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;"></p></body></html> - + Translation Çeviri @@ -437,7 +465,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; 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-size:12pt; font-weight:600;">PokerTH 0.6</span></p></body></html> - + - Poker Engine for the popular "Texas Holdem" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -454,7 +482,7 @@ p, li { white-space: pre-wrap; } © 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -596,7 +624,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; font-family:'Nimbus Sans L';"><span style=" 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; font-family:'Nimbus Sans L';"> - Kendi kaydımız chip sesleri için</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -699,7 +727,7 @@ 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;"></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-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;"> - Kendi kaydımız chip sesleri için</p></body></html> - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -766,21 +794,6 @@ 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;"> - for internet-game-server hosting and administration</p></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:'Sans Serif'; font-size:9pt; 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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" font-weight:600; text-decoration: underline; color:#0000ff;">Wikimedia Müşterekleri</span></a></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;"> - <span style=" font-weight:400;">farklı popüler avatar resim kaynakları için</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-weight:600;">Viktoria, Benedikt, Erhard, Felix, Florian, Linus, Lothar, Mark, 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;"> - İnsan avatar resimleri için</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-weight:600;">ZeiZei</span> </p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - Muhtelif avatar resimleri için</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-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;"> - Farklı GPL lisanslı sesler için</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-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;"> - Kendi kaydımız chip sesleri için</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-weight:600;">thiger, dunkanx, BerndA </span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - Çeşitli yamalar için</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-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;"> - İnternet oyun sunucusu ve yöneticilik için</p></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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> - - aboutPokerthImpl @@ -943,9 +956,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1281,6 +1301,21 @@ Please choose another one! Fill up with computer opponents Bilgisayar rakipleri ile doldur + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Start Game Oyunu Başlat @@ -1446,62 +1481,62 @@ p, li { white-space: pre-wrap; } oyun - + Joining a private Game Özel bir oyuna giriliyor - + You are about to join a private game. Please enter the password! Özel bir oyuna girmek üzeresiniz. Lütven parolanızı giriniz! - - - - + + + + Game Info Oyun Bilgisi - - + + Connected players - + Server Error Sunucu Hatası - + You should not kick yourself from this game! Bu oyunda kendi kendinizi tekmeleyemezsiniz! - + running çalışıyor - - - + + + Game Oyun - - - + + + Players Oyuncular - - - + + + State Aşama @@ -1510,163 +1545,169 @@ p, li { white-space: pre-wrap; } Özel - + open - + hands eller - + minutes dakika - + double blinds çifte teklif - + manual blinds order el ile teklif istemi - + Starting game. Please wait ... Oyun başlatılıyor. Lütfen bekleyin... - + R - - - + + + P - - - + + + Available Players Uygun Oyuncular - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - - + + running games: %1 Çalışan oyunlar: %1 - - + + open games: %1 açık oyunlar: %1 - + Invite %1 - + Ignore %1 - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? @@ -1675,49 +1716,49 @@ Feel free to invite other players by right-clicking on their nick in the availab söyleşideki oyuncular: %1 - - + + connected players: %1 bağlı oyuncular: %1 - + search for player ... - + Chat is only available to registered players. - + Invite player ... - + Ignore player ... - + %1 is playing in "%2". - + %1 is not playing at the moment. - - + + PokerTH - Info Message - + PokerTH - Question @@ -1737,7 +1778,7 @@ Feel free to invite other players by right-clicking on their nick in the availab QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } - + Speed: Hız: @@ -1754,37 +1795,37 @@ Feel free to invite other players by right-clicking on their nick in the availab Oyun - + Ctrl+N Ctrl+N - + Quit Çık - + About PokerTH ... PokerTH Hakkında... - + Settings ... Ayarlar... - + Create Network Game ... Ağ Oyunu Oluştur... - + Join Network Game ... Ağ Oyununa Katıl... - + Fullscreen Tam Ekran @@ -1793,27 +1834,27 @@ Feel free to invite other players by right-clicking on their nick in the availab F - + Hands Eller - + Chat Sohbet - + Log Günlük - + Start Local Game ... Yerel Oyun Başlat... - + Ctrl+Q Ctrl+Q @@ -1830,59 +1871,59 @@ Feel free to invite other players by right-clicking on their nick in the availab Ağ Oyunu - + Ctrl+O Ctrl+O - + Ctrl+J Ctrl+J - + Ctrl+F Ctrl+F - + Show/Hide Chat Window Söyleşi Penceresini Göster/Gizle - + Ctrl+T Ctrl+T - - - + + + Show/Hide Hands Window El Penceresini Göster/Gizle - + Ctrl+H Ctrl+H - + Show/Hide Log Window Günlük Penceresini Göster/Gizle - + Ctrl+L Ctrl+L - + Internet Game ... İnternet Oyunu ... - + Ctrl+I Ctrl+I @@ -1891,22 +1932,22 @@ Feel free to invite other players by right-clicking on their nick in the availab Hepsi İçinde - + Away Uzak - + Manual Action (default) El İle Hamle (ön tanımlı) - + Auto-Check / Auto-Fold Oto-Denetim / Oto-Katla - + Auto-Check / Auto-Call-Any Oto-Denetim / Oto-Çağrı-Herhangi bir @@ -1916,37 +1957,37 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-beta - Açık-Kaynak Texas Holdem Motoru - + Show/Hide Away Window Uzakta penceresini Göster/Gizle - + Ctrl+A Ctrl+A - + Kick Tekmele - + Vote Timeout: Kalan oylama süresi: - + Yes Evet - + No Hayır - + Chance Şans @@ -1955,47 +1996,47 @@ Feel free to invite other players by right-clicking on their nick in the availab Ayarlar - + Configure PokerTH ... PokerTH'ı ayarla... - + Close Kapat - + Ctrl+X Ctrl+X - + Vote started by: Oylamayı başlatan: - + Show/Hide Chance Window Şans Penceresini Göster/Gizle - + Ctrl+C Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -2015,23 +2056,23 @@ Feel free to invite other players by right-clicking on their nick in the availab F1 - Katla/Hepsini | F2 - Denetle/Çağır | F3 - Bahis/Yükselt - - - - - + + + + + Start Başlat - - - - - - - - + + + + + + + + Stop Dur @@ -2204,7 +2245,7 @@ Eğer sunucu bir NAT-Router arkasındaysa, sunucu tarafındaki bağlantı noktas Oto kip ayarlı: denetleyin veya katlayın. - + Chat Sohbet @@ -2277,12 +2318,12 @@ Please go to <a href="http://www.pokerth.net/" target="_blank& Lütfen <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> adresinden son sürümü indiriniz. - + Closing PokerTH during network game Ağ oyunu sırasında PokerTH kapatılıyor - + You are the hosting server. Do you want to close PokerTH anyway? Siz ana sunucusunuz. Yinede PokerTH programını kapatmak istiyor musunuz? @@ -2299,14 +2340,14 @@ Lütfen <a href="http://www.pokerth.net/" target="_blank" PokerTH ara sürümü artık geçersiz.<br>Lütfen <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> adresinden son sürümü indiriniz. - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - Açık-Kaynak Texas Holdem Motoru - - - + + + Lobby Kulis @@ -2315,63 +2356,76 @@ Lütfen <a href="http://www.pokerth.net/" target="_blank" İçsel bir simge hatası algılandı. Lütfen bunu kulis söyleşisinde yöneticiye iletin. - + PokerTH - Internet Game Message PokerTH - Internet Oyunu Mesajı - + Attention! Do you really want to leave the current game and go back to the lobby? Dikkat! Bu oyunu gerçekten bırakmak ve lobiye dönmek istiyormusunuz? - + Chance Şans - + Kick Tekmele - + Do you want to kick <b>%1</b><br>from this game? <b>%1</b><br> kişisini oyundan atmak istiyormusunuz? - - + + <b>%1</b> secs left <b>%1</b> saniye kaldı - + vote oy - + votes oylar - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3653,10 +3707,10 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - - - + + + + Settings Error Ayar Hatası @@ -3673,7 +3727,7 @@ Please select an valid directory! Lütfen geçerli bir dizin giriniz! - + Select your flipside picture Kıvrık taraf resminizi seçin @@ -3682,24 +3736,24 @@ Lütfen geçerli bir dizin giriniz! Resimler (*.png) - + Open Directory Dizin Aç - + Images (*.png *.jpg *.gif) Resimler (*.png *.jpg *.gif) - - + + Blinds Error Teklif Hatası - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3708,29 +3762,44 @@ küçük! İlk küçük teklif değeri, izin verilen en yüksek değer olarak ayarlanacaktır. - + Dutch - Flemenkce - - - - English - İngilizce + Flemenkce - French - Fransızca + Afrikaans + - German - Almanca + Catalan + + Czech + + + + + English + İngilizce + + + + French + Fransızca + + + + German + Almanca + + + Hungarian - Macarca + Macarca Norse @@ -3741,271 +3810,261 @@ yüksek değer olarak ayarlanacaktır. Portekizce - + Russian - Rusça + Rusça - + Turkish - Türkçe + Türkçe - + Language Changed Dil Değiştirildi - + You have changed application language to %1. Please restart PokerTH to load new language! Uygulama dilini %1 olarak değiştirdiniz. Yeni dilde yüklenmesi için lütfen PokerTH programını yeniden başlatınız! - + Italian - İtalyanca + İtalyanca - + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + Slovak - Slovakça + Slovakça - + + Tamil + + + + The entered flipside picture doesn't exist. Please enter an valid picture! Girilen resmin ters tarafı mevcut değil. Lütfen geçerli bir resim giriniz! - - + + The log file directory doesn't exist. Please select an valid directory! Günlük dosyasının dizini mevcut değil. Lütfen geçerli bir dizin seçiniz! - + Norwegian - Norveçce + Norveçce - + Spanish - İspanyolca + İspanyolca - + Bulgarian - Bulgarca + Bulgarca - + Polish - Polonyaca - - - - Chinese - Çince + Polonyaca + Chinese + Çince + + + Greek - Yünanca + Yünanca - + Swedish - İsveççe + İsveççe - + The entered server list address is not a valid URL. Please enter a valid server list address! Girilen sunucu listesi adresi geçerli değil. Lütfen geçerli bir adres girin! - + Finnish - Fince + Fince - - Afrikaans - - - - - Catalan - - - - - Czech - - - - + Danish - Danimarka Dili + Danimarka Dili - - Tamil - - - - - + + Maintainer Name - - + + Maintainer EMail - - + + Create Date - + Windows Behaviour - + scaleable - + fixed - + Minimum Size - + Maximum Size - + Fixed Size - + State Aşama - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -4198,108 +4257,108 @@ Please choose another one. Lütfen başka bir tane seçiniz. - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error Ağ Hatası - + Server address was not set. Sunucu adresi belirtilmedi. - + An invalid port was set (ports 0-1023 are not allowed). Geçersiz bağlantı noktası belirtilmiş (0-1023 arasındaki bağlantı noktaları kullanılamaz). - + Could not create a socket for TCP communication. TCP iletişimi için bir yuva oluşturulamadı. - + Could not set the IP address. IP adresi ayarlanamadı. - + Could not set the port for this type of address. Bu çeşit bir adres için bağlantı noktası ayarlanamadı. - + The server name could not be resolved. Sunucu ismi çözümlenemedi. - + Bind failed - please choose a different port. Bağlama başarısız - lütfen farklı bir bağlantı noktası seçin. - + Internal network error: "listen" failed. Dahili ağ hatası - "dinleme" başarısız. - + Server execution was terminated. Sunucu işletimi sonlandırıldı. - + Could not connect to the server. Sunucuya bağlanılamadı. - + Connection timed out. Please check the server address. @@ -4310,124 +4369,124 @@ Lütfen sunucu adresini kontrol ediniz. Eğer sunucu bir NAT-Router arkasındaysa, sunucu tarafındaki bağlantı noktası yönlendirmesinin ayarlandığından emin olunuz. - + Internal network error: "select" failed. Dahili ağ hatası - "seçim" başarısız. - + Internal network error: "send" failed. Dahili ağ hatası - "gönder" başarısız. - + Connection was closed by the server. Bağlantı, sunucu tarafından kapatıldı. - + Internal network error: Duplicate TCP connection. Dahili ağ hatası: TCP bağlantısını çoğaltın. - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. Geçersiz bir ağ paketi alındı. Lütfen bütün oyuncuların PokerTH ın aynı sürümünü kullandığından emin olun. - + Internal state error. Please make sure that all players use the same version of PokerTH. Dahili durum hatası. Lütfen bütün oyuncuların PokerTH ın aynı sürümünü kullandığından emin olun. - + Invalid server list URL. Please correct the address in the settings. Geçersiz sunucu listesi. Lütfen ayarlardan adresi düzeltin. - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. Sunucu listesinin MD5 dosyası açılamadı. Lütfen sunucu listesinin adresinin doğru olduğundan emin olun. - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. PokerTH İnternet sunucu listesi eşzamanlanamadı. Lütfen sunucu listesi adresinin doğru olduğundan emin olun. - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. PokerTH İnternet sunucu listesi geçersiz veriler içeriyor. Eğer özel bir sunucu listesi kullanıyorsanız lütfen dosya biçiminin doğru olduğundan emin olun. - + Could not unzip the PokerTH internet server list. Sıkıştırılmış durumdaki PokerTH İnternet sunucu listesi açılamadı. - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. PokerTH sunucu listesi indirilemedi. Lütfen doğrudan İnternet'e bağlı olduğunuzdan emin olun. - + Could not open the target file when downloading the server list. Sunucu listesi indirilirken hedef dosya açılamadı. - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH sunucu, oyunun bu sürümünü desteklemiyor.<br>Lütfen <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> adresinden son sürümü indirin. - + Sorry, this server is already full. Üzgünüm, bu sunucu dolu. - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. Oyuna girişte geçersiz parola. Lütfen parolanızı girin ve yeniden deneyin. - + The password is too long. Please choose another one. Parola çok uzun. Lütfen başka bir tane deneyin. @@ -4442,67 +4501,67 @@ Lütfen farklı bir isim seçiniz. Bu oyuncu ismi, çok kısa, çok uzun yahut geçersiz. Lütfen başka bir isim seçiniz. - + The game name is either too short or too long. Please choose another one. Oyun ismi ya çok uzun yada öok kısa. Lütfen başka birini seçiniz. - + The game could not be found. Oyun bulunamadı. - + The chat text is invalid. Söyleşi metni geçersiz. - + The server referred to an unknown player. Aborting. Sunucu, bilinmeyen bir oyuncuya devredildi. Çıkılıyor. - + Internal error: The current player could not be found. Dahili hata: Bu oyuncu bulunamadı. - + Internal error: The current player is not active. Dahili Hata: Bu oyuncu aktif değil. - + You were kicked from the server. Sunucu tarafından tekmelendiniz. - + You were temporarily banned from the server. Sunucuya erişiminz geçici olarak yasaklandı. - + Your server connection timed out due to inactivity. You are very welcome to reconnect! Bir etkinlik olmadığından sunucu ile kurduğunuz bağlantı zamanaşımına uğradı. Tabii ki yeniden bağlanabilirsiniz! - + The client player count is invalid. İstemci oyuncu sayısı yanlış. - + Too many manual blinds were set. Please reconfigure the manual blinds. Çok fazla elle teklif ayarlı. Lütfen elle teklifleri eniden yapılandırınız. - + An invalid avatar file was configured. Please choose a different avatar. Geçersiz bir avatar dosyası yapılandırıldı. Lütfen farklı bir avatar seçiniz. - + The selected avatar file is too large. Please choose a different avatar. Seçili avatar dosyası çok büyük. Lütfen farklı bir avatar seçiniz. @@ -4511,81 +4570,81 @@ Lütfen farklı bir isim seçiniz. Şimdi yeni bir avatar dosyası yükleyemezsiniz. Lütfen birkaç saniye sonra yeniden deneyin. - + An internal avatar error occured. Please report this to an admin in the lobby chat. İçsel bir simge hatası algılandı. Lütfen bunu kulis söyleşisinde yöneticiye iletin. - + Could not start game: Synchronization failed. Oyun başlatılamadı: Eş zamalama yapılamadı. - + The server is down for maintenance. Please try again later. Sunucu bakım sebebiyle kapalı. Lütfen sonra tekrar deneyin. - + An internal error occured. Dahili bir hata oluştu. - - - + - - - - - - + + + + + + + + Network Notification Ağ Bildirimi - + You were kicked from the game. Oyundan atıldınız. - + Sorry, this game is already full. Üzgünüm, oyun zaten dolu. - + Unable to join - the server has already started the game. Girilemiyor - sunucu zaten oyuna başladı. - + Your admin state timed out due to inactivity. Feel free to create a new game! Bir etkinlik olmadığından yönetici durumunuz zamanaşımına uğradı. Tabii ki yeni bir oyun oluşturabilirsiniz! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH ın yeni bir yayını hazır.<br>Lütfen <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> adresinden son sürümü indirin. - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH ara sürümü artık geçersiz.<br>Lütfen <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net/<a/> adresinden son sürümü indiriniz. - + Server Message diff --git a/ts/pokerth_zhcn.ts b/ts/pokerth_zhcn.ts index 55ce64e1..db745d79 100644 --- a/ts/pokerth_zhcn.ts +++ b/ts/pokerth_zhcn.ts @@ -1,6 +1,7 @@ +UTF-8 CardDeckStyleReader @@ -65,14 +66,14 @@ Please select a card deck style and try again! GameTableStyleReader - - - + + + Game Table Style Error - + Selected game table style "%1" seems to be incomplete or defective. The value(s) of: @@ -85,12 +86,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Fields content missing - + One or more pictures from current game table style "%1" were not found: %2 @@ -101,12 +102,12 @@ Please contact the game table style builder via "%3". - + Game Table Style Error - Pictures missing - + Selected game table style "%1" seems to be outdated. The current PokerTH game table style version is "%2", but this style has version "%3" set. @@ -116,40 +117,40 @@ Please contact the game table style builder via "%4". - + Game Table Style Error - Outdated - + Everything OK! - + Some pictures are missing, please contact style maintainer for this issue. - + Some style fields are missing, please contact style maintainer for this issue. - + This style is outdated, please contact style maintainer for this issue. - + Cannot load game table style file: %1 Please check the style file or choose another style! - - + + A card deck style was selected instead of a game table style. Please select a game table style and try again! @@ -245,7 +246,7 @@ Please select a game table style and try again! aboutPokerth - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -262,7 +263,7 @@ Please select a game table style and try again! © 2006-2007, FHammer, FThauer, LMay - + <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> @@ -360,89 +361,116 @@ p, li { white-space: pre-wrap; } 关于 - - <!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-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;"><a href="http://commons.wikimedia.org/wiki/Main_Page"><span style=" 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-weight:600;"> - </span><span style=" ">for different popular avatar picture resources</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-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=" "> - for people avatar pictures</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-weight:600;">ZeiZei</span><span style=" "> </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=" "> - for "misc" avatar pictures</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-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=" "> - for different gpl licensed sounds</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-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=" "> - for self recorded chip sounds</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-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=" "> - for different patches</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-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=" "> - for internet-game-server hosting and administration</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-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=" "> - for startwindow background gfx and danuxi1 table background</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-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=" "> - for moderating forum and organise bugtracker and feature requests</span></p></body></html> - - - - + Close 关闭 - + License 许可 - + + <!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:8pt; 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;">- Poker engine for the popular &quot;Texas Hold'em&quot; Poker</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery<br />- <a href="http://online-ranking.pokerth.net"><span style=" text-decoration: underline; color:#0057ae;">Online ranking website</span></a> with result tables</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;"></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;"></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;"></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2010, FHammer, FThauer, LMay</p></td></tr></table></body></html> + + + + Project 项目 - + <!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-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-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=" "> </span><a href="http://www.pokerth.net"><span style=" 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; "></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-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=" "> #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; "></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-weight:600;">Authors: </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=" "> Felix Hammer (</span><a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, gui implementation, gui graphics editing, linux 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=" "> Florian Thauer (</span><a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a><span style=" ">)</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=" "> - initial idea, basic architecture, engine development</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=" "> Lothar May (</span><a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a><span style=" ">)</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=" "> - 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=" "> Oskar Lindqvist (</span><a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a><span style=" ">)</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=" "> - initial gui graphics design</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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-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;"> <a href="http://www.pokerth.net"><span style=" 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;"></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-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;"> #pokerth (irc.freenode.net)</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;"></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-weight:600;">Authors: </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Felix Hammer (<a href="mailto:doitux@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">doitux@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, gui implementation, gui graphics editing, linux package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Florian Thauer (<a href="mailto:floty@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">floty@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial idea, basic architecture, engine development</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Lothar May (<a href="mailto:lotodore@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">lotodore@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - basic architecture, network development, windows package, MacOS package</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Oskar Lindqvist (<a href="mailto:tranberry@pokerth.net"><span style=" text-decoration: underline; color:#0000ff;">tranberry@pokerth.net</span></a>)</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - initial gui graphics design</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-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=" ">translator name - mail address</span></p></body></html> +</style></head><body style=" font-family:'Nimbus Sans L'; font-size:8pt; font-weight:400; font-style:normal;"> +<table 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;">translator name - mail address</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:8pt; font-weight:400; font-style:normal;"> +<table 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-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-weight:600;"> - </span>for different popular avatar picture resources</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-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;"> - for people avatar pictures</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-weight:600;">ZeiZei</span> </p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for &quot;misc&quot; avatar pictures</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-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;"> - for different gpl licensed sounds</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-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;"> - for self recorded chip sounds</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-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;"> - for different patches</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-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;"> - for internet-game-server hosting and administration</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-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;"> - for startwindow background gfx and danuxi1 table background</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-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;"> - for moderating forum and organise bugtracker and feature requests</p></td></tr></table></body></html> + + + + Thanks to 鸣谢 - + Translation 翻译 - + - Poker engine for the popular "Texas Hold'em" Poker - Singleplayer games with up to 6 computer-opponents - Multiplayer network games @@ -548,21 +576,6 @@ 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-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;"> - 为因特网游戏服务器提供托管及管理</p></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> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Poker engine for the popular "Texas Hold'em" Poker</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Singleplayer games with up to 9 computer-opponents</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- Multiplayer network games<br />- Internet online games<br />- Changeable gui with online style gallery</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;"></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;"></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;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">© 2006-2009, FHammer, FThauer, LMay</p></body></html> - - aboutPokerthImpl @@ -725,9 +738,16 @@ Please choose another one! + Game name: + + + There is a forbidden word in your choosen game name. +Please choose another one! + + changeHumanPlayerNameDialog @@ -1031,6 +1051,21 @@ Please choose another one! &Kick Player + + + Sort alphabetically + + + + + Sort by country + + + + + Display idle players + + Blinds raise interval: 盲注加注间隔: @@ -1204,62 +1239,62 @@ p, li { white-space: pre-wrap; } %1的游戏 - - + + connected players: %1 已连接的玩家:%1 - + double blinds 双倍盲注 - - - - + + + + Game Info 游戏信息 - + hands 成手 - + Joining a private Game 加入一个私人游戏 - + manual blinds order 手动盲注顺序 - + minutes 分钟 - - - + + + Game 游戏 - - - + + + Players 玩家 - - - + + + State 状态 @@ -1268,13 +1303,13 @@ p, li { white-space: pre-wrap; } 私人 - + open - - + + open games: %1 游戏开局:%1 @@ -1283,199 +1318,205 @@ p, li { white-space: pre-wrap; } 聊天中的玩家:%1 - + running 运行中 - + R - - - + + + P - - - + + + Available Players 在线的玩家 - + Invite player - + Ignore player - + Player infos ... - - - + + + Standard - - - + + + Registered players only - - - + + + Invited players only - - - + + + Ranking game - + Connected players - max. %1 - - + + T - + Connected players - Max. %1 - - + + running games: %1 运行中的游戏:%1 - - + + Connected players - + Server Error 服务器错误 - + search for player ... - + Chat is only available to registered players. - + Invite %1 - + Ignore %1 - + %1 is playing in "%2". - + %1 is not playing at the moment. - + <span style='color:blue;'>%1 has been invited to %2 by %3.</span> - + <span style='color:red;'>%1 has rejected the invitation to %2.</span> - + <span style='color:red;'>%1 cannot join %2 because he is busy.</span> - + + + The game will start in<br><b>%1</b> seconds. + + + + Invite player ... - + Ignore player ... - + You have entered a game with type "invite-only". Feel free to invite other players by right-clicking on their nick in the available players list. - + You have been invited to the game <b>%1</b> by <b>%2</b>.<br>Would you like to join this game? - + You will no longer receive chat messages or game invitations from this user.<br>Do you really want to put player <b>%1</b> on your ignore list? - - + + PokerTH - Info Message - + PokerTH - Question - + Starting game. Please wait ... 正在开始游戏,请稍候... - + You are about to join a private game. Please enter the password! 你正在加入一个私人游戏。请输入密码! - + You should not kick yourself from this game! 你无法将自己踢出游戏! @@ -1483,87 +1524,87 @@ Feel free to invite other players by right-clicking on their nick in the availab gameTable - + About PokerTH ... 关于PokerTH... - + Auto-Check / Auto-Call-Any 自动让牌/自动跟进 - + Auto-Check / Auto-Fold 自动让牌/自动收牌 - + Away 离开 - + Chat 聊天 - + Create Network Game ... 创建网络游戏... - + Ctrl+A Ctrl+A - + Ctrl+F Ctrl+F - + Ctrl+H Ctrl+H - + Ctrl+I Ctrl+I - + Ctrl+J Ctrl+J - + Ctrl+L Ctrl+L - + Ctrl+N Ctrl+N - + Ctrl+O Ctrl+O - + Ctrl+Q Ctrl+Q - + Ctrl+T Ctrl+T - + Fullscreen 全屏 @@ -1572,27 +1613,27 @@ Feel free to invite other players by right-clicking on their nick in the availab 游戏 - + Hands 成手 - + Internet Game ... 因特网游戏... - + Join Network Game ... 加入网络游戏... - + Log 日志 - + Manual Action (default) 手动操作(默认) @@ -1606,44 +1647,44 @@ Feel free to invite other players by right-clicking on their nick in the availab PokerTH 0.6-公测版 - 开源的德州扑克游戏引擎 - + Quit 退出 - + Settings ... 设置... - + Show/Hide Away Window 显示/隐藏“离开”窗口 - + Show/Hide Chat Window 显示/隐藏“聊天”窗口 - - - + + + Show/Hide Hands Window 显示/隐藏“成手”窗口 - + Show/Hide Log Window 显示/隐藏“日志”窗口 - + Speed: 速度: - + Start Local Game ... 开始本地游戏... @@ -1652,27 +1693,27 @@ Feel free to invite other players by right-clicking on their nick in the availab 查看 - + Kick - + Vote Timeout: - + Yes - + No - + Chance @@ -1681,47 +1722,47 @@ Feel free to invite other players by right-clicking on their nick in the availab 设置 - + Configure PokerTH ... - + Close 关闭 - + Ctrl+X - + Vote started by: - + Show/Hide Chance Window - + Ctrl+C - + &View - + &Settings - + Shortcut: <Shift> @@ -1755,7 +1796,7 @@ Please make sure that all players use the same version of PokerTH. 设置的端口无效(不能设置0-1023间的端口)。 - + Attention! Do you really want to leave the current game and go back to the lobby? 注意!你真的想离开当前的游戏 @@ -1774,12 +1815,12 @@ and go back to the lobby? 端口绑定失败 - 请使用其它的端口。 - + Chat 聊天 - + Closing PokerTH during network game 在网络游戏中关闭PokerTH @@ -1869,9 +1910,9 @@ Please reenter the password and try again. 请重新输入密码并重试。 - - - + + + Lobby 大厅 @@ -1888,12 +1929,12 @@ Please reenter the password and try again. 网络通知 - + PokerTH - Internet Game Message PokerTH - 网络游戏消息 - + PokerTH %1 - The Open-Source Texas Holdem Engine PokerTH %1 - 开源德州扑克游戏引擎 @@ -1914,23 +1955,23 @@ Please reenter the password and try again. 对不起,服务器已经满人了。 - - - - - + + + + + Start 开始 - - - - - - - - + + + + + + + + Stop 停止 @@ -1991,7 +2032,7 @@ Please reenter the password and try again. 无法加入 - 服务器已经开始游戏。 - + You are the hosting server. Do you want to close PokerTH anyway? 你现在是主机。你还是希望关闭PokerTH么? @@ -2070,51 +2111,64 @@ Please make sure you are directly connected to the internet. 在下载服务器列表过程中无法打开目标文件。 - + Chance - + Kick - + Do you want to kick <b>%1</b><br>from this game? - - + + <b>%1</b> secs left - + vote - + votes - + Player <b>%1</b> has <b>%2</b> %3<br>against him. <b>%4</b> vote(s) needed to kick. - + You have <b>%1</b> %2 against you.<br><b>%3</b> vote(s) needed to kick. - + Chat is only available to registered players. + + + PokerTH - Warning + + + + + You have triggered a warning level of timeouts in a ranking game. +After %1 additional timeouts the server needs to kick you to provide a better game flow! + +If you are temporarily away, you can use the "away" tools in the tool box on the right. + + internetGameLoginDialog @@ -3277,128 +3331,173 @@ p, li { white-space: pre-wrap; } settingsDialogImpl - - + + Blinds Error 盲注错误 - + Bulgarian - 保加利亚语 - - - - Chinese - 中文 - - - - Dutch - 荷兰语 - - - - English - 英语 + 保加利亚语 - French - 法语 + Afrikaans + - German - 德语 + Catalan + - Greek - 希腊语 + Chinese + 中文 - Hungarian - 匈牙利语 + Czech + - + + Danish + + + + + Dutch + 荷兰语 + + + + English + 英语 + + + + Finnish + + + + + French + 法语 + + + + German + 德语 + + + + Greek + 希腊语 + + + + Hungarian + 匈牙利语 + + + + Lithuania + + + + + Portuguese-Brazilian + + + + + Portuguese-Portuguese + + + + + Tamil + + + + Images (*.png *.jpg *.gif) 图像(*.png *.jpg *.gif) - + Italian - 意大利语 + 意大利语 - + Language Changed 语言已变更 - + Norwegian - 挪威语 + 挪威语 - + Open Directory 打开目录 - + Polish - 波兰语 + 波兰语 Portuguese 葡萄牙语 - + Russian - 俄语 + 俄语 - + Select your flipside picture 选择牌背图片 - - - - + + + + Settings Error 设置错误 - + Slovak - 斯洛伐克语 + 斯洛伐克语 - + Spanish - 西班牙语 + 西班牙语 - + Swedish - 瑞典语 + 瑞典语 - + The entered flipside picture doesn't exist. Please enter an valid picture! 输入的牌背图面不存在。 请重新输入! - - + + The first element in your manual-blinds-list is smaller than current first-small-blind! This first-small-blind-value will be set to maximum allowed value. @@ -3406,209 +3505,169 @@ This first-small-blind-value will be set to maximum allowed value. 首轮小盲注的值将设为所允许的最大值。 - - + + The log file directory doesn't exist. Please select an valid directory! 日志文件目录不存在。 请重新选择! - + Turkish - 土耳其语 + 土耳其语 - + You have changed application language to %1. Please restart PokerTH to load new language! 你已经将程序语言变更为%1。 请重新启动PokerTH来载入新的语言! - + The entered server list address is not a valid URL. Please enter a valid server list address! 输入的服务器列表地址不是一个有效的地址。 请重新输入一个有效的服务器列表地址。 - - Finnish - - - - - Danish - - - - - Afrikaans - - - - - Catalan - - - - - Czech - - - - - Tamil - - - - - + + Maintainer Name - - + + Maintainer EMail - - + + Create Date - + Windows Behaviour - + scaleable - + fixed - + Minimum Size - + Maximum Size - + Fixed Size - + State 状态 - + Please select your game table style - + PokerTH game table styles (*.xml) - + Game Table Style Error - + Selected game table style file is already in the list. Please select another one to add! - + Game Table Style File Error - + Could not load game table style file correctly. Style will not be placed into list! - + Please select your card deck style - + PokerTH card deck styles (*.xml) - + Card Deck Style Error - + Selected card deck style file is already in the list. Please select another one to add! - + Card Deck Style File Error - + Could not load card deck style file correctly. Style will not be placed into list! - + PokerTH - Log file - + Do you really want to delete the selected log file? - + Save PokerTH log file - + PokerTH SQL log (*.pdb) - - - Portuguese (Brazilian) - - - - - Portuguese (Portuguese) - - startNetworkGameDialog @@ -3793,108 +3852,108 @@ Please choose another one. 请重新选择。 - - - - - - - - - - - - - + + + + + + + + + + + - - + + - - - - - - - - - + + + + + + + + + + - - - - - + + + + - - - + + + - + - - - - - + + + + + + + Network Error 网络错误 - + Server address was not set. 服务器地址未设置。 - + An invalid port was set (ports 0-1023 are not allowed). 设置的端口无效(不能设置0-1023间的端口)。 - + Could not create a socket for TCP communication. 无法为TCP通信创建插口。 - + Could not set the IP address. 无法设置IP地址。 - + Could not set the port for this type of address. 无法为这种地址设定端口。 - + The server name could not be resolved. 服务器名称无法被解析。 - + Bind failed - please choose a different port. 端口绑定失败 - 请使用其它的端口。 - + Internal network error: "listen" failed. 网络内部错误:“监听”失败。 - + Server execution was terminated. 服务器执行被终止。 - + Could not connect to the server. 无法连接到服务器。 - + Connection timed out. Please check the server address. @@ -3904,124 +3963,124 @@ If the server is behind a NAT-Router, make sure port forwarding has been set up 如果服务器在NAT路由后,请确定服务器端已设定好端口转发。 - + Internal network error: "select" failed. 网络内部错误:“选择”失败。 - + Internal network error: "send" failed. 网络内部错误:“发送”失败。 - + Connection was closed by the server. 连接已被服务器关闭。 - + Internal network error: Duplicate TCP connection. 网络内部错误:重复的TCP连接。 - + An invalid network packet was received. Please make sure that all players use the same version of PokerTH. 收到无效的网络包。 请确认所有玩家使用相同版本的PokerTH。 - + Internal state error. Please make sure that all players use the same version of PokerTH. 网络状态错误。 请确认素有玩家使用相同版本的PokerTH。 - + Invalid server list URL. Please correct the address in the settings. 无效的服务器列表URL。 请在设置中更正。 - + Could not open the server list MD5 file. Please make sure that the server list URL is correct. 无法打开服务器列表MD5文件。 请确定服务器列表URL的正确性。 - + Synchronization of the PokerTH internet server list has failed. Please make sure that the server list URL is correct. 与PokerTH因特网服务器列表的同步失败。 请确定服务器列表URL的正确性。 - + The PokerTH internet server list contains invalid data. If you use a custom server list, please make sure its format is correct. PokerTH因特网服务器列表存在无效的数据。 如果你正在使用一个自定的服务器列表,请确定它的格式是正确的。 - + Could not unzip the PokerTH internet server list. 无法解压缩PokerTH因特网服务器列表。 - + Could not download the PokerTH internet server list. Please make sure you are directly connected to the internet. 无法下载PokerTH因特网服务器列表。 请确定你是否与因特网链接。 - + Could not open the target file when downloading the server list. 在下载服务器列表过程中无法打开目标文件。 - + The PokerTH server does not support this version of the game.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. PokerTH服务器不支持这个版本的游戏。<br>请访问<a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a>并下载最新的版本。 - + Sorry, this server is already full. 对不起,服务器已经满人了。 - + Invalid login. Please check your username and password. - + Your account is blocked indefinitely. - + You cannot login at this time. Please try again in a few seconds. - + This game is of type invite-only. You cannot join this game without being invited. - + Invalid password when joining the game. Please reenter the password and try again. 加入游戏时使用了错误的密码。 请重新输入密码并重试。 - + The password is too long. Please choose another one. 密码太长。请重新选择。 @@ -4036,67 +4095,67 @@ Please choose a different name. 玩家名称太短、太长或者无效。请重新选择。 - + The game name is either too short or too long. Please choose another one. 游戏名称过长或者果断。请重新选择。 - + The game could not be found. 找不到游戏。 - + The chat text is invalid. 无效的聊天文本。 - + The server referred to an unknown player. Aborting. 服务器引用了一个未知的玩家。正在终止。 - + Internal error: The current player could not be found. 内部错误:找不到当前玩家。 - + Internal error: The current player is not active. 内部错误:当前玩家无响应。 - + You were kicked from the server. 你被踢出服务器。 - + You were temporarily banned from the server. 你暂时被服务器封禁。 - + Your server connection timed out due to inactivity. You are very welcome to reconnect! 你与服务器的连接因为闲置而超时。请重新连接! - + The client player count is invalid. 无效的客户端玩家计数。 - + Too many manual blinds were set. Please reconfigure the manual blinds. 设定了过多的手动盲注,请重新设定手动盲注。 - + An invalid avatar file was configured. Please choose a different avatar. 配置的头像文件不可用。请选择其它的头像。 - + The selected avatar file is too large. Please choose a different avatar. 你选择的头像文件过大。请重新选择。 @@ -4105,81 +4164,81 @@ Please choose a different name. 你现在不能上传新的头像文件。请几秒后重试。 - + An internal avatar error occured. Please report this to an admin in the lobby chat. 发生内部错误。请将其通过大厅聊天报告给管理员。 - + Could not start game: Synchronization failed. 无法开始游戏:同步失败。 - + The server is down for maintenance. Please try again later. 服务器正在进行维护。请稍后重试。 - + An internal error occured. 发生内部错误。 - - - + - - - - - - + + + + + + + + Network Notification 网络通知 - + You were kicked from the game. 你被踢出游戏。 - + Sorry, this game is already full. 对不起,游戏已经满人了。 - + Unable to join - the server has already started the game. 无法加入 - 服务器已经开始游戏。 - + Your admin state timed out due to inactivity. Feel free to create a new game! 你的管理员状态因为闲置而超时。请重新创建游戏! - + You cannot join this type of game as guest. - + The settings are invalid for this type of game. - + A new release of PokerTH is available.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. 有新版本的PokerTH可用。<br>请访问<a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a>并下载最新的版本。 - + This beta release of PokerTH is outdated.<br>Please go to <a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a> and download the latest version. 这个公测版的PokerTH已过期。<br>请访问<a href="http://www.pokerth.net/" target="_blank">http://www.pokerth.net</a>并下载最新的版本。 - + Server Message