diff --git a/src/config/configfile.cpp b/src/config/configfile.cpp index eaf83692..3bdc9f61 100644 --- a/src/config/configfile.cpp +++ b/src/config/configfile.cpp @@ -52,7 +52,7 @@ ConfigFile::ConfigFile(int argc, char **argv) : noWriteAccess(0) if(strcmp(argv[i], "--nowriteaccess") == 0) { noWriteAccess = 1; } } // !!!! Revisionsnummer der Configdefaults !!!!! - configRev = 45; + configRev = 46; //standard defaults logOnOffDefault = "1"; @@ -207,6 +207,7 @@ ConfigFile::ConfigFile(int argc, char **argv) : noWriteAccess(0) configList.push_back(ConfigInfo("InternetServerUseSctp", CONFIG_TYPE_INT, "0")); 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")); configList.push_back(ConfigInfo("IRCServerAddress", CONFIG_TYPE_STRING, "chat.freenode.net")); configList.push_back(ConfigInfo("IRCServerPort", CONFIG_TYPE_INT, "6667")); configList.push_back(ConfigInfo("IRCChannel", CONFIG_TYPE_STRING, "#pokerth-lobby")); diff --git a/src/gui/qt/aboutpokerth.ui b/src/gui/qt/aboutpokerth.ui index 543033ea..99983427 100755 --- a/src/gui/qt/aboutpokerth.ui +++ b/src/gui/qt/aboutpokerth.ui @@ -253,7 +253,10 @@ 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;">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</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 pictures</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> diff --git a/src/gui/qt/gamelobbydialog.ui b/src/gui/qt/gamelobbydialog.ui index 87b4f851..662a2521 100644 --- a/src/gui/qt/gamelobbydialog.ui +++ b/src/gui/qt/gamelobbydialog.ui @@ -427,7 +427,7 @@ - + Lobby-Chat diff --git a/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.cpp b/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.cpp index 452cccd7..fdaf78aa 100644 --- a/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.cpp +++ b/src/gui/qt/gamelobbydialog/gamelobbydialogimpl.cpp @@ -46,6 +46,14 @@ void gameLobbyDialogImpl::exec() assert(mySession); mySession->terminateIrcClient(); mySession->startIrcClient(); + + if(myConfig->readConfigInt("UseIRCLobbyChat")) { + groupBox_lobbyChat->show(); + } + else { + groupBox_lobbyChat->hide(); + } + QDialog::exec(); mySession->terminateIrcClient(); } diff --git a/src/gui/qt/settingsdialog.ui b/src/gui/qt/settingsdialog.ui index fa0763eb..9262a488 100644 --- a/src/gui/qt/settingsdialog.ui +++ b/src/gui/qt/settingsdialog.ui @@ -71,68 +71,7 @@ - - - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - + @@ -1338,9 +1277,9 @@ p, li { white-space: pre-wrap; } - + - Lobby Chat (IRC Server) + Enable/Disable Lobby Chat (IRC Server) true @@ -2882,7 +2821,7 @@ p, li { white-space: pre-wrap; } - + ../../../../../../.designer/backup diff --git a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp index 3120e685..855e9c28 100644 --- a/src/gui/qt/settingsdialog/settingsdialogimpl.cpp +++ b/src/gui/qt/settingsdialog/settingsdialogimpl.cpp @@ -41,6 +41,18 @@ settingsDialogImpl::settingsDialogImpl(QWidget *parent, ConfigFile *c, selectAva if (myConfig->readConfigInt("CLA_NoWriteAccess")) { groupBox_logOnOff->setDisabled(TRUE); } + comboBox_switchLanguage->addItem(tr("Dutch"),"nl"); + comboBox_switchLanguage->addItem(tr("English"),"en"); + comboBox_switchLanguage->addItem(tr("French"),"fr"); + comboBox_switchLanguage->addItem(tr("German"),"de"); + comboBox_switchLanguage->addItem(tr("Hungarian"),"hu"); + comboBox_switchLanguage->addItem(tr("Italien"),"it"); + comboBox_switchLanguage->addItem(tr("Norse"),"no"); + comboBox_switchLanguage->addItem(tr("Portuguese"),"ptbr"); + comboBox_switchLanguage->addItem(tr("Russian"),"ru"); + comboBox_switchLanguage->addItem(tr("Solvak"),"sk"); + comboBox_switchLanguage->addItem(tr("Turkish"),"tr"); + connect( buttonBox, SIGNAL( accepted() ), this, SLOT( isAccepted() ) ); connect( lineEdit_HumanPlayerName, SIGNAL( textChanged( const QString &) ), this, SLOT( playerNickChanged() ) ); connect( lineEdit_Opponent1Name, SIGNAL( textChanged(const QString &) ), this, SLOT( playerNickChanged() ) ); @@ -69,6 +81,8 @@ settingsDialogImpl::settingsDialogImpl(QWidget *parent, ConfigFile *c, selectAva connect( radioButton_netManualBlindsOrder, SIGNAL( toggled(bool) ), this, SLOT( setFirstSmallBlindMargin() )); connect( radioButton_manualBlindsOrder, SIGNAL( toggled(bool) ), this, SLOT( setFirstSmallBlindMargin() )); //temporarely unused until ai is enabled in network + + connect( comboBox_switchLanguage, SIGNAL( currentIndexChanged (int) ), this, SLOT ( setLanguageChanged(int) )); // label_36->hide(); // spinBox_netGameSpeed->hide(); // @@ -82,6 +96,7 @@ void settingsDialogImpl::exec() { // page_4->hide(); playerNickIsChanged = FALSE; + languageIsChanged = FALSE; //Player Nicks lineEdit_HumanPlayerName->setText(QString::fromUtf8(myConfig->readConfigString("MyName").c_str())); @@ -149,12 +164,15 @@ void settingsDialogImpl::exec() { if(myConfig->readConfigInt("UseInternetGamePassword")) { lineEdit_InternetGamePassword->setText(QString::fromUtf8(myConfig->readConfigString("InternetGamePassword").c_str())); } + groupBox_lobbyChat->setChecked(myConfig->readConfigInt("UseIRCLobbyChat")); lineEdit_IRCServerAddress->setText(QString::fromUtf8(myConfig->readConfigString("IRCServerAddress").c_str())); spinBox_IRCServerPort->setValue(myConfig->readConfigInt("IRCServerPort")); lineEdit_IRCChannel->setText(QString::fromUtf8(myConfig->readConfigString("IRCChannel").c_str())); checkBox_IRCServerUseIpv6->setChecked(myConfig->readConfigInt("IRCServerUseIpv6")); //Interface + + comboBox_switchLanguage->setCurrentIndex(comboBox_switchLanguage->findData(QString::fromUtf8(myConfig->readConfigString("Language").c_str()).section('_', 0, 0))); checkBox_showLeftToolbox->setChecked(myConfig->readConfigInt("ShowLeftToolBox")); checkBox_showRightToolbox->setChecked(myConfig->readConfigInt("ShowRightToolBox")); checkBox_showStatusbarMessages->setChecked(myConfig->readConfigInt("ShowStatusbarMessages")); @@ -273,12 +291,14 @@ void settingsDialogImpl::isAccepted() { myConfig->writeConfigInt("InternetServerUseSctp", checkBox_InternetServerUseSctp->isChecked()); myConfig->writeConfigInt("UseInternetGamePassword", checkBox_UseInternetGamePassword->isChecked()); myConfig->writeConfigString("InternetGamePassword", lineEdit_InternetGamePassword->text().toUtf8().constData()); + myConfig->writeConfigInt("UseIRCLobbyChat", groupBox_lobbyChat->isChecked()); myConfig->writeConfigString("IRCServerAddress", lineEdit_IRCServerAddress->text().toUtf8().constData()); myConfig->writeConfigInt("IRCServerPort", spinBox_IRCServerPort->value()); myConfig->writeConfigString("IRCChannel", lineEdit_IRCChannel->text().toUtf8().constData()); myConfig->writeConfigInt("IRCServerUseIpv6", checkBox_IRCServerUseIpv6->isChecked()); // Interface + myConfig->writeConfigString("Language", comboBox_switchLanguage->itemData(comboBox_switchLanguage->currentIndex()).toString().toUtf8().constData()); myConfig->writeConfigInt("ShowLeftToolBox", checkBox_showLeftToolbox->isChecked()); myConfig->writeConfigInt("ShowRightToolBox", checkBox_showRightToolbox->isChecked()); myConfig->writeConfigInt("ShowStatusbarMessages", checkBox_showStatusbarMessages->isChecked()); @@ -343,6 +363,12 @@ void settingsDialogImpl::isAccepted() { //write buffer to disc myConfig->writeBuffer(); + if(languageIsChanged) { + QMessageBox::information(this, tr("Language Changed"), + tr("You have changed application language to %1.\nPlease restart PokerTH to load new language!").arg(comboBox_switchLanguage->itemText(changedLanguageIndex)), + QMessageBox::Ok); + } + //Wenn alles richtig eingegeben wurde --> Dialog schließen if(settingsCorrect) { this->hide(); } } @@ -542,4 +568,11 @@ void settingsDialogImpl::setFirstSmallBlindMargin() { } -} \ No newline at end of file +} + +void settingsDialogImpl::setLanguageChanged(int index) { + + languageIsChanged = TRUE; + changedLanguageIndex = index; + +} diff --git a/src/gui/qt/settingsdialog/settingsdialogimpl.h b/src/gui/qt/settingsdialog/settingsdialogimpl.h index daec5b68..ca6004cf 100644 --- a/src/gui/qt/settingsdialog/settingsdialogimpl.h +++ b/src/gui/qt/settingsdialog/settingsdialogimpl.h @@ -71,6 +71,8 @@ public slots: void checkProperNetFirstSmallBlind(int); void checkProperFirstSmallBlind(int); void setFirstSmallBlindMargin() ; + + void setLanguageChanged(int); private: @@ -94,6 +96,9 @@ private: QString myAppDataPath; + bool languageIsChanged; + int changedLanguageIndex; + }; #endif diff --git a/ts/pokerth_de.ts b/ts/pokerth_de.ts index 7975fe4e..a12da1db 100644 --- a/ts/pokerth_de.ts +++ b/ts/pokerth_de.ts @@ -119,12 +119,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;"> - MacOSX-Paket</p></body></html> - + License Lizenz - + Close Schließen @@ -287,7 +287,10 @@ 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;">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</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 pictures</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> @@ -739,62 +742,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game Spiel - + Joining a private Game Einem Privatspiel beitreten - + You are about to join a private game. Please enter the password! Dies ist ein Privatspiel. Bitte Kennwort eingeben! - + Game Info Spieldaten - + Server Error Serverfehler - + You should not kick yourself from this game! Sie sollten sich nicht selbst des Spieles verweisen ;)! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1548,17 +1551,17 @@ Please choose a smaller picture! settingsDialog - + Interface Interface - + Flipside of Cards Kartenrückseite - + <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;"> @@ -1566,7 +1569,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-style:italic;">Hinweis: Die beste Bild-Qualität erhalten Sie mit folgenden Seitenverhältnissen: </span><span style=" font-weight:600; font-style:italic;">Breite = 100, Höhe = 140.</span></p></body></html> - + Default Voreinstellung @@ -1576,7 +1579,7 @@ p, li { white-space: pre-wrap; } Small Blind: - + Start Cash: Startgeld: @@ -1586,157 +1589,157 @@ p, li { white-space: pre-wrap; } Engine Version: - + Network Server Settings - + Server Port: Server Port: - + Use IPv6 Benutze IPv6 - + Server Password: Server Passwort: - + Computer Engine Computer Engine - + Opponent 5: Gegner 5: - + Opponent 3: Gegner 3: - + Opponent 2: Gegner 2: - + Opponent 1: Gegner 1: - + Opponent 4: Gegner 4: - + Human Player: Menschlicher Spieler: - + Player Nicks Spielernamen - + Day(s) Tag(e) - + Log File Directory: Verzeichnis der Logdatei: - + Log Messages Log-Nachrichten - + Local Game Settings Einstellungen für lokales Spiel - + Network Game Settings Einstellungen für Netzwerkspiel - + Internet Game Settings Einstellungen für Internetspiel - + Show flip-card animation Zeige animierte Karten - + Own flipside picture: Eigenes Rückseiten-Bild: - + Show fade-out animation for non-winning cards Zeige Ausblend-Animation für Verliererkarten - + Show intro on startup Zeige Intro während des Starts - + Show own cards only on mouse click Zeige eigene Karten nur bei Mausklick - + Show right toolbox (F11 to switch on/off) Zeige rechte Toolbox (F11 für an/aus) - + Show left toolbox (F10 to switch on/off) Zeige linke Toolbox (F10 für an/aus) - + Show statusbar messages Zeige Statusbar-Nachrichten - + Show game settings dialog on every new game Zeige den Dialog Spieleinstellungen bei jedem neuen Spiel - + Number of players: Anzahl der Spieler: - + Game Speed: Spielgeschwindigkeit: - + Pause between hands (press "start" button to go on) Pause zwischen den Runden ("Start"-Knopf zum Weiterspielen) - + Game Speed for computer opponents: Spielgeschwindigkeit für Computergegner: @@ -1746,27 +1749,27 @@ p, li { white-space: pre-wrap; } Engine-Version für Computergegener: - + Enable/Disable Logging Loggen an/aus - + Store log files for Speichere Logdateien für - + Write log after every: Schreibe Logdateien nach jeder/jedem: - + Show buttons for small blind and big blind Zeige Symbole für Small Blind und Big Blind Buttons - + Play sound effects Spiele Klangeffekte @@ -1776,22 +1779,22 @@ p, li { white-space: pre-wrap; } 0.4 (aktuell) - + Use SCTP Benutze SCTP - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://en.wikipedia.org/wiki/Ipv6">Was ist das?</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">Was ist das?</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; text-decoration:none;"> @@ -1807,52 +1810,52 @@ p, li { white-space: pre-wrap; } Einstellungen - + Maximum number of players: Maximale Anzahl der Spieler: - + Sound Volume: Lautstärke: - + 10 10 - + Timeout for player action (sec): Zeit für Spieleraktion (Sek.): - + Opponent 6: Gegner 6: - + action (high frequent disc access) Aktion (häufiger Festplattenzugriff) - + hand (medium disc access) Runde (mittlerer Festplattenzugriff) - + game (low disc access) Spiel (geringer Festplattenzugriff) - + QLabel { font-weight: bold; } - + Sound Sound @@ -1862,7 +1865,7 @@ p, li { white-space: pre-wrap; } Runden vor Erhöhung der Blinds: - + <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;"> @@ -1873,17 +1876,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=" font-style:italic;">Hinweis: Standard-</span><span style=" font-weight:600; font-style:italic;">Spieleinstellungen</span><span style=" font-style:italic;"> - wie "</span>Maximale Anzahl Spieler", "<span style=" font-style:italic;">Startgeld" und "Small Blind" - werden von den </span><span style=" font-weight:600; font-style:italic;">Einstellungen für Netzwerkspiel</span> <span style=" font-style:italic;">übernommen.</span></p></body></html> - + Internet Server Settings (Dedicated Server) Internetserver-Einstellungen (dedizierter Server) - + Server Address: Serveradresse: - + Use password for private game: Benutze Passwort für Privatspiele: @@ -1893,67 +1896,67 @@ p, li { white-space: pre-wrap; } Lobby-Chat-Einstellungen (IRC-Server) - + chat.freenode.net chat.freenode.net - + Channel: Kanal: - + #pokerth #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -1963,114 +1966,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Einstellungsfehler - + The entered flipside picture doesn't exists. Please enter an valid picture! Das Rückseitenbild existiert nicht. Bitte geben Sie ein gültiges Bild an! - + The log file directory doesn't exists. Please select an valid directory! Das Logdateien-Verzeichnis existiert nicht. Bitte wählen Sie ein gültiges Verzeichnis! - + Select your flipside picture Wähle das Rückseitenbild @@ -2080,27 +2023,93 @@ Bitte wählen Sie ein gültiges Verzeichnis! Bilder (*.png) - + Open Directory Öffne Verzeichnis - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_eo.ts b/ts/pokerth_eo.ts index 9796dec3..9d1f0893 100644 --- a/ts/pokerth_eo.ts +++ b/ts/pokerth_eo.ts @@ -86,12 +86,12 @@ - + License - + Close @@ -165,7 +165,10 @@ 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;">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</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 pictures</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> @@ -557,62 +560,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + Game Info - + Server Error - + You should not kick yourself from this game! - + Joining a private Game - + You are about to join a private game. Please enter the password! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1337,37 +1340,37 @@ Please choose a smaller picture! - + Play sound effects - + Sound Volume: - + 10 - + Show flip-card animation - + Flipside of Cards - + Own flipside picture: - + <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;"> @@ -1375,157 +1378,157 @@ p, li { white-space: pre-wrap; } - + Default - + Show buttons for small blind and big blind - + Show fade-out animation for non-winning cards - + Show statusbar messages - + Show left toolbox (F10 to switch on/off) - + Interface - + Show intro on startup - + Show right toolbox (F11 to switch on/off) - + Show game settings dialog on every new game - + Number of players: - + Game Speed: - + Start Cash: - + Pause between hands (press "start" button to go on) - + Server Password: - + Server Port: - + Use SCTP - + Use IPv6 - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> - + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> - + Game Speed for computer opponents: - + Maximum number of players: - + Timeout for player action (sec): - + Player Nicks - + Computer Engine - + Opponent 6: - + Opponent 5: - + Opponent 4: - + Opponent 3: - + Opponent 2: - + Opponent 1: - + <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;"> @@ -1533,92 +1536,92 @@ p, li { white-space: pre-wrap; } - + Human Player: - + Enable/Disable Logging - + Store log files for - + Day(s) - + Log File Directory: - + Write log after every: - + action (high frequent disc access) - + hand (medium disc access) - + game (low disc access) - + Log Messages - + Local Game Settings - + Network Game Settings - + Show own cards only on mouse click - + QLabel { font-weight: bold; } - + Sound - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -1626,82 +1629,82 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -1711,137 +1714,143 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error - + The entered flipside picture doesn't exists. Please enter an valid picture! - + The log file directory doesn't exists. Please select an valid directory! - + Select your flipside picture - + Open Directory - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_es.ts b/ts/pokerth_es.ts index 48931b8e..c1efb8a2 100644 --- a/ts/pokerth_es.ts +++ b/ts/pokerth_es.ts @@ -119,7 +119,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 @@ -817,7 +817,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> - + Close Cerrar @@ -979,7 +979,10 @@ 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;">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</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 pictures</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> @@ -1411,62 +1414,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + Game Info - + Server Error Error en el servidor - + You should not kick yourself from this game! No puede expulsarse a sí mismo. - + Joining a private Game - + You are about to join a private game. Please enter the password! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -2262,17 +2265,17 @@ Please choose a smaller picture! settingsDialog - + Interface Entorno - + Flipside of Cards Respaldo de las cartas - + <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;"> @@ -2283,7 +2286,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Nota: La mejor calidad se obtiene con unas proporciones de la imagen de </span><span style=" font-weight:600; font-style:italic;">ancho=100, alto=140.</span></p></body></html> - + Default Predeterminado @@ -2298,7 +2301,7 @@ p, li { white-space: pre-wrap; } Postura mínima: - + Start Cash: Dinero inicial: @@ -2313,17 +2316,17 @@ p, li { white-space: pre-wrap; } Opciones del servidor - + Server Port: Puerto del servidor: - + Use IPv6 Usar IPv6 - + Server Password: Contraseña del servidor: @@ -2333,112 +2336,112 @@ p, li { white-space: pre-wrap; } Opciones predeterminadas de la partida en red - + Computer Engine Motor del ordenador - + Opponent 5: Oponente 5: - + Opponent 3: Oponente 3: - + Opponent 2: Oponente 2: - + Opponent 6: Oponente 6: - + Opponent 1: Oponente 1: - + Opponent 4: Oponente 4: - + Human Player: Jugador humano: - + Player Nicks Apodos de los jugadores - + Day(s) Día(s) - + Log File Directory: Directorio del archivo de registro: - + Log Messages Mensajes de registro - + Local Game Settings Opciones de la partida local - + Network Game Settings Opciones de la partida en red - + Show flip-card animation Mostrar animación de las cartas - + Own flipside picture: Imagen del reverso propias: - + Show fade-out animation for non-winning cards Mostrar animación de fundido para las cartas no ganadoras - + Show intro on startup Mostrar introducción al empezar - + Show right toolbox (F11 to switch on/off) Mostrar herramientas de la derecha (F11 para conmutar) - + Show left toolbox (F10 to switch on/off) Mostrar herramientas de la izquierda (F10 para conmutar) - + Show statusbar messages Mostrar mensaje de la barra de estado - + Show game settings dialog on every new game Mostrar diálogo de opciones de la partida siempre @@ -2448,22 +2451,22 @@ p, li { white-space: pre-wrap; } Manos antes de subir la postura mínima: - + Number of players: Número de jugadores: - + Game Speed: Velocidad del juego: - + Pause between hands (press "start" button to go on) Pausa entre manos (pulsar botón "Iniciar" para seguir) - + Game Speed for computer opponents: Velocidad de juego de los ordenadores oponentes: @@ -2473,27 +2476,27 @@ p, li { white-space: pre-wrap; } Versión del motor para los ordenadores oponentes: - + Enable/Disable Logging Conmutar registro - + Store log files for Guardar los archivos de registro durante - + Write log after every: Escribir el registro cada: - + Show buttons for small blind and big blind Mostrar botones para las posturas mínimas - + Play sound effects Reproducir efectos de sonido @@ -2503,22 +2506,22 @@ p, li { white-space: pre-wrap; } 0.4 (actual) - + Use SCTP Utilizar SCTP - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://en.wikipedia.org/wiki/Ipv6">¿Qué es esto?</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">¿Qué es esto?</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; text-decoration:none;"> @@ -2534,67 +2537,67 @@ p, li { white-space: pre-wrap; } Preferencias - + Maximum number of players: Número máximo de jugadores: - + Sound Volume: Volumen del sonido: - + 10 10 - + Timeout for player action (sec): Tiempo de acción del jugador (seg): - + action (high frequent disc access) acción (acceso a disco muy frecuente) - + hand (medium disc access) mano (acceso a disco medio) - + game (low disc access) partido (acceso a disco bajo) - + Show own cards only on mouse click - + QLabel { font-weight: bold; } - + Sound - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -2602,82 +2605,82 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -2687,114 +2690,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Error en las opciones - + The entered flipside picture doesn't exists. Please enter an valid picture! La imagen del respaldo introducida no existe. Introduzca una imagen válida. - + The log file directory doesn't exists. Please select an valid directory! El directorio del archivo de registro no existe. Introduzca un directorio válido. - + Select your flipside picture Seleccione la imagen del respaldo @@ -2804,27 +2747,93 @@ Introduzca un directorio válido. Imágenes (*.png) - + Open Directory Abrir directorio - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_fr.ts b/ts/pokerth_fr.ts index 080857e5..f3789117 100644 --- a/ts/pokerth_fr.ts +++ b/ts/pokerth_fr.ts @@ -119,7 +119,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 @@ -817,7 +817,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> - + Close Fermer @@ -979,7 +979,10 @@ 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;">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</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 pictures</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> @@ -1411,62 +1414,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + Game Info - + Server Error Erreur du server - + You should not kick yourself from this game! Vous ne pouvez pas vous expulser vous-même de la partie! - + Joining a private Game - + You are about to join a private game. Please enter the password! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -2263,17 +2266,17 @@ Please choose a smaller picture! settingsDialog - + Interface Interface - + Flipside of Cards Dos des cartes - + <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;"> @@ -2284,7 +2287,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Note: Pour optimiser l'affiche des images, choisissez un ratio comme </span><span style=" font-weight:600; font-style:italic;">width=100, height=140.</span></p></body></html> - + Default Defaut @@ -2299,7 +2302,7 @@ p, li { white-space: pre-wrap; } Petite Blind initiale: - + Start Cash: Bourse initiale: @@ -2314,17 +2317,17 @@ p, li { white-space: pre-wrap; } Paramètres server - + Server Port: Port du serveur: - + Use IPv6 Utiliser IPv6 - + Server Password: Mot de passe serveur: @@ -2334,112 +2337,112 @@ p, li { white-space: pre-wrap; } Paramètres réseau par défaut - + Computer Engine Moteur IA - + Opponent 5: Adversaire 5: - + Opponent 3: Adversaire 3: - + Opponent 2: Adversaire 2: - + Opponent 6: Adversaire 6: - + Opponent 1: Adversaire 1: - + Opponent 4: Adversaire 4: - + Human Player: Joueur humain: - + Player Nicks Noms des joueurs - + Day(s) Jour(s) - + Log File Directory: Chemin des journaux: - + Log Messages Journal des messages - + Local Game Settings Paramètres locaux - + Network Game Settings Paramètres réseau - + Show flip-card animation Afficher l'animation lorsque les cartes sont retournées - + Own flipside picture: L'image au dos de mes cartes: - + Show fade-out animation for non-winning cards Afficher l'animation d'effacement pour les mains perdantes - + Show intro on startup Afficher l'intro au démarrage - + Show right toolbox (F11 to switch on/off) Affiche l'encart de droite (F11 pour afficher/cacher) - + Show left toolbox (F10 to switch on/off) Affiche l'encart de gauche (F10 pour afficher/cacher) - + Show statusbar messages Afficher les messages dans la barre de status - + Show game settings dialog on every new game Afficher les paramètres à chaque nouvelle partie @@ -2449,22 +2452,22 @@ p, li { white-space: pre-wrap; } Nb de mains avant l'augmentation de la petite blind: - + Number of players: Nombre de joueurs: - + Game Speed: Vitesse du jeu: - + Pause between hands (press "start" button to go on) Faire une pause entre les mains (Appuyez sur "Démarrer" pour continuer) - + Game Speed for computer opponents: Vitesse du jeu pour les adversaires IA: @@ -2474,27 +2477,27 @@ p, li { white-space: pre-wrap; } Version du moteur pour les adversaires IA: - + Enable/Disable Logging Activer/Désactiver la journalisation - + Store log files for Activer la journalisation pour - + Write log after every: Écrire les entrées de journal après chaque: - + Show buttons for small blind and big blind Afficher les boutons pour la petite et la grande "blind" - + Play sound effects Utiliser les effets sonores @@ -2504,22 +2507,22 @@ p, li { white-space: pre-wrap; } 0.4 (courante) - + Use SCTP Utiliser SCTP - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://en.wikipedia.org/wiki/Ipv6">Qu'est-ce que c'est?</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">Qu'est-ce que c'est?</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; text-decoration:none;"> @@ -2535,67 +2538,67 @@ p, li { white-space: pre-wrap; } Paramètres - + Maximum number of players: Nombre de joueurs maximal: - + Sound Volume: Volume des effets sonores: - + 10 10 - + Timeout for player action (sec): Temps alloué pour l'action du joueur (en secondes): - + action (high frequent disc access) évènement (élevé - accès disque fréquent) - + hand (medium disc access) main (moyenne - accès disque normal) - + game (low disc access) partie (bas - accès disque réduit) - + Show own cards only on mouse click - + QLabel { font-weight: bold; } - + Sound - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -2603,82 +2606,82 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -2688,114 +2691,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Erreur de paramètres - + The entered flipside picture doesn't exists. Please enter an valid picture! L'image sélectionnée pour le dos des cartes n'existe pas. Veuillez entrer une image valide! - + The log file directory doesn't exists. Please select an valid directory! Le répertoire sélectionné pour les journaux n'existe pas Veuillez sélectionner un répertoire valide! - + Select your flipside picture Sélectionnez une image pour le dos des cartes @@ -2805,27 +2748,93 @@ Veuillez sélectionner un répertoire valide! Images (*.png) - + Open Directory Parcourir - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_hu.ts b/ts/pokerth_hu.ts index 6d24bd3f..80083d78 100644 --- a/ts/pokerth_hu.ts +++ b/ts/pokerth_hu.ts @@ -119,12 +119,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;"> - MacOSX csomag></body></html> - + License Licensz - + Close Bezár @@ -269,7 +269,10 @@ 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;">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</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 pictures</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> @@ -691,62 +694,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + Game Info - + 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 - + You are about to join a private game. Please enter the password! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1540,17 +1543,17 @@ Please choose a smaller picture! settingsDialog - + Interface Általános beállítások - + Flipside of Cards A kártyák hátoldala - + <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -1558,7 +1561,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-style:italic;">Fontos: A jobb minőség érdekében ajánlott kép paraméterek: </span><span style=" font-weight:600; font-style:italic;">Szélesség = 100 kpt, magasság = 140 kpt.</span></p></body></html> - + Default Alapértelmezett @@ -1573,7 +1576,7 @@ p, li { white-space: pre-wrap; } Kisvak: - + Start Cash: Induló pénz: @@ -1588,17 +1591,17 @@ p, li { white-space: pre-wrap; } Szerver beállítások - + Server Port: Szerver Port: - + Use IPv6 IPv6 használata - + Server Password: Szerver jelszó: @@ -1608,107 +1611,107 @@ p, li { white-space: pre-wrap; } Hálózati játék alapértelmezett beállításai - + Computer Engine Gépi ellenfelek - + Opponent 5: Ellenfél 5: - + Opponent 3: Ellenfél 3: - + Opponent 2: Ellenfél 2: - + Opponent 1: Ellenfél 1: - + Opponent 4: Ellenfél 4: - + Human Player: Emberi játékos: - + Player Nicks Játékos beállítások - + Day(s) napig - + Log File Directory: Napló fájl : - + Log Messages Naplózott üzenetek - + Local Game Settings Helyi játék beállításai - + Network Game Settings Hálózati játék beállításai - + Show flip-card animation Kártya animáció mutatása - + Own flipside picture: Saját kártya hátoldal: - + Show fade-out animation for non-winning cards A nem nyertes kártyák eltűnés animációjának mutatása - + Show intro on startup Intró mutatása játék indításánál - + Show right toolbox (F11 to switch on/off) Jobb oldali panel mutatása (F11 - mutat/rejt) - + Show left toolbox (F10 to switch on/off) Bal oldali panel mutatása (F10 - mutat/rejt) - + Show statusbar messages Információs sáv üzeneteinek megjelenítése - + Show game settings dialog on every new game Játékbeállítások mutatása minden új játék indításánál @@ -1718,22 +1721,22 @@ p, li { white-space: pre-wrap; } Kisvak emelése előtti körök: - + Number of players: Játékosok száma: - + Game Speed: Játék sebessége: - + Pause between hands (press "start" button to go on) Szünet a körök között ("Indítás" gomb lenyomására megy tovább) - + Game Speed for computer opponents: Gépi ellenfelek sebessége: @@ -1743,27 +1746,27 @@ p, li { white-space: pre-wrap; } Program verzió (gépi ellenfeleké): - + Enable/Disable Logging Naplózás engedése/tiltása - + Store log files for Naplófájl tárolása - + Write log after every: Naplózás minden esemény után: - + Show buttons for small blind and big blind Kisvak és Nagyvak gomb mutatása - + Play sound effects Hangok lejátszása @@ -1773,22 +1776,22 @@ p, li { white-space: pre-wrap; } 0.4 (aktuális) - + Use SCTP SCTP használata - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://en.wikipedia.org/wiki/Ipv6">Mi ez?</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">Mi ez?</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; text-decoration:none;"> @@ -1805,72 +1808,72 @@ Szélesség = 50 kpt, magasság = 50 kpt.</span></p></body>< Beállítások - + Maximum number of players: Játékosok maximális száma: - + Sound Volume: Hangerő: - + 10 - + Timeout for player action (sec): Játékos rendelkezésére álló idő (mp.): - + Opponent 6: Ellenfél 6: - + action (high frequent disc access) Akció (magas lemezhasználat) - + hand (medium disc access) Kör (közepes lemezhasználat) - + game (low disc access) Játék (alacsony lemezhasználat) - + Show own cards only on mouse click - + QLabel { font-weight: bold; } - + Sound - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -1878,82 +1881,82 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -1963,114 +1966,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Beállítási hiba - + The entered flipside picture doesn't exists. 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 exists. Please select an valid directory! A napló fájl mappája nem elérhető. Kérlek válassz egy valós mappát! - + Select your flipside picture Válaszd ki a kártya hátaoldalának képét @@ -2080,27 +2023,93 @@ Kérlek válassz egy valós mappát! Képek (*.png) - + Open Directory Mappa megnyitása - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_it.ts b/ts/pokerth_it.ts index a093db9f..430716c5 100644 --- a/ts/pokerth_it.ts +++ b/ts/pokerth_it.ts @@ -100,7 +100,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;">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, architettura iniziale, interfaccia grafica, versione Linux, 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;"> - idea iniziale, architettura iniziale, progettazione 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;"> - programmazione di rete, versione 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, programmazione web</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;"> - versione MacOS</p></body></html> - + License Licenza @@ -798,7 +798,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> - + Close Chiudi @@ -947,7 +947,10 @@ 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;">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</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 pictures</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> @@ -1384,62 +1387,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game partita - + Game Info Informazioni Partita - + Server Error Errore server - + You should not kick yourself from this game! Non potete auto espellervi da questa partita! - + Joining a private Game Unione a partita privata in corso - + You are about to join a private game. Please enter the password! Stai per unitri ad una partita privata. Inserisci la password! - + running - + open - + hands mani - + minutes minuti - + double blinds - + manual blinds order @@ -2238,17 +2241,17 @@ Si prega di scegliere un'immagine più piccola! settingsDialog - + Interface Interfaccia - + Flipside of Cards Dorso delle carte - + <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;"> @@ -2259,7 +2262,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">N.B.: Per una migliore qualità utilizzare un rapporto di dimensione come </span><span style=" font-weight:600; font-style:italic;">larghezza=100, altezza=140.</span></p></body></html> - + Default Defaut @@ -2274,7 +2277,7 @@ p, li { white-space: pre-wrap; } Small Blind: - + Start Cash: Contante iniziale: @@ -2289,17 +2292,17 @@ p, li { white-space: pre-wrap; } Impostazioni server - + Server Port: Porta del server: - + Use IPv6 Utilizzare IPv6 - + Server Password: Password del server: @@ -2309,112 +2312,112 @@ p, li { white-space: pre-wrap; } Impostazioni rete predefinite - + Computer Engine Intelligenza artificiale - + Opponent 5: Giocatore 5: - + Opponent 3: Giocatore 3: - + Opponent 2: Giocatore 2: - + Opponent 6: Giocatore 6: - + Opponent 1: Giocatore 1: - + Opponent 4: Giocatore 4: - + Human Player: Giocatore umano: - + Player Nicks Nomi dei giocatori - + Day(s) Giorno(i) - + Log File Directory: Percorso file di log: - + Log Messages Registro messaggi - + Local Game Settings Impostazioni locali - + Network Game Settings Impostazioni rete - + Show flip-card animation Visualizza l'animazione delle carte - + Own flipside picture: Immagine del dorso delle carte: - + Show fade-out animation for non-winning cards Visualizzare la dissolvenza per le carte non vincenti - + Show intro on startup Visualizzare l'introduzione all'avvio - + Show right toolbox (F11 to switch on/off) Visualizzare il toolbox a destra (F11 per attivare/disattivare) - + Show left toolbox (F10 to switch on/off) Visualizzare il toolbox a sinistra (F10 per attivare/disattivare) - + Show statusbar messages Visualizzare i messaggi nella barra di stato - + Show game settings dialog on every new game Visualizzare la finestra delle impostazioni di gioco all'inizio di ogni nuova partita @@ -2425,22 +2428,22 @@ all'inizio di ogni nuova partita Numero di mani prima di aumentare lo Small Blind: - + Number of players: Numero dei giocatori: - + Game Speed: Velocità: - + Pause between hands (press "start" button to go on) Pausa tra una mano e l'altra (premere start per proseguire) - + Game Speed for computer opponents: Velocità di gioco per gli avversari AI: @@ -2450,27 +2453,27 @@ all'inizio di ogni nuova partita Versione del motore per gli avversari AI: - + Enable/Disable Logging Attivare/disattivare il registro eventi - + Store log files for Memorizza file di log per - + Write log after every: Scrivi sul file di log ogni: - + Show buttons for small blind and big blind Visualizzare i bottoni per Small e Big Blind - + Play sound effects Abilita gli effetti sonori @@ -2480,22 +2483,22 @@ all'inizio di ogni nuova partita 0.4 (corrente) - + Use SCTP Utilizzare SCTP - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://it.wikipedia.org/wiki/Ipv6">Che cos'è?</a> - + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> <a href="http://it.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">Che cos'è?</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; text-decoration:none;"> @@ -2511,67 +2514,67 @@ p, li { white-space: pre-wrap; } Impostazioni - + Maximum number of players: Numero massimo di giocatori: - + Sound Volume: Volume effetti sonori: - + 10 10 - + Timeout for player action (sec): Tempo limite per l'azione del giocatore (in secondi): - + action (high frequent disc access) azione (elevato - accesso frequente al disco) - + hand (medium disc access) mano (media - accesso normale al disco) - + game (low disc access) partita (basso - accesso ridotto al disco) - + Show own cards only on mouse click Mostrare le proprie carte al click del mouse - + QLabel { font-weight: bold; } QLabel { font-weight: bold; } - + Sound Sonoro - + Network Server Settings Impostazioni Server di Rete - + Internet Game Settings Impostazioni Partita su Internet - + <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;"> @@ -2579,17 +2582,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-style:italic;">N.B.: Le Impostazioni Predefinite di </span><span style=" font-weight:600; font-style:italic;">Gioco</span><span style=" font-style:italic;"> come "</span>Numero Massimo di Giocatori", "<span style=" font-style:italic;">Contante Iniziale" e "Small Blind" saranno utilizzate </span><span style=" font-weight:600; font-style:italic;">nelle impostazioni del gioco in rete.</span></p></body></html> - + Internet Server Settings (Dedicated Server) Impostazioni Server Internet (Server Dedicato) - + Server Address: Indirizzo Server: - + Use password for private game: Utilizzare password per partita privata: @@ -2599,67 +2602,67 @@ p, li { white-space: pre-wrap; } Impostazioni Chat (Server IRC) - + chat.freenode.net chat.freenode.net - + Channel: Canale: - + #pokerth #pokerth - + Reverse order of F-Keys (F1 - F3) Inverti l'ordine dei tasti funzione (F1 - F3) - + First small blind: Primo small Blind: - + Raise blinds: Aumenta blind: - + Every: Ogni: - + hands mani - + minutes minuti - + Raise mode: Modalità aumento: - + Always double blinds Raddoppia sempre i blind - + Manual blinds order: Ordine manuale blind: - + Edit ... Modifica ... @@ -2669,114 +2672,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Errore nelle impostazioni - + The entered flipside picture doesn't exists. Please enter an valid picture! L'immagine selezionata per il dorso delle carte non esiste. Inserite un'immagine valida! - + The log file directory doesn't exists. Please select an valid directory! La cartella per il file di log non esiste. Inserite una directory valida! - + Select your flipside picture Selezionare un'immagine per il dorso delle carte @@ -2786,27 +2729,93 @@ Inserite una directory valida! Immmagine (*.png) - + Open Directory Apri cartella - + Images (*.png *.jpg *.gif) Immagini (*.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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_nl.ts b/ts/pokerth_nl.ts index 01644dd1..2bf9d6e1 100644 --- a/ts/pokerth_nl.ts +++ b/ts/pokerth_nl.ts @@ -100,7 +100,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 @@ -798,7 +798,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> - + Close Sluiten @@ -998,7 +998,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;"> - for self recorded chip sounds</p></body></html> - <html><head><meta name="qrichtext" content="1" /><style type="text/css"> + <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> @@ -1013,6 +1013,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-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> + + + <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;">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</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> + + changeCompleteBlindsDialog @@ -1531,62 +1552,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + Game Info Spelinformatie - + Server Error Serverfout - + You should not kick yourself from this game! U mag zichzelf niet uit dit spel verwijderen! - + game spel - + 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! - + running bezig - + open open - + hands rondes - + minutes minuten - + double blinds verdubbeling blinds - + manual blinds order handmatige blindsvolgorde @@ -2391,17 +2412,17 @@ Kies een kleinere afbeelding! settingsDialog - + Interface Interface - + Flipside of Cards Kaartachterkant - + <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;"> @@ -2409,7 +2430,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-style:italic;">Opmerking: Beste kwaliteit met een hoogte-breedteverhouding gelijk aan </span><span style=" font-weight:600; font-style:italic;">hoogte=140, breedte=100.</span></p></body></html> - + Default Standaard @@ -2424,7 +2445,7 @@ p, li { white-space: pre-wrap; } Kleine blind: - + Start Cash: Startgeld: @@ -2439,17 +2460,17 @@ p, li { white-space: pre-wrap; } Server-instellingen - + Server Port: Serverpoort: - + Use IPv6 IPv6 gebruiken - + Server Password: Serverwachtwoord: @@ -2459,112 +2480,112 @@ p, li { white-space: pre-wrap; } Standaardinstellingen van netwerkspel - + Computer Engine Computertegenstanders - + Opponent 5: Tegenstander 5: - + Opponent 3: Tegenstander 3: - + Opponent 2: Tegenstander 2: - + Opponent 6: Tegenstander 6: - + Opponent 1: Tegenstander 1: - + Opponent 4: Tegenstander 4: - + Human Player: Menselijke Speler: - + Player Nicks Spelersnamen - + Day(s) dag(en) - + Log File Directory: Map voor logbestanden: - + Log Messages Logberichten - + Local Game Settings Instellingen van lokaal spel - + Network Game Settings Instellingen van netwerkspel - + Show flip-card animation Omdraaiende kaarten-animatie weergeven - + Own flipside picture: Eigen afbeelding voor kaartachterkant: - + Show fade-out animation for non-winning cards Fade out-animatie van niet-winnende kaarten weergeven - + Show intro on startup Introductiescherm weergeven bij het starten - + Show right toolbox (F11 to switch on/off) Rechter hulpscherm weergeven (F11 om aan/uit te zetten) - + Show left toolbox (F10 to switch on/off) Linker hulpscherm weergeven (F10 om aan/uit te zetten) - + Show statusbar messages Berichten weergeven in de statusbalk - + Show game settings dialog on every new game Instellingenvenster laten zien voor elk nieuw spel @@ -2574,22 +2595,22 @@ p, li { white-space: pre-wrap; } Rondes voordat blinds omhooggaan: - + Number of players: Aantal spelers: - + Game Speed: Speelsnelheid: - + Pause between hands (press "start" button to go on) Stoppen tussen rondes (druk op Start om door te gaan) - + Game Speed for computer opponents: Speelsnelheid van computertegenstanders: @@ -2599,27 +2620,27 @@ p, li { white-space: pre-wrap; } Simulatorversie van computertegenstanders: - + Enable/Disable Logging Logbestanden schrijven - + Store log files for Bewaar de logbestanden - + Write log after every: Logbestand bijwerken na elke: - + Show buttons for small blind and big blind Buttons voor kleine blind en grote blind weergeven - + Play sound effects Geluidseffecten afspelen @@ -2629,22 +2650,22 @@ p, li { white-space: pre-wrap; } 0.4 (huidige) - + Use SCTP SCTP gebruiken - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://nl.wikipedia.org/wiki/Ipv6">Wat is dit?</a> - + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> <a href="http://nl.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">Wat is dit?</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; text-decoration:none;"> @@ -2660,57 +2681,57 @@ p, li { white-space: pre-wrap; } Instellingen - + Maximum number of players: Maximale aantal spelers: - + Sound Volume: Volume: - + 10 10 - + Timeout for player action (sec): Bedenktijd voor de spelers (sec): - + action (high frequent disc access) handeling (veel schijfactiviteit) - + hand (medium disc access) ronde (matige schijfactiviteit) - + game (low disc access) partij (weinig schijfactiviteit) - + Show own cards only on mouse click Kaarten alleen weergeven bij muisklik - + Sound Geluid - + Network Server Settings Instellingen van netwerkserver - + <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;"> @@ -2721,27 +2742,27 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Opmerking: standaard </span><span style=" font-weight:600; font-style:italic;">spelinstellingen</span><span style=" font-style:italic;">, zoals "</span>Maximale aantal spelers", "<span style=" font-style:italic;">Startgeld" en "Kleine blind" worden overgenomen van </span><span style=" font-weight:600; font-style:italic;">Instellingen van netwerkspel.</span></p></body></html> - + Internet Server Settings (Dedicated Server) Instellingen van internetserver (pokerserver) - + Server Address: Serveradres: - + Use password for private game: Wachtwoord gebruiken voor privéspel: - + Internet Game Settings Instellingen van internetspel - + QLabel { font-weight: bold; } QLabel { font-weight: bold; } @@ -2756,87 +2777,87 @@ p, li { white-space: pre-wrap; } Instellingen voor het chatten in de lobby (IRC-server) - + chat.freenode.net chat.freenode.net - + Channel: Kanaal: - + #pokerth #pokerth - + Reverse order of F-Keys (F1 - F3) Omgekeerde volgorde van F-toetsen (F1 - F3) - + First small blind: Kleine blind bij het begin: - + Raise blinds: Blinds verhogen: - + Every: Na elke: - + hands rondes - + minutes minuten - + Raise mode: Verhoogmodus: - + Always double blinds Blinds altijd verdubbelen - + Manual blinds order: Handmatige blindsvolgorde: - + Edit ... Bewerken ... - + Sound Categories Geluidcategorieën - + Play game actions sounds like "check", "call", "raise" Geluiden van spelacties als 'checken', 'callen' en 'raisen' - + Play lobby chat notifications Meldingen van het chatten in de lobby - + Play network/internet game notifications like "player joined the game" Meldingen van netwerk-/internetspellen als 'speler erbij' @@ -2846,94 +2867,34 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Fout in instellingen - + The entered flipside picture doesn't exists. Please enter an valid picture! De ingestelde afbeelding voor de kaartachterkant bestaat niet. Stel een geldige afbeelding in! - + The log file directory doesn't exists. Please select an valid directory! De map voor logbestanden bestaat niet. Selecteer een geldige map! - + Select your flipside picture Uw afbeelding voor de kaartachterkant selecteren @@ -2943,22 +2904,22 @@ 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. @@ -2966,6 +2927,72 @@ This first-small-blind-value will be set to maximum allowed value. is minder dan de kleine blind bij het begin! De kleine blind bij het begin wordt ingesteld op de maximale waarde. + + + Dutch + + + + + English + + + + + French + + + + + German + + + + + Hungarian + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_no.ts b/ts/pokerth_no.ts index 09af5a6e..5b55bc34 100644 --- a/ts/pokerth_no.ts +++ b/ts/pokerth_no.ts @@ -100,7 +100,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 @@ -454,7 +454,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;">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 @@ -572,7 +572,10 @@ 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;">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</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 pictures</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> @@ -1004,62 +1007,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + 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 - + You are about to join a private game. Please enter the password! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1849,17 +1852,17 @@ Please choose a smaller picture! settingsDialog - + Interface Brukergrensesnitt - + Flipside of Cards Baksiden av kort - + <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;"> @@ -1867,7 +1870,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-style:italic;">Merk: kvaliteten blir best med forhold som </span><span style=" font-weight:600; font-style:italic;">bredde=100, høyde=140.</span></p></body></html> - + Default Vanlig @@ -1882,7 +1885,7 @@ p, li { white-space: pre-wrap; } Small Blind: - + Start Cash: Startkapital: @@ -1897,17 +1900,17 @@ p, li { white-space: pre-wrap; } Tjener-instillinger - + Server Port: Tjener-port: - + Use IPv6 Bruk IPv6 - + Server Password: Passord for tjener: @@ -1917,107 +1920,107 @@ p, li { white-space: pre-wrap; } Standardinstillinger for nettverksspill - + Computer Engine Datamaskin-motor - + Opponent 5: Motstander 5: - + Opponent 3: Motstander 3: - + Opponent 2: Motstander 2: - + Opponent 1: Motstander 1: - + Opponent 4: Motstander 4: - + Human Player: Mennesklig spiller: - + Player Nicks Kallenavn på spillere - + Log File Directory: Katalog for loggfiler: - + Day(s) dag(er) - + Log Messages Logg - + Local Game Settings Innstillinger for lokalt spill - + Network Game Settings Innstillinger for nettverks-spill - + Show flip-card animation Vis animasjon når kort vendes - + Own flipside picture: Eget bakside-bilde: - + Show fade-out animation for non-winning cards La kort som ikke vinner tones ut - + Show intro on startup Vis intro ved oppstart - + Show right toolbox (F11 to switch on/off) Vis verktøykasse på høyre side (F11 skrur av/på) - + Show left toolbox (F10 to switch on/off) Vis verktøykasse på venstre side (F10 skrur av/på) - + Show statusbar messages Vis beskjeder i statuslinja - + Show game settings dialog on every new game Vis spill-innstillinger ved hvert nye spill @@ -2027,22 +2030,22 @@ p, li { white-space: pre-wrap; } Antall henter før "Small Blind" økes: - + Number of players: Antall spillere: - + Game Speed: Spill-hastighet: - + Pause between hands (press "start" button to go on) Pause mellom hender (trykk "start"-knappen for å fortsette) - + Game Speed for computer opponents: Hastighet for datamaskinstyrte motstandere: @@ -2052,27 +2055,27 @@ p, li { white-space: pre-wrap; } Versjon av spillmotor for datamaskinstyrte motstandere: - + Enable/Disable Logging Skru på/av logging - + Store log files for Lagre logg-filer i - + Write log after every: Skriv logg etter hver(t): - + Show buttons for small blind and big blind Vis knapper for "small blind" og "big blind" - + Play sound effects Bruk lydeffekter @@ -2082,22 +2085,22 @@ p, li { white-space: pre-wrap; } 0.4 (nåværende) - + Use SCTP Bruk SCTP - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://no.wikipedia.org/wiki/Ipv6">Hva er dette?</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">Hva er dette?</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; text-decoration:none;"> @@ -2110,72 +2113,72 @@ p, li { white-space: pre-wrap; } Innstillinger - + Maximum number of players: Maks. antall spillere: - + Sound Volume: Lyd-nivå: - + 10 10 - + Opponent 6: Motstander 6: - + Timeout for player action (sec): Tidsgrense for spillere (sek.): - + action (high frequent disc access) Handling (hyppig disk-bruk) - + hand (medium disc access) Hånd (medium disk-bruk) - + game (low disc access) Spill (lav disk-bruk) - + Show own cards only on mouse click - + QLabel { font-weight: bold; } - + Sound - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -2183,82 +2186,82 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -2268,114 +2271,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Feil i instillinger - + The entered flipside picture doesn't exists. Please enter an valid picture! Det angitte bildet finnes ikke. Vennligst vis til et gyldig bilde! - + The log file directory doesn't exists. Please select an valid directory! Katalogen for logg-filer finnes ikke. Vennligst velg en gyldig katalog! - + Select your flipside picture Velg bakside-bilde @@ -2385,27 +2328,93 @@ 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_pl.ts b/ts/pokerth_pl.ts index 9796dec3..9d1f0893 100644 --- a/ts/pokerth_pl.ts +++ b/ts/pokerth_pl.ts @@ -86,12 +86,12 @@ - + License - + Close @@ -165,7 +165,10 @@ 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;">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</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 pictures</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> @@ -557,62 +560,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + Game Info - + Server Error - + You should not kick yourself from this game! - + Joining a private Game - + You are about to join a private game. Please enter the password! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1337,37 +1340,37 @@ Please choose a smaller picture! - + Play sound effects - + Sound Volume: - + 10 - + Show flip-card animation - + Flipside of Cards - + Own flipside picture: - + <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;"> @@ -1375,157 +1378,157 @@ p, li { white-space: pre-wrap; } - + Default - + Show buttons for small blind and big blind - + Show fade-out animation for non-winning cards - + Show statusbar messages - + Show left toolbox (F10 to switch on/off) - + Interface - + Show intro on startup - + Show right toolbox (F11 to switch on/off) - + Show game settings dialog on every new game - + Number of players: - + Game Speed: - + Start Cash: - + Pause between hands (press "start" button to go on) - + Server Password: - + Server Port: - + Use SCTP - + Use IPv6 - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> - + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> - + Game Speed for computer opponents: - + Maximum number of players: - + Timeout for player action (sec): - + Player Nicks - + Computer Engine - + Opponent 6: - + Opponent 5: - + Opponent 4: - + Opponent 3: - + Opponent 2: - + Opponent 1: - + <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;"> @@ -1533,92 +1536,92 @@ p, li { white-space: pre-wrap; } - + Human Player: - + Enable/Disable Logging - + Store log files for - + Day(s) - + Log File Directory: - + Write log after every: - + action (high frequent disc access) - + hand (medium disc access) - + game (low disc access) - + Log Messages - + Local Game Settings - + Network Game Settings - + Show own cards only on mouse click - + QLabel { font-weight: bold; } - + Sound - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -1626,82 +1629,82 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -1711,137 +1714,143 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error - + The entered flipside picture doesn't exists. Please enter an valid picture! - + The log file directory doesn't exists. Please select an valid directory! - + Select your flipside picture - + Open Directory - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_ptbr.ts b/ts/pokerth_ptbr.ts index 945d4092..83341198 100644 --- a/ts/pokerth_ptbr.ts +++ b/ts/pokerth_ptbr.ts @@ -504,12 +504,12 @@ p, li { white-space: pre-wrap; } Sobre PokerTH 0.5 - + Close Fechar - + License Licença @@ -598,7 +598,10 @@ 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;">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</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 pictures</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> @@ -1035,62 +1038,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game jogo - + Game Info Info de jogo - + Server Error Erro de Servidor - + You should not kick yourself from this game! Você não pode se chutar deste jogo! - + Joining a private Game Entrando num jogo privado - + You are about to join a private game. Please enter the password! Você esta prestes a entrar em um jogo privado. Por favor entre com a senha! - + running - + open - + hands Mãos - + minutes minutos - + double blinds - + manual blinds order @@ -1869,17 +1872,17 @@ Por favor escolha outra imagem! settingsDialog - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://pt.wikipedia.org/wiki/Ipv6">O que é isso?</a> - + <a href="http://en.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">What is this?</a> <a href="http://pt.wikipedia.org/wiki/Stream_Control_Transmission_Protocol">O que é isso?</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; text-decoration:none;"> @@ -1890,7 +1893,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Nota: A melhor qualidade do avatar com rátio de imagem </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-family:'Nimbus Sans L'; font-size:9pt; font-weight:400; font-style:normal; text-decoration:none;"> @@ -1906,32 +1909,32 @@ p, li { white-space: pre-wrap; } 0.4 (Atual) - + 10 10 - + action (high frequent disc access) Ação (acesso fregüente elevado de disco) - + Computer Engine Computador - + Day(s) Dia(s) - + Default Original - + Enable/Disable Logging Ativar/Desativar Registros @@ -1946,27 +1949,27 @@ p, li { white-space: pre-wrap; } Versão do jogo: - + Flipside of Cards Lado oposto das Cartas - + game (low disc access) Jogo (acesso a disco baixo) - + Game Speed for computer opponents: Velocidade do Jogo para Oponentes Computador: - + Game Speed: Velocidade do Jogo: - + hand (medium disc access) hand (acesso a disco médio) @@ -1976,12 +1979,12 @@ p, li { white-space: pre-wrap; } Hands antes de aumentar o small blind: - + Human Player: Jogador Humano: - + Interface Interface @@ -1991,22 +1994,22 @@ p, li { white-space: pre-wrap; } Configurações Originais de Jogo Local - + Local Game Settings Configurações de Jogo Local - + Log File Directory: Diretório de registro de arquivo: - + Log Messages Mensagens do Registro - + Maximum number of players: Número máximo de jogadores: @@ -2016,72 +2019,72 @@ p, li { white-space: pre-wrap; } Configurações originais para Jogo em Rede - + Network Game Settings Configurações para Jogo em Rede - + Number of players: Número de jogadores: - + Opponent 1: Oponente 1: - + Opponent 2: Oponente 2: - + Opponent 3: Oponente 3: - + Opponent 4: Oponente 4: - + Opponent 5: Oponente 5: - + Opponent 6: Oponente 6: - + Own flipside picture: Sua imagem do lado oposto: - + Pause between hands (press "start" button to go on) Pausa entre as hands (pressione o botão "iniciar" para continuar) - + Play sound effects Ouvir efeitos sonoros - + Player Nicks Apelidos de jogadores - + Server Password: Senha do Servidor: - + Server Port: Porta do Servidor: @@ -2096,42 +2099,42 @@ p, li { white-space: pre-wrap; } Configurações - + Show buttons for small blind and big blind Mostrar botões para small blind e big blind - + Show fade-out animation for non-winning cards Mostrar animação de fade-out para não ganhadores - + Show flip-card animation Mostrar animação de flip-card - + Show game settings dialog on every new game Mostrar diálogo de configurações do jogo a novo jogo - + Show intro on startup Mostrar introdução ao iniciar - + Show left toolbox (F10 to switch on/off) Mostrar caixa de ferramentas a esquerda (F10 para ligar/desligar) - + Show right toolbox (F11 to switch on/off) Mostrar caixa de ferramentas a direita (F11 para ligar/desligar) - + Show statusbar messages Mostrar barra de status de mensagens @@ -2141,67 +2144,67 @@ p, li { white-space: pre-wrap; } Small Blind: - + Sound Volume: Volume de Som: - + Start Cash: Dinheiro Inicial: - + Store log files for Armazenar arquivos de registro para - + Timeout for player action (sec): Tempo esgotado para ação do jogador (sec): - + Use IPv6 Usar IPv6 - + Use SCTP Usar SCTP - + Write log after every: Escrever o registro todas as vezes após: - + Show own cards only on mouse click Mostrar suas cartas apenas com o click do mouse - + QLabel { font-weight: bold; } QLabel { font-weight: bold; } - + Sound Som - + Network Server Settings Configurações do Servidor de rede - + Internet Game Settings Configurações para jogos de internet - + <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;"> @@ -2209,17 +2212,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-style:italic;">Nota: Padrão </span><span style=" font-weight:600; font-style:italic;">Configurações de Jogo</span><span style=" font-style:italic;"> Como "</span>Numero máximo de jogadores", "<span style=" font-style:italic;">Dinheiro incial" e "Small Blind" serão usados </span><span style=" font-weight:600; font-style:italic;">para configurações de jogos em rede.</span></p></body></html> - + Internet Server Settings (Dedicated Server) Configurações de Servidor da Internet (Servidor Dedicado) - + Server Address: Endereço de Servidor: - + Use password for private game: Usar senha para jogo privado: @@ -2229,67 +2232,67 @@ p, li { white-space: pre-wrap; } Conigurações de Sala de Bate-Papo (Servidor IRC) - + chat.freenode.net chat.freenode.net - + Channel: Canal: - + #pokerth #pokerth - + Reverse order of F-Keys (F1 - F3) Reverter as ordens das teclas F* (F1 - F3) - + First small blind: Primeiro small blind: - + Raise blinds: Aumentar blinds: - + Every: Sempre: - + hands Mãos - + minutes minutos - + Raise mode: Modo aumentar: - + Always double blinds Sempre duplo blinds - + Manual blinds order: Ordem manual de blinds: - + Edit ... Editar ... @@ -2299,88 +2302,28 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) @@ -2392,51 +2335,117 @@ p, li { white-space: pre-wrap; } Imagens (*.png) - + Open Directory Abrir Diretório - + Select your flipside picture Selecionar sua imagem do lado oposto - + Settings Error Erro de Configuração - + The entered flipside picture doesn't exists. Please enter an valid picture! A imagem do Lado Oposto do baralho não existe. Por favor entre com uma imagem válida! - + The log file directory doesn't exists. Please select an valid directory! O diretório do arquivo de registro não existe. Por favor selecione um diretório valido! - + Images (*.png *.jpg *.gif) Imagens (*.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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_ru.ts b/ts/pokerth_ru.ts index 58c4219c..6a961e3f 100644 --- a/ts/pokerth_ru.ts +++ b/ts/pokerth_ru.ts @@ -163,12 +163,12 @@ p, li { white-space: pre-wrap; } Благодарности - + License Лицензия - + Close Закрыть @@ -286,7 +286,10 @@ 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;">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</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 pictures</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> @@ -743,7 +746,7 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game игра @@ -758,57 +761,57 @@ p, li { white-space: pre-wrap; } Вы хотите присоединиться к приватной игре. Пожалуйста, введите пароль! - + Game Info Информация об игре - + Server Error Ошибка сервера - + You should not kick yourself from this game! Вы не можете отключить себя от этой игры! - + Joining a private Game Присоединиться к приватной игре - + You are about to join a private game. Please enter the password! Вы хотите присоединиться к приватной игре. Пожалуйста, введите пароль! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1617,17 +1620,17 @@ Please choose a smaller picture! Наcтройки - + Flipside of Cards Рубашка карт - + Own flipside picture: Своя рубашка карт: - + <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;"> @@ -1638,57 +1641,57 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Замечание: Наилучшее качество изображения с размерами картинки </span><span style=" font-weight:600; font-style:italic;">ширина=100, высота=140.</span></p></body></html> - + Default По умолчанию - + Show flip-card animation Показывать анимацию переворота карт - + Show buttons for small blind and big blind Показывать кнопки для малой и большой ставок - + Show fade-out animation for non-winning cards Показывать постепенное исчезновение невыигрышных карт - + Show statusbar messages Показывать сообщения в строке состояния - + Show left toolbox (F10 to switch on/off) Показывать левую панель (F10 для вкл/выкл) - + Interface Интерфейс - + Show intro on startup Показывать заставку при старте программы - + Show right toolbox (F11 to switch on/off) Показывать правую панель (F11 для вкл/выкл) - + Play sound effects Включить звуковые эффекты - + Show game settings dialog on every new game Показывать диалог настроек перед началом игры @@ -1698,7 +1701,7 @@ p, li { white-space: pre-wrap; } Количество партий для повышения малой ставки: - + Number of players: Количество игроков: @@ -1713,17 +1716,17 @@ p, li { white-space: pre-wrap; } Малая ставка: - + Game Speed: Скорость игры: - + Start Cash: Начальная сумма: - + Pause between hands (press "start" button to go on) Пауза между партиями (нажмите "Старт" для продолжения) @@ -1743,32 +1746,32 @@ p, li { white-space: pre-wrap; } Настройки сервера - + Server Password: Пароль сервера: - + Server Port: Порт сервера: - + Use SCTP Использовать SCTP - + Use IPv6 Использовать IPv6 - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://en.wikipedia.org/wiki/Ipv6">Что это такое?</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">Что это такое?</a> @@ -1778,12 +1781,12 @@ p, li { white-space: pre-wrap; } Настройки сетевой игры по умолчанию - + Game Speed for computer opponents: Скорость игры компьютерных оппонентов: - + Maximum number of players: Максимальное количество игроков: @@ -1793,7 +1796,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;"> @@ -1804,132 +1807,132 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Замечание: Наилучшее качество аватары при размерах картинки </span><span style=" font-weight:600; font-style:italic;">ширина=50, высота=50.</span></p></body></html> - + Computer Engine Компьютерные противники - + Opponent 5: Оппонент 5: - + Opponent 4: Оппонент 4: - + Opponent 3: Оппонент 3: - + Opponent 2: Оппонент 2: - + Opponent 1: Оппонент 1: - + Human Player: Игрок: - + Player Nicks Имена игроков - + Enable/Disable Logging Включение/Выключение записи событий - + Store log files for Сохранять логи - + Day(s) дней - + Log File Directory: Каталог для файла лога: - + Write log after every: Записывать лог после каждого: - + Log Messages Сообщения лога - + Local Game Settings Настройки локальной игры - + Network Game Settings Настройки сетевой игры - + Sound Volume: Громкость: - + 10 10 - + Opponent 6: Оппонент 6: - + Timeout for player action (sec): Тайм-аут для хода игрока (сек): - + action (high frequent disc access) действия (много обращений к диску) - + hand (medium disc access) партии (средняя частота обращений к диску) - + game (low disc access) игры (малое количество обращения к диску) - + Show own cards only on mouse click Показывать свои карты только после клика мышью - + QLabel { font-weight: bold; } - + Sound Звук @@ -1939,17 +1942,17 @@ p, li { white-space: pre-wrap; } Количество партий для повышения ставки: - + Network Server Settings Настройки сетевого сервера - + Internet Game Settings Настройки Интернет-игры - + <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;"> @@ -1960,17 +1963,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=" font-style:italic;">Замечание: </span><span style=" font-weight:600; font-style:italic;">Настройки игры по-умолчанию,</span><span style=" font-style:italic;"> такие как "</span>Максимальное количество игроков", "<span style=" font-style:italic;">Начальная сумма" и "Малая ставка" будут взяты </span><span style=" font-weight:600; font-style:italic;">из Настроек Сетевой Игры .</span></p></body></html> - + Internet Server Settings (Dedicated Server) Настройки Интернет-сервера (Выделенный сервер) - + Server Address: Адрес сервера: - + Use password for private game: Использовать пароль для приватной игры: @@ -1980,67 +1983,67 @@ p, li { white-space: pre-wrap; } Настройки общего чата (IRC сервер) - + chat.freenode.net - + Channel: Канал: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -2050,114 +2053,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Ошибка в настройках - + The entered flipside picture doesn't exists. Please enter an valid picture! Указанная картика рубашки карт не существует. Укажите правильную картинку! - + The log file directory doesn't exists. Please select an valid directory! Указанный каталог для лога не существует. Укажите правильный каталог! - + Select your flipside picture Выберите свою картинку рубашки карт @@ -2167,27 +2110,93 @@ 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. + + + Dutch + + + + + English + + + + + French + + + + + German + + + + + Hungarian + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_sk.ts b/ts/pokerth_sk.ts index c45b0333..08589e32 100644 --- a/ts/pokerth_sk.ts +++ b/ts/pokerth_sk.ts @@ -133,12 +133,12 @@ p, li { white-space: pre-wrap; } Poďakovanie - + License Licencia - + Close Zavrieť @@ -212,7 +212,10 @@ 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;">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</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 pictures</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> @@ -644,62 +647,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + Game Info - + Server Error Chyba servera - + You should not kick yourself from this game! Nemali by ste z hry vykopnúť sám seba! - + Joining a private Game - + You are about to join a private game. Please enter the password! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1501,37 +1504,37 @@ Please choose a smaller picture! Nastavenia - + Play sound effects Prehrávať zvukové efekty - + Sound Volume: Hlasitosť zvuku: - + 10 10 - + Show flip-card animation Ukazovať animáciu otáčania kariet - + Flipside of Cards Ruby kariet - + Own flipside picture: Vlastný obrázok na rube kariet: - + <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;"> @@ -1542,47 +1545,47 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Poznámka: Najlepšiu kvalitu dosiahnte pri veľkosti obrázka </span><span style=" font-weight:600; font-style:italic;">šírka=100, výška=140.</span></p></body></html> - + Default Implicitný - + Show buttons for small blind and big blind Zobrazovať tlačidlá pre malú a veľkú stávku - + Show fade-out animation for non-winning cards Animácia stmavenia nevýherných kariet - + Show statusbar messages Zobrazovať správy v stavovom riadku - + Show left toolbox (F10 to switch on/off) Zobrazovať ľavú nástrojovú lištu (F10 pre vypnutie/zapnutie) - + Interface Interface - + Show intro on startup Zobrazovať na začiatku intro - + Show right toolbox (F11 to switch on/off) Zobrazovať pravú nástrojovú lištu (F10 pre vypnutie/zapnutie) - + Show game settings dialog on every new game Zobrazovať dialógové okno s nastaveniami pred každou novou hrou @@ -1592,7 +1595,7 @@ p, li { white-space: pre-wrap; } Počet rozdaní pred zvýšením malej stávky naslepo: - + Number of players: Počet hráčov: @@ -1607,17 +1610,17 @@ p, li { white-space: pre-wrap; } Malá stávka naslepo: - + Game Speed: Rýchlosť hry: - + Start Cash: Úvodná hotovosť: - + Pause between hands (press "start" button to go on) Prestávka medzi rozdaniami (stlačte tlačidlo "start" pre pokračovanie) @@ -1637,32 +1640,32 @@ p, li { white-space: pre-wrap; } Nastavenia servera - + Server Password: Heslo servera: - + Server Port: Port servera: - + Use SCTP Používať SCTP - + Use IPv6 Používať IPv6 - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://en.wikipedia.org/wiki/Ipv6">Čo je to?</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">Čo je to?</a> @@ -1672,12 +1675,12 @@ p, li { white-space: pre-wrap; } Implicitné nastavenia sieťovej hry - + Game Speed for computer opponents: Rýchlosť hry počítačových súperov: - + Maximum number of players: Maximálny počet hráčov: @@ -1687,52 +1690,52 @@ p, li { white-space: pre-wrap; } Verzia enginu pre počítačových súperov: - + Timeout for player action (sec): Časový limit pre hráčovu akciu (sek): - + Player Nicks Prezývky hráčov - + Computer Engine Počítačový engine - + Opponent 6: Súper 6: - + Opponent 5: Súper 5: - + Opponent 4: Súper 4: - + Opponent 3: Súper 3: - + Opponent 2: Súper 2: - + Opponent 1: Súper 1: - + <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;"> @@ -1743,92 +1746,92 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-style:italic;">Poznámka: Najlepšiu kvalitu má avatar pri veľkosti obrázka </span><span style=" font-weight:600; font-style:italic;">šírka=50, výška=50.</span></p></body></html> - + Human Player: Ľudský hráč: - + Enable/Disable Logging Zapnúť/vypnúť zaznamenávanie - + Store log files for Ukladať log súbory - + Day(s) Deň(dní) - + Log File Directory: Adresár s log súborom: - + Write log after every: Zapísať log pri každom: - + action (high frequent disc access) akcia (častý prístup na disk) - + hand (medium disc access) rozdanie (stredný prístup na disk) - + game (low disc access) hra (nízky prístup na disk) - + Log Messages Zaznamenávať správy - + Local Game Settings Nastavenia lokálnej hry - + Network Game Settings Nastavenia sieťovej hry - + Show own cards only on mouse click - + QLabel { font-weight: bold; } - + Sound - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -1836,82 +1839,82 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth - + Reverse order of F-Keys (F1 - F3) - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... @@ -1921,114 +1924,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error Chyba v nastaveniach - + The entered flipside picture doesn't exists. Please enter an valid picture! Zvolený obrázok pre rub kariet neexistuje. Prosím, vyberte platný obrázok! - + The log file directory doesn't exists. Please select an valid directory! Súbor pre log súbor neexistuje. Prosím, vyberte platný adresár! - + Select your flipside picture Vyberte si obrázok pre rub kariet @@ -2038,27 +1981,93 @@ Prosím, vyberte platný adresár! Obrázky (*.png) - + Open Directory Otvoriť adresár - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog diff --git a/ts/pokerth_tr.ts b/ts/pokerth_tr.ts index 3e9c679c..8e8e40c1 100644 --- a/ts/pokerth_tr.ts +++ b/ts/pokerth_tr.ts @@ -100,12 +100,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;"><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 @@ -253,7 +253,10 @@ 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;">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</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 pictures</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> @@ -665,62 +668,62 @@ p, li { white-space: pre-wrap; } gameLobbyDialogImpl - + game - + Joining a private Game - + You are about to join a private game. Please enter the password! - + Game Info - + Server Error Sunucu Hatası - + You should not kick yourself from this game! Bu oyunda kendi kendinizi tekmeleyemezsiniz! - + running - + open - + hands - + minutes - + double blinds - + manual blinds order @@ -1502,17 +1505,17 @@ Please choose a smaller picture! settingsDialog - + Interface Arayüz - + Flipside of Cards Kartların kıvrık tarafı - + <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;"> @@ -1520,7 +1523,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-style:italic;">Not: En iyi kalitede resim oranı </span><span style=" font-weight:600; font-style:italic;">genişlik=100, yükseklik=140.</span></p></body></html> - + Default Ön Tanımlı @@ -1535,7 +1538,7 @@ p, li { white-space: pre-wrap; } Small Blind: - + Start Cash: Ödemeyi Başlat: @@ -1550,17 +1553,17 @@ p, li { white-space: pre-wrap; } Sunucu Ayarları - + Server Port: Sunucu Bağlantı Noktası: - + Use IPv6 IPv6 Kullan - + Server Password: Sunucu Parolası: @@ -1570,107 +1573,107 @@ p, li { white-space: pre-wrap; } Ön Tanımlı Ağ Oyunu Ayarları - + Computer Engine Bilgisayar Motoru - + Opponent 5: Rakip 5: - + Opponent 3: Rakip 3: - + Opponent 2: Rakip 2: - + Opponent 1: Rakip 1: - + Opponent 4: Rakip 4: - + Human Player: Gerçek Oyuncu: - + Player Nicks Ouncu Takma Adları - + Log File Directory: Günlük Dosyası Dizini: - + Day(s) Gün(ler) - + Log Messages Günlük Mesajları - + Local Game Settings Yerel Oyun Ayarları - + Network Game Settings Ağ Oyunu Ayarları - + Show flip-card animation Kart-çevirme canlandırmasını göster - + Own flipside picture: Kendi kıvrık taraf resmi: - + Show fade-out animation for non-winning cards Kazanmayan kartlar için kararma canlandırmasını göster - + Show intro on startup Başlangıçta giriş canlandırmasını göster - + Show right toolbox (F11 to switch on/off) Sağ araç çubuğunu göster (F11 aç/kapa geçişi için) - + Show left toolbox (F10 to switch on/off) Sol araç çubuğunu göster (F10 aç/kapa geçişi için) - + Show statusbar messages Durum çubuğu mesajlarını göster - + Show game settings dialog on every new game Her yeni oyunda, oyun ayarları diyaloğunu göster @@ -1680,22 +1683,22 @@ p, li { white-space: pre-wrap; } Antall henter før "Small Blind" økes: - + Number of players: Oyuncu sayısı: - + Game Speed: Oyun Hızı: - + Pause between hands (press "start" button to go on) Eller arasında durakla (devam etmek için başla tuşuna basın) - + Game Speed for computer opponents: Bilgisayar rakipleriniz için Oyun Hızı: @@ -1705,17 +1708,17 @@ p, li { white-space: pre-wrap; } Bilgisayar rakipleriniz için Motor Sürümü: - + Enable/Disable Logging Günlük Tutmayı Etkinleştir/Edilginleştir - + Store log files for Günlük dosyalarını sakla - + Write log after every: Herseferinde son olarak günlük yaz: @@ -1735,12 +1738,12 @@ p, li { white-space: pre-wrap; } Hvert spill (lav disk-bruk) - + Show buttons for small blind and big blind Vis knapper for "small blind" og "big blind" - + Play sound effects Ses etkilerini oynat @@ -1750,22 +1753,22 @@ p, li { white-space: pre-wrap; } 0.4 (şu anki) - + Use SCTP SCTP Kullan - + <a href="http://en.wikipedia.org/wiki/Ipv6">What is this?</a> <a href="http://no.wikipedia.org/wiki/Ipv6">Bu nedir?</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">Bu nedir?</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; text-decoration:none;"> @@ -1778,122 +1781,122 @@ p, li { white-space: pre-wrap; } Ayarlar - + Maximum number of players: En fazla oyuncu sayısı: - + Sound Volume: Ses Oranı: - + 10 10 - + Opponent 6: Rakip 6: - + Timeout for player action (sec): Oyuncu faaliyeti zaman aşımına uğradı (sn): - + action (high frequent disc access) Faaliyet (yüksek sıklıkta disk geçişi) - + hand (medium disc access) El (orta derecede disk geçişi) - + game (low disc access) oyun (düşük disk geçişi) - + Show own cards only on mouse click - + Reverse order of F-Keys (F1 - F3) - + QLabel { font-weight: bold; } - + Sound - + First small blind: - + Raise blinds: - + Every: - + hands - + minutes - + Raise mode: - + Always double blinds - + Manual blinds order: - + Edit ... - + Network Server Settings - + Internet Game Settings - + <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;"> @@ -1901,32 +1904,32 @@ p, li { white-space: pre-wrap; } - + Internet Server Settings (Dedicated Server) - + Server Address: - + Use password for private game: - + chat.freenode.net - + Channel: - + #pokerth @@ -1936,114 +1939,54 @@ p, li { white-space: pre-wrap; } - - Dutch - - - - - English - - - - - French - - - - - German - - - - - Hungarian - - - - - Italian - - - - - Norse - - - - - Portuguese - - - - - Russian - - - - - Slovak - - - - - Spanish - - - - - Turkish - - - - + Sound Categories - + Play game actions sounds like "check", "call", "raise" - + Play lobby chat notifications - + Play network/internet game notifications like "player joined the game" - - Lobby Chat (IRC Server) + + Enable/Disable Lobby Chat (IRC Server) settingsDialogImpl - + Settings Error 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. Lütfen geçerli bir dizin giriniz! - + Select your flipside picture Kıvrık taraf resminizi seçin @@ -2053,27 +1996,93 @@ Lütfen geçerli bir dizin giriniz! Resimler (*.png) - + Open Directory Dizin Aç - + 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 + + + + + Italien + + + + + Norse + + + + + Portuguese + + + + + Russian + + + + + Solvak + + + + + Turkish + + + + + Language Changed + + + + + You have changed application language to %1. +Please restart PokerTH to load new language! + + startNetworkGameDialog