diff --git a/data/translations/pokerth_tr.qm b/data/translations/pokerth_tr.qm index 9860e7a7..5513730c 100644 Binary files a/data/translations/pokerth_tr.qm and b/data/translations/pokerth_tr.qm differ diff --git a/src/config/configfile.cpp b/src/config/configfile.cpp index ac80f641..25543123 100644 --- a/src/config/configfile.cpp +++ b/src/config/configfile.cpp @@ -48,7 +48,7 @@ ConfigFile::ConfigFile(char *argv0, bool readonly) : noWriteAccess(readonly) myQtToolsInterface = CreateQtToolsWrapper(); // !!!! Revisionsnummer der Configdefaults !!!!! - configRev = 56; + configRev = 57; //standard defaults logOnOffDefault = "1"; @@ -196,6 +196,8 @@ ConfigFile::ConfigFile(char *argv0, bool readonly) : noWriteAccess(readonly) configList.push_back(ConfigInfo("InternetServerPassword", CONFIG_TYPE_STRING, "")); configList.push_back(ConfigInfo("InternetServerUseIpv6", CONFIG_TYPE_INT, "0")); configList.push_back(ConfigInfo("InternetServerUseSctp", CONFIG_TYPE_INT, "0")); + configList.push_back(ConfigInfo("UseAvatarServer", CONFIG_TYPE_INT, "0")); + configList.push_back(ConfigInfo("AvatarServerAddress", CONFIG_TYPE_STRING, "")); configList.push_back(ConfigInfo("UseInternetGamePassword", CONFIG_TYPE_INT, "0")); configList.push_back(ConfigInfo("InternetGamePassword", CONFIG_TYPE_STRING, "")); configList.push_back(ConfigInfo("UseIRCLobbyChat", CONFIG_TYPE_INT, "1")); diff --git a/src/gui/qt/settingsdialog.ui b/src/gui/qt/settingsdialog.ui index bd2a509e..9142ef42 100644 --- a/src/gui/qt/settingsdialog.ui +++ b/src/gui/qt/settingsdialog.ui @@ -905,13 +905,28 @@ p, li { white-space: pre-wrap; } + + + 16777215 + 105 + + Raise blinds: + + 6 + 0 + + 6 + + + 6 + @@ -993,13 +1008,28 @@ p, li { white-space: pre-wrap; } 0 + + + 16777215 + 105 + + Raise mode: + + 6 + 0 + + 6 + + + 6 + @@ -1096,16 +1126,16 @@ p, li { white-space: pre-wrap; } - 9 + 6 0 - 9 + 6 - 9 + 6 6 @@ -1352,6 +1382,16 @@ p, li { white-space: pre-wrap; } + + + + Avatar Server: + + + + + + @@ -2880,12 +2920,12 @@ p, li { white-space: pre-wrap; } setEnabled(bool) - 362 - 426 + 360 + 373 - 609 - 426 + 723 + 374 @@ -2896,12 +2936,12 @@ p, li { white-space: pre-wrap; } setEnabled(bool) - 362 - 426 + 360 + 373 - 638 - 426 + 752 + 375 @@ -2912,8 +2952,8 @@ p, li { white-space: pre-wrap; } reject() - 586 - 678 + 595 + 520 599 @@ -2928,12 +2968,12 @@ p, li { white-space: pre-wrap; } setEnabled(bool) - 305 - 39 + 411 + 443 - 305 - 39 + 717 + 444 @@ -2944,12 +2984,12 @@ p, li { white-space: pre-wrap; } setNum(int) - 305 - 39 + 648 + 98 - 305 - 39 + 336 + 99 @@ -2960,12 +3000,12 @@ p, li { white-space: pre-wrap; } setEnabled(bool) - 305 - 39 + 753 + 220 - 305 - 39 + 753 + 256 @@ -2976,12 +3016,28 @@ p, li { white-space: pre-wrap; } setEnabled(bool) - 305 - 39 + 756 + 218 - 305 - 39 + 756 + 245 + + + + + checkBox_useAvatarServer + toggled(bool) + lineEdit_avatarServerAddress + setEnabled(bool) + + + 314 + 318 + + + 366 + 320 diff --git a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp index e8324bbd..5652eb17 100644 --- a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp +++ b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp @@ -177,6 +177,10 @@ void settingsDialogImpl::exec() { lineEdit_InternetServerPassword->setText(QString::fromUtf8(myConfig->readConfigString("InternetServerPassword").c_str())); checkBox_InternetServerUseIpv6->setChecked(myConfig->readConfigInt("InternetServerUseIpv6")); checkBox_InternetServerUseSctp->setChecked(myConfig->readConfigInt("InternetServerUseSctp")); + checkBox_useAvatarServer->setChecked(myConfig->readConfigInt("UseAvatarServer")); + if(myConfig->readConfigInt("UseAvatarServer")) { + lineEdit_avatarServerAddress->setText(QString::fromUtf8(myConfig->readConfigString("AvatarServerAddress").c_str())); + } checkBox_UseInternetGamePassword->setChecked(myConfig->readConfigInt("UseInternetGamePassword")); if(myConfig->readConfigInt("UseInternetGamePassword")) { lineEdit_InternetGamePassword->setText(QString::fromUtf8(myConfig->readConfigString("InternetGamePassword").c_str())); @@ -339,6 +343,13 @@ void settingsDialogImpl::isAccepted() { myConfig->writeConfigInt("InternetServerPort", spinBox_InternetServerPort->value()); myConfig->writeConfigString("InternetServerPassword", lineEdit_InternetServerPassword->text().toUtf8().constData()); } + if(checkBox_useAvatarServer->isChecked()) { + myConfig->writeConfigInt("UseAvatarServer", 1); + myConfig->writeConfigString("AvatarServerAddress", lineEdit_avatarServerAddress->text().toUtf8().constData()); + } + else { + myConfig->writeConfigInt("UseAvatarServer", 0); + } myConfig->writeConfigInt("InternetServerUseIpv6", checkBox_InternetServerUseIpv6->isChecked()); myConfig->writeConfigInt("InternetServerUseSctp", checkBox_InternetServerUseSctp->isChecked()); diff --git a/ts/pokerth_tr.ts b/ts/pokerth_tr.ts index 28133cc6..644de5ce 100644 --- a/ts/pokerth_tr.ts +++ b/ts/pokerth_tr.ts @@ -1,5 +1,6 @@ + Chat @@ -81,7 +82,7 @@ Start vote to kick this user - + Oyuncuyu atmak için oylama başlat @@ -97,7 +98,6 @@ Proje - <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;"> @@ -136,12 +136,10 @@ p, li { white-space: pre-wrap; } Teşekkürler - 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;"> @@ -163,7 +161,6 @@ p, li { white-space: pre-wrap; } Çeviri - <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;"> @@ -178,7 +175,6 @@ 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;"><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 populære avatar-bilder</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Linus, Mark, Viktoria, Florian, Benedikt</span></p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> - for avatar-bilder</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 forskjellige GPL-lisensierte lydeffekter</p><p style=" 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 lydeffekter</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;"> @@ -187,7 +183,6 @@ 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;">&lt;Kunter Kutlu&gt; - &lt;Türkçe&gt;</p><p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> &lt;kunterkutlu@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;"> @@ -205,12 +200,10 @@ 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;"><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;">, farklı popüler avatar resim kaynakları için</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;"> - avatar resimleri için</p><p style="-qt-paragraph-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;"> - farklı gpl lisanslı sesler</p><p style="-qt-paragraph-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 kayıtlı seslerim</p></body></html> - About PokerTH 0.6 PokerTH 0.6 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;"> @@ -243,7 +236,6 @@ p, li { white-space: pre-wrap; } <a href="http://www.pokerth.net" target="_blank">http://www.pokerth.net<a> - <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;"> @@ -275,7 +267,6 @@ 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;">Kunter Kutlu - Türkçe - kunterkutlu@gmail.com</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;"> @@ -502,14 +493,13 @@ p, li { white-space: pre-wrap; } © 2006-2008, FHammer, FThauer, LMay - - Popüler "Texas Holdem" Pokeri için Poker motoru + - Popüler "Texas Holdem" Pokeri için Poker motoru - Tekli oyuncu oyunları 6 ya kadar bilgisayar rakiple oynanabilir - Çoklu oyuncu ağ oyunları - C++ / QT4 ile kodlanmıştır -© 2006-2007, FHammer, FThauer, LMay {6 ?} {4 -?} {2006-2008,?} +© 2006-2009, FHammer, FThauer, LMay @@ -532,7 +522,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;"> - 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;"> - gui graphics design</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;"><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;"> - Ana fikir, temel mimari, temel arayüz yapımı, linux paketi</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;"> - Ana fikir, temel mimari, oyun motoru geliştirme</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;"> - temel mimari, ağ geliştirme, windows paketi, MacOS 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;"> - arayüz yapımı</p></body></html> @@ -541,7 +531,7 @@ p, li { white-space: pre-wrap; } 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;">translator name - mail address</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;">Mustafa Günay - mgunay@linuxmail.org</p></body></html> @@ -563,7 +553,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 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></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> @@ -678,7 +668,6 @@ p, li { white-space: pre-wrap; } Ağ Hatası - Human Player: Mennesklig spiller: @@ -731,7 +720,7 @@ p, li { white-space: pre-wrap; } Reading server list... - + Sunucu listesi okunuyor... @@ -830,7 +819,6 @@ p, li { white-space: pre-wrap; } Paraya Çevirmeyi Başlat: - Small Blind: Small Blind: @@ -943,12 +931,10 @@ p, li { white-space: pre-wrap; } Oyuncu At - Maximum number of players: En fazla oyuncu sayısı: - Small Blind: Small Blind: @@ -1114,12 +1100,10 @@ p, li { white-space: pre-wrap; } gameTable - QMainWindow { background-image: url(:/guiv2/resources/guiv2/table.png); background-position: bottom center; background-origin: content; } QMainWindow { background-image: url(:/guiv2/resources/guiv2/table.png); background-position: bottom center; background-origin: content; } - QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } QGroupBox { background-image: url(:/graphics/resources/graphics/toolboxFrameBG.png) } @@ -1179,7 +1163,6 @@ p, li { white-space: pre-wrap; } Tam Ekran - F F @@ -1209,12 +1192,10 @@ p, li { white-space: pre-wrap; } Ctrl+Q - PokerTH 0.5 - The Open-Source Texas Holdem Engine PokerTH 0.5 - Açık-Kaynak Texas Holdem Motoru - PokerTH 0.6 - The Open-Source Texas Holdem Engine PokerTH 0.5 - Açık-Kaynak Texas Holdem Motoru {0.6 ?} @@ -1279,7 +1260,6 @@ p, li { white-space: pre-wrap; } Ctrl+I - All In Hepsi İçinde @@ -1321,62 +1301,62 @@ p, li { white-space: pre-wrap; } Kick - Tekmele + Tekmele Vote Timeout: - + Kalan oylama süresi: Yes - + Evet No - + Hayır Chance - + Şans Settings - Ayarlar + Ayarlar Configure PokerTH ... - + PokerTH'ı ayarla... Close - Kapat + Kapat Ctrl+X - + Ctrl+X Vote started by: - + Oylamayı başlatan: Show/Hide Chance Window - + Şans Penceresini Göster/Gizle Ctrl+C - + Ctrl+C @@ -1392,7 +1372,6 @@ p, li { white-space: pre-wrap; } Yeni bir oyun başlatmak için Cmd+N - F1 - Fold/All-In | F2 - Check/Call | F3 - Bet/Raise F1 - Katla/Hepsini | F2 - Denetle/Çağır | F3 - Bahis/Yükselt @@ -1491,7 +1470,6 @@ Please make sure that all players use the same version of PokerTH. Lütfen bütün oyuncuların PokerTH ın aynı sürümünü kullandığından emin olun. - The PokerTH server does not support this version of the game. Please update PokerTH. PokerTH sunucusu oyunun bu sürümünü desteklemiyor. @@ -1527,7 +1505,6 @@ Please choose a different name. Lütfen farklı bir isim seçiniz. - The player name is either too short or too long. Please choose another one. Oyuncu ismi çok uzun veya çok kısa. Lütfen farklı bir isim seçiniz. @@ -1670,7 +1647,6 @@ Lütfen başka bir tane seçiniz. F1 - Hepsi içinde | F2 - Bahis/Yükselt | F3 - Denetle/Çağır | F4 - Katla - The PokerTH server does not support this version of the game. 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. @@ -1687,14 +1663,12 @@ Lütfen <a href="http://www.pokerth.net/" target="_blank" Sunucu bakım sebebiyle kapalı. Lütfen sonra tekrar deneyin. - A new release of PokerTH is available. 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. 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. 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. @@ -1755,32 +1729,32 @@ ve lobiye dönmek istiyormusunuz? Chance - + Şans Kick - Tekmele + 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 @@ -1955,7 +1929,6 @@ p, li { white-space: pre-wrap; } Sunucu Profil Hatasını Kaydet - A profile with the name: " İsmi ile beraber bir profil: " @@ -2086,7 +2059,6 @@ Would you like to overwrite ? Ödemeyi Başlat: - Small Blind: Small Blind: @@ -2096,7 +2068,6 @@ Would you like to overwrite ? Oyuncu Sayısı: - Hands before raise small blind: Antall henter før "Small Blind" økes: @@ -2162,7 +2133,6 @@ Would you like to overwrite ? Lütfen listeden bir avatar seçin! - The entered avatar picture doesn't exists. Please enter an valid picture! Girilen avatar resmi mevcut değil. @@ -2174,7 +2144,6 @@ Lütfen geçerli bir resim girin! Harici avatar resmi seç - Images (*.png) Resimler (*.png) @@ -2224,12 +2193,10 @@ p, li { white-space: pre-wrap; } Ön Tanımlı - Local Game Default Settings Ön Tanımlı Yerel Oyun Ayarları - Small Blind: Small Blind: @@ -2239,12 +2206,10 @@ p, li { white-space: pre-wrap; } Ödemeyi Başlat: - Engine Version: Motor Sürümü: - Server Settings Sunucu Ayarları @@ -2264,7 +2229,6 @@ p, li { white-space: pre-wrap; } Sunucu Parolası: - Network Game Default Settings Ön Tanımlı Ağ Oyunu Ayarları @@ -2374,7 +2338,6 @@ p, li { white-space: pre-wrap; } Her yeni oyunda, oyun ayarları diyaloğunu göster - Hands before raise small blind: Antall henter før "Small Blind" økes: @@ -2399,7 +2362,6 @@ p, li { white-space: pre-wrap; } Bilgisayar rakipleriniz için Oyun Hızı: - Engine Version for computer opponents: Bilgisayar rakipleriniz için Motor Sürümü: @@ -2419,17 +2381,14 @@ p, li { white-space: pre-wrap; } Herseferinde son olarak günlük yaz: - every action (high frequent disc access) Hver handling (hyppig disk-bruk) - every hand (medium disc access) Hver hånd (medium disk-bruk) - every game (low disc access) Hvert spill (lav disk-bruk) @@ -2444,7 +2403,6 @@ p, li { white-space: pre-wrap; } Ses etkilerini oynat - 0.4 (current) 0.4 (şu anki) @@ -2522,7 +2480,6 @@ p, li { white-space: pre-wrap; } Sadece fare tıklamasıyla kendi karlarımı göster - Reverse order of F-Keys (F1 - F3) F-Tuşlarının (F1 - F3) ters işlemleri @@ -2667,7 +2624,7 @@ p, li { white-space: pre-wrap; } Reverse order of F-Keys (F1 - F4) - F-Tuşlarının (F1 - F3) ters işlemleri {1 ?} {4)?} + F-Tuşlarının (F1 - F4) ters işlemleri @@ -2734,62 +2691,62 @@ p, li { white-space: pre-wrap; } Automatic Server Configuration URL - + Otomatik Sunucu Ayarları Adresi Serverlist Address: - + Sunucu Listesi Adresi: Manual Server Configuration - + El ile Ayarlanmış Sunucu Ayarları Day(s) - + Gün(ler) Local Game - + Yerel Oyun Network Game - Ağ Oyunu + Ağ Oyunu Internet Game - + İnternet Oyunu Nicks/Avatars - + Takma İsimler/Avatarlar Show cards chance monitor - + Şans Penceresini Göster Internet Server - + İnternet sunucusu Lobby Chat (IRC) - + Kulis-Söyleşisi (IRC) Password: - Parola: + Parola: @@ -2800,14 +2757,12 @@ p, li { white-space: pre-wrap; } Ayar Hatası - The entered flipside picture doesn't exists. Please enter an valid picture! Girilen kıvrık taraf resmi mevcut değil. Lütfen geçerli bir resim girin! - The log file directory doesn't exists. Please select an valid directory! Günlük dosyası dizini mevcut değil. @@ -2819,7 +2774,6 @@ Lütfen geçerli bir dizin giriniz! Kıvrık taraf resminizi seçin - Images (*.png) Resimler (*.png) @@ -2873,7 +2827,6 @@ yüksek değer olarak ayarlanacaktır. Macarca - Norse İskandinavca @@ -2941,43 +2894,44 @@ Lütfen geçerli bir dizin seçiniz! Bulgarian - + Bulgarca Polish - + Polonyaca Chinese - + Çince Greek - + Yünanca Swedish - + İ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 Danish - + Danimarka Dili @@ -3008,7 +2962,6 @@ Please enter a valid server list address! 0 - Kick Tekmele @@ -3051,42 +3004,42 @@ Please enter a valid server list address! PokerTH 0.6.3 - The Open-Source Texas Holdem Engine - PokerTH 0.5 - Açık-Kaynak Texas Holdem Motoru {0.6 ?} {0.6.3 ?} + PokerTH 0.6.3 - Açık-Kaynak Texas Holdem Motoru &2 Internet Game - + &2 İnternet Oyunu &3 Create Network Game - + &3 Ağ Oyunu Oluştur &4 Join Network Game - + &4 Ağ Oyununa Katıl &1 Start Local Game - + &1 Yerel Oyun Başlat PokerTH - + PokerTH Network Game - Ağ Oyunu + Ağ Oyunu Settings - Ayarlar + Ayarlar @@ -3096,52 +3049,52 @@ Please enter a valid server list address! Start Local Game ... - Yerel Oyun Başlat... + Yerel Oyun Başlat... Ctrl+N - Ctrl+N + Ctrl+N Internet Game ... - İnternet Oyunu ... + İnternet Oyunu ... Ctrl+I - Ctrl+I + Ctrl+I About PokerTH - + PokerTH Hakkında Configure PokerTH ... - + PokerTH'ı ayarla... Quit - Çık + Çık Create Network Game ... - Ağ Oyunu Oluştur... + Ağ Oyunu Oluştur... Join Network Game ... - Ağ Oyununa Katıl... + Ağ Oyununa Katıl... Ctrl+Q - Ctrl+Q + Ctrl+Q @@ -3149,69 +3102,69 @@ Please enter a valid server list address! PokerTH %1 - The Open-Source Texas Holdem Engine - PokerTH %1 - Açık-Kaynak Texas Holdem Motoru + PokerTH %1 - Açık-Kaynak Texas Holdem Motoru You cannot join Internet-Game-Lobby with "Human Player" as nickname. Please choose another one. - "Human Player" sahte ismi ile internet-oyun-lobisine giremezsiniz. + "Human Player" sahte ismi ile internet-oyun-lobisine giremezsiniz. Lütfen başka bir tane seçiniz. Network Error - Ağ Hatası + Ağ Hatası Server address was not set. - Sunucu adresi belirtilmedi. + 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). + 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ı. + TCP iletişimi için bir yuva oluşturulamadı. Could not set the IP address. - IP adresi ayarlanamadı. + IP adresi ayarlanamadı. Could not set the port for this type of address. - Bu çeşit bir adres için bağlantı noktası ayarlanamadı. + Bu çeşit bir adres için bağlantı noktası ayarlanamadı. The server name could not be resolved. - Sunucu ismi çözümlenemedi. + 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. + 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. + Dahili ağ hatası - "dinleme" başarısız. Server execution was terminated. - Sunucu işletimi sonlandırıldı. + Sunucu işletimi sonlandırıldı. Could not connect to the server. - Sunucuya bağlanılamadı. + Sunucuya bağlanılamadı. @@ -3219,7 +3172,7 @@ Lütfen başka bir tane seçiniz. Please check the server address. If the server is behind a NAT-Router, make sure port forwarding has been set up on server side. - Bağlantı zaman aşımına uğradı. + Bağlantı zaman aşımına uğradı. 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. @@ -3227,235 +3180,240 @@ Eğer sunucu bir NAT-Router arkasındaysa, sunucu tarafındaki bağlantı noktas Internal network error: "select" failed. - Dahili ağ hatası - "seçim" başarısız. + Dahili ağ hatası - "seçim" başarısız. Internal network error: "send" failed. - Dahili ağ hatası - "gönder" başarısız. + Dahili ağ hatası - "gönder" başarısız. Connection was closed by the server. - Bağlantı, sunucu tarafından kapatıldı. + Bağlantı, sunucu tarafından kapatıldı. Internal network error: Duplicate TCP connection. - Dahili ağ hatası: TCP bağlantısını çoğaltın. + 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ı. + 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ı. + 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. + 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. + Üzgünüm, bu sunucu dolu. Invalid password when joining the game. Please reenter the password and try again. - Oyuna girişte geçersiz parola. + 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. + Parola çok uzun. Lütfen başka bir tane deneyin. Your player name is already used by another player. Please choose a different name. - Oyuncu isminiz başka bir oyuncu tarafından kullanılıyor. + Oyuncu isminiz başka bir oyuncu tarafından kullanılıyor. Lütfen farklı bir isim seçiniz. The player name is too short, too long or invalid. Please choose another one. - Bu oyuncu ismi, çok kısa, çok uzun yahut geçersiz. Lütfen başka 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. + Oyun ismi ya çok uzun yada öok kısa. Lütfen başka birini seçiniz. The game could not be found. - Oyun bulunamadı. + Oyun bulunamadı. The chat text is invalid. - Söyleşi metni geçersiz. + Söyleşi metni geçersiz. The server referred to an unknown player. Aborting. - Sunucu, bilinmeyen bir oyuncuya devredildi. Çıkılıyor. + Sunucu, bilinmeyen bir oyuncuya devredildi. Çıkılıyor. Internal error: The current player could not be found. - Dahili hata: Bu oyuncu bulunamadı. + Dahili hata: Bu oyuncu bulunamadı. Internal error: The current player is not active. - Dahili Hata: Bu oyuncu aktif değil. + Dahili Hata: Bu oyuncu aktif değil. You were kicked from the server. - Sunucu tarafından tekmelendiniz. + 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ış. + İ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. + Ç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. + 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. + Seçili avatar dosyası çok büyük. Lütfen farklı bir avatar seçiniz. You cannot upload a new avatar file at this time. Please try again in a few seconds. - + Ş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. + İç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ı. + 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. + Sunucu bakım sebebiyle kapalı. Lütfen sonra tekrar deneyin. An internal error occured. - Dahili bir hata oluştu. + Dahili bir hata oluştu. Network Notification - Ağ Bildirimi + Ağ Bildirimi You were kicked from the game. - Oyundan atıldınız. + Oyundan atıldınız. Sorry, this game is already full. - Üzgünüm, oyun zaten dolu. + Üzgünüm, oyun zaten dolu. Unable to join - the server has already started the game. - Girilemiyor - sunucu zaten oyuna başladı. + 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! 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. + 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. + 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. @@ -3463,43 +3421,39 @@ Lütfen farklı bir isim seçiniz. Timeout Warning - + Zaman Aşımı Uyarısı Please click "OK" to stop the countdown! - + Gerisayımı durudurmak için lütfen "TAMAM" a basın! You are game-admin of an open game which will time out in %1 seconds. - + Yöneticisi olduğunuz bir oyun %1 saniye sonra zamanaşımına uğrayacak. Your connection is about to time out due to inactivity in %1 seconds. - + Bir etkinlik olmadığından sunucu ile kurduğunuz bağlantı %1 saniye içerisinde zamanaşımına uğrayacak. waitForServerToStartGameDialog - Waiting for Server ... Sunucu Bekleniyor... - Cancel İptal - Waiting for the server to start the game ... Oyuna başlamak için sunucu bekleniyor... - Connected Players Bağlı Oyuncular