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
bc7b48a7
Commit
bc7b48a7
authored
Oct 14, 2010
by
Max-Wilhelm Bruker
Browse files
new table layout with inverted y coordinate
parent
2543a5b2
Changes
9
Hide whitespace changes
Inline
Side-by-side
cockatrice/src/dlg_settings.cpp
View file @
bc7b48a7
...
...
@@ -220,8 +220,13 @@ AppearanceSettingsPage::AppearanceSettingsPage()
economicalGridCheckBox
->
setChecked
(
settingsCache
->
getEconomicalGrid
());
connect
(
economicalGridCheckBox
,
SIGNAL
(
stateChanged
(
int
)),
settingsCache
,
SLOT
(
setEconomicalGrid
(
int
)));
invertVerticalCoordinateCheckBox
=
new
QCheckBox
;
invertVerticalCoordinateCheckBox
->
setChecked
(
settingsCache
->
getInvertVerticalCoordinate
());
connect
(
invertVerticalCoordinateCheckBox
,
SIGNAL
(
stateChanged
(
int
)),
settingsCache
,
SLOT
(
setInvertVerticalCoordinate
(
int
)));
QGridLayout
*
tableGrid
=
new
QGridLayout
;
tableGrid
->
addWidget
(
economicalGridCheckBox
,
0
,
0
,
1
,
2
);
tableGrid
->
addWidget
(
invertVerticalCoordinateCheckBox
,
1
,
0
,
1
,
2
);
tableGroupBox
=
new
QGroupBox
;
tableGroupBox
->
setLayout
(
tableGrid
);
...
...
@@ -247,7 +252,6 @@ AppearanceSettingsPage::AppearanceSettingsPage()
mainLayout
->
addWidget
(
zoneViewGroupBox
);
setLayout
(
mainLayout
);
}
void
AppearanceSettingsPage
::
retranslateUi
()
...
...
@@ -263,6 +267,7 @@ void AppearanceSettingsPage::retranslateUi()
tableGroupBox
->
setTitle
(
tr
(
"Table grid layout"
));
economicalGridCheckBox
->
setText
(
tr
(
"Economical layout"
));
invertVerticalCoordinateCheckBox
->
setText
(
tr
(
"Invert vertical coordinate"
));
zoneViewGroupBox
->
setTitle
(
tr
(
"Zone view layout"
));
zoneViewSortByNameCheckBox
->
setText
(
tr
(
"Sort by name"
));
...
...
cockatrice/src/dlg_settings.h
View file @
bc7b48a7
...
...
@@ -64,7 +64,7 @@ signals:
private:
QLabel
*
handBgLabel
,
*
tableBgLabel
,
*
playerAreaBgLabel
,
*
cardBackPicturePathLabel
;
QLineEdit
*
handBgEdit
,
*
tableBgEdit
,
*
playerAreaBgEdit
,
*
cardBackPicturePathEdit
;
QCheckBox
*
horizontalHandCheckBox
,
*
economicalGridCheckBox
,
*
zoneViewSortByNameCheckBox
,
*
zoneViewSortByTypeCheckBox
;
QCheckBox
*
horizontalHandCheckBox
,
*
economicalGridCheckBox
,
*
invertVerticalCoordinateCheckBox
,
*
zoneViewSortByNameCheckBox
,
*
zoneViewSortByTypeCheckBox
;
QGroupBox
*
zoneBgGroupBox
,
*
handGroupBox
,
*
tableGroupBox
,
*
zoneViewGroupBox
;
public:
AppearanceSettingsPage
();
...
...
cockatrice/src/settingscache.cpp
View file @
bc7b48a7
...
...
@@ -21,6 +21,7 @@ SettingsCache::SettingsCache()
cardInfoMinimized
=
settings
->
value
(
"interface/cardinfominimized"
,
false
).
toBool
();
horizontalHand
=
settings
->
value
(
"hand/horizontal"
,
false
).
toBool
();
economicalGrid
=
settings
->
value
(
"table/economic"
,
false
).
toBool
();
invertVerticalCoordinate
=
settings
->
value
(
"table/invert_vertical"
,
false
).
toBool
();
tapAnimation
=
settings
->
value
(
"cards/tapanimation"
,
true
).
toBool
();
zoneViewSortByName
=
settings
->
value
(
"zoneview/sortbyname"
,
false
).
toBool
();
...
...
@@ -115,6 +116,13 @@ void SettingsCache::setEconomicalGrid(int _economicalGrid)
emit
economicalGridChanged
();
}
void
SettingsCache
::
setInvertVerticalCoordinate
(
int
_invertVerticalCoordinate
)
{
invertVerticalCoordinate
=
_invertVerticalCoordinate
;
settings
->
setValue
(
"table/invert_vertical"
,
invertVerticalCoordinate
);
emit
invertVerticalCoordinateChanged
();
}
void
SettingsCache
::
setTapAnimation
(
int
_tapAnimation
)
{
tapAnimation
=
_tapAnimation
;
...
...
cockatrice/src/settingscache.h
View file @
bc7b48a7
...
...
@@ -18,6 +18,7 @@ signals:
void
picDownloadChanged
();
void
horizontalHandChanged
();
void
economicalGridChanged
();
void
invertVerticalCoordinateChanged
();
private:
QSettings
*
settings
;
...
...
@@ -29,6 +30,7 @@ private:
bool
cardInfoMinimized
;
bool
horizontalHand
;
bool
economicalGrid
;
bool
invertVerticalCoordinate
;
bool
tapAnimation
;
bool
zoneViewSortByName
,
zoneViewSortByType
;
public:
...
...
@@ -46,6 +48,7 @@ public:
bool
getCardInfoMinimized
()
const
{
return
cardInfoMinimized
;
}
bool
getHorizontalHand
()
const
{
return
horizontalHand
;
}
bool
getEconomicalGrid
()
const
{
return
economicalGrid
;
}
bool
getInvertVerticalCoordinate
()
const
{
return
invertVerticalCoordinate
;
}
bool
getTapAnimation
()
const
{
return
tapAnimation
;
}
bool
getZoneViewSortByName
()
const
{
return
zoneViewSortByName
;
}
bool
getZoneViewSortByType
()
const
{
return
zoneViewSortByType
;
}
...
...
@@ -63,6 +66,7 @@ public slots:
void
setCardInfoMinimized
(
bool
_cardInfoMinimized
);
void
setHorizontalHand
(
int
_horizontalHand
);
void
setEconomicalGrid
(
int
_economicalGrid
);
void
setInvertVerticalCoordinate
(
int
_invertVerticalCoordinate
);
void
setTapAnimation
(
int
_tapAnimation
);
void
setZoneViewSortByName
(
int
_zoneViewSortByName
);
void
setZoneViewSortByType
(
int
_zoneViewSortByType
);
...
...
cockatrice/src/tablezone.cpp
View file @
bc7b48a7
...
...
@@ -13,6 +13,7 @@ TableZone::TableZone(Player *_p, QGraphicsItem *parent)
{
connect
(
settingsCache
,
SIGNAL
(
tableBgPathChanged
()),
this
,
SLOT
(
updateBgPixmap
()));
connect
(
settingsCache
,
SIGNAL
(
economicalGridChanged
()),
this
,
SLOT
(
reorganizeCards
()));
connect
(
settingsCache
,
SIGNAL
(
invertVerticalCoordinateChanged
()),
this
,
SLOT
(
reorganizeCards
()));
updateBgPixmap
();
if
(
settingsCache
->
getEconomicalGrid
())
...
...
@@ -39,6 +40,11 @@ QRectF TableZone::boundingRect() const
return
QRectF
(
0
,
0
,
width
,
height
);
}
bool
TableZone
::
isInverted
()
const
{
return
((
player
->
getMirrored
()
&&
!
settingsCache
->
getInvertVerticalCoordinate
())
||
(
!
player
->
getMirrored
()
&&
settingsCache
->
getInvertVerticalCoordinate
()));
}
void
TableZone
::
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*/
*
option
*/
,
QWidget
*/
*
widget
*/
)
{
if
(
bgPixmap
.
isNull
())
...
...
@@ -47,7 +53,7 @@ void TableZone::paint(QPainter *painter, const QStyleOptionGraphicsItem */*optio
painter
->
fillRect
(
boundingRect
(),
QBrush
(
bgPixmap
));
painter
->
setPen
(
QColor
(
255
,
255
,
255
,
40
));
qreal
separatorY
=
3
*
(
CARD_HEIGHT
+
paddingY
)
+
boxLineWidth
-
paddingY
/
2
;
if
(
player
->
getMirror
ed
())
if
(
isInvert
ed
())
separatorY
=
height
-
separatorY
;
painter
->
drawLine
(
QPointF
(
0
,
separatorY
),
QPointF
(
width
,
separatorY
));
...
...
@@ -220,7 +226,7 @@ QPointF TableZone::mapFromGrid(const QPoint &gridPoint) const
y
=
boxLineWidth
+
(
CARD_HEIGHT
+
paddingY
)
*
gridPoint
.
y
();
}
if
(
player
->
getMirror
ed
())
if
(
isInvert
ed
())
y
=
height
-
CARD_HEIGHT
-
y
;
return
QPointF
(
x
,
y
);
...
...
@@ -230,7 +236,7 @@ QPoint TableZone::mapToGrid(const QPointF &mapPoint) const
{
qreal
x
=
mapPoint
.
x
()
-
marginX
;
qreal
y
=
mapPoint
.
y
();
if
(
player
->
getMirror
ed
())
if
(
isInvert
ed
())
y
=
height
-
y
;
y
+=
paddingY
/
2
-
boxLineWidth
;
...
...
cockatrice/src/tablezone.h
View file @
bc7b48a7
...
...
@@ -18,6 +18,7 @@ private:
int
currentMinimumWidth
;
QPixmap
bgPixmap
;
bool
active
;
bool
isInverted
()
const
;
private
slots
:
void
updateBgPixmap
();
public
slots
:
...
...
cockatrice/translations/cockatrice_de.ts
View file @
bc7b48a7
...
...
@@ -27,66 +27,71 @@
<
context
>
<
name
>
AppearanceSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
25
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
25
9
"
/>
<
source
>
Zone
background
pictures
<
/source
>
<
translation
>
Hintergrundbilder
für
Kartenzonen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
5
6
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
0
"
/>
<
source
>
Path
to
hand
background
:
<
/source
>
<
translation
>
Hintergrundbild
für
die
Hand
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
57
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
61
"
/>
<
source
>
Path
to
table
background
:
<
/source
>
<
translation
>
Hintergrundbild
für
das
Spielfeld
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
58
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
62
"
/>
<
source
>
Path
to
player
info
background
:
<
/source
>
<
translation
>
Hintergrundbild
für
den
Spielerbereich
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
59
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
63
"
/>
<
source
>
Path
to
picture
of
card
back
:
<
/source
>
<
translation
>
Pfad
zum
Bild
der
Kartenrückseite
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
5
"
/>
<
source
>
Hand
layout
<
/source
>
<
translation
>
Kartenhand
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
6
"
/>
<
source
>
Display
hand
horizontally
(
wastes
space
)
<
/source
>
<
translation
>
Hand
horizonal
anzeigen
(
verschwendet
Platz
)
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
4
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
8
"
/>
<
source
>
Table
grid
layout
<
/source
>
<
translation
>
Spielfeldraster
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
9
"
/>
<
source
>
Economical
layout
<
/source
>
<
translation
>
Platzsparende
Anordnung
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
270
"
/>
<
source
>
Invert
vertical
coordinate
<
/source
>
<
translation
>
Vertikale
Koordinate
umkehren
<
/translation
>
<
/message
>
<
message
>
<
source
>
Economic
layout
<
/source
>
<
translation
type
=
"
obsolete
"
>
Platzsparende
Anordnung
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
6
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
27
2
"
/>
<
source
>
Zone
view
layout
<
/source
>
<
translation
>
Aussehen
des
Zonenbetrachters
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
68
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
73
"
/>
<
source
>
Sort
by
name
<
/source
>
<
translation
>
nach
Namen
sortieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
69
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
74
"
/>
<
source
>
Sort
by
type
<
/source
>
<
translation
>
nach
Kartentypen
sortieren
<
/translation
>
<
/message
>
...
...
@@ -95,10 +100,10 @@
<
translation
type
=
"
obsolete
"
>
standardmäßig
alphabetisch
sortieren
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
28
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
296
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
31
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
28
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
28
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
301
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
31
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
33
"
/>
<
source
>
Choose
path
<
/source
>
<
translation
>
Pfad
auswählen
<
/translation
>
<
/message
>
...
...
@@ -134,22 +139,22 @@
<
context
>
<
name
>
CardInfoWidget
<
/name
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
06
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
47
"
/>
<
source
>
Name
:
<
/source
>
<
translation
>
Name
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
07
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
48
"
/>
<
source
>
Mana
cost
:
<
/source
>
<
translation
>
Manakosten
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
08
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
49
"
/>
<
source
>
Card
type
:
<
/source
>
<
translation
>
Kartentyp
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
10
9
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
5
0
"
/>
<
source
>
P
/
T
:
<
/source
>
<
translation
>
S
/
W
:
<
/translation
>
<
/message
>
...
...
@@ -497,12 +502,12 @@
<
context
>
<
name
>
DeckListModel
<
/name
>
<
message
>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
48
"
/>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
23
"
/>
<
source
>
Number
<
/source
>
<
translation
>
Nummer
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
14
9
"
/>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
2
4
"
/>
<
source
>
Card
<
/source
>
<
translation
>
Karte
<
/translation
>
<
/message
>
...
...
@@ -858,9 +863,9 @@
<
context
>
<
name
>
DlgSettings
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
527
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
532
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
537
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
542
"
/>
<
source
>
Error
<
/source
>
<
translation
>
Fehler
<
/translation
>
<
/message
>
...
...
@@ -877,47 +882,47 @@
<
translation
type
=
"
obsolete
"
>
Der
Pfad
zum
Kartenbilderverzeichnis
ist
ungültig
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
52
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
3
2
"
/>
<
source
>
Your
card
database
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
>
Ihre
Kartendatenbank
ist
ungültig
.
Möchten
Sie
zurückgehen
und
den
korrekten
Pfad
einstellen
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
53
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
53
7
"
/>
<
source
>
The
path
to
your
deck
directory
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
>
Der
Pfad
zu
Ihrem
Deckordner
ist
ungültig
.
Möchten
Sie
zurückgehen
und
den
korrekten
Pfad
einstellen
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
37
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
42
"
/>
<
source
>
The
path
to
your
card
pictures
directory
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
>
Der
Pfad
zu
Ihrem
Kartenbilderordner
ist
ungültig
.
Möchten
Sie
zurückgehen
und
den
korrekten
Pfad
einstellen
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
46
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
51
"
/>
<
source
>
Settings
<
/source
>
<
translation
>
Einstellungen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
48
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
53
"
/>
<
source
>
General
<
/source
>
<
translation
>
Allgemeines
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
54
9
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
5
4
"
/>
<
source
>
Appearance
<
/source
>
<
translation
>
Erscheinungsbild
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
5
"
/>
<
source
>
User
interface
<
/source
>
<
translation
>
Bedienung
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
6
"
/>
<
source
>
Messages
<
/source
>
<
translation
>
Nachrichten
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
8
"
/>
<
source
>&
amp
;
Close
<
/source
>
<
translation
>
S
&
amp
;
chließen
<
/translation
>
<
/message
>
...
...
@@ -2202,12 +2207,12 @@
<
context
>
<
name
>
MessagesSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
5
"
/>
<
source
>&
amp
;
Add
<
/source
>
<
translation
>&
amp
;
Hinzufügen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
6
"
/>
<
source
>&
amp
;
Remove
<
/source
>
<
translation
>&
amp
;
Entfernen
<
/translation
>
<
/message
>
...
...
@@ -2220,12 +2225,12 @@
<
translation
type
=
"
obsolete
"
>
Entfernen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
8
"
/>
<
source
>
Add
message
<
/source
>
<
translation
>
Nachricht
hinzufügen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
8
"
/>
<
source
>
Message
:
<
/source
>
<
translation
>
Nachricht
:
<
/translation
>
<
/message
>
...
...
@@ -2291,51 +2296,51 @@
<
context
>
<
name
>
Player
<
/name
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
6
"
/>
<
source
>
Move
to
&
amp
;
top
of
library
<
/source
>
<
translation
>
Oben
auf
die
Biblio
&
amp
;
thek
legen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
9
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
7
"
/>
<
source
>
Move
to
&
amp
;
bottom
of
library
<
/source
>
<
translation
>
Unter
die
&
amp
;
Bibliothek
legen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
9
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
1
0
"
/>
<
source
>&
amp
;
View
library
<
/source
>
<
translation
>&
amp
;
Zeige
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
7
"
/>
<
source
>
Move
top
cards
to
g
&
amp
;
raveyard
...
<
/source
>
<
translation
>
Oberste
Karten
in
den
F
&
amp
;
riedhof
legen
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
8
"
/>
<
source
>
Move
top
cards
to
&
amp
;
exile
...
<
/source
>
<
translation
>
Oberste
Karten
ins
&
amp
;
Exil
schicken
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
7
"
/>
<
source
>
F3
<
/source
>
<
translation
>
F3
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
1
"
/>
<
source
>
View
&
amp
;
top
cards
of
library
...
<
/source
>
<
translation
>
Zeige
die
oberen
Kar
&
amp
;
ten
der
Bibliothek
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
1
"
/>
<
source
>&
amp
;
View
graveyard
<
/source
>
<
translation
>&
amp
;
Zeige
Friedhof
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
9
"
/>
<
source
>
F4
<
/source
>
<
translation
>
F4
<
/translation
>
<
/message
>
...
...
@@ -2344,32 +2349,32 @@
<
translation
type
=
"
obsolete
"
>
Zeige
ent
&
amp
;
fernte
Karten
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
2
"
/>
<
source
>&
amp
;
View
sideboard
<
/source
>
<
translation
>
Zeige
&
amp
;
Sideboard
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
3
"
/>
<
source
>
Player
&
quot
;
%
1
&
quot
;
<
/source
>
<
translation
>
Spieler
&
quot
;
%
1
&
quot
;
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
5
"
/>
<
source
>
Take
&
amp
;
mulligan
<
/source
>
<
translation
>&
amp
;
Mulligan
nehmen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
19
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
20
"
/>
<
source
>&
amp
;
Hand
<
/source
>
<
translation
>&
amp
;
Hand
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
2
"
/>
<
source
>&
amp
;
Library
<
/source
>
<
translation
>
Bib
&
amp
;
liothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
4
"
/>
<
source
>&
amp
;
Graveyard
<
/source
>
<
translation
>&
amp
;
Friedhof
<
/translation
>
<
/message
>
...
...
@@ -2378,7 +2383,7 @@
<
translation
type
=
"
obsolete
"
>
Entfe
&
amp
;
rnte
Karten
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
1
"
/>
<
source
>&
amp
;
Sideboard
<
/source
>
<
translation
>&
amp
;
Sideboard
<
/translation
>
<
/message
>
...
...
@@ -2391,65 +2396,65 @@
<
translation
type
=
"
obsolete
"
>&
amp
;
Hinweis
setzen
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
9
"
/>
<
source
>
View
top
cards
of
library
<
/source
>
<
translation
>
Zeige
die
obersten
Karten
der
Bibliothek
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
9
"
/>
<
source
>
Number
of
cards
:
<
/source
>
<
translation
>
Anzahl
der
Karten
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
3
"
/>
<
source
>&
amp
;
Draw
card
<
/source
>
<
translation
>
Karte
&
amp
;
ziehen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
2
"
/>
<
source
>&
amp
;
View
exile
<
/source
>
<
translation
>&
amp
;
Zeige
Exil
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
5
"
/>
<
source
>&
amp
;
Exile
<
/source
>
<
translation
>&
amp
;
Exil
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
8
"
/>
<
source
>
Move
to
&
amp
;
hand
<
/source
>
<
translation
>
auf
die
&
amp
;
Hand
nehmen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
299
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
300
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
9
"
/>
<
source
>
Move
to
g
&
amp
;
raveyard
<
/source
>
<
translation
>
auf
den
&
amp
;
Friedhof
legen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
5
"
/>
<
source
>
Move
to
&
amp
;
exile
<
/source
>
<
translation
>
ins
&
amp
;
Exil
schicken
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
8
"
/>
<
source
>
Ctrl
+
W
<
/source
>
<
translation
>
Ctrl
+
W
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
49
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
50
"
/>
<
source
>
Ctrl
+
D
<
/source
>
<
translation
>
Ctrl
+
D
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
4
"
/>
<
source
>
D
&
amp
;
raw
cards
...
<
/source
>
<
translation
>
Ka
&
amp
;
rten
ziehen
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
1
"
/>
<
source
>
Ctrl
+
E
<
/source
>
<
translation
>
Ctrl
+
E
<
/translation
>
<
/message
>
...
...
@@ -2458,32 +2463,32 @@
<
translation
type
=
"
obsolete
"
>&
amp
;
Mulligan
nehmen
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
2
"
/>
<
source
>
Ctrl
+
M
<
/source
>
<
translation
>
Ctrl
+
M
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
6
"
/>
<
source
>&
amp
;
Shuffle
<
/source
>
<
translation
>
Mi
&
amp
;
schen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
3
"
/>
<
source
>
Ctrl
+
S
<
/source
>
<
translation
>
Ctrl
+
S
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
3
"
/>
<
source
>&
amp
;
Counters
<
/source
>
<
translation
>&
amp
;
Zähler
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
5
"
/>
<
source
>&
amp
;
Untap
all
permanents
<
/source
>
<
translation
>&
amp
;
Enttappe
alle
bleibenden
Karten
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
4
"
/>
<
source
>
Ctrl
+
U
<
/source
>
<
translation
>
Ctrl
+
U
<
/translation
>
<
/message
>
...
...
@@ -2512,42 +2517,42 @@
<
translation
type
=
"
obsolete
"
>
Ctrl
+
L
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
6
"
/>
<
source
>
R
&
amp
;
oll
die
...
<
/source
>
<
translation
>&
amp
;
Würfeln
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
5
"
/>
<
source
>
Ctrl
+
I
<
/source
>
<
translation
>
Ctrl
+
I
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
7
"
/>
<
source
>&
amp
;
Create
token
...
<
/source
>
<
translation
>
Spiels
&
amp
;
tein
erstellen
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
6
"
/>
<
source
>
Ctrl
+
T
<
/source
>
<
translation
>
Ctrl
+
T
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
8
"
/>
<
source
>
C
&
amp
;
reate
another
token
<
/source
>
<
translation
>&
amp
;
Noch
einen
Spielstein
erstellen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
7
"
/>
<
source
>
Ctrl
+
G
<
/source
>
<
translation
>
Ctrl
+
G
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
9
"
/>
<
source
>
S
&
amp
;
ay
<
/source
>
<
translation
>
S
&
amp
;
agen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
33
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
33
5
"
/>
<
source
>
C
&
amp
;
ard
<
/source
>
<
translation
>&
amp
;
Karte
<
/translation
>
<
/message
>
...
...
@@ -2640,50 +2645,50 @@
<
translation
type
=
"
obsolete
"
>
F10
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
8
"
/>
<
source
>
Draw
cards
<
/source
>
<
translation
>
Karten
ziehen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
69
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
70
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
3
"
/>
<
source
>
Number
:
<
/source
>
<
translation
>
Anzahl
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
5
"
/>
<
source
>
Move
top
cards
to
grave
<
/source
>
<
translation
>
Oberste
Karten
in
den
Friedhof
legen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
69
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
70
"
/>
<
source
>
Move
top
cards
to
exile
<
/source
>
<
translation
>
Oberste
Karten
ins
Exil
schicken
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
1
"
/>
<
source
>
Set
power
/
toughness
<
/source
>
<
translation
>
Kampfwerte
setzen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
1
"
/>
<
source
>
Please
enter
the
new
PT
:
<
/source
>
<
translation
>
Bitte
die
neuen
Kampfwerte
eingeben
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
7
"
/>
<
source
>
Set
annotation
<
/source
>
<
translation
>
Hinweis
setzen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
7
"
/>
<
source
>
Please
enter
the
new
annotation
:
<
/source
>
<
translation
>
Bitte
den
Hinweis
eingeben
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
3
"
/>
<
source
>
Set
counters
<
/source
>
<
translation
>
Setze
Zählmarken
<
/translation
>
<
/message
>
...
...
@@ -2696,12 +2701,12 @@
<
translation
type
=
"
obsolete
"
>
Neue
Lebenspunkte
insgesamt
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
1
"
/>
<
source
>
Roll
die
<
/source
>
<
translation
>
Würfeln
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
1
"
/>
<
source
>
Number
of
sides
:
<
/source
>
<
translation
>
Anzahl
der
Seiten
:
<
/translation
>
<
/message
>
...
...
@@ -2717,27 +2722,27 @@
<
context
>
<
name
>
PlayerListWidget
<
/name
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
0
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
1
"
/>
<
source
>
Player
name
<
/source
>
<
translation
>
Spielername
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
1
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
2
"
/>
<
source
>
Deck
<
/source
>
<
translation
>
Deck
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
5
8
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
5
9
"
/>
<
source
>---<
/source
>
<
translation
>---<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
59
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
60
"
/>
<
source
>
local
<
/source
>
<
translation
>
lokal
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
6
0
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
6
1
"
/>
<
source
>
#
%
1
<
/source
>
<
translation
>
#
%
1
<
/translation
>
<
/message
>
...
...
@@ -3035,7 +3040,7 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
type
=
"
obsolete
"
>
Deck
laden
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.h
"
line
=
"
15
0
"
/>
<
location
filename
=
"
../src/tab_game.h
"
line
=
"
15
1
"
/>
<
source
>
Game
%
1
:
%
2
<
/source
>
<
translation
>
Spiel
%
1
:
%
2
<
/translation
>
<
/message
>
...
...
@@ -3102,22 +3107,22 @@ Bitte geben Sie einen Namen ein:</translation>
<
context
>
<
name
>
UserInterfaceSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
6
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
2
"
/>
<
source
>
General
interface
settings
<
/source
>
<
translation
>
Allgemeine
Bedienung
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
68
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
73
"
/>
<
source
>&
amp
;
Double
-
click
cards
to
play
them
(
instead
of
single
-
click
)
<
/source
>
<
translation
>
Karten
durch
&
amp
;
Doppelklick
ausspielen
(
statt
Einzelklick
)
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
69
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
74
"
/>
<
source
>
Animation
settings
<
/source
>
<
translation
>
Animationseinstellungen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
5
"
/>
<
source
>&
amp
;
Tap
/
untap
animation
<
/source
>
<
translation
>
Animiertes
&
amp
;
Tappen
/
Enttappen
<
/translation
>
<
/message
>
...
...
@@ -3138,32 +3143,32 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
>&
amp
;
Suchen
nach
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
10
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
10
7
"
/>
<
source
>
Deck
&
amp
;
name
:
<
/source
>
<
translation
>
Deck
&
amp
;
Name
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
11
2
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
11
1
"
/>
<
source
>&
amp
;
Comments
:
<
/source
>
<
translation
>&
amp
;
Kommentare
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
5
"
/>
<
source
>
Deck
editor
[
*
]
<
/source
>
<
translation
>
Deck
-
Editor
[
*
]
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
7
"
/>
<
source
>&
amp
;
New
deck
<
/source
>
<
translation
>&
amp
;
Neues
Deck
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
0
"
/>
<
source
>&
amp
;
Load
deck
...
<
/source
>
<
translation
>
Deck
&
amp
;
laden
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
3
"
/>
<
source
>&
amp
;
Save
deck
<
/source
>
<
translation
>
Deck
&
amp
;
speichern
<
/translation
>
<
/message
>
...
...
@@ -3172,37 +3177,37 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
type
=
"
obsolete
"
>
Deck
&
amp
;
speichern
unter
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
7
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
6
"
/>
<
source
>
Save
deck
&
amp
;
as
...
<
/source
>
<
translation
>
Deck
s
&
amp
;
peichern
unter
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
2
"
/>
<
source
>
Save
deck
to
clip
&
amp
;
board
<
/source
>
<
translation
>
Deck
in
Z
&
amp
;
wischenablage
speichern
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
5
"
/>
<
source
>&
amp
;
Print
deck
...
<
/source
>
<
translation
>
Deck
&
amp
;
drucken
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
8
"
/>
<
source
>&
amp
;
Close
<
/source
>
<
translation
>
S
&
amp
;
chließen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
60
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
59
"
/>
<
source
>
Ctrl
+
Q
<
/source
>
<
translation
>
Ctrl
+
Q
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
2
"
/>
<
source
>&
amp
;
Edit
sets
...
<
/source
>
<
translation
>&
amp
;
Editionen
bearbeiten
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
5
"
/>
<
source
>&
amp
;
Deck
<
/source
>
<
translation
>&
amp
;
Deck
<
/translation
>
<
/message
>
...
...
@@ -3211,27 +3216,27 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
type
=
"
obsolete
"
>&
amp
;
Editionen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
4
"
/>
<
source
>
Add
card
to
&
amp
;
maindeck
<
/source
>
<
translation
>
Karte
zu
&
amp
;
m
Hauptdeck
hinzufügen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
source
>
Return
<
/source
>
<
translation
>
Return
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
source
>
Enter
<
/source
>
<
translation
>
Enter
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
0
"
/>
<
source
>
Ctrl
+
Return
<
/source
>
<
translation
>
Ctrl
+
Return
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
0
"
/>
<
source
>
Ctrl
+
Enter
<
/source
>
<
translation
>
Ctrl
+
Enter
<
/translation
>
<
/message
>
...
...
@@ -3240,7 +3245,7 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
type
=
"
obsolete
"
>
Ctrl
+
M
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
8
"
/>
<
source
>
Add
card
to
&
amp
;
sideboard
<
/source
>
<
translation
>
Karte
zum
&
amp
;
Sideboard
hinzufügen
<
/translation
>
<
/message
>
...
...
@@ -3259,64 +3264,64 @@ Bitte geben Sie einen Namen ein:</translation>
<
translation
>
Suche
a
&
amp
;
ufheben
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
50
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
49
"
/>
<
source
>
Load
deck
from
cl
&
amp
;
ipboard
...
<
/source
>
<
translation
>
Deck
aus
&
amp
;
Zwischenablage
laden
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
17
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
17
8
"
/>
<
source
>&
amp
;
Card
database
<
/source
>
<
translation
>&
amp
;
Kartendatenbank
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
2
"
/>
<
source
>&
amp
;
Remove
row
<
/source
>
<
translation
>
Zeile
entfe
&
amp
;
rnen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
3
"
/>
<
source
>
Del
<
/source
>
<
translation
>
Entf
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
7
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
6
"
/>
<
source
>&
amp
;
Increment
number
<
/source
>
<
translation
>
Anzahl
er
&
amp
;
höhen
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
7
"
/>
<
source
>+<
/source
>
<
translation
>+<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
0
"
/>
<
source
>&
amp
;
Decrement
number
<
/source
>
<
translation
>
Anzahl
v
&
amp
;
erringern
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
2
"
/>
<
source
>-<
/source
>
<
translation
>-<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
3
"
/>
<
source
>
Are
you
sure
?
<
/source
>
<
translation
>
Bist
du
sicher
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
5
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
4
"
/>
<
source
>
The
decklist
has
been
modified
.
Do
you
want
to
save
the
changes
?
<
/source
>
<
translation
>
Die
Deckliste
wurde
verändert
.
Willst
du
die
Änderungen
speichern
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
29
0
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
2
8
9
"
/>
<
source
>
Load
deck
<
/source
>
<
translation
>
Deck
laden
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
31
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
31
7
"
/>
<
source
>
Save
deck
<
/source
>
<
translation
>
Deck
speichern
<
/translation
>
<
/message
>
...
...
cockatrice/translations/cockatrice_en.ts
View file @
bc7b48a7
...
...
@@ -4,70 +4,75 @@
<
context
>
<
name
>
AppearanceSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
25
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
25
9
"
/>
<
source
>
Zone
background
pictures
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
5
6
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
0
"
/>
<
source
>
Path
to
hand
background
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
57
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
61
"
/>
<
source
>
Path
to
table
background
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
58
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
62
"
/>
<
source
>
Path
to
player
info
background
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
59
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
63
"
/>
<
source
>
Path
to
picture
of
card
back
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
5
"
/>
<
source
>
Hand
layout
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
6
"
/>
<
source
>
Display
hand
horizontally
(
wastes
space
)
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
4
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
8
"
/>
<
source
>
Table
grid
layout
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
9
"
/>
<
source
>
Economical
layout
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
267
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
270
"
/>
<
source
>
Invert
vertical
coordinate
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
272
"
/>
<
source
>
Zone
view
layout
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
68
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
73
"
/>
<
source
>
Sort
by
name
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
69
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
74
"
/>
<
source
>
Sort
by
type
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
28
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
296
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
31
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
28
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
28
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
301
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
31
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
33
"
/>
<
source
>
Choose
path
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -103,22 +108,22 @@
<
context
>
<
name
>
CardInfoWidget
<
/name
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
06
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
47
"
/>
<
source
>
Name
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
07
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
48
"
/>
<
source
>
Mana
cost
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
08
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
49
"
/>
<
source
>
Card
type
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
10
9
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
5
0
"
/>
<
source
>
P
/
T
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -413,12 +418,12 @@
<
context
>
<
name
>
DeckListModel
<
/name
>
<
message
>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
48
"
/>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
23
"
/>
<
source
>
Number
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
14
9
"
/>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
2
4
"
/>
<
source
>
Card
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -735,54 +740,54 @@
<
context
>
<
name
>
DlgSettings
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
527
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
532
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
537
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
542
"
/>
<
source
>
Error
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
52
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
3
2
"
/>
<
source
>
Your
card
database
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
53
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
53
7
"
/>
<
source
>
The
path
to
your
deck
directory
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
37
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
42
"
/>
<
source
>
The
path
to
your
card
pictures
directory
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
46
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
51
"
/>
<
source
>
Settings
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
48
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
53
"
/>
<
source
>
General
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
54
9
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
5
4
"
/>
<
source
>
Appearance
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
5
"
/>
<
source
>
User
interface
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
6
"
/>
<
source
>
Messages
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
8
"
/>
<
source
>&
amp
;
Close
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -1489,22 +1494,22 @@
<
context
>
<
name
>
MessagesSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
5
"
/>
<
source
>&
amp
;
Add
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
6
"
/>
<
source
>&
amp
;
Remove
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
8
"
/>
<
source
>
Add
message
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
8
"
/>
<
source
>
Message
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -1570,277 +1575,277 @@
<
context
>
<
name
>
Player
<
/name
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
6
"
/>
<
source
>
Move
to
&
amp
;
top
of
library
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
9
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
7
"
/>
<
source
>
Move
to
&
amp
;
bottom
of
library
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
9
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
1
0
"
/>
<
source
>&
amp
;
View
library
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
7
"
/>
<
source
>
F3
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
1
"
/>
<
source
>
View
&
amp
;
top
cards
of
library
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
1
"
/>
<
source
>&
amp
;
View
graveyard
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
9
"
/>
<
source
>
F4
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
2
"
/>
<
source
>&
amp
;
View
sideboard
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
3
"
/>
<
source
>
Player
&
quot
;
%
1
&
quot
;
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
19
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
20
"
/>
<
source
>&
amp
;
Hand
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
2
"
/>
<
source
>&
amp
;
Library
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
4
"
/>
<
source
>&
amp
;
Graveyard
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
1
"
/>
<
source
>&
amp
;
Sideboard
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
9
"
/>
<
source
>
View
top
cards
of
library
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
9
"
/>
<
source
>
Number
of
cards
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
3
"
/>
<
source
>&
amp
;
Draw
card
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
2
"
/>
<
source
>&
amp
;
View
exile
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
5
"
/>
<
source
>&
amp
;
Exile
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
8
"
/>
<
source
>
Move
to
&
amp
;
hand
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
299
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
300
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
9
"
/>
<
source
>
Move
to
g
&
amp
;
raveyard
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
5
"
/>
<
source
>
Move
to
&
amp
;
exile
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
8
"
/>
<
source
>
Ctrl
+
W
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
49
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
50
"
/>
<
source
>
Ctrl
+
D
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
4
"
/>
<
source
>
D
&
amp
;
raw
cards
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
1
"
/>
<
source
>
Ctrl
+
E
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
5
"
/>
<
source
>
Take
&
amp
;
mulligan
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
2
"
/>
<
source
>
Ctrl
+
M
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
6
"
/>
<
source
>&
amp
;
Shuffle
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
3
"
/>
<
source
>
Ctrl
+
S
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
3
"
/>
<
source
>&
amp
;
Counters
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
5
"
/>
<
source
>&
amp
;
Untap
all
permanents
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
4
"
/>
<
source
>
Ctrl
+
U
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
6
"
/>
<
source
>
R
&
amp
;
oll
die
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
5
"
/>
<
source
>
Ctrl
+
I
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
7
"
/>
<
source
>&
amp
;
Create
token
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
6
"
/>
<
source
>
Ctrl
+
T
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
8
"
/>
<
source
>
C
&
amp
;
reate
another
token
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
7
"
/>
<
source
>
Ctrl
+
G
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
9
"
/>
<
source
>
S
&
amp
;
ay
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
7
"
/>
<
source
>
Move
top
cards
to
g
&
amp
;
raveyard
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
8
"
/>
<
source
>
Move
top
cards
to
&
amp
;
exile
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
33
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
33
5
"
/>
<
source
>
C
&
amp
;
ard
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
8
"
/>
<
source
>
Draw
cards
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
69
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
70
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
3
"
/>
<
source
>
Number
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
5
"
/>
<
source
>
Move
top
cards
to
grave
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
69
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
70
"
/>
<
source
>
Move
top
cards
to
exile
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
1
"
/>
<
source
>
Roll
die
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
1
"
/>
<
source
>
Number
of
sides
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
1
"
/>
<
source
>
Set
power
/
toughness
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
1
"
/>
<
source
>
Please
enter
the
new
PT
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
7
"
/>
<
source
>
Set
annotation
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
7
"
/>
<
source
>
Please
enter
the
new
annotation
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
3
"
/>
<
source
>
Set
counters
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -1848,27 +1853,27 @@
<
context
>
<
name
>
PlayerListWidget
<
/name
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
0
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
1
"
/>
<
source
>
Player
name
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
1
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
2
"
/>
<
source
>
Deck
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
5
8
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
5
9
"
/>
<
source
>---<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
59
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
60
"
/>
<
source
>
local
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
6
0
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
6
1
"
/>
<
source
>
#
%
1
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -2113,7 +2118,7 @@ Please enter a name:</source>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.h
"
line
=
"
15
0
"
/>
<
location
filename
=
"
../src/tab_game.h
"
line
=
"
15
1
"
/>
<
source
>
Game
%
1
:
%
2
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -2165,22 +2170,22 @@ Please enter a name:</source>
<
context
>
<
name
>
UserInterfaceSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
6
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
2
"
/>
<
source
>
General
interface
settings
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
68
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
73
"
/>
<
source
>&
amp
;
Double
-
click
cards
to
play
them
(
instead
of
single
-
click
)
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
69
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
74
"
/>
<
source
>
Animation
settings
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
5
"
/>
<
source
>&
amp
;
Tap
/
untap
animation
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -2201,112 +2206,112 @@ Please enter a name:</source>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
10
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
10
7
"
/>
<
source
>
Deck
&
amp
;
name
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
11
2
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
11
1
"
/>
<
source
>&
amp
;
Comments
:
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
5
"
/>
<
source
>
Deck
editor
[
*
]
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
7
"
/>
<
source
>&
amp
;
New
deck
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
0
"
/>
<
source
>&
amp
;
Load
deck
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
50
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
49
"
/>
<
source
>
Load
deck
from
cl
&
amp
;
ipboard
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
3
"
/>
<
source
>&
amp
;
Save
deck
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
7
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
6
"
/>
<
source
>
Save
deck
&
amp
;
as
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
2
"
/>
<
source
>
Save
deck
to
clip
&
amp
;
board
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
5
"
/>
<
source
>&
amp
;
Print
deck
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
8
"
/>
<
source
>&
amp
;
Close
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
60
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
59
"
/>
<
source
>
Ctrl
+
Q
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
2
"
/>
<
source
>&
amp
;
Edit
sets
...
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
5
"
/>
<
source
>&
amp
;
Deck
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
29
0
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
2
8
9
"
/>
<
source
>
Load
deck
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
31
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
31
7
"
/>
<
source
>
Save
deck
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
4
"
/>
<
source
>
Add
card
to
&
amp
;
maindeck
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
source
>
Return
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
source
>
Enter
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
0
"
/>
<
source
>
Ctrl
+
Return
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
0
"
/>
<
source
>
Ctrl
+
Enter
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
8
"
/>
<
source
>
Add
card
to
&
amp
;
sideboard
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -2321,47 +2326,47 @@ Please enter a name:</source>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
17
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
17
8
"
/>
<
source
>&
amp
;
Card
database
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
2
"
/>
<
source
>&
amp
;
Remove
row
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
3
"
/>
<
source
>
Del
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
7
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
6
"
/>
<
source
>&
amp
;
Increment
number
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
7
"
/>
<
source
>+<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
0
"
/>
<
source
>&
amp
;
Decrement
number
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
2
"
/>
<
source
>-<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
3
"
/>
<
source
>
Are
you
sure
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
5
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
4
"
/>
<
source
>
The
decklist
has
been
modified
.
Do
you
want
to
save
the
changes
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
...
...
cockatrice/translations/cockatrice_es.ts
View file @
bc7b48a7
...
...
@@ -4,74 +4,79 @@
<
context
>
<
name
>
AppearanceSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
25
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
25
9
"
/>
<
source
>
Zone
background
pictures
<
/source
>
<
translation
>
Imagenes
de
la
zona
de
fondo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
5
6
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
0
"
/>
<
source
>
Path
to
hand
background
:
<
/source
>
<
translation
>
Ruta
a
la
imagen
de
fondo
de
la
mano
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
57
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
61
"
/>
<
source
>
Path
to
table
background
:
<
/source
>
<
translation
>
Ruta
a
la
imagen
de
fondo
de
la
mesa
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
58
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
62
"
/>
<
source
>
Path
to
player
info
background
:
<
/source
>
<
translation
>
Ruta
a
la
imagen
de
fondo
de
la
información
del
jugador
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
59
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
63
"
/>
<
source
>
Path
to
picture
of
card
back
:
<
/source
>
<
translation
>
Ruta
al
reverso
de
las
cartas
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
5
"
/>
<
source
>
Hand
layout
<
/source
>
<
translation
>
Disposición
de
la
mano
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
6
"
/>
<
source
>
Display
hand
horizontally
(
wastes
space
)
<
/source
>
<
translation
>
Mostrar
la
mano
horizontalmente
(
desperdicia
espacio
)
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
4
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
8
"
/>
<
source
>
Table
grid
layout
<
/source
>
<
translation
>
Disposición
de
la
rejilla
de
la
mesa
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
26
9
"
/>
<
source
>
Economical
layout
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
270
"
/>
<
source
>
Invert
vertical
coordinate
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
source
>
Economic
layout
<
/source
>
<
translation
type
=
"
obsolete
"
>
Disposición
económica
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
6
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
27
2
"
/>
<
source
>
Zone
view
layout
<
/source
>
<
translation
>
Distribución
de
la
zona
de
visionado
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
68
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
73
"
/>
<
source
>
Sort
by
name
<
/source
>
<
translation
>
Ordenar
por
nombre
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
69
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
2
74
"
/>
<
source
>
Sort
by
type
<
/source
>
<
translation
>
Ordenar
por
tipo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
28
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
296
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
31
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
28
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
28
5
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
301
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
31
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
33
"
/>
<
source
>
Choose
path
<
/source
>
<
translation
>
Elija
ruta
<
/translation
>
<
/message
>
...
...
@@ -107,22 +112,22 @@
<
context
>
<
name
>
CardInfoWidget
<
/name
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
06
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
47
"
/>
<
source
>
Name
:
<
/source
>
<
translation
>
Nombre
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
07
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
48
"
/>
<
source
>
Mana
cost
:
<
/source
>
<
translation
>
Coste
de
mana
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
08
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
49
"
/>
<
source
>
Card
type
:
<
/source
>
<
translation
>
Tipo
de
carta
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
10
9
"
/>
<
location
filename
=
"
../src/cardinfowidget.cpp
"
line
=
"
1
5
0
"
/>
<
source
>
P
/
T
:
<
/source
>
<
translation
>
F
/
R
:
<
/translation
>
<
/message
>
...
...
@@ -417,12 +422,12 @@
<
context
>
<
name
>
DeckListModel
<
/name
>
<
message
>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
48
"
/>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
23
"
/>
<
source
>
Number
<
/source
>
<
translation
>
Número
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
14
9
"
/>
<
location
filename
=
"
../src/decklistmodel.cpp
"
line
=
"
1
2
4
"
/>
<
source
>
Card
<
/source
>
<
translation
>
Carta
<
/translation
>
<
/message
>
...
...
@@ -739,9 +744,9 @@
<
context
>
<
name
>
DlgSettings
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
527
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
532
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
537
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
542
"
/>
<
source
>
Error
<
/source
>
<
translation
>
Error
<
/translation
>
<
/message
>
...
...
@@ -758,47 +763,47 @@
<
translation
type
=
"
obsolete
"
>
La
ruta
a
tu
directorio
de
imagenes
de
las
cartas
es
invalida
.
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
52
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
3
2
"
/>
<
source
>
Your
card
database
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
53
2
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
53
7
"
/>
<
source
>
The
path
to
your
deck
directory
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
37
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
42
"
/>
<
source
>
The
path
to
your
card
pictures
directory
is
invalid
.
Would
you
like
to
go
back
and
set
the
correct
path
?
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
46
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
51
"
/>
<
source
>
Settings
<
/source
>
<
translation
>
Preferencias
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
48
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
53
"
/>
<
source
>
General
<
/source
>
<
translation
>
General
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
54
9
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
5
5
4
"
/>
<
source
>
Appearance
<
/source
>
<
translation
>
Apariencia
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
5
"
/>
<
source
>
User
interface
<
/source
>
<
translation
>
Interfaz
de
usuario
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
6
"
/>
<
source
>
Messages
<
/source
>
<
translation
>
Mensajes
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
55
8
"
/>
<
source
>&
amp
;
Close
<
/source
>
<
translation
>&
amp
;
Cerrar
<
/translation
>
<
/message
>
...
...
@@ -1505,22 +1510,22 @@
<
context
>
<
name
>
MessagesSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
5
"
/>
<
source
>&
amp
;
Add
<
/source
>
<
translation
>&
amp
;
Añadir
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
1
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
43
6
"
/>
<
source
>&
amp
;
Remove
<
/source
>
<
translation
>&
amp
;
Quitar
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
8
"
/>
<
source
>
Add
message
<
/source
>
<
translation
>
Añadir
mensaje
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
3
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
41
8
"
/>
<
source
>
Message
:
<
/source
>
<
translation
>
Mensaje
:
<
/translation
>
<
/message
>
...
...
@@ -1586,277 +1591,277 @@
<
context
>
<
name
>
Player
<
/name
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
6
"
/>
<
source
>
Move
to
&
amp
;
top
of
library
<
/source
>
<
translation
>
Mover
a
la
&
amp
;
parte
superior
de
la
biblioteca
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
9
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
7
"
/>
<
source
>
Move
to
&
amp
;
bottom
of
library
<
/source
>
<
translation
>
Mover
al
&
amp
;
fondo
de
la
biblioteca
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
9
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
1
0
"
/>
<
source
>&
amp
;
View
library
<
/source
>
<
translation
>&
amp
;
Ver
biblioteca
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
7
"
/>
<
source
>
F3
<
/source
>
<
translation
>
F3
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
1
"
/>
<
source
>
View
&
amp
;
top
cards
of
library
...
<
/source
>
<
translation
>
Ver
cartas
de
la
parte
&
amp
;
superior
de
la
biblioteca
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
1
"
/>
<
source
>&
amp
;
View
graveyard
<
/source
>
<
translation
>
Ver
&
amp
;
Cementerio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
9
"
/>
<
source
>
F4
<
/source
>
<
translation
>
F4
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
2
"
/>
<
source
>&
amp
;
View
sideboard
<
/source
>
<
translation
>
Ver
&
amp
;
sideboard
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
3
"
/>
<
source
>
Player
&
quot
;
%
1
&
quot
;
<
/source
>
<
translation
>
Jugador
&
quot
;
%
1
&
quot
;
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
19
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
20
"
/>
<
source
>&
amp
;
Hand
<
/source
>
<
translation
>&
amp
;
Mano
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
2
"
/>
<
source
>&
amp
;
Library
<
/source
>
<
translation
>&
amp
;
Biblioteca
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
4
"
/>
<
source
>&
amp
;
Graveyard
<
/source
>
<
translation
>&
amp
;
Cementerio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
1
"
/>
<
source
>&
amp
;
Sideboard
<
/source
>
<
translation
>&
amp
;
Reserva
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
9
"
/>
<
source
>
View
top
cards
of
library
<
/source
>
<
translation
>
Ver
cartas
de
la
parte
superior
de
la
biblioteca
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
40
9
"
/>
<
source
>
Number
of
cards
:
<
/source
>
<
translation
>
Número
de
cartas
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
3
"
/>
<
source
>&
amp
;
Draw
card
<
/source
>
<
translation
>&
amp
;
Robar
carta
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
2
"
/>
<
source
>&
amp
;
View
exile
<
/source
>
<
translation
>
Ver
&
amp
;
exilio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
29
5
"
/>
<
source
>&
amp
;
Exile
<
/source
>
<
translation
>&
amp
;
Exilio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
8
"
/>
<
source
>
Move
to
&
amp
;
hand
<
/source
>
<
translation
>
Mover
a
la
m
&
amp
;
ano
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
299
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
300
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
9
"
/>
<
source
>
Move
to
g
&
amp
;
raveyard
<
/source
>
<
translation
>
Mover
al
&
amp
;
cementerio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
30
5
"
/>
<
source
>
Move
to
&
amp
;
exile
<
/source
>
<
translation
>
Mover
al
&
amp
;
exilio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
34
8
"
/>
<
source
>
Ctrl
+
W
<
/source
>
<
translation
>
Ctrl
+
W
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
49
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
3
50
"
/>
<
source
>
Ctrl
+
D
<
/source
>
<
translation
>
Ctrl
+
D
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
4
"
/>
<
source
>
D
&
amp
;
raw
cards
...
<
/source
>
<
translation
>&
amp
;
Robar
cartas
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
1
"
/>
<
source
>
Ctrl
+
E
<
/source
>
<
translation
>
Ctrl
+
E
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
5
"
/>
<
source
>
Take
&
amp
;
mulligan
<
/source
>
<
translation
>
Hacer
&
amp
;
mulligan
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
1
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
2
"
/>
<
source
>
Ctrl
+
M
<
/source
>
<
translation
>
Ctrl
+
M
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
6
"
/>
<
source
>&
amp
;
Shuffle
<
/source
>
<
translation
>&
amp
;
Barajar
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
3
"
/>
<
source
>
Ctrl
+
S
<
/source
>
<
translation
>
Ctrl
+
S
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
3
"
/>
<
source
>&
amp
;
Counters
<
/source
>
<
translation
>&
amp
;
Contadores
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
5
"
/>
<
source
>&
amp
;
Untap
all
permanents
<
/source
>
<
translation
>&
amp
;
Enderezar
todos
los
permanentes
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
3
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
4
"
/>
<
source
>
Ctrl
+
U
<
/source
>
<
translation
>
Ctrl
+
U
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
6
"
/>
<
source
>
R
&
amp
;
oll
die
...
<
/source
>
<
translation
>&
amp
;
Lanzar
dado
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
5
"
/>
<
source
>
Ctrl
+
I
<
/source
>
<
translation
>
Ctrl
+
I
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
7
"
/>
<
source
>&
amp
;
Create
token
...
<
/source
>
<
translation
>
Crear
&
amp
;
Ficha
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
6
"
/>
<
source
>
Ctrl
+
T
<
/source
>
<
translation
>
Ctrl
+
T
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
8
"
/>
<
source
>
C
&
amp
;
reate
another
token
<
/source
>
<
translation
>
C
&
amp
;
rea
otra
ficha
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
35
7
"
/>
<
source
>
Ctrl
+
G
<
/source
>
<
translation
>
Ctrl
+
G
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
32
9
"
/>
<
source
>
S
&
amp
;
ay
<
/source
>
<
translation
>
D
&
amp
;
ecir
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
7
"
/>
<
source
>
Move
top
cards
to
g
&
amp
;
raveyard
...
<
/source
>
<
translation
>
Mover
cartas
superiores
al
ce
&
amp
;
menterio
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
31
8
"
/>
<
source
>
Move
top
cards
to
&
amp
;
exile
...
<
/source
>
<
translation
>
Mover
cartas
superiores
al
&
amp
;
exilio
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
33
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
33
5
"
/>
<
source
>
C
&
amp
;
ard
<
/source
>
<
translation
>
C
&
amp
;
arta
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
8
"
/>
<
source
>
Draw
cards
<
/source
>
<
translation
>
Robar
cartas
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
7
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
69
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
44
8
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
5
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
70
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
3
"
/>
<
source
>
Number
:
<
/source
>
<
translation
>
Número
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
4
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
45
5
"
/>
<
source
>
Move
top
cards
to
grave
<
/source
>
<
translation
>
Mover
cartas
superiores
al
cementerio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
69
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
4
70
"
/>
<
source
>
Move
top
cards
to
exile
<
/source
>
<
translation
>
Mover
cartas
superiores
al
exilio
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
1
"
/>
<
source
>
Roll
die
<
/source
>
<
translation
>
Lanzar
dado
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
49
1
"
/>
<
source
>
Number
of
sides
:
<
/source
>
<
translation
>
Número
de
caras
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
1
"
/>
<
source
>
Set
power
/
toughness
<
/source
>
<
translation
>
Establecer
fuerza
/
resistencia
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
0
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
116
1
"
/>
<
source
>
Please
enter
the
new
PT
:
<
/source
>
<
translation
>
Por
favor
,
introduzca
la
nueva
F
/
R
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
7
"
/>
<
source
>
Set
annotation
<
/source
>
<
translation
>
Escribir
anotación
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
6
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
118
7
"
/>
<
source
>
Please
enter
the
new
annotation
:
<
/source
>
<
translation
>
Por
favor
,
introduza
la
nueva
anotación
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
2
"
/>
<
location
filename
=
"
../src/player.cpp
"
line
=
"
124
3
"
/>
<
source
>
Set
counters
<
/source
>
<
translation
>
Establecer
contadores
<
/translation
>
<
/message
>
...
...
@@ -1864,27 +1869,27 @@
<
context
>
<
name
>
PlayerListWidget
<
/name
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
0
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
1
"
/>
<
source
>
Player
name
<
/source
>
<
translation
>
Nombre
del
jugador
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
1
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
3
2
"
/>
<
source
>
Deck
<
/source
>
<
translation
>
Mazo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
5
8
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
5
9
"
/>
<
source
>---<
/source
>
<
translation
>---<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
59
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
60
"
/>
<
source
>
local
<
/source
>
<
translation
>
local
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
6
0
"
/>
<
location
filename
=
"
../src/playerlistwidget.cpp
"
line
=
"
6
1
"
/>
<
source
>
#
%
1
<
/source
>
<
translation
>
#
%
1
<
/translation
>
<
/message
>
...
...
@@ -2142,7 +2147,7 @@ Por favor, introduzca un nombre:</translation>
<
translation
>
¿
Estás
seguro
de
que
quieres
abandonar
la
partida
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/tab_game.h
"
line
=
"
15
0
"
/>
<
location
filename
=
"
../src/tab_game.h
"
line
=
"
15
1
"
/>
<
source
>
Game
%
1
:
%
2
<
/source
>
<
translation
>
Partida
%
1
:
%
2
<
/translation
>
<
/message
>
...
...
@@ -2194,22 +2199,22 @@ Por favor, introduzca un nombre:</translation>
<
context
>
<
name
>
UserInterfaceSettingsPage
<
/name
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
6
7
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
2
"
/>
<
source
>
General
interface
settings
<
/source
>
<
translation
>
Preferencias
generales
de
la
interfaz
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
68
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
73
"
/>
<
source
>&
amp
;
Double
-
click
cards
to
play
them
(
instead
of
single
-
click
)
<
/source
>
<
translation
>&
amp
;
Doble
click
en
las
cartas
para
jugarlas
(
en
lugar
de
un
solo
click
)
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
69
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
3
74
"
/>
<
source
>
Animation
settings
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
0
"
/>
<
location
filename
=
"
../src/dlg_settings.cpp
"
line
=
"
37
5
"
/>
<
source
>&
amp
;
Tap
/
untap
animation
<
/source
>
<
translation
type
=
"
unfinished
"
><
/translation
>
<
/message
>
...
...
@@ -2230,112 +2235,112 @@ Por favor, introduzca un nombre:</translation>
<
translation
>&
amp
;
Buscar
por
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
10
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
10
7
"
/>
<
source
>
Deck
&
amp
;
name
:
<
/source
>
<
translation
>&
amp
;
Nombre
del
mazo
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
11
2
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
11
1
"
/>
<
source
>&
amp
;
Comments
:
<
/source
>
<
translation
>&
amp
;
Comentarios
:
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
5
"
/>
<
source
>
Deck
editor
[
*
]
<
/source
>
<
translation
>
Editor
de
mazos
[
*
]
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
13
7
"
/>
<
source
>&
amp
;
New
deck
<
/source
>
<
translation
>&
amp
;
Nuevo
mazo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
0
"
/>
<
source
>&
amp
;
Load
deck
...
<
/source
>
<
translation
>&
amp
;
Cargar
mazo
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
50
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
49
"
/>
<
source
>
Load
deck
from
cl
&
amp
;
ipboard
...
<
/source
>
<
translation
>
Cargar
mazo
del
&
amp
;
portapapeles
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
3
"
/>
<
source
>&
amp
;
Save
deck
<
/source
>
<
translation
>&
amp
;
Guardar
mazo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
7
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
14
6
"
/>
<
source
>
Save
deck
&
amp
;
as
...
<
/source
>
<
translation
>
Guardar
mazo
&
amp
;
como
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
2
"
/>
<
source
>
Save
deck
to
clip
&
amp
;
board
<
/source
>
<
translation
>
Guardar
mazo
al
p
&
amp
;
ortapales
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
5
"
/>
<
source
>&
amp
;
Print
deck
...
<
/source
>
<
translation
>
Im
&
amp
;
primir
mazo
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
15
8
"
/>
<
source
>&
amp
;
Close
<
/source
>
<
translation
>&
amp
;
Cerrar
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
60
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
1
59
"
/>
<
source
>
Ctrl
+
Q
<
/source
>
<
translation
>
Ctrl
+
Q
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
2
"
/>
<
source
>&
amp
;
Edit
sets
...
<
/source
>
<
translation
>&
amp
;
Editar
ediciones
...
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
16
5
"
/>
<
source
>&
amp
;
Deck
<
/source
>
<
translation
>&
amp
;
Mazo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
29
0
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
2
8
9
"
/>
<
source
>
Load
deck
<
/source
>
<
translation
>
Cargar
mazo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
31
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
31
7
"
/>
<
source
>
Save
deck
<
/source
>
<
translation
>
Guardar
mazo
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
4
"
/>
<
source
>
Add
card
to
&
amp
;
maindeck
<
/source
>
<
translation
>
Añadir
carta
al
&
amp
;
mazo
principal
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
source
>
Return
<
/source
>
<
translation
>
Return
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
6
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
5
"
/>
<
source
>
Enter
<
/source
>
<
translation
>
Enter
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
0
"
/>
<
source
>
Ctrl
+
Return
<
/source
>
<
translation
>
Ctrl
+
Return
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
0
"
/>
<
source
>
Ctrl
+
Enter
<
/source
>
<
translation
>
Ctrl
+
Enter
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
18
8
"
/>
<
source
>
Add
card
to
&
amp
;
sideboard
<
/source
>
<
translation
>
Añadir
mazos
a
la
&
amp
;
reserva
<
/translation
>
<
/message
>
...
...
@@ -2350,47 +2355,47 @@ Por favor, introduzca un nombre:</translation>
<
translation
>&
amp
;
Limpiar
busqueda
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
17
9
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
17
8
"
/>
<
source
>&
amp
;
Card
database
<
/source
>
<
translation
>&
amp
;
Base
de
datos
de
cartas
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
2
"
/>
<
source
>&
amp
;
Remove
row
<
/source
>
<
translation
>&
amp
;
Eliminar
columna
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
3
"
/>
<
source
>
Del
<
/source
>
<
translation
>
Del
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
7
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
6
"
/>
<
source
>&
amp
;
Increment
number
<
/source
>
<
translation
>&
amp
;
Incrementar
número
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
8
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
19
7
"
/>
<
source
>+<
/source
>
<
translation
>+<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
1
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
0
"
/>
<
source
>&
amp
;
Decrement
number
<
/source
>
<
translation
>&
amp
;
Decrementar
número
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
3
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
20
2
"
/>
<
source
>-<
/source
>
<
translation
>-<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
4
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
3
"
/>
<
source
>
Are
you
sure
?
<
/source
>
<
translation
>
¿
Estás
seguro
?
<
/translation
>
<
/message
>
<
message
>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
5
"
/>
<
location
filename
=
"
../src/window_deckeditor.cpp
"
line
=
"
25
4
"
/>
<
source
>
The
decklist
has
been
modified
.
Do
you
want
to
save
the
changes
?
<
/source
>
<
translation
>
La
lista
del
mazo
ha
sido
modificada
...
...
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