Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
eb927d77
Commit
eb927d77
authored
Apr 08, 2012
by
Max-Wilhelm Bruker
Browse files
updated German translation; added some missing retranslateUi() calls
parent
95cd293b
Changes
7
Show whitespace changes
Inline
Side-by-side
cockatrice/src/chatview.cpp
View file @
eb927d77
...
...
@@ -22,6 +22,11 @@ ChatView::ChatView(const TabSupervisor *_tabSupervisor, TabGame *_game, bool _sh
connect
(
this
,
SIGNAL
(
anchorClicked
(
const
QUrl
&
)),
this
,
SLOT
(
openLink
(
const
QUrl
&
)));
}
void
ChatView
::
retranslateUi
()
{
userContextMenu
->
retranslateUi
();
}
QTextCursor
ChatView
::
prepareBlock
(
bool
same
)
{
lastSender
.
clear
();
...
...
cockatrice/src/chatview.h
View file @
eb927d77
...
...
@@ -32,6 +32,7 @@ private slots:
void
openLink
(
const
QUrl
&
link
);
public:
ChatView
(
const
TabSupervisor
*
_tabSupervisor
,
TabGame
*
_game
,
bool
_showTimestamps
,
QWidget
*
parent
=
0
);
void
retranslateUi
();
void
appendHtml
(
const
QString
&
html
);
void
appendMessage
(
QString
message
,
QString
sender
=
QString
(),
UserLevelFlags
userLevel
=
UserLevelFlags
(),
bool
playerBold
=
false
);
protected:
...
...
cockatrice/src/tab_room.cpp
View file @
eb927d77
...
...
@@ -106,6 +106,7 @@ TabRoom::~TabRoom()
void
TabRoom
::
retranslateUi
()
{
gameSelector
->
retranslateUi
();
chatView
->
retranslateUi
();
sayLabel
->
setText
(
tr
(
"&Say:"
));
chatGroupBox
->
setTitle
(
tr
(
"Chat"
));
tabMenu
->
setTitle
(
tr
(
"&Room"
));
...
...
cockatrice/src/tab_supervisor.cpp
View file @
eb927d77
...
...
@@ -97,18 +97,23 @@ TabSupervisor::~TabSupervisor()
void
TabSupervisor
::
retranslateUi
()
{
QList
<
Tab
*>
tabs
;
if
(
tabServer
)
tabs
.
append
(
tabServer
);
if
(
tabDeckStorage
)
tabs
.
append
(
tabReplays
);
tabs
.
append
(
tabDeckStorage
);
tabs
.
append
(
tabAdmin
);
tabs
.
append
(
tabUserLists
);
QMapIterator
<
int
,
TabRoom
*>
roomIterator
(
roomTabs
);
while
(
roomIterator
.
hasNext
())
tabs
.
append
(
roomIterator
.
next
().
value
());
QMapIterator
<
int
,
TabGame
*>
gameIterator
(
gameTabs
);
while
(
gameIterator
.
hasNext
())
tabs
.
append
(
gameIterator
.
next
().
value
());
QListIterator
<
TabGame
*>
replayIterator
(
replayTabs
);
while
(
replayIterator
.
hasNext
())
tabs
.
append
(
replayIterator
.
next
());
for
(
int
i
=
0
;
i
<
tabs
.
size
();
++
i
)
{
for
(
int
i
=
0
;
i
<
tabs
.
size
();
++
i
)
if
(
tabs
[
i
])
{
setTabText
(
indexOf
(
tabs
[
i
]),
tabs
[
i
]
->
getTabText
());
tabs
[
i
]
->
retranslateUi
();
}
...
...
cockatrice/src/user_context_menu.cpp
View file @
eb927d77
...
...
@@ -22,15 +22,30 @@ UserContextMenu::UserContextMenu(const TabSupervisor *_tabSupervisor, QWidget *p
{
aUserName
=
new
QAction
(
QString
(),
this
);
aUserName
->
setEnabled
(
false
);
aDetails
=
new
QAction
(
tr
(
"User &details"
),
this
);
aChat
=
new
QAction
(
tr
(
"Direct &chat"
),
this
);
aShowGames
=
new
QAction
(
tr
(
"Show this user's &games"
),
this
);
aAddToBuddyList
=
new
QAction
(
tr
(
"Add to &buddy list"
),
this
);
aRemoveFromBuddyList
=
new
QAction
(
tr
(
"Remove from &buddy list"
),
this
);
aAddToIgnoreList
=
new
QAction
(
tr
(
"Add to &ignore list"
),
this
);
aRemoveFromIgnoreList
=
new
QAction
(
tr
(
"Remove from &ignore list"
),
this
);
aKick
=
new
QAction
(
tr
(
"Kick from &game"
),
this
);
aBan
=
new
QAction
(
tr
(
"Ban from &server"
),
this
);
aDetails
=
new
QAction
(
QString
(),
this
);
aChat
=
new
QAction
(
QString
(),
this
);
aShowGames
=
new
QAction
(
QString
(),
this
);
aAddToBuddyList
=
new
QAction
(
QString
(),
this
);
aRemoveFromBuddyList
=
new
QAction
(
QString
(),
this
);
aAddToIgnoreList
=
new
QAction
(
QString
(),
this
);
aRemoveFromIgnoreList
=
new
QAction
(
QString
(),
this
);
aKick
=
new
QAction
(
QString
(),
this
);
aBan
=
new
QAction
(
QString
(),
this
);
retranslateUi
();
}
void
UserContextMenu
::
retranslateUi
()
{
aDetails
->
setText
(
tr
(
"User &details"
));
aChat
->
setText
(
tr
(
"Direct &chat"
));
aShowGames
->
setText
(
tr
(
"Show this user's &games"
));
aAddToBuddyList
->
setText
(
tr
(
"Add to &buddy list"
));
aRemoveFromBuddyList
->
setText
(
tr
(
"Remove from &buddy list"
));
aAddToIgnoreList
->
setText
(
tr
(
"Add to &ignore list"
));
aRemoveFromIgnoreList
->
setText
(
tr
(
"Remove from &ignore list"
));
aKick
->
setText
(
tr
(
"Kick from &game"
));
aBan
->
setText
(
tr
(
"Ban from &server"
));
}
void
UserContextMenu
::
gamesOfUserReceived
(
const
Response
&
resp
,
const
CommandContainer
&
commandContainer
)
...
...
cockatrice/src/user_context_menu.h
View file @
eb927d77
...
...
@@ -35,6 +35,7 @@ private slots:
void
gamesOfUserReceived
(
const
Response
&
resp
,
const
CommandContainer
&
commandContainer
);
public:
UserContextMenu
(
const
TabSupervisor
*
_tabSupervisor
,
QWidget
*
_parent
,
TabGame
*
_game
=
0
);
void
retranslateUi
();
void
showContextMenu
(
const
QPoint
&
pos
,
const
QString
&
userName
,
UserLevelFlags
userLevel
,
int
playerId
=
-
1
);
};
...
...
cockatrice/translations/cockatrice_de.ts
View file @
eb927d77
...
...
@@ -174,84 +174,84 @@ Geben Sie 0 ein für einen unbefristeten Bann.</translation>
<
translation
type
=
"
obsolete
"
>
Bitte
geben
Sie
den
Grund
für
den
Bann
ein
.
Dies
wird
nur
für
Moderatoren
gespeichert
und
kann
von
der
gebannten
Person
nicht
gesehen
werden
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
3
3
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
3
4
"
/>
<
source
>
ban
&
amp
;
user
name
<
/source
>
<
translation
>&
amp
;
Benutzername
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
3
6
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
3
7
"
/>
<
source
>
ban
&
amp
;
IP
address
<
/source
>
<
translation
>&
amp
;
IP
-
Adresse
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
4
4
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
4
5
"
/>
<
source
>
Ban
type
<
/source
>
<
translation
>
Art
des
Banns
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
4
7
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
4
8
"
/>
<
source
>&
amp
;
permanent
ban
<
/source
>
<
translation
>&
amp
;
permanenter
Bann
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
4
8
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
4
9
"
/>
<
source
>&
amp
;
temporary
ban
<
/source
>
<
translation
>&
amp
;
temporärer
Bann
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
5
1
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
5
2
"
/>
<
source
>&
amp
;
Days
:
<
/source
>
<
translation
>
T
&
amp
;
age
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
5
7
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
5
8
"
/>
<
source
>&
amp
;
Hours
:
<
/source
>
<
translation
>&
amp
;
Stunden
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
6
3
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
6
4
"
/>
<
source
>&
amp
;
Minutes
:
<
/source
>
<
translation
>&
amp
;
Minuten
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
7
8
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
7
9
"
/>
<
source
>
Duration
of
the
ban
<
/source
>
<
translation
>
Länge
des
Banns
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
8
1
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
8
2
"
/>
<
source
>
Please
enter
the
reason
for
the
ban
.
This
is
only
saved
for
moderators
and
cannot
be
seen
by
the
banned
person
.
<
/source
>
<
translation
>
Bitte
geben
Sie
den
Grund
für
den
Bann
ein
.
Dies
wird
nur
für
Moderatoren
gespeichert
und
kann
von
der
gebannten
Person
nicht
gesehen
werden
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
8
4
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
8
5
"
/>
<
source
>
Please
enter
the
reason
for
the
ban
that
will
be
visible
to
the
banned
person
.
<
/source
>
<
translation
>
Bitte
geben
Sie
den
Grund
ein
,
den
die
gebannte
Person
sehen
kann
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
8
7
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
8
8
"
/>
<
source
>&
amp
;
OK
<
/source
>
<
translation
>&
amp
;
OK
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
9
0
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
9
1
"
/>
<
source
>&
amp
;
Cancel
<
/source
>
<
translation
>&
amp
;
Abbrechen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
10
8
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
10
9
"
/>
<
source
>
Ban
user
from
server
<
/source
>
<
translation
>
Benutzer
vom
Server
bannen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
11
4
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
11
5
"
/>
<
source
>
Error
<
/source
>
<
translation
>
Fehler
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
11
4
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
11
5
"
/>
<
source
>
You
have
to
select
a
name
-
based
or
IP
-
based
ban
,
or
both
.
<
/source
>
<
translation
>
Bitte
wählen
Sie
einen
Namens
-
oder
Adressbann
.
<
/translation
>
<
/message
>
...
...
@@ -1280,32 +1280,32 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
context
>
<
name
>
DeckViewContainer
<
/name
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
12
5
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
12
6
"
/>
<
source
>
Load
&
amp
;
local
deck
<
/source
>
<
translation
>&
amp
;
Lokales
Deck
laden
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
12
6
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
12
7
"
/>
<
source
>
Load
d
&
amp
;
eck
from
server
<
/source
>
<
translation
>
Deck
vom
Server
l
&
amp
;
aden
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
12
7
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
12
8
"
/>
<
source
>
Ready
to
s
&
amp
;
tart
<
/source
>
<
translation
>
Bereit
zum
S
&
amp
;
tarten
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
14
2
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
14
3
"
/>
<
source
>
S
&
amp
;
ideboard
unlocked
<
/source
>
<
translation
>
S
&
amp
;
ideboard
entsperrt
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
14
4
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
14
5
"
/>
<
source
>
S
&
amp
;
ideboard
locked
<
/source
>
<
translation
>
S
&
amp
;
ideboard
gesperrt
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
1
49
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
1
50
"
/>
<
source
>
Load
deck
<
/source
>
<
translation
>
Deck
laden
<
/translation
>
<
/message
>
...
...
@@ -1429,17 +1429,17 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
translation
>
Nur
&
amp
;
registrierte
Benutzer
können
teilnehmen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
6
6
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
6
7
"
/>
<
source
>
Joining
restrictions
<
/source
>
<
translation
>
Teilnahmebedingungen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
69
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
70
"
/>
<
source
>&
amp
;
Spectators
allowed
<
/source
>
<
translation
>&
amp
;
Zuschauer
zugelassen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
7
2
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
7
3
"
/>
<
source
>
Spectators
&
amp
;
need
a
password
to
join
<
/source
>
<
translation
>
Zuschauer
brauchen
&
amp
;
auch
ein
Passwort
<
/translation
>
<
/message
>
...
...
@@ -1448,17 +1448,17 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
translation
type
=
"
obsolete
"
>
Zuschauer
können
sp
&
amp
;
rechen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
7
3
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
7
4
"
/>
<
source
>
Spectators
can
&
amp
;
chat
<
/source
>
<
translation
>
Zuschauer
können
s
&
amp
;
chreiben
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
7
4
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
7
5
"
/>
<
source
>
Spectators
see
&
amp
;
everything
<
/source
>
<
translation
>
Zuschauer
sehen
&
amp
;
alles
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
8
0
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
8
1
"
/>
<
source
>
Spectators
<
/source
>
<
translation
>
Zuschauer
<
/translation
>
<
/message
>
...
...
@@ -1471,17 +1471,17 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
translation
type
=
"
obsolete
"
>&
amp
;
Abbruch
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
10
9
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
1
1
0
"
/>
<
source
>
Create
game
<
/source
>
<
translation
>
Spiel
erstellen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
15
1
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
15
2
"
/>
<
source
>
Game
information
<
/source
>
<
translation
>&
amp
;
Spielinformationen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
18
8
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
18
9
"
/>
<
source
>
Error
<
/source
>
<
translation
>
Fehler
<
/translation
>
<
/message
>
...
...
@@ -1490,7 +1490,7 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
translation
type
=
"
obsolete
"
>
Ungültige
Anzahl
an
Spielern
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
18
8
"
/>
<
location
filename
=
"
../src/dlg_creategame.cpp
"
line
=
"
18
9
"
/>
<
source
>
Server
error
.
<
/source
>
<
translation
>
Serverfehler
.
<
/translation
>
<
/message
>
...
...
@@ -1669,7 +1669,7 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
translation
type
=
"
obsolete
"
>
O
&
amp
;
K
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_filter_games.cpp
"
line
=
"
87
"
/>
<
location
filename
=
"
../src/dlg_filter_games.cpp
"
line
=
"
92
"
/>
<
source
>
Filter
games
<
/source
>
<
translation
>
Spiele
filtern
<
/translation
>
<
/message
>
...
...
@@ -2178,12 +2178,12 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
context
>
<
name
>
GamesModel
<
/name
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
42
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
33
"
/>
<
source
>
yes
<
/source
>
<
translation
>
ja
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
42
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
33
"
/>
<
source
>
no
<
/source
>
<
translation
>
nein
<
/translation
>
<
/message
>
...
...
@@ -2192,62 +2192,62 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
<
translation
type
=
"
obsolete
"
>
Spiel
ID
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
64
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
55
"
/>
<
source
>
Creator
<
/source
>
<
translation
>
Ersteller
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
62
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
53
"
/>
<
source
>
Description
<
/source
>
<
translation
>
Beschreibung
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
42
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
33
"
/>
<
source
>
yes
,
free
for
spectators
<
/source
>
<
translation
>
ja
,
außer
für
Zuschauer
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
46
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
37
"
/>
<
source
>
buddies
only
<
/source
>
<
translation
>
nur
Freunde
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
48
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
39
"
/>
<
source
>
reg
.
users
only
<
/source
>
<
translation
>
nur
reg
.
Benutzer
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
52
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
43
"
/>
<
source
>
not
allowed
<
/source
>
<
translation
>
nicht
erlaubt
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
63
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
54
"
/>
<
source
>
Room
<
/source
>
<
translation
>
Raum
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
6
5
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
5
6
"
/>
<
source
>
Game
type
<
/source
>
<
translation
>
Spieltyp
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
66
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
57
"
/>
<
source
>
Password
<
/source
>
<
translation
>
Passwort
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
67
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
58
"
/>
<
source
>
Restrictions
<
/source
>
<
translation
>
Bedingungen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
68
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
59
"
/>
<
source
>
Players
<
/source
>
<
translation
>
Spieler
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
6
9
"
/>
<
location
filename
=
"
../src/gamesmodel.cpp
"
line
=
"
6
0
"
/>
<
source
>
Spectators
<
/source
>
<
translation
>
Zuschauer
<
/translation
>
<
/message
>
...
...
@@ -2729,8 +2729,8 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>%
1
zieht
%
2
Karten
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
27
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
68
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
27
6
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
68
7
"
/>
<
source
>
a
card
<
/source
>
<
translation
>
eine
Karte
<
/translation
>
<
/message
>
...
...
@@ -2787,7 +2787,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>%
1
s
Sideboard
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
12
6
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
3
2
"
/>
<
source
>
The
game
has
started
.
<
/source
>
<
translation
>
Das
Spiel
hat
begonnen
.
<
/translation
>
<
/message
>
...
...
@@ -2824,22 +2824,22 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>%
1
hat
das
Spiel
verlassen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
9
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
5
"
/>
<
source
>
The
game
has
been
closed
.
<
/source
>
<
translation
>
Das
Spiel
wurde
geschlossen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
64
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
70
"
/>
<
source
>
You
have
been
kicked
out
of
the
game
.
<
/source
>
<
translation
>
Sie
wurden
aus
dem
Spiel
geworfen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
69
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
75
"
/>
<
source
>%
1
is
now
watching
the
game
.
<
/source
>
<
translation
>%
1
schaut
nun
dem
Spiel
zu
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
74
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
80
"
/>
<
source
>%
1
is
not
watching
the
game
any
more
.
<
/source
>
<
translation
>%
1
schaut
dem
Spiel
nicht
mehr
zu
.
<
/translation
>
<
/message
>
...
...
@@ -2895,49 +2895,49 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
27
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
33
"
/>
<
source
>
You
have
joined
game
#
%
1
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>
Sie
sind
dem
Spiel
%
1
beigetreten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
29
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
35
"
/>
<
source
>
You
have
joined
game
#
%
1
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>
Sie
sind
dem
Spiel
%
1
beigetreten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
35
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
41
"
/>
<
source
>
You
are
watching
a
replay
of
game
#
%
1
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>
Dies
ist
eine
Aufzeichnung
des
Spiels
#
%
1
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
7
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
3
"
/>
<
source
>
You
are
watching
a
replay
of
game
#
%
1
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>
Dies
ist
eine
Aufzeichnung
des
Spiels
#
%
1
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
44
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
50
"
/>
<
source
>%
1
has
joined
the
game
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
ist
dem
Spiel
beigetreten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
46
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
52
"
/>
<
source
>%
1
has
joined
the
game
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
ist
dem
Spiel
beigetreten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
8
"
/>
<
source
>%
1
has
left
the
game
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
hat
das
Spiel
verlassen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
54
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
60
"
/>
<
source
>%
1
has
left
the
game
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
hat
das
Spiel
verlassen
.
<
/translation
>
...
...
@@ -2963,91 +2963,91 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>%
1
hat
das
Deck
Nr
.
%
2
geladen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
88
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
94
"
/>
<
source
>%
1
is
ready
to
start
the
game
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
ist
bereit
,
das
Spiel
zu
starten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
9
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
9
6
"
/>
<
source
>%
1
is
ready
to
start
the
game
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
ist
bereit
,
das
Spiel
zu
starten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
96
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
102
"
/>
<
source
>%
1
is
not
ready
to
start
the
game
any
more
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
ist
nicht
mehr
bereit
,
das
Spiel
zu
starten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
98
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
104
"
/>
<
source
>%
1
is
not
ready
to
start
the
game
any
more
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
ist
nicht
mehr
bereit
,
das
Spiel
zu
starten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
19
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
25
"
/>
<
source
>%
1
has
conceded
the
game
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
hat
das
Spiel
aufgegeben
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
12
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
12
7
"
/>
<
source
>%
1
has
conceded
the
game
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
hat
das
Spiel
aufgegeben
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
13
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
13
9
"
/>
<
source
>%
1
has
restored
connection
to
the
game
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
ist
wieder
mit
dem
Spiel
verbunden
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
35
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
41
"
/>
<
source
>%
1
has
restored
connection
to
the
game
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
ist
wieder
mit
dem
Spiel
verbunden
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
38
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
44
"
/>
<
source
>%
1
has
lost
connection
to
the
game
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
hat
die
Verbindung
zum
Spiel
verloren
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
14
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
14
6
"
/>
<
source
>%
1
has
lost
connection
to
the
game
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
hat
die
Verbindung
zum
Spiel
verloren
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
15
9
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
6
5
"
/>
<
source
>%
1
shuffles
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
mischt
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
16
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
16
7
"
/>
<
source
>%
1
shuffles
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
mischt
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
68
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
74
"
/>
<
source
>%
1
rolls
a
%
2
with
a
%
3
-
sided
die
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
würfelt
eine
%
2
mit
einem
%
3
-
seitigen
Würfel
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
17
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
17
6
"
/>
<
source
>%
1
rolls
a
%
2
with
a
%
3
-
sided
die
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
würfelt
eine
%
2
mit
einem
%
3
-
seitigen
Würfel
.
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
18
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
18
6
"
/>
<
source
>%
1
draws
%
n
card
(
s
).
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>
...
...
@@ -3056,7 +3056,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
18
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
18
8
"
/>
<
source
>%
1
draws
%
n
card
(
s
).
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>
...
...
@@ -3065,182 +3065,182 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
8
9
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
19
5
"
/>
<
source
>%
1
undoes
his
last
draw
.
<
/source
>
<
translation
>%
1
legt
die
zuletzt
gezogene
Karte
zurück
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
8
9
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
19
5
"
/>
<
source
>%
1
undoes
her
last
draw
.
<
/source
>
<
translation
>%
1
legt
die
zuletzt
gezogene
Karte
zurück
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
19
7
"
/>
<
source
>%
1
undoes
his
last
draw
(
%
2
).
<
/source
>
<
translation
>%
1
legt
die
zuletzt
gezogene
Karte
zurück
(
%
2
).
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
19
7
"
/>
<
source
>%
1
undoes
her
last
draw
(
%
2
).
<
/source
>
<
translation
>%
1
legt
die
zuletzt
gezogene
Karte
zurück
(
%
2
).
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
20
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
20
7
"
/>
<
source
>
from
table
<
/source
>
<
translation
>
vom
Spielfeld
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
20
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
20
9
"
/>
<
source
>
from
graveyard
<
/source
>
<
translation
>
aus
dem
Friedhof
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
05
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
11
"
/>
<
source
>
from
exile
<
/source
>
<
translation
>
aus
dem
Exil
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
07
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
13
"
/>
<
source
>
from
hand
<
/source
>
<
translation
>
von
der
Hand
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
14
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
20
"
/>
<
source
>
the
bottom
card
of
his
library
<
/source
>
<
translation
>
die
unterste
Karte
seiner
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
14
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
20
"
/>
<
source
>
the
bottom
card
of
her
library
<
/source
>
<
translation
>
die
unterste
Karte
ihrer
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
22
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
22
6
"
/>
<
source
>
from
the
bottom
of
his
library
<
/source
>
<
translation
>
,
die
unterste
Karte
seiner
Bibliothek
,
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
22
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
22
6
"
/>
<
source
>
from
the
bottom
of
her
library
<
/source
>
<
translation
>
,
die
unterste
Karte
ihrer
Bibliothek
,
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
27
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
33
"
/>
<
source
>
the
top
card
of
his
library
<
/source
>
<
translation
>
die
oberste
Karte
seiner
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
27
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
33
"
/>
<
source
>
the
top
card
of
her
library
<
/source
>
<
translation
>
die
oberste
Karte
ihrer
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
23
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
23
9
"
/>
<
source
>
from
the
top
of
his
library
<
/source
>
<
translation
>
,
die
oberste
Karte
seiner
Bibliothek
,
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
23
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
23
9
"
/>
<
source
>
from
the
top
of
her
library
<
/source
>
<
translation
>
,
die
oberste
Karte
ihrer
Bibliothek
,
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
39
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
45
"
/>
<
source
>
from
library
<
/source
>
<
translation
>
aus
der
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
24
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
24
8
"
/>
<
source
>
from
sideboard
<
/source
>
<
translation
>
aus
dem
Sideboard
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
44
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
50
"
/>
<
source
>
from
the
stack
<
/source
>
<
translation
>
vom
Stapel
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
75
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
81
"
/>
<
source
>%
1
gives
%
2
control
over
%
3
.
<
/source
>
<
translation
>%
1
überlässt
%
2
die
Kontrolle
über
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
28
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
28
9
"
/>
<
source
>%
1
puts
%
2
into
play
tapped
%
3
.
<
/source
>
<
translation
>%
1
bringt
%
2
getappt
%
3
ins
Spiel
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
85
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
91
"
/>
<
source
>%
1
puts
%
2
into
play
%
3
.
<
/source
>
<
translation
>%
1
bringt
%
2
%
3
ins
Spiel
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
87
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
93
"
/>
<
source
>%
1
puts
%
2
%
3
into
graveyard
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
auf
den
Friedhof
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
8
9
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
29
5
"
/>
<
source
>%
1
exiles
%
2
%
3
.
<
/source
>
<
translation
>%
1
schickt
%
2
%
3
ins
Exil
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
29
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
29
7
"
/>
<
source
>%
1
moves
%
2
%
3
to
hand
.
<
/source
>
<
translation
>%
1
nimmt
%
2
%
3
auf
die
Hand
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
294
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
300
"
/>
<
source
>%
1
puts
%
2
%
3
into
his
library
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
in
seine
Bibliothek
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
294
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
300
"
/>
<
source
>%
1
puts
%
2
%
3
into
her
library
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
in
ihre
Bibliothek
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
296
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
302
"
/>
<
source
>%
1
puts
%
2
%
3
on
bottom
of
his
library
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
unter
seine
Bibliothek
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
296
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
302
"
/>
<
source
>%
1
puts
%
2
%
3
on
bottom
of
her
library
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
unter
ihre
Bibliothek
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
298
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
304
"
/>
<
source
>%
1
puts
%
2
%
3
on
top
of
his
library
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
auf
die
Bibliothek
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
298
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
304
"
/>
<
source
>%
1
puts
%
2
%
3
on
top
of
her
library
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
auf
die
Bibliothek
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
30
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
30
6
"
/>
<
source
>%
1
puts
%
2
%
3
into
his
library
at
position
%
4
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
in
seine
Bibliothek
an
%
4
.
Stelle
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
30
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
30
6
"
/>
<
source
>%
1
puts
%
2
%
3
into
her
library
at
position
%
4
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
in
ihre
Bibliothek
an
%
4
.
Stelle
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
30
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
30
8
"
/>
<
source
>%
1
moves
%
2
%
3
to
sideboard
.
<
/source
>
<
translation
>%
1
legt
%
2
%
3
in
sein
Sideboard
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
05
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
11
"
/>
<
source
>%
1
plays
%
2
%
3
.
<
/source
>
<
translation
>%
1
spielt
%
2
%
3
aus
.
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
29
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
35
"
/>
<
source
>%
1
takes
a
mulligan
to
%
n
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>
...
...
@@ -3249,7 +3249,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
33
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
33
7
"
/>
<
source
>%
1
takes
a
mulligan
to
%
n
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>
...
...
@@ -3258,37 +3258,37 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
34
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
34
6
"
/>
<
source
>%
1
flips
%
2
face
-
down
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
wendet
%
2
auf
die
Rückseite
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
34
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
34
8
"
/>
<
source
>%
1
flips
%
2
face
-
down
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
wendet
%
2
auf
die
Rückseite
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
4
5
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
35
1
"
/>
<
source
>%
1
flips
%
2
face
-
up
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
wendet
%
2
auf
die
Vorderseite
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
47
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
53
"
/>
<
source
>%
1
flips
%
2
face
-
up
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
wendet
%
2
auf
die
Vorderseite
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
54
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
60
"
/>
<
source
>%
1
destroys
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
zerstört
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
5
6
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
36
2
"
/>
<
source
>%
1
destroys
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
zerstört
%
2
.
<
/translation
>
...
...
@@ -3304,332 +3304,332 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>%
1
legt
%
2
an
%
3
s
%
4
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
8
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
8
6
"
/>
<
source
>%
1
has
loaded
a
deck
(
%
2
).
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
hat
ein
Deck
geladen
(
%
2
).
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
8
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
8
8
"
/>
<
source
>%
1
has
loaded
a
deck
(
%
2
).
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
hat
ein
Deck
geladen
(
%
2
).
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
05
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
11
"
/>
<
source
>%
1
has
locked
her
sideboard
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
hat
ihr
Sideboard
gesperrt
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
07
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
1
13
"
/>
<
source
>%
1
has
locked
his
sideboard
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
hat
sein
Sideboard
gesperrt
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
11
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
11
6
"
/>
<
source
>%
1
has
unlocked
her
sideboard
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
hat
ihr
Sideboard
entsperrt
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
11
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
11
8
"
/>
<
source
>%
1
has
unlocked
his
sideboard
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
hat
sein
Sideboard
entsperrt
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
21
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
21
8
"
/>
<
source
>
the
bottom
card
of
%
1
&
apos
;
s
library
<
/source
>
<
translation
>
die
unterste
Karte
von
%
1
s
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
18
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
24
"
/>
<
source
>
from
the
bottom
of
%
1
&
apos
;
s
library
<
/source
>
<
translation
>
von
der
Unterseite
von
%
1
s
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
25
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
31
"
/>
<
source
>
the
top
card
of
%
1
&
apos
;
s
library
<
/source
>
<
translation
>
die
oberste
Karte
von
%
1
s
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
23
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
23
7
"
/>
<
source
>
from
the
top
of
%
1
&
apos
;
s
library
<
/source
>
<
translation
>
oben
von
%
1
s
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
23
7
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
2
4
3
"
/>
<
source
>
from
%
1
&
apos
;
s
library
<
/source
>
<
translation
>
aus
%
1
s
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
64
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
70
"
/>
<
source
>%
1
attaches
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
female
<
/comment
>
<
translation
>%
1
legt
%
2
an
%
3
s
%
4
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
66
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
72
"
/>
<
source
>%
1
attaches
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
male
<
/comment
>
<
translation
>%
1
legt
%
2
an
%
3
s
%
4
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
69
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
75
"
/>
<
source
>%
1
attaches
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
female
<
/comment
>
<
translation
>%
1
legt
%
2
an
%
3
s
%
4
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
37
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
37
7
"
/>
<
source
>%
1
attaches
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
male
<
/comment
>
<
translation
>%
1
legt
%
2
an
%
3
s
%
4
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
38
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
38
6
"
/>
<
source
>%
1
unattaches
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
löst
%
2
ab
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
38
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
38
8
"
/>
<
source
>%
1
unattaches
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
löst
%
2
ab
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
88
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
3
94
"
/>
<
source
>%
1
creates
token
:
%
2
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
erstellt
Token
:
%
2
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
39
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
39
6
"
/>
<
source
>%
1
creates
token
:
%
2
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
erstellt
Token
:
%
2
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
40
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
40
7
"
/>
<
source
>%
1
points
from
her
%
2
to
herself
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
zeigt
von
ihrem
%
2
auf
sich
selbst
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
40
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
40
9
"
/>
<
source
>%
1
points
from
his
%
2
to
himself
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
zeigt
von
seinem
%
2
auf
sich
selbst
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
08
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
14
"
/>
<
source
>%
1
points
from
her
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
female
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
von
ihrem
%
2
auf
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
41
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
41
6
"
/>
<
source
>%
1
points
from
her
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
female
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
von
ihrem
%
2
auf
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
41
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
41
9
"
/>
<
source
>%
1
points
from
his
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
male
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
von
seinem
%
2
auf
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
41
5
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
2
1
"
/>
<
source
>%
1
points
from
his
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
male
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
von
seinem
%
2
auf
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
42
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
42
7
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
herself
.
<
/source
>
<
comment
>
card
owner
female
,
target
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
sich
selbst
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
42
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
42
9
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
herself
.
<
/source
>
<
comment
>
card
owner
male
,
target
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
sich
selbst
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
42
6
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
3
2
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
himself
.
<
/source
>
<
comment
>
card
owner
female
,
target
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
sich
selbst
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
28
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
34
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
himself
.
<
/source
>
<
comment
>
card
owner
male
,
target
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
sich
selbst
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
35
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
41
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
female
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
43
7
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
4
3
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
female
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
44
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
44
6
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
male
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
44
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
44
8
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
male
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
47
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
53
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
female
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
49
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
55
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
female
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
45
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
45
8
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
male
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
54
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
60
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
male
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
46
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
46
8
"
/>
<
source
>%
1
points
from
her
%
2
to
her
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
zeigt
von
ihrem
%
2
auf
ihren
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
64
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
70
"
/>
<
source
>%
1
points
from
his
%
2
to
his
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
zeigt
von
seinem
%
2
auf
seinen
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
69
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
75
"
/>
<
source
>%
1
points
from
her
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
von
ihrem
%
2
auf
%
3
s
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
47
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
47
7
"
/>
<
source
>%
1
points
from
her
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
von
ihrem
%
2
auf
%
3
s
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
74
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
80
"
/>
<
source
>%
1
points
from
his
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
von
seinem
%
2
auf
%
3
s
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
76
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
82
"
/>
<
source
>%
1
points
from
his
%
2
to
%
3
&
apos
;
s
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
von
seinem
%
2
auf
%
3
s
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
48
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
48
8
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
her
own
%
4
.
<
/source
>
<
comment
>
card
owner
female
,
target
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
ihren
eigenen
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
84
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
90
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
her
own
%
4
.
<
/source
>
<
comment
>
card
owner
male
,
target
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
ihren
eigenen
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
87
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
93
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
his
own
%
4
.
<
/source
>
<
comment
>
card
owner
female
,
target
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
seinen
eigenen
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
4
8
9
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
49
5
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
his
own
%
4
.
<
/source
>
<
comment
>
card
owner
male
,
target
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
seinen
eigenen
%
4
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
496
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
502
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
female
,
p2
female
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
498
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
504
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
female
,
p2
female
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
50
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
50
7
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
female
,
p2
male
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
50
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
50
9
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
female
,
p2
male
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
08
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
14
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
male
,
p2
female
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
51
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
51
6
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
male
,
p2
female
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
51
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
51
9
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
male
,
p2
male
,
p3
female
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
51
5
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
2
1
"
/>
<
source
>%
1
points
from
%
2
&
apos
;
s
%
3
to
%
4
&
apos
;
s
%
5
.
<
/source
>
<
comment
>
p1
male
,
p2
male
,
p3
male
<
/comment
>
<
translation
>%
1
zeigt
von
%
2
s
%
3
auf
%
4
s
%
5
.
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
53
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
53
6
"
/>
<
source
>%
1
places
%
n
%
2
counter
(
s
)
on
%
3
(
now
%
4
).
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>
...
...
@@ -3638,7 +3638,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
53
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
53
8
"
/>
<
source
>%
1
places
%
n
%
2
counter
(
s
)
on
%
3
(
now
%
4
).
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>
...
...
@@ -3647,7 +3647,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
35
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
41
"
/>
<
source
>%
1
removes
%
n
%
2
counter
(
s
)
from
%
3
(
now
%
4
).
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>
...
...
@@ -3656,7 +3656,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
53
7
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
4
3
"
/>
<
source
>%
1
removes
%
n
%
2
counter
(
s
)
from
%
3
(
now
%
4
).
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>
...
...
@@ -3665,299 +3665,299 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
64
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
70
"
/>
<
source
>%
1
taps
her
permanents
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
tappt
ihre
bleibenden
Karten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
66
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
72
"
/>
<
source
>%
1
untaps
her
permanents
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
enttappt
ihre
bleibenden
Karten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
69
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
75
"
/>
<
source
>%
1
taps
his
permanents
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
tappt
seine
bleibenden
Karten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
57
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
57
7
"
/>
<
source
>%
1
untaps
his
permanents
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
enttappt
seine
bleibenden
Karten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
77
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
83
"
/>
<
source
>%
1
taps
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
tappt
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
79
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
85
"
/>
<
source
>%
1
untaps
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
enttappt
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
58
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
58
8
"
/>
<
source
>%
1
taps
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
tappt
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
84
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
5
90
"
/>
<
source
>%
1
untaps
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
enttappt
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
596
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
602
"
/>
<
source
>%
1
sets
counter
%
2
to
%
3
(
%
4
%
5
).
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
setzt
Zähler
%
2
auf
%
3
(
%
4
%
5
).
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
598
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
604
"
/>
<
source
>%
1
sets
counter
%
2
to
%
3
(
%
4
%
5
).
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
setzt
Zähler
%
2
auf
%
3
(
%
4
%
5
).
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
07
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
13
"
/>
<
source
>%
1
sets
%
2
to
not
untap
normally
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
setzt
%
2
auf
explizites
Enttappen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
09
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
15
"
/>
<
source
>%
1
sets
%
2
to
not
untap
normally
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
setzt
%
2
auf
explizites
Enttappen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
61
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
61
8
"
/>
<
source
>%
1
sets
%
2
to
untap
normally
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
setzt
%
2
auf
normales
Enttappen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
14
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
20
"
/>
<
source
>%
1
sets
%
2
to
untap
normally
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
setzt
%
2
auf
normales
Enttappen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
62
6
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
3
2
"
/>
<
source
>%
1
sets
PT
of
%
2
to
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
setzt
Kampfwerte
von
%
2
auf
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
28
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
34
"
/>
<
source
>%
1
sets
PT
of
%
2
to
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
setzt
Kampfwerte
von
%
2
auf
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
63
7
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
4
3
"
/>
<
source
>%
1
sets
annotation
of
%
2
to
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
versieht
%
2
mit
dem
Hinweis
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
39
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
45
"
/>
<
source
>%
1
sets
annotation
of
%
2
to
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
versieht
%
2
mit
dem
Hinweis
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
47
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
53
"
/>
<
source
>%
1
is
looking
at
the
top
%
2
cards
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
sieht
sich
die
obersten
%
2
Karten
%
3
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
49
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
55
"
/>
<
source
>%
1
is
looking
at
the
top
%
2
cards
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
sieht
sich
die
obersten
%
2
Karten
%
3
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
65
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
65
8
"
/>
<
source
>%
1
is
looking
at
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
sieht
sich
%
2
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
54
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
60
"
/>
<
source
>%
1
is
looking
at
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
sieht
sich
%
2
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
66
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
66
8
"
/>
<
source
>%
1
stops
looking
at
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
sieht
sich
%
2
nicht
mehr
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
64
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
6
70
"
/>
<
source
>%
1
stops
looking
at
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
sieht
sich
%
2
nicht
mehr
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
69
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
69
6
"
/>
<
source
>%
1
reveals
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
female
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
%
3
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
69
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
69
8
"
/>
<
source
>%
1
reveals
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
female
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
%
3
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
695
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
701
"
/>
<
source
>%
1
reveals
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
male
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
%
3
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
697
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
703
"
/>
<
source
>%
1
reveals
%
2
to
%
3
.
<
/source
>
<
comment
>
p1
male
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
%
3
%
2
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
70
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
70
8
"
/>
<
source
>%
1
reveals
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
zeigt
%
2
offen
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
70
4
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
1
0
"
/>
<
source
>%
1
reveals
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
zeigt
%
2
offen
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
71
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
71
6
"
/>
<
source
>%
1
randomly
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
%
4
zufällig
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
71
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
71
8
"
/>
<
source
>%
1
randomly
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
%
4
zufällig
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
71
5
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
2
1
"
/>
<
source
>%
1
randomly
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
%
4
zufällig
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
17
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
23
"
/>
<
source
>%
1
randomly
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
%
4
zufällig
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
72
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
72
8
"
/>
<
source
>%
1
randomly
reveals
%
2
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
zeigt
zufällig
%
2
%
3
offen
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
24
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
30
"
/>
<
source
>%
1
randomly
reveals
%
2
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
zeigt
zufällig
%
2
%
3
offen
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
73
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
73
6
"
/>
<
source
>%
1
peeks
at
face
down
card
#
%
2
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
schaut
sich
die
umgedrehte
Karte
#
%
2
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
73
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
73
8
"
/>
<
source
>%
1
peeks
at
face
down
card
#
%
2
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
schaut
sich
die
umgedrehte
Karte
#
%
2
an
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
36
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
42
"
/>
<
source
>%
1
peeks
at
face
down
card
#
%
2
:
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
schaut
sich
die
umgedrehte
Karte
#
%
2
an
:
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
38
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
44
"
/>
<
source
>%
1
peeks
at
face
down
card
#
%
2
:
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
schaut
sich
die
umgedrehte
Karte
#
%
2
an
:
%
3
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
44
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
50
"
/>
<
source
>%
1
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
%
4
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
46
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
52
"
/>
<
source
>%
1
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
female
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
%
4
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
49
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
55
"
/>
<
source
>%
1
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
female
<
/comment
>
<
translation
>%
1
zeigt
%
4
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
75
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
75
7
"
/>
<
source
>%
1
reveals
%
2
%
3
to
%
4
.
<
/source
>
<
comment
>
p1
male
,
p2
male
<
/comment
>
<
translation
>%
1
zeigt
%
4
%
2
%
3
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
5
6
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
76
2
"
/>
<
source
>%
1
reveals
%
2
%
3
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
zeigt
%
2
%
3
offen
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
58
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
64
"
/>
<
source
>%
1
reveals
%
2
%
3
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
zeigt
%
2
%
3
offen
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
6
7
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
77
3
"
/>
<
source
>%
1
is
now
keeping
the
top
card
%
2
revealed
.
<
/source
>
<
translation
>%
1
lässt
nun
die
oberste
Karte
%
2
aufgedeckt
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
69
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
7
75
"
/>
<
source
>%
1
is
not
revealing
the
top
card
%
2
any
longer
.
<
/source
>
<
translation
>%
1
lässt
die
oberste
Karte
%
2
nicht
mehr
aufgedeckt
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
78
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
78
6
"
/>
<
source
>
It
is
now
%
1
&
apos
;
s
turn
.
<
/source
>
<
comment
>
female
<
/comment
>
<
translation
>%
1
ist
am
Zug
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
78
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
78
8
"
/>
<
source
>
It
is
now
%
1
&
apos
;
s
turn
.
<
/source
>
<
comment
>
male
<
/comment
>
<
translation
>%
1
ist
am
Zug
.
<
/translation
>
...
...
@@ -3970,12 +3970,12 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
33
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
33
9
"
/>
<
source
>%
1
draws
his
initial
hand
.
<
/source
>
<
translation
>%
1
zieht
seine
Starthand
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
33
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
33
9
"
/>
<
source
>%
1
draws
her
initial
hand
.
<
/source
>
<
translation
>%
1
zieht
ihre
Starthand
.
<
/translation
>
<
/message
>
...
...
@@ -4064,7 +4064,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
54
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
54
7
"
/>
<
source
>
red
<
/source
>
<
translation
>
<
numerusform
>
rote
<
/numerusform
>
...
...
@@ -4072,7 +4072,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
54
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
54
8
"
/>
<
source
>
yellow
<
/source
>
<
translation
>
<
numerusform
>
gelbe
<
/numerusform
>
...
...
@@ -4080,7 +4080,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
/translation
>
<
/message
>
<
message
numerus
=
"
yes
"
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
54
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
54
9
"
/>
<
source
>
green
<
/source
>
<
translation
>
<
numerusform
>
grüne
<
/numerusform
>
...
...
@@ -4240,7 +4240,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>%
1
zeigt
%
2
aus
%
3
offen
vor
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
80
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
80
7
"
/>
<
source
>
ending
phase
<
/source
>
<
translation
>
die
Zugendphase
<
/translation
>
<
/message
>
...
...
@@ -4273,52 +4273,52 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>%
1
ist
am
Zug
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
79
1
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
79
7
"
/>
<
source
>
untap
step
<
/source
>
<
translation
>
das
Enttappsegment
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
79
2
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
79
8
"
/>
<
source
>
upkeep
step
<
/source
>
<
translation
>
das
Versorgungssegment
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
79
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
79
9
"
/>
<
source
>
draw
step
<
/source
>
<
translation
>
das
Ziehsegment
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
794
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
800
"
/>
<
source
>
first
main
phase
<
/source
>
<
translation
>
die
erste
Hauptphase
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
795
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
801
"
/>
<
source
>
beginning
of
combat
step
<
/source
>
<
translation
>
das
Anfangssegment
der
Kampfphase
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
796
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
802
"
/>
<
source
>
declare
attackers
step
<
/source
>
<
translation
>
das
Angreifer
-
Deklarieren
-
Segment
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
797
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
803
"
/>
<
source
>
declare
blockers
step
<
/source
>
<
translation
>
das
Blocker
-
Deklarieren
-
Segment
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
798
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
804
"
/>
<
source
>
combat
damage
step
<
/source
>
<
translation
>
das
Kampfschadenssegment
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
799
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
805
"
/>
<
source
>
end
of
combat
step
<
/source
>
<
translation
>
das
Endsegment
der
Kampfphase
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
80
0
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
80
6
"
/>
<
source
>
second
main
phase
<
/source
>
<
translation
>
die
zweite
Hauptphase
<
/translation
>
<
/message
>
...
...
@@ -4327,7 +4327,7 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>
das
Ende
-
des
-
Zuges
-
Segment
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
80
3
"
/>
<
location
filename
=
"
../src/messagelogwidget.cpp
"
line
=
"
80
9
"
/>
<
source
>
It
is
now
the
%
1
.
<
/source
>
<
translation
>
Es
ist
nun
%
1
.
<
/translation
>
<
/message
>
...
...
@@ -5160,39 +5160,32 @@ Lokale Version ist %1, Serverversion ist %2.</translation>
<
translation
type
=
"
obsolete
"
>
Deck
#
%
1
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
171
"
/>
<
source
>
User
&
amp
;
details
<
/source
>
<
translation
>
Benutzer
&
amp
;
details
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Benutzer
&
amp
;
details
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
172
"
/>
<
source
>
Direct
&
amp
;
chat
<
/source
>
<
translation
>&
amp
;
Persönliches
Gespräch
<
/translation
>
<
translation
type
=
"
obsolete
"
>&
amp
;
Persönliches
Gespräch
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
173
"
/>
<
source
>
Add
to
&
amp
;
buddy
list
<
/source
>
<
translation
>
Zur
&
amp
;
Freundesliste
hinzufügen
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Zur
&
amp
;
Freundesliste
hinzufügen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
174
"
/>
<
source
>
Remove
from
&
amp
;
buddy
list
<
/source
>
<
translation
>
Von
&
amp
;
Freundesliste
entfernen
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Von
&
amp
;
Freundesliste
entfernen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
175
"
/>
<
source
>
Add
to
&
amp
;
ignore
list
<
/source
>
<
translation
>&
amp
;
Ignorieren
<
/translation
>
<
translation
type
=
"
obsolete
"
>&
amp
;
Ignorieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
176
"
/>
<
source
>
Remove
from
&
amp
;
ignore
list
<
/source
>
<
translation
>
Nicht
mehr
&
amp
;
ignorieren
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Nicht
mehr
&
amp
;
ignorieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
177
"
/>
<
source
>
Kick
from
&
amp
;
game
<
/source
>
<
translation
>
Aus
dem
&
amp
;
Spiel
werfen
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Aus
dem
&
amp
;
Spiel
werfen
<
/translation
>
<
/message
>
<
message
>
<
source
>
ID
#
%
1
<
/source
>
...
...
@@ -5507,113 +5500,113 @@ Bitte geben Sie einen Namen ein:</translation>
<
context
>
<
name
>
TabGame
<
/name
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
3
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
5
"
/>
<
source
>
F5
<
/source
>
<
translation
>
F5
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
4
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
6
"
/>
<
source
>
F6
<
/source
>
<
translation
>
F6
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
5
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
7
"
/>
<
source
>
F7
<
/source
>
<
translation
>
F7
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
6
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
8
"
/>
<
source
>
F8
<
/source
>
<
translation
>
F8
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
7
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
47
9
"
/>
<
source
>
F9
<
/source
>
<
translation
>
F9
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
4
7
8
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
48
0
"
/>
<
source
>
F10
<
/source
>
<
translation
>
F10
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
52
6
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
52
8
"
/>
<
source
>&
amp
;
Phases
<
/source
>
<
translation
>&
amp
;
Phasen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
29
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
31
"
/>
<
source
>&
amp
;
Game
<
/source
>
<
translation
>
Spi
&
amp
;
el
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
1
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
3
"
/>
<
source
>
Next
&
amp
;
phase
<
/source
>
<
translation
>
Nächste
&
amp
;
Phase
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
2
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
4
"
/>
<
source
>
Ctrl
+
Space
<
/source
>
<
translation
>
Ctrl
+
Space
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
5
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
7
"
/>
<
source
>
Next
&
amp
;
turn
<
/source
>
<
translation
>
Nächster
&
amp
;
Zug
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
6
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
8
"
/>
<
source
>
Ctrl
+
Return
<
/source
>
<
translation
>
Ctrl
+
Return
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
6
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
53
8
"
/>
<
source
>
Ctrl
+
Enter
<
/source
>
<
translation
>
Ctrl
+
Enter
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
39
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
41
"
/>
<
source
>&
amp
;
Remove
all
local
arrows
<
/source
>
<
translation
>&
amp
;
Lokale
Pfeile
entfernen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
0
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
2
"
/>
<
source
>
Ctrl
+
R
<
/source
>
<
translation
>
Ctrl
+
R
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
3
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
5
"
/>
<
source
>
Game
&
amp
;
information
<
/source
>
<
translation
>&
amp
;
Spielinformationen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
5
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
7
"
/>
<
source
>&
amp
;
Concede
<
/source
>
<
translation
>&
amp
;
Aufgeben
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
6
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
54
8
"
/>
<
source
>
F2
<
/source
>
<
translation
>
F2
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
49
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
51
"
/>
<
source
>&
amp
;
Leave
game
<
/source
>
<
translation
>
Spiel
ver
&
amp
;
lassen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
55
0
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
55
4
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
55
2
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
55
6
"
/>
<
source
>
Ctrl
+
Q
<
/source
>
<
translation
>
Ctrl
+
Q
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
55
3
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
55
5
"
/>
<
source
>
C
&
amp
;
lose
replay
<
/source
>
<
translation
>
Replay
sch
&
amp
;
ließen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
11
52
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
11
66
"
/>
<
source
>
Replay
%
1
:
%
2
<
/source
>
<
translation
>
Replay
%
1
:
%
2
<
/translation
>
<
/message
>
...
...
@@ -5642,7 +5635,7 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
type
=
"
obsolete
"
>
Spiel
s
&
amp
;
tarten
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
58
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
5
60
"
/>
<
source
>&
amp
;
Say
:
<
/source
>
<
translation
>&
amp
;
Sagen
:
<
/translation
>
<
/message
>
...
...
@@ -5655,22 +5648,22 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
type
=
"
obsolete
"
>
Esc
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
66
0
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
66
2
"
/>
<
source
>
Concede
<
/source
>
<
translation
>
Aufgeben
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
66
0
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
66
2
"
/>
<
source
>
Are
you
sure
you
want
to
concede
this
game
?
<
/source
>
<
translation
>
Sind
Sie
sicher
,
dass
Sie
das
Spiel
aufgeben
möchten
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
67
0
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
67
2
"
/>
<
source
>
Leave
game
<
/source
>
<
translation
>
Spiel
verlassen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
67
0
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
67
2
"
/>
<
source
>
Are
you
sure
you
want
to
leave
this
game
?
<
/source
>
<
translation
>
Sind
Sie
sicher
,
dass
Sie
das
Spiel
verlassen
möchten
?
<
/translation
>
<
/message
>
...
...
@@ -5679,7 +5672,7 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
type
=
"
obsolete
"
>
Deck
laden
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
11
54
"
/>
<
location
filename
=
"
../src/tab_game.cpp
"
line
=
"
11
68
"
/>
<
source
>
Game
%
1
:
%
2
<
/source
>
<
translation
>
Spiel
%
1
:
%
2
<
/translation
>
<
/message
>
...
...
@@ -5687,32 +5680,32 @@ Bitte geben Sie einen Namen ein:</translation>
<
context
>
<
name
>
TabMessage
<
/name
>
<
message
>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
4
4
"
/>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
4
7
"
/>
<
source
>
Personal
&
amp
;
talk
<
/source
>
<
translation
>
Persönliches
&
amp
;
Gespräch
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
4
5
"
/>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
4
8
"
/>
<
source
>&
amp
;
Leave
<
/source
>
<
translation
>
Ver
&
amp
;
lassen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
72
"
/>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
85
"
/>
<
source
>
This
user
is
ignoring
you
.
<
/source
>
<
translation
>
Dieser
Benutzer
ignoriert
Sie
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
88
"
/>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
102
"
/>
<
source
>%
1
has
left
the
server
.
<
/source
>
<
translation
>%
1
hat
den
Server
verlassen
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
94
"
/>
<
location
filename
=
"
../src/tab_message.cpp
"
line
=
"
108
"
/>
<
source
>%
1
has
joined
the
server
.
<
/source
>
<
translation
>%
1
hat
den
Server
betreten
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_message.
h
"
line
=
"
3
5
"
/>
<
location
filename
=
"
../src/tab_message.
cpp
"
line
=
"
5
8
"
/>
<
source
>
Talking
to
%
1
<
/source
>
<
translation
>
Gespräch
mit
%
1
<
/translation
>
<
/message
>
...
...
@@ -5754,32 +5747,32 @@ Bitte geben Sie einen Namen ein:</translation>
<
context
>
<
name
>
TabRoom
<
/name
>
<
message
>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
10
8
"
/>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
1
1
0
"
/>
<
source
>&
amp
;
Say
:
<
/source
>
<
translation
>&
amp
;
Sagen
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
1
09
"
/>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
1
11
"
/>
<
source
>
Chat
<
/source
>
<
translation
>
Unterhaltung
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
11
0
"
/>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
11
2
"
/>
<
source
>&
amp
;
Room
<
/source
>
<
translation
>&
amp
;
Raum
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
11
1
"
/>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
11
3
"
/>
<
source
>&
amp
;
Leave
room
<
/source
>
<
translation
>
Raum
ver
&
amp
;
lassen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
11
2
"
/>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
11
4
"
/>
<
source
>&
amp
;
Ignore
unregistered
users
in
chat
<
/source
>
<
translation
>
Unregistrierte
Benutzer
im
Chat
&
amp
;
ignorieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
14
5
"
/>
<
location
filename
=
"
../src/tab_room.cpp
"
line
=
"
14
7
"
/>
<
source
>
You
are
flooding
the
chat
.
Please
wait
a
couple
of
seconds
.
<
/source
>
<
translation
>
Sie
überfluten
den
Chatraum
.
Bitte
warten
Sie
ein
paar
Sekunden
.
<
/translation
>
<
/message
>
...
...
@@ -5823,6 +5816,59 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
>
Benutzerlisten
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
UserContextMenu
<
/name
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
40
"
/>
<
source
>
User
&
amp
;
details
<
/source
>
<
translation
>
Benutzer
&
amp
;
details
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
41
"
/>
<
source
>
Direct
&
amp
;
chat
<
/source
>
<
translation
>&
amp
;
Persönliches
Gespräch
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
42
"
/>
<
source
>
Show
this
user
&
apos
;
s
&
amp
;
games
<
/source
>
<
translation
>
Spiele
dieses
&
amp
;
Benutzers
anzeigen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
43
"
/>
<
source
>
Add
to
&
amp
;
buddy
list
<
/source
>
<
translation
>
Zur
&
amp
;
Freundesliste
hinzufügen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
44
"
/>
<
source
>
Remove
from
&
amp
;
buddy
list
<
/source
>
<
translation
>
Von
&
amp
;
Freundesliste
entfernen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
45
"
/>
<
source
>
Add
to
&
amp
;
ignore
list
<
/source
>
<
translation
>&
amp
;
Ignorieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
46
"
/>
<
source
>
Remove
from
&
amp
;
ignore
list
<
/source
>
<
translation
>
Nicht
mehr
&
amp
;
ignorieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
47
"
/>
<
source
>
Kick
from
&
amp
;
game
<
/source
>
<
translation
>
Aus
dem
&
amp
;
Spiel
werfen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
48
"
/>
<
source
>
Ban
from
&
amp
;
server
<
/source
>
<
translation
>
Vom
&
amp
;
Server
bannen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/user_context_menu.cpp
"
line
=
"
76
"
/>
<
source
>%
1
&
apos
;
s
games
<
/source
>
<
translation
>%
1
s
Spiele
<
/translation
>
<
/message
>
<
/context
>
<
context
>
<
name
>
UserInfoBox
<
/name
>
<
message
>
...
...
@@ -5916,69 +5962,60 @@ Bitte geben Sie einen Namen ein:</translation>
<
context
>
<
name
>
UserList
<
/name
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
27
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
38
"
/>
<
source
>
Users
online
:
%
1
<
/source
>
<
translation
>
Benutzer
online
:
%
1
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
28
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
39
"
/>
<
source
>
Users
in
this
room
:
%
1
<
/source
>
<
translation
>
Benutzer
in
diesem
Raum
:
%
1
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
29
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
40
"
/>
<
source
>
Buddies
online
:
%
1
/
%
2
<
/source
>
<
translation
>
Freunde
online
:
%
1
/
%
2
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
30
"
/>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
2
41
"
/>
<
source
>
Ignored
users
online
:
%
1
/
%
2
<
/source
>
<
translation
>
Ignorierte
Benutzer
online
:
%
1
/
%
2
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
335
"
/>
<
source
>%
1
&
apos
;
s
games
<
/source
>
<
translation
>%
1
s
Spiele
<
/translation
>
<
translation
type
=
"
obsolete
"
>%
1
s
Spiele
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
372
"
/>
<
source
>
User
&
amp
;
details
<
/source
>
<
translation
>
Benutzer
&
amp
;
details
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Benutzer
&
amp
;
details
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
373
"
/>
<
source
>
Direct
&
amp
;
chat
<
/source
>
<
translation
>&
amp
;
Persönliches
Gespräch
<
/translation
>
<
translation
type
=
"
obsolete
"
>&
amp
;
Persönliches
Gespräch
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
374
"
/>
<
source
>
Show
this
user
&
apos
;
s
&
amp
;
games
<
/source
>
<
translation
>
Spiele
dieses
&
amp
;
Benutzers
anzeigen
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Spiele
dieses
&
amp
;
Benutzers
anzeigen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
375
"
/>
<
source
>
Add
to
&
amp
;
buddy
list
<
/source
>
<
translation
>
Zur
&
amp
;
Freundesliste
hinzufügen
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Zur
&
amp
;
Freundesliste
hinzufügen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
376
"
/>
<
source
>
Remove
from
&
amp
;
buddy
list
<
/source
>
<
translation
>
Von
&
amp
;
Freundesliste
entfernen
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Von
&
amp
;
Freundesliste
entfernen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
377
"
/>
<
source
>
Add
to
&
amp
;
ignore
list
<
/source
>
<
translation
>&
amp
;
Ignorieren
<
/translation
>
<
translation
type
=
"
obsolete
"
>&
amp
;
Ignorieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
378
"
/>
<
source
>
Remove
from
&
amp
;
ignore
list
<
/source
>
<
translation
>
Nicht
mehr
&
amp
;
ignorieren
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Nicht
mehr
&
amp
;
ignorieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/userlist.cpp
"
line
=
"
379
"
/>
<
source
>
Ban
from
&
amp
;
server
<
/source
>
<
translation
>
Vom
&
amp
;
Server
bannen
<
/translation
>
<
translation
type
=
"
obsolete
"
>
Vom
&
amp
;
Server
bannen
<
/translation
>
<
/message
>
<
message
>
<
source
>
Duration
<
/source
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment