moved carddraw from game to player; qt 4.4 compilation fix; minor behaviour change
This commit is contained in:
parent
557aed2ed7
commit
0d84de2384
8 changed files with 315 additions and 260 deletions
|
@ -37,15 +37,6 @@ Game::Game(CardDatabase *_db, Client *_client, QGraphicsScene *_scene, QMenu *_a
|
|||
aSetLife->setShortcut(tr("Ctrl+L"));
|
||||
connect(aSetLife, SIGNAL(triggered()), this, SLOT(actSetLife()));
|
||||
|
||||
aShuffle = new QAction(tr("&Shuffle"), this);
|
||||
aShuffle->setShortcut(tr("Ctrl+S"));
|
||||
connect(aShuffle, SIGNAL(triggered()), this, SLOT(actShuffle()));
|
||||
aDraw = new QAction(tr("&Draw a card"), this);
|
||||
aDraw->setShortcut(tr("Ctrl+D"));
|
||||
connect(aDraw, SIGNAL(triggered()), this, SLOT(actDrawCard()));
|
||||
aDrawCards = new QAction(tr("D&raw cards..."), this);
|
||||
connect(aDrawCards, SIGNAL(triggered()), this, SLOT(actDrawCards()));
|
||||
aDrawCards->setShortcut(tr("Ctrl+E"));
|
||||
aRollDice = new QAction(tr("R&oll dice..."), this);
|
||||
aRollDice->setShortcut(tr("Ctrl+I"));
|
||||
connect(aRollDice, SIGNAL(triggered()), this, SLOT(actRollDice()));
|
||||
|
@ -70,9 +61,6 @@ Game::Game(CardDatabase *_db, Client *_client, QGraphicsScene *_scene, QMenu *_a
|
|||
actionsMenu->addAction(aIncLife);
|
||||
actionsMenu->addAction(aSetLife);
|
||||
actionsMenu->addSeparator();
|
||||
actionsMenu->addAction(aShuffle);
|
||||
actionsMenu->addAction(aDraw);
|
||||
actionsMenu->addAction(aDrawCards);
|
||||
actionsMenu->addAction(aRollDice);
|
||||
actionsMenu->addSeparator();
|
||||
actionsMenu->addAction(aCreateToken);
|
||||
|
@ -354,11 +342,6 @@ void Game::actSetLife()
|
|||
client->setCounter("life", life);
|
||||
}
|
||||
|
||||
void Game::actShuffle()
|
||||
{
|
||||
client->shuffle();
|
||||
}
|
||||
|
||||
void Game::actRollDice()
|
||||
{
|
||||
bool ok;
|
||||
|
@ -367,18 +350,6 @@ void Game::actRollDice()
|
|||
client->rollDice(sides);
|
||||
}
|
||||
|
||||
void Game::actDrawCard()
|
||||
{
|
||||
client->drawCards(1);
|
||||
}
|
||||
|
||||
void Game::actDrawCards()
|
||||
{
|
||||
int number = QInputDialog::getInteger(0, tr("Draw cards"), tr("Number:"));
|
||||
if (number)
|
||||
client->drawCards(number);
|
||||
}
|
||||
|
||||
void Game::actCreateToken()
|
||||
{
|
||||
QString cardname = QInputDialog::getText(0, tr("Create token"), tr("Name:"));
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef GAME_H
|
||||
#define GAME_H
|
||||
|
||||
#include <QHash>
|
||||
#include "playerlist.h"
|
||||
|
||||
class ServerPlayer;
|
||||
|
@ -23,7 +24,7 @@ private:
|
|||
QMenu *actionsMenu, *sayMenu, *cardMenu, *moveMenu;
|
||||
QAction *aTap, *aUntap, *aDoesntUntap, *aFlip, *aAddCounter, *aRemoveCounter, *aSetCounters,
|
||||
*aMoveToTopLibrary, *aMoveToBottomLibrary, *aMoveToGraveyard, *aMoveToExile,
|
||||
*aNextPhase, *aNextTurn, *aUntapAll, *aDecLife, *aIncLife, *aSetLife, *aShuffle, *aDraw, *aDrawCards, *aRollDice, *aCreateToken;
|
||||
*aNextPhase, *aNextTurn, *aUntapAll, *aDecLife, *aIncLife, *aSetLife, *aRollDice, *aCreateToken;
|
||||
DlgStartGame *dlgStartGame;
|
||||
|
||||
CardDatabase *db;
|
||||
|
@ -44,9 +45,6 @@ private slots:
|
|||
void actIncLife();
|
||||
void actDecLife();
|
||||
void actSetLife();
|
||||
void actShuffle();
|
||||
void actDrawCard();
|
||||
void actDrawCards();
|
||||
void actRollDice();
|
||||
void actCreateToken();
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <QLibraryInfo>
|
||||
#include <QDateTime>
|
||||
#include <QSettings>
|
||||
#include <QIcon>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "window_main.h"
|
||||
|
|
|
@ -16,17 +16,18 @@ Player::Player(const QString &_name, int _id, QPointF _base, bool _local, CardDa
|
|||
area->setPos(_base);
|
||||
_scene->addItem(area);
|
||||
|
||||
aMoveHandToTopLibrary = new QAction(tr("Move to &top of library"), this);
|
||||
connect(aMoveHandToTopLibrary, SIGNAL(triggered()), this, SLOT(actMoveHandToTopLibrary()));
|
||||
aMoveHandToBottomLibrary = new QAction(tr("Move to &bottom of library"), this);
|
||||
connect(aMoveHandToBottomLibrary, SIGNAL(triggered()), this, SLOT(actMoveHandToBottomLibrary()));
|
||||
if (local) {
|
||||
aMoveHandToTopLibrary = new QAction(tr("Move to &top of library"), this);
|
||||
connect(aMoveHandToTopLibrary, SIGNAL(triggered()), this, SLOT(actMoveHandToTopLibrary()));
|
||||
aMoveHandToBottomLibrary = new QAction(tr("Move to &bottom of library"), this);
|
||||
connect(aMoveHandToBottomLibrary, SIGNAL(triggered()), this, SLOT(actMoveHandToBottomLibrary()));
|
||||
|
||||
aViewLibrary = new QAction(tr("&View library"), this);
|
||||
if (local)
|
||||
aViewLibrary = new QAction(tr("&View library"), this);
|
||||
aViewLibrary->setShortcut(tr("F3"));
|
||||
connect(aViewLibrary, SIGNAL(triggered()), this, SLOT(actViewLibrary()));
|
||||
aViewTopCards = new QAction(tr("View &top cards of library..."), this);
|
||||
connect(aViewTopCards, SIGNAL(triggered()), this, SLOT(actViewTopCards()));
|
||||
connect(aViewLibrary, SIGNAL(triggered()), this, SLOT(actViewLibrary()));
|
||||
aViewTopCards = new QAction(tr("View &top cards of library..."), this);
|
||||
connect(aViewTopCards, SIGNAL(triggered()), this, SLOT(actViewTopCards()));
|
||||
}
|
||||
|
||||
aViewGraveyard = new QAction(tr("&View graveyard"), this);
|
||||
if (local)
|
||||
|
@ -36,20 +37,37 @@ Player::Player(const QString &_name, int _id, QPointF _base, bool _local, CardDa
|
|||
aViewRfg = new QAction(tr("&View removed cards"), this);
|
||||
connect(aViewRfg, SIGNAL(triggered()), this, SLOT(actViewRfg()));
|
||||
|
||||
aViewSideboard = new QAction(tr("&View sideboard"), this);
|
||||
connect(aViewSideboard, SIGNAL(triggered()), this, SLOT(actViewSideboard()));
|
||||
if (local) {
|
||||
aViewSideboard = new QAction(tr("&View sideboard"), this);
|
||||
connect(aViewSideboard, SIGNAL(triggered()), this, SLOT(actViewSideboard()));
|
||||
|
||||
aDrawCard = new QAction(tr("&Draw card"), this);
|
||||
connect(aDrawCard, SIGNAL(triggered()), this, SLOT(actDrawCard()));
|
||||
aDrawCard->setShortcut(tr("Ctrl+D"));
|
||||
aDrawCards = new QAction(tr("D&raw cards..."), this);
|
||||
connect(aDrawCards, SIGNAL(triggered()), this, SLOT(actDrawCards()));
|
||||
aDrawCards->setShortcut(tr("Ctrl+E"));
|
||||
aShuffle = new QAction(tr("&Shuffle"), this);
|
||||
connect(aShuffle, SIGNAL(triggered()), this, SLOT(actShuffle()));
|
||||
aShuffle->setShortcut(tr("Ctrl+S"));
|
||||
}
|
||||
|
||||
playerMenu = new QMenu(tr("Player \"%1\"").arg(name));
|
||||
|
||||
QMenu *handMenu = playerMenu->addMenu(tr("&Hand"));
|
||||
handMenu->addAction(aMoveHandToTopLibrary);
|
||||
handMenu->addAction(aMoveHandToBottomLibrary);
|
||||
zones.findZone("hand")->setMenu(handMenu);
|
||||
if (local) {
|
||||
QMenu *handMenu = playerMenu->addMenu(tr("&Hand"));
|
||||
handMenu->addAction(aMoveHandToTopLibrary);
|
||||
handMenu->addAction(aMoveHandToBottomLibrary);
|
||||
zones.findZone("hand")->setMenu(handMenu);
|
||||
|
||||
QMenu *libraryMenu = playerMenu->addMenu(tr("&Library"));
|
||||
libraryMenu->addAction(aViewLibrary);
|
||||
libraryMenu->addAction(aViewTopCards);
|
||||
zones.findZone("deck")->setMenu(libraryMenu, aViewLibrary);
|
||||
QMenu *libraryMenu = playerMenu->addMenu(tr("&Library"));
|
||||
libraryMenu->addAction(aDrawCard);
|
||||
libraryMenu->addAction(aDrawCards);
|
||||
libraryMenu->addSeparator();
|
||||
libraryMenu->addAction(aViewLibrary);
|
||||
libraryMenu->addAction(aViewTopCards);
|
||||
zones.findZone("deck")->setMenu(libraryMenu, aDrawCard);
|
||||
}
|
||||
|
||||
QMenu *graveMenu = playerMenu->addMenu(tr("&Graveyard"));
|
||||
graveMenu->addAction(aViewGraveyard);
|
||||
|
@ -59,9 +77,11 @@ Player::Player(const QString &_name, int _id, QPointF _base, bool _local, CardDa
|
|||
rfgMenu->addAction(aViewRfg);
|
||||
zones.findZone("rfg")->setMenu(rfgMenu, aViewRfg);
|
||||
|
||||
QMenu *sbMenu = playerMenu->addMenu(tr("&Sideboard"));
|
||||
sbMenu->addAction(aViewSideboard);
|
||||
zones.findZone("sb")->setMenu(sbMenu, aViewSideboard);
|
||||
if (local) {
|
||||
QMenu *sbMenu = playerMenu->addMenu(tr("&Sideboard"));
|
||||
sbMenu->addAction(aViewSideboard);
|
||||
zones.findZone("sb")->setMenu(sbMenu, aViewSideboard);
|
||||
}
|
||||
}
|
||||
|
||||
Player::~Player()
|
||||
|
@ -114,6 +134,23 @@ void Player::actViewSideboard()
|
|||
emit toggleZoneView(this, "sb", -1);
|
||||
}
|
||||
|
||||
void Player::actShuffle()
|
||||
{
|
||||
client->shuffle();
|
||||
}
|
||||
|
||||
void Player::actDrawCard()
|
||||
{
|
||||
client->drawCards(1);
|
||||
}
|
||||
|
||||
void Player::actDrawCards()
|
||||
{
|
||||
int number = QInputDialog::getInteger(0, tr("Draw cards"), tr("Number:"));
|
||||
if (number)
|
||||
client->drawCards(number);
|
||||
}
|
||||
|
||||
void Player::addZone(CardZone *z)
|
||||
{
|
||||
zones << z;
|
||||
|
|
|
@ -33,18 +33,20 @@ private slots:
|
|||
void actMoveHandToTopLibrary();
|
||||
void actMoveHandToBottomLibrary();
|
||||
|
||||
void actShuffle();
|
||||
void actDrawCard();
|
||||
void actDrawCards();
|
||||
|
||||
void actViewLibrary();
|
||||
void actViewTopCards();
|
||||
|
||||
void actViewGraveyard();
|
||||
|
||||
void actViewRfg();
|
||||
|
||||
void actViewSideboard();
|
||||
private:
|
||||
QMenu *playerMenu;
|
||||
QAction *aMoveHandToTopLibrary, *aMoveHandToBottomLibrary,
|
||||
*aViewLibrary, *aViewTopCards, *aViewGraveyard, *aViewRfg, *aViewSideboard;
|
||||
*aViewLibrary, *aViewTopCards, *aViewGraveyard, *aViewRfg, *aViewSideboard,
|
||||
*aDrawCard, *aDrawCards, *aShuffle;
|
||||
|
||||
int defaultNumberTopCards;
|
||||
QString name;
|
||||
|
|
|
@ -68,6 +68,7 @@ void MainWindow::statusChanged(ProtocolStatus _status)
|
|||
aDisconnect->setEnabled(false);
|
||||
aRestartGame->setEnabled(false);
|
||||
aLeaveGame->setEnabled(false);
|
||||
phasesToolbar->setActivePhase(-1);
|
||||
phasesToolbar->setEnabled(false);
|
||||
emit logDisconnected();
|
||||
break;
|
||||
|
@ -82,10 +83,12 @@ void MainWindow::statusChanged(ProtocolStatus _status)
|
|||
}
|
||||
aRestartGame->setEnabled(false);
|
||||
aLeaveGame->setEnabled(false);
|
||||
phasesToolbar->setActivePhase(-1);
|
||||
phasesToolbar->setEnabled(false);
|
||||
|
||||
GameSelector *gameSelector = new GameSelector(client);
|
||||
viewLayout->insertWidget(0, gameSelector);
|
||||
break;
|
||||
}
|
||||
case StatusPlaying:
|
||||
phasesToolbar->setEnabled(true);
|
||||
|
@ -186,6 +189,8 @@ void MainWindow::serverTimeout()
|
|||
|
||||
void MainWindow::retranslateUi()
|
||||
{
|
||||
setWindowTitle(tr("Cockatrice"));
|
||||
|
||||
aConnect->setText(tr("&Connect..."));
|
||||
aDisconnect->setText(tr("&Disconnect"));
|
||||
aRestartGame->setText(tr("&Restart game..."));
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="de_DE" sourcelanguage="en_US">
|
||||
<!DOCTYPE TS><TS version="1.1" language="de_DE">
|
||||
<defaultcodec></defaultcodec>
|
||||
<context>
|
||||
<name></name>
|
||||
<message>
|
||||
|
@ -29,7 +29,6 @@
|
|||
<message>
|
||||
<location filename="../src/carddatabasemodel.cpp" line="57"/>
|
||||
<source>Name</source>
|
||||
<translatorcomment>Name der Karte</translatorcomment>
|
||||
<translation>Name</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -186,7 +185,6 @@
|
|||
<translation>Spiel erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/dlg_creategame.cpp" line="54"/>
|
||||
<location filename="../src/dlg_creategame.cpp" line="71"/>
|
||||
<source>Error</source>
|
||||
<translation>Fehler</translation>
|
||||
|
@ -320,100 +318,100 @@
|
|||
<message>
|
||||
<location filename="../src/game.cpp" line="40"/>
|
||||
<source>&Shuffle</source>
|
||||
<translation>Mi&schen</translation>
|
||||
<translation type="obsolete">Mi&schen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="41"/>
|
||||
<source>Ctrl+S</source>
|
||||
<translation>Ctrl+S</translation>
|
||||
<translation type="obsolete">Ctrl+S</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="43"/>
|
||||
<source>&Draw a card</source>
|
||||
<translation>Karte &ziehen</translation>
|
||||
<translation type="obsolete">Karte &ziehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="44"/>
|
||||
<source>Ctrl+D</source>
|
||||
<translation>Ctrl+D</translation>
|
||||
<translation type="obsolete">Ctrl+D</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="46"/>
|
||||
<source>D&raw cards...</source>
|
||||
<translation>Ka&rten ziehen...</translation>
|
||||
<translation type="obsolete">Ka&rten ziehen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="48"/>
|
||||
<source>Ctrl+E</source>
|
||||
<translation>Ctrl+E</translation>
|
||||
<translation type="obsolete">Ctrl+E</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="49"/>
|
||||
<location filename="../src/game.cpp" line="40"/>
|
||||
<source>R&oll dice...</source>
|
||||
<translation>&Würfeln...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="50"/>
|
||||
<location filename="../src/game.cpp" line="41"/>
|
||||
<source>Ctrl+I</source>
|
||||
<translation>Ctrl+I</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="53"/>
|
||||
<location filename="../src/game.cpp" line="44"/>
|
||||
<source>&Create token...</source>
|
||||
<translation>&Token erstellen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="54"/>
|
||||
<location filename="../src/game.cpp" line="45"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation>Ctrl+T</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="57"/>
|
||||
<location filename="../src/game.cpp" line="48"/>
|
||||
<source>Next &phase</source>
|
||||
<translation>Nächste &Phase</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="58"/>
|
||||
<location filename="../src/game.cpp" line="49"/>
|
||||
<source>Ctrl+Space</source>
|
||||
<translation>Ctrl+Space</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="60"/>
|
||||
<location filename="../src/game.cpp" line="51"/>
|
||||
<source>Next &turn</source>
|
||||
<translation>Nächster &Zug</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="61"/>
|
||||
<location filename="../src/game.cpp" line="52"/>
|
||||
<source>Ctrl+Enter</source>
|
||||
<translation>Ctrl+Enter</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="61"/>
|
||||
<location filename="../src/game.cpp" line="52"/>
|
||||
<source>Ctrl+Return</source>
|
||||
<translation>Ctrl+Return</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="91"/>
|
||||
<location filename="../src/game.cpp" line="79"/>
|
||||
<source>&top of library</source>
|
||||
<translation>&auf die Bibliothek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="92"/>
|
||||
<location filename="../src/game.cpp" line="80"/>
|
||||
<source>&bottom of library</source>
|
||||
<translation>&unter die Bibliothek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="93"/>
|
||||
<location filename="../src/game.cpp" line="81"/>
|
||||
<source>&graveyard</source>
|
||||
<translation>in den &Friedhof</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="94"/>
|
||||
<location filename="../src/game.cpp" line="82"/>
|
||||
<source>&exile</source>
|
||||
<translation>ins &Exil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="106"/>
|
||||
<location filename="../src/game.cpp" line="94"/>
|
||||
<source>&Move to</source>
|
||||
<translation>&Verschieben</translation>
|
||||
</message>
|
||||
|
@ -422,42 +420,42 @@
|
|||
<translation type="obsolete">Mitteilungen &bearbeiten...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="80"/>
|
||||
<location filename="../src/game.cpp" line="68"/>
|
||||
<source>S&ay</source>
|
||||
<translation>&Sagen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="83"/>
|
||||
<location filename="../src/game.cpp" line="71"/>
|
||||
<source>&Tap</source>
|
||||
<translation>&Tappen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="84"/>
|
||||
<location filename="../src/game.cpp" line="72"/>
|
||||
<source>&Untap</source>
|
||||
<translation>E&nttappen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="85"/>
|
||||
<location filename="../src/game.cpp" line="73"/>
|
||||
<source>Toggle &normal untapping</source>
|
||||
<translation>&Normales enttappen umschalten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="86"/>
|
||||
<location filename="../src/game.cpp" line="74"/>
|
||||
<source>&Flip</source>
|
||||
<translation>&Umdrehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="87"/>
|
||||
<location filename="../src/game.cpp" line="75"/>
|
||||
<source>&Add counter</source>
|
||||
<translation>Zählm&arke hinzufügen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="88"/>
|
||||
<location filename="../src/game.cpp" line="76"/>
|
||||
<source>&Remove counter</source>
|
||||
<translation>Zählma&rke entfernen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="89"/>
|
||||
<location filename="../src/game.cpp" line="77"/>
|
||||
<source>&Set counters...</source>
|
||||
<translation>&Setze Zählmarken...</translation>
|
||||
</message>
|
||||
|
@ -466,78 +464,77 @@
|
|||
<translation type="obsolete">Neu a&rrangieren</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="155"/>
|
||||
<location filename="../src/game.cpp" line="143"/>
|
||||
<source>F5</source>
|
||||
<translation>F5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="156"/>
|
||||
<location filename="../src/game.cpp" line="144"/>
|
||||
<source>F6</source>
|
||||
<translation>F6</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="157"/>
|
||||
<location filename="../src/game.cpp" line="145"/>
|
||||
<source>F7</source>
|
||||
<translation>F7</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="158"/>
|
||||
<location filename="../src/game.cpp" line="146"/>
|
||||
<source>F8</source>
|
||||
<translation>F8</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="159"/>
|
||||
<location filename="../src/game.cpp" line="147"/>
|
||||
<source>F9</source>
|
||||
<translation>F9</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="160"/>
|
||||
<location filename="../src/game.cpp" line="148"/>
|
||||
<source>F10</source>
|
||||
<translation>F10</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="352"/>
|
||||
<location filename="../src/game.cpp" line="340"/>
|
||||
<source>Set life</source>
|
||||
<translation>Setze Leben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="352"/>
|
||||
<location filename="../src/game.cpp" line="340"/>
|
||||
<source>New life total:</source>
|
||||
<translation>Neues Leben insgesammt:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="365"/>
|
||||
<location filename="../src/game.cpp" line="348"/>
|
||||
<source>Roll dice</source>
|
||||
<translation>Würfeln</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="365"/>
|
||||
<location filename="../src/game.cpp" line="348"/>
|
||||
<source>Number of sides:</source>
|
||||
<translation>Anzahl der Seiten:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="377"/>
|
||||
<source>Draw cards</source>
|
||||
<translation>Karten ziehen</translation>
|
||||
<translation type="obsolete">Karten ziehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="377"/>
|
||||
<location filename="../src/game.cpp" line="447"/>
|
||||
<location filename="../src/game.cpp" line="418"/>
|
||||
<source>Number:</source>
|
||||
<translation>Anzahl:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="384"/>
|
||||
<location filename="../src/game.cpp" line="355"/>
|
||||
<source>Create token</source>
|
||||
<translation>Token erstellen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="384"/>
|
||||
<location filename="../src/game.cpp" line="355"/>
|
||||
<source>Name:</source>
|
||||
<translation>Name:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="447"/>
|
||||
<location filename="../src/game.cpp" line="418"/>
|
||||
<source>Set counters</source>
|
||||
<translation>Setze Zählmarke</translation>
|
||||
</message>
|
||||
|
@ -616,9 +613,6 @@
|
|||
<context>
|
||||
<name>GeneralSettingsPage</name>
|
||||
<message>
|
||||
<location filename="../src/dlg_settings.cpp" line="114"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="125"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="138"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="151"/>
|
||||
<source>Choose path</source>
|
||||
<translation>Pfad auswählen</translation>
|
||||
|
@ -659,7 +653,6 @@
|
|||
<translation>Pfad zur Kartendatenbank:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/dlg_settings.cpp" line="21"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="109"/>
|
||||
<source>English</source>
|
||||
<translation>Deutsch</translation>
|
||||
|
@ -668,95 +661,100 @@
|
|||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="184"/>
|
||||
<location filename="../src/window_main.cpp" line="187"/>
|
||||
<source>Error</source>
|
||||
<translation>Fehler</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="184"/>
|
||||
<location filename="../src/window_main.cpp" line="187"/>
|
||||
<source>Server timeout</source>
|
||||
<translation>Server Zeitüberschreitung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="189"/>
|
||||
<location filename="../src/window_main.cpp" line="194"/>
|
||||
<source>&Connect...</source>
|
||||
<translation>&Verbinden...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="190"/>
|
||||
<location filename="../src/window_main.cpp" line="195"/>
|
||||
<source>&Disconnect</source>
|
||||
<translation>Verbindung &trennen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="191"/>
|
||||
<location filename="../src/window_main.cpp" line="196"/>
|
||||
<source>&Restart game...</source>
|
||||
<translation>Spiel neu sta&rten...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="192"/>
|
||||
<location filename="../src/window_main.cpp" line="197"/>
|
||||
<source>F2</source>
|
||||
<translation>F2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="193"/>
|
||||
<location filename="../src/window_main.cpp" line="198"/>
|
||||
<source>&Leave game</source>
|
||||
<translation>Spiel ver&lassen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="194"/>
|
||||
<location filename="../src/window_main.cpp" line="199"/>
|
||||
<source>&Deck editor</source>
|
||||
<translation>&Deck-Editor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="195"/>
|
||||
<location filename="../src/window_main.cpp" line="200"/>
|
||||
<source>&Full screen</source>
|
||||
<translation>&Vollbild</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="196"/>
|
||||
<location filename="../src/window_main.cpp" line="201"/>
|
||||
<source>Ctrl+F</source>
|
||||
<translation>Ctrl+F</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="197"/>
|
||||
<location filename="../src/window_main.cpp" line="202"/>
|
||||
<source>&Settings...</source>
|
||||
<translation>&Einstellungen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="198"/>
|
||||
<location filename="../src/window_main.cpp" line="203"/>
|
||||
<source>&Exit</source>
|
||||
<translation>&Beenden</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="199"/>
|
||||
<location filename="../src/window_main.cpp" line="204"/>
|
||||
<source>Close most recent zone view</source>
|
||||
<translation>Letzte Zonenansicht schließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="200"/>
|
||||
<location filename="../src/window_main.cpp" line="205"/>
|
||||
<source>Esc</source>
|
||||
<translation>Esc</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="202"/>
|
||||
<location filename="../src/window_main.cpp" line="207"/>
|
||||
<source>&Game</source>
|
||||
<translation>Spi&el</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="203"/>
|
||||
<location filename="../src/window_main.cpp" line="208"/>
|
||||
<source>&Actions</source>
|
||||
<translation>&Aktionen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="204"/>
|
||||
<location filename="../src/window_main.cpp" line="209"/>
|
||||
<source>&Card</source>
|
||||
<translation>&Karte</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="206"/>
|
||||
<location filename="../src/window_main.cpp" line="211"/>
|
||||
<source>&Say:</source>
|
||||
<translation>&Sagen:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="192"/>
|
||||
<source>Cockatrice</source>
|
||||
<translation>Cockatrice</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MessageLogWidget</name>
|
||||
|
@ -878,7 +876,7 @@
|
|||
<message>
|
||||
<location filename="../src/messagelogwidget.cpp" line="127"/>
|
||||
<source>%1 puts %2 %3 into graveyard</source>
|
||||
<translation type="unfinished">%1 legt %2 %3 auf den Friedhof</translation>
|
||||
<translation>%1 legt %2 %3 auf den Friedhof</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/messagelogwidget.cpp" line="129"/>
|
||||
|
@ -1150,17 +1148,17 @@
|
|||
<context>
|
||||
<name>Player</name>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="19"/>
|
||||
<location filename="../src/player.cpp" line="20"/>
|
||||
<source>Move to &top of library</source>
|
||||
<translation>Oben auf die Biblio&thek legen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="21"/>
|
||||
<location filename="../src/player.cpp" line="22"/>
|
||||
<source>Move to &bottom of library</source>
|
||||
<translation>Unter die &Bibliothek legen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="24"/>
|
||||
<location filename="../src/player.cpp" line="25"/>
|
||||
<source>&View library</source>
|
||||
<translation>&Zeige Bibliothek</translation>
|
||||
</message>
|
||||
|
@ -1175,65 +1173,105 @@
|
|||
<translation>Zeige die oberen Kar&ten der Bibliothek...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="31"/>
|
||||
<location filename="../src/player.cpp" line="32"/>
|
||||
<source>&View graveyard</source>
|
||||
<translation>&Zeige Friedhof</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="33"/>
|
||||
<location filename="../src/player.cpp" line="34"/>
|
||||
<source>F4</source>
|
||||
<translation>F4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="36"/>
|
||||
<location filename="../src/player.cpp" line="37"/>
|
||||
<source>&View removed cards</source>
|
||||
<translation>Zeige ent&fernte Karten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="39"/>
|
||||
<location filename="../src/player.cpp" line="41"/>
|
||||
<source>&View sideboard</source>
|
||||
<translation>Zeige &Sideboard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="42"/>
|
||||
<location filename="../src/player.cpp" line="55"/>
|
||||
<source>Player "%1"</source>
|
||||
<translation>Spieler "%1"</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="44"/>
|
||||
<location filename="../src/player.cpp" line="58"/>
|
||||
<source>&Hand</source>
|
||||
<translation>&Hand</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="49"/>
|
||||
<location filename="../src/player.cpp" line="63"/>
|
||||
<source>&Library</source>
|
||||
<translation>Bib&liothek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="54"/>
|
||||
<location filename="../src/player.cpp" line="72"/>
|
||||
<source>&Graveyard</source>
|
||||
<translation>&Friedhof</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="58"/>
|
||||
<location filename="../src/player.cpp" line="76"/>
|
||||
<source>&Removed cards</source>
|
||||
<translation>Entfe&rnte Karten</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="62"/>
|
||||
<location filename="../src/player.cpp" line="81"/>
|
||||
<source>&Sideboard</source>
|
||||
<translation>&Sideboard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="95"/>
|
||||
<location filename="../src/player.cpp" line="115"/>
|
||||
<source>View top cards of library</source>
|
||||
<translation>Zeige die obersten Karten der Bibliothek</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="95"/>
|
||||
<location filename="../src/player.cpp" line="115"/>
|
||||
<source>Number of cards:</source>
|
||||
<translation>Anzahl der Karten:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="44"/>
|
||||
<source>&Draw card</source>
|
||||
<translation>Karte &ziehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="46"/>
|
||||
<source>Ctrl+D</source>
|
||||
<translation>Ctrl+D</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="47"/>
|
||||
<source>D&raw cards...</source>
|
||||
<translation>Ka&rten ziehen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="49"/>
|
||||
<source>Ctrl+E</source>
|
||||
<translation>Ctrl+E</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="50"/>
|
||||
<source>&Shuffle</source>
|
||||
<translation>Mi&schen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="52"/>
|
||||
<source>Ctrl+S</source>
|
||||
<translation>Ctrl+S</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="149"/>
|
||||
<source>Draw cards</source>
|
||||
<translation>Karten ziehen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="149"/>
|
||||
<source>Number:</source>
|
||||
<translation>Anzahl:</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -1248,12 +1286,12 @@
|
|||
<translation>Sideboard</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/decklist.cpp" line="296"/>
|
||||
<location filename="../src/decklist.cpp" line="297"/>
|
||||
<source>Cockatrice decks (*.cod)</source>
|
||||
<translation>Cockatrice Decks (*.cod)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/decklist.cpp" line="297"/>
|
||||
<location filename="../src/decklist.cpp" line="298"/>
|
||||
<source>Plain text decks (*.dec *.mwDeck)</source>
|
||||
<translation>Text Decks (*.dec *.mwDeck)</translation>
|
||||
</message>
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE TS>
|
||||
<TS version="2.0" language="en_US" sourcelanguage="en_US">
|
||||
<!DOCTYPE TS><TS version="1.1" language="en_US">
|
||||
<context>
|
||||
<name>CardDatabaseModel</name>
|
||||
<message>
|
||||
|
@ -154,7 +153,6 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/dlg_creategame.cpp" line="54"/>
|
||||
<location filename="../src/dlg_creategame.cpp" line="71"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -260,217 +258,181 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="40"/>
|
||||
<source>&Shuffle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="41"/>
|
||||
<source>Ctrl+S</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="43"/>
|
||||
<source>&Draw a card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="44"/>
|
||||
<source>Ctrl+D</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="46"/>
|
||||
<source>D&raw cards...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="48"/>
|
||||
<source>Ctrl+E</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="49"/>
|
||||
<source>R&oll dice...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="50"/>
|
||||
<location filename="../src/game.cpp" line="41"/>
|
||||
<source>Ctrl+I</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="53"/>
|
||||
<location filename="../src/game.cpp" line="44"/>
|
||||
<source>&Create token...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="54"/>
|
||||
<location filename="../src/game.cpp" line="45"/>
|
||||
<source>Ctrl+T</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="57"/>
|
||||
<location filename="../src/game.cpp" line="48"/>
|
||||
<source>Next &phase</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="58"/>
|
||||
<location filename="../src/game.cpp" line="49"/>
|
||||
<source>Ctrl+Space</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="60"/>
|
||||
<location filename="../src/game.cpp" line="51"/>
|
||||
<source>Next &turn</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="61"/>
|
||||
<location filename="../src/game.cpp" line="52"/>
|
||||
<source>Ctrl+Enter</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="61"/>
|
||||
<location filename="../src/game.cpp" line="52"/>
|
||||
<source>Ctrl+Return</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="80"/>
|
||||
<location filename="../src/game.cpp" line="68"/>
|
||||
<source>S&ay</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="83"/>
|
||||
<location filename="../src/game.cpp" line="71"/>
|
||||
<source>&Tap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="84"/>
|
||||
<location filename="../src/game.cpp" line="72"/>
|
||||
<source>&Untap</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="85"/>
|
||||
<location filename="../src/game.cpp" line="73"/>
|
||||
<source>Toggle &normal untapping</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="86"/>
|
||||
<location filename="../src/game.cpp" line="74"/>
|
||||
<source>&Flip</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="87"/>
|
||||
<location filename="../src/game.cpp" line="75"/>
|
||||
<source>&Add counter</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="88"/>
|
||||
<location filename="../src/game.cpp" line="76"/>
|
||||
<source>&Remove counter</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="89"/>
|
||||
<location filename="../src/game.cpp" line="77"/>
|
||||
<source>&Set counters...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="91"/>
|
||||
<location filename="../src/game.cpp" line="79"/>
|
||||
<source>&top of library</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="92"/>
|
||||
<location filename="../src/game.cpp" line="80"/>
|
||||
<source>&bottom of library</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="93"/>
|
||||
<location filename="../src/game.cpp" line="81"/>
|
||||
<source>&graveyard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="94"/>
|
||||
<location filename="../src/game.cpp" line="82"/>
|
||||
<source>&exile</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="106"/>
|
||||
<location filename="../src/game.cpp" line="94"/>
|
||||
<source>&Move to</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="155"/>
|
||||
<location filename="../src/game.cpp" line="143"/>
|
||||
<source>F5</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="156"/>
|
||||
<location filename="../src/game.cpp" line="144"/>
|
||||
<source>F6</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="157"/>
|
||||
<location filename="../src/game.cpp" line="145"/>
|
||||
<source>F7</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="158"/>
|
||||
<location filename="../src/game.cpp" line="146"/>
|
||||
<source>F8</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="159"/>
|
||||
<location filename="../src/game.cpp" line="147"/>
|
||||
<source>F9</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="160"/>
|
||||
<location filename="../src/game.cpp" line="148"/>
|
||||
<source>F10</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="352"/>
|
||||
<location filename="../src/game.cpp" line="340"/>
|
||||
<source>Set life</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="352"/>
|
||||
<location filename="../src/game.cpp" line="340"/>
|
||||
<source>New life total:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="365"/>
|
||||
<location filename="../src/game.cpp" line="348"/>
|
||||
<source>Roll dice</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="365"/>
|
||||
<location filename="../src/game.cpp" line="348"/>
|
||||
<source>Number of sides:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="377"/>
|
||||
<source>Draw cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="377"/>
|
||||
<location filename="../src/game.cpp" line="447"/>
|
||||
<location filename="../src/game.cpp" line="418"/>
|
||||
<source>Number:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="384"/>
|
||||
<location filename="../src/game.cpp" line="355"/>
|
||||
<source>Create token</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="384"/>
|
||||
<location filename="../src/game.cpp" line="355"/>
|
||||
<source>Name:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/game.cpp" line="447"/>
|
||||
<location filename="../src/game.cpp" line="418"/>
|
||||
<source>Set counters</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -549,9 +511,6 @@
|
|||
<context>
|
||||
<name>GeneralSettingsPage</name>
|
||||
<message>
|
||||
<location filename="../src/dlg_settings.cpp" line="114"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="125"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="138"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="151"/>
|
||||
<source>Choose path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -592,7 +551,6 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/dlg_settings.cpp" line="21"/>
|
||||
<location filename="../src/dlg_settings.cpp" line="109"/>
|
||||
<source>English</source>
|
||||
<translation>English</translation>
|
||||
|
@ -601,95 +559,100 @@
|
|||
<context>
|
||||
<name>MainWindow</name>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="184"/>
|
||||
<location filename="../src/window_main.cpp" line="187"/>
|
||||
<source>Error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="184"/>
|
||||
<location filename="../src/window_main.cpp" line="187"/>
|
||||
<source>Server timeout</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="189"/>
|
||||
<location filename="../src/window_main.cpp" line="194"/>
|
||||
<source>&Connect...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="190"/>
|
||||
<location filename="../src/window_main.cpp" line="195"/>
|
||||
<source>&Disconnect</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="191"/>
|
||||
<location filename="../src/window_main.cpp" line="196"/>
|
||||
<source>&Restart game...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="192"/>
|
||||
<location filename="../src/window_main.cpp" line="197"/>
|
||||
<source>F2</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="193"/>
|
||||
<location filename="../src/window_main.cpp" line="198"/>
|
||||
<source>&Leave game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="194"/>
|
||||
<location filename="../src/window_main.cpp" line="199"/>
|
||||
<source>&Deck editor</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="195"/>
|
||||
<location filename="../src/window_main.cpp" line="200"/>
|
||||
<source>&Full screen</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="196"/>
|
||||
<location filename="../src/window_main.cpp" line="201"/>
|
||||
<source>Ctrl+F</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="197"/>
|
||||
<location filename="../src/window_main.cpp" line="202"/>
|
||||
<source>&Settings...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="198"/>
|
||||
<location filename="../src/window_main.cpp" line="203"/>
|
||||
<source>&Exit</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="199"/>
|
||||
<location filename="../src/window_main.cpp" line="204"/>
|
||||
<source>Close most recent zone view</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="200"/>
|
||||
<location filename="../src/window_main.cpp" line="205"/>
|
||||
<source>Esc</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="202"/>
|
||||
<location filename="../src/window_main.cpp" line="207"/>
|
||||
<source>&Game</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="203"/>
|
||||
<location filename="../src/window_main.cpp" line="208"/>
|
||||
<source>&Actions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="204"/>
|
||||
<location filename="../src/window_main.cpp" line="209"/>
|
||||
<source>&Card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="206"/>
|
||||
<location filename="../src/window_main.cpp" line="211"/>
|
||||
<source>&Say:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/window_main.cpp" line="192"/>
|
||||
<source>Cockatrice</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MessageLogWidget</name>
|
||||
|
@ -1063,17 +1026,17 @@
|
|||
<context>
|
||||
<name>Player</name>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="19"/>
|
||||
<location filename="../src/player.cpp" line="20"/>
|
||||
<source>Move to &top of library</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="21"/>
|
||||
<location filename="../src/player.cpp" line="22"/>
|
||||
<source>Move to &bottom of library</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="24"/>
|
||||
<location filename="../src/player.cpp" line="25"/>
|
||||
<source>&View library</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -1088,65 +1051,105 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="31"/>
|
||||
<location filename="../src/player.cpp" line="32"/>
|
||||
<source>&View graveyard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="33"/>
|
||||
<location filename="../src/player.cpp" line="34"/>
|
||||
<source>F4</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="36"/>
|
||||
<location filename="../src/player.cpp" line="37"/>
|
||||
<source>&View removed cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="39"/>
|
||||
<location filename="../src/player.cpp" line="41"/>
|
||||
<source>&View sideboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="42"/>
|
||||
<location filename="../src/player.cpp" line="55"/>
|
||||
<source>Player "%1"</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="44"/>
|
||||
<location filename="../src/player.cpp" line="58"/>
|
||||
<source>&Hand</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="49"/>
|
||||
<location filename="../src/player.cpp" line="63"/>
|
||||
<source>&Library</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="54"/>
|
||||
<location filename="../src/player.cpp" line="72"/>
|
||||
<source>&Graveyard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="58"/>
|
||||
<location filename="../src/player.cpp" line="76"/>
|
||||
<source>&Removed cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="62"/>
|
||||
<location filename="../src/player.cpp" line="81"/>
|
||||
<source>&Sideboard</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="95"/>
|
||||
<location filename="../src/player.cpp" line="115"/>
|
||||
<source>View top cards of library</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="95"/>
|
||||
<location filename="../src/player.cpp" line="115"/>
|
||||
<source>Number of cards:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="44"/>
|
||||
<source>&Draw card</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="46"/>
|
||||
<source>Ctrl+D</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="47"/>
|
||||
<source>D&raw cards...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="49"/>
|
||||
<source>Ctrl+E</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="50"/>
|
||||
<source>&Shuffle</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="52"/>
|
||||
<source>Ctrl+S</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="149"/>
|
||||
<source>Draw cards</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/player.cpp" line="149"/>
|
||||
<source>Number:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -1161,12 +1164,12 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/decklist.cpp" line="296"/>
|
||||
<location filename="../src/decklist.cpp" line="297"/>
|
||||
<source>Cockatrice decks (*.cod)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../src/decklist.cpp" line="297"/>
|
||||
<location filename="../src/decklist.cpp" line="298"/>
|
||||
<source>Plain text decks (*.dec *.mwDeck)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in a new issue