diff --git a/.ci/Fedora42/Dockerfile b/.ci/Fedora44/Dockerfile
similarity index 95%
rename from .ci/Fedora42/Dockerfile
rename to .ci/Fedora44/Dockerfile
index ee4a856f2..e6c8da7f3 100644
--- a/.ci/Fedora42/Dockerfile
+++ b/.ci/Fedora44/Dockerfile
@@ -1,4 +1,4 @@
-FROM fedora:42
+FROM fedora:44
RUN dnf install -y \
ccache \
diff --git a/.ci/release_template.md b/.ci/release_template.md
index c3aa476a0..400d53f5f 100644
--- a/.ci/release_template.md
+++ b/.ci/release_template.md
@@ -21,8 +21,8 @@ Available pre-compiled binaries for installation:
• Ubuntu 24.04 LTSNoble Numbat
• Debian 13Trixie
• Debian 12Bookworm
+ • Fedora 44
• Fedora 43
- • Fedora 42We are also packaged in Arch Linux's official extra repository, courtesy of @FFY00.General Linux support is available via a flatpak package at Flathub!
diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml
index 00b4c7e53..d4378ab94 100644
--- a/.github/workflows/desktop-build.yml
+++ b/.github/workflows/desktop-build.yml
@@ -46,7 +46,7 @@ concurrency:
jobs:
configure:
name: Configure
- runs-on: ubuntu-latest
+ runs-on: ubuntu-slim
outputs:
tag: ${{steps.configure.outputs.tag}}
sha: ${{steps.configure.outputs.sha}}
@@ -127,13 +127,14 @@ jobs:
package: DEB
- distro: Fedora
- version: 42
+ version: 43
package: RPM
test: skip # Running tests on all distros is superfluous
- distro: Fedora
- version: 43
+ version: 44
package: RPM
+ test: skip # This is failing to build, currently. To be fixed.
- distro: Ubuntu
version: 24.04
diff --git a/.github/workflows/desktop-lint.yml b/.github/workflows/desktop-lint.yml
index 433f302a5..fe7be0287 100644
--- a/.github/workflows/desktop-lint.yml
+++ b/.github/workflows/desktop-lint.yml
@@ -20,13 +20,13 @@ on:
jobs:
format:
- runs-on: ubuntu-22.04
+ runs-on: ubuntu-slim
steps:
- name: Checkout
uses: actions/checkout@v6
with:
- fetch-depth: 20 # should be enough to find merge base
+ fetch-depth: 20 # should be enough to find merge base
- name: Install dependencies
shell: bash
diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml
index fca1e97d4..f23fb3067 100644
--- a/.github/workflows/docker-release.yml
+++ b/.github/workflows/docker-release.yml
@@ -1,9 +1,10 @@
name: Build Docker Image
on:
+ release:
+ types:
+ - released # publishing of stable releases
push:
- tags:
- - '*Release*'
branches:
- master
pull_request:
@@ -16,16 +17,18 @@ on:
# Cancel earlier, unfinished runs of this workflow on the same branch (unless on release)
concurrency:
group: "${{ github.workflow }} @ ${{ github.ref_name }}"
- cancel-in-progress: ${{ github.ref_type != 'tag' }}
+ cancel-in-progress: ${{ github.event_name != 'release' }}
jobs:
docker:
name: amd64 & arm64
+ if: ${{ github.repository_owner == 'Cockatrice' }}
runs-on: ubuntu-latest
+
permissions:
contents: read
packages: write
-
+
steps:
- name: Checkout
uses: actions/checkout@v6
@@ -52,7 +55,7 @@ jobs:
uses: docker/setup-buildx-action@v4
- name: Login to GitHub Container Registry
- if: github.ref_type == 'tag'
+ if: contains(github.event.release.tag_name, 'Release') && github.event.release.target_commitish == 'master'
uses: docker/login-action@v4
with:
registry: ghcr.io
diff --git a/.github/workflows/documentation-build.yml b/.github/workflows/documentation-build.yml
index ce331d113..7306c726a 100644
--- a/.github/workflows/documentation-build.yml
+++ b/.github/workflows/documentation-build.yml
@@ -33,7 +33,7 @@ jobs:
- name: Install Doxygen
uses: ssciwr/doxygen-install@v2
with:
- version: "1.14.0"
+ version: "1.16.1"
- name: Update Doxygen Configuration
run: |
diff --git a/.github/workflows/translations-pull.yml b/.github/workflows/translations-pull.yml
index ed61e3b19..ca9069192 100644
--- a/.github/workflows/translations-pull.yml
+++ b/.github/workflows/translations-pull.yml
@@ -16,7 +16,7 @@ jobs:
if: github.event_name != 'schedule' || github.repository_owner == 'Cockatrice'
name: Pull languages
- runs-on: ubuntu-latest
+ runs-on: ubuntu-slim
steps:
- name: Checkout repo
diff --git a/.github/workflows/translations-push.yml b/.github/workflows/translations-push.yml
index 777e9e6ac..e926a58ed 100644
--- a/.github/workflows/translations-push.yml
+++ b/.github/workflows/translations-push.yml
@@ -16,7 +16,7 @@ jobs:
if: github.event_name != 'schedule' || github.repository_owner == 'Cockatrice'
name: Push strings
- runs-on: ubuntu-latest
+ runs-on: ubuntu-slim
steps:
- name: Checkout repo
@@ -46,7 +46,7 @@ jobs:
- name: Render template
id: template
- uses: chuhlomin/render-template@v1
+ uses: chuhlomin/render-template/binary@v1
with:
template: .ci/update_translation_source_strings_template.md
vars: |
diff --git a/.github/workflows/web-lint.yml b/.github/workflows/web-lint.yml
index 8a90325e7..ecc6d14d1 100644
--- a/.github/workflows/web-lint.yml
+++ b/.github/workflows/web-lint.yml
@@ -10,7 +10,7 @@ on:
jobs:
ESLint:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-slim
defaults:
run:
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fe808a652..4a5e944c4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -74,11 +74,11 @@ endif()
# A project name is needed for CPack
# Version can be overriden by git tags, see cmake/getversion.cmake
-project("Cockatrice" VERSION 2.11.0)
+project("Cockatrice" VERSION 3.0.0)
# Set release name if not provided via env/cmake var
if(NOT DEFINED GIT_TAG_RELEASENAME)
- set(GIT_TAG_RELEASENAME "Omenpath")
+ set(GIT_TAG_RELEASENAME "Graduation Day")
endif()
# Use c++20 for all targets
diff --git a/Doxyfile b/Doxyfile
index 0f2642fd8..9cf9bdb15 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -1,4 +1,4 @@
-# Doxyfile 1.14.0
+# Doxyfile 1.16.1
# This file describes the settings to be used by the documentation system
# Doxygen (www.doxygen.org) for a project.
@@ -361,6 +361,20 @@ EXTENSION_MAPPING =
MARKDOWN_SUPPORT = YES
+# If the MARKDOWN_STRICT tag is enabled then Doxygen treats text in comments as
+# Markdown formatted also in cases where Doxygen's native markup format
+# conflicts with that of Markdown. This is only relevant in cases where
+# backticks are used. Doxygen's native markup style allows a single quote to end
+# a text fragment started with a backtick and then treat it as a piece of quoted
+# text, whereas in Markdown such text fragment is treated as verbatim and only
+# ends when a second matching backtick is found. Also, Doxygen's native markup
+# format requires double quotes to be escaped when they appear in a backtick
+# section, whereas this is not needed for Markdown.
+# The default value is: YES.
+# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
+
+MARKDOWN_STRICT = YES
+
# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
# to that level are automatically included in the table of contents, even if
# they do not have an id attribute.
@@ -392,8 +406,8 @@ AUTOLINK_SUPPORT = YES
# This tag specifies a list of words that, when matching the start of a word in
# the documentation, will suppress auto links generation, if it is enabled via
-# AUTOLINK_SUPPORT. This list does not affect links explicitly created using \#
-# or the \link or commands.
+# AUTOLINK_SUPPORT. This list does not affect links explicitly created using #
+# or the \link or \ref commands.
# This tag requires that the tag AUTOLINK_SUPPORT is set to YES.
AUTOLINK_IGNORE_WORDS =
@@ -510,9 +524,9 @@ LOOKUP_CACHE_SIZE = 0
# which effectively disables parallel processing. Please report any issues you
# encounter. Generating dot graphs in parallel is controlled by the
# DOT_NUM_THREADS setting.
-# Minimum value: 0, maximum value: 32, default value: 1.
+# Minimum value: 0, maximum value: 512, default value: 1.
-NUM_PROC_THREADS = 1
+NUM_PROC_THREADS = 0
# If the TIMESTAMP tag is set different from NO then each generated page will
# contain the date or date and time when the page was generated. Setting this to
@@ -779,6 +793,27 @@ GENERATE_BUGLIST = YES
GENERATE_DEPRECATEDLIST= YES
+# The GENERATE_REQUIREMENTS tag can be used to enable (YES) or disable (NO) the
+# requirements page. When enabled, this page is automatically created when at
+# least one comment block with a \requirement command appears in the input.
+# The default value is: YES.
+
+GENERATE_REQUIREMENTS = YES
+
+# The REQ_TRACEABILITY_INFO tag controls if traceability information is shown on
+# the requirements page (only relevant when using \requirement comment blocks).
+# The setting NO will disable the traceablility information altogether. The
+# setting UNSATISFIED_ONLY will show a list of requirements that are missing a
+# satisfies relation (through the command: \satisfies). Similarly the setting
+# UNVERIFIED_ONLY will show a list of requirements that are missing a verifies
+# relation (through the command: \verifies). Setting the tag to YES (the
+# default) will show both lists if applicable.
+# Possible values are: YES, NO, UNSATISFIED_ONLY and UNVERIFIED_ONLY.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_REQUIREMENTS is set to YES.
+
+REQ_TRACEABILITY_INFO = YES
+
# The ENABLED_SECTIONS tag can be used to enable conditional documentation
# sections, marked by \if ... \endif and \cond
# ... \endcond blocks.
@@ -1887,7 +1922,7 @@ USE_MATHJAX = NO
# regards to the different settings, so it is possible that also other MathJax
# settings have to be changed when switching between the different MathJax
# versions.
-# Possible values are: MathJax_2 and MathJax_3.
+# Possible values are: MathJax_2, MathJax_3 and MathJax_4.
# The default value is: MathJax_2.
# This tag requires that the tag USE_MATHJAX is set to YES.
@@ -1896,9 +1931,10 @@ MATHJAX_VERSION = MathJax_2
# When MathJax is enabled you can set the default output format to be used for
# the MathJax output. For more details about the output format see MathJax
# version 2 (see:
-# http://docs.mathjax.org/en/v2.7-latest/output.html) and MathJax version 3
+# https://docs.mathjax.org/en/v2.7/output.html), MathJax version 3 (see:
+# https://docs.mathjax.org/en/v3.2/output/index.html) and MathJax version 4
# (see:
-# http://docs.mathjax.org/en/latest/web/components/output.html).
+# https://docs.mathjax.org/en/v4.0/output/index.htm).
# Possible values are: HTML-CSS (which is slower, but has the best
# compatibility. This is the name for Mathjax version 2, for MathJax version 3
# this will be translated into chtml), NativeMML (i.e. MathML. Only supported
@@ -1911,36 +1947,50 @@ MATHJAX_VERSION = MathJax_2
MATHJAX_FORMAT = HTML-CSS
# When MathJax is enabled you need to specify the location relative to the HTML
-# output directory using the MATHJAX_RELPATH option. The destination directory
-# should contain the MathJax.js script. For instance, if the mathjax directory
-# is located at the same level as the HTML output directory, then
-# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
-# Content Delivery Network so you can quickly see the result without installing
-# MathJax. However, it is strongly recommended to install a local copy of
-# MathJax from https://www.mathjax.org before deployment. The default value is:
+# output directory using the MATHJAX_RELPATH option. For Mathjax version 2 the
+# destination directory should contain the MathJax.js script. For instance, if
+# the mathjax directory is located at the same level as the HTML output
+# directory, then MATHJAX_RELPATH should be ../mathjax.s For Mathjax versions 3
+# and 4 the destination directory should contain the tex-.js script
+# (where is either chtml or svg). The default value points to the
+# MathJax Content Delivery Network so you can quickly see the result without
+# installing MathJax. However, it is strongly recommended to install a local
+# copy of MathJax from https://www.mathjax.org before deployment. The default
+# value is:
# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2
# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3
+# - in case of MathJax version 4: https://cdn.jsdelivr.net/npm/mathjax@4
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_RELPATH =
# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
# extension names that should be enabled during MathJax rendering. For example
-# for MathJax version 2 (see
-# https://docs.mathjax.org/en/v2.7-latest/tex.html#tex-and-latex-extensions):
+# for MathJax version 2 (see https://docs.mathjax.org/en/v2.7/tex.html):
# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
# For example for MathJax version 3 (see
-# http://docs.mathjax.org/en/latest/input/tex/extensions/index.html):
+# https://docs.mathjax.org/en/v3.2/input/tex/extensions/):
# MATHJAX_EXTENSIONS = ams
+# For example for MathJax version 4 (see
+# https://docs.mathjax.org/en/v4.0/input/tex/extensions/):
+# MATHJAX_EXTENSIONS = units
+# Note that for Mathjax version 4 quite a few extensions are already
+# automatically loaded. To disable a package in Mathjax version 4 one can use
+# the package name prepended with a minus sign (- like MATHJAX_EXTENSIONS +=
+# -textmacros)
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_EXTENSIONS =
# The MATHJAX_CODEFILE tag can be used to specify a file with JavaScript pieces
-# of code that will be used on startup of the MathJax code. See the MathJax site
-# (see:
-# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an
-# example see the documentation.
+# of code that will be used on startup of the MathJax code. See the Mathjax site
+# for more details:
+# - MathJax version 2 (see:
+# https://docs.mathjax.org/en/v2.7/)
+# - MathJax version 3 (see:
+# https://docs.mathjax.org/en/v3.2/)
+# - MathJax version 4 (see:
+# https://docs.mathjax.org/en/v4.0/) For an example see the documentation.
# This tag requires that the tag USE_MATHJAX is set to YES.
MATHJAX_CODEFILE =
@@ -2601,7 +2651,7 @@ HAVE_DOT = YES
# processors available in the system. You can set it explicitly to a value
# larger than 0 to get control over the balance between CPU load and processing
# speed.
-# Minimum value: 0, maximum value: 32, default value: 0.
+# Minimum value: 0, maximum value: 512, default value: 0.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_NUM_THREADS = 0
diff --git a/cmake/NSIS.template.in b/cmake/NSIS.template.in
index 2fdc61fb9..7b52b7bcc 100644
--- a/cmake/NSIS.template.in
+++ b/cmake/NSIS.template.in
@@ -11,6 +11,7 @@ SetCompressor LZMA
Var NormalDestDir
Var PortableDestDir
Var PortableMode
+Var ReinstallMode
!include LogicLib.nsh
!include FileFunc.nsh
@@ -28,13 +29,23 @@ Var PortableMode
!define MUI_FINISHPAGE_RUN_TEXT "Run 'Cockatrice' now"
!define MUI_ICON "${NSIS_SOURCE_PATH}\cockatrice\resources\appicon.ico"
+!define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfReinstall
!insertmacro MUI_PAGE_WELCOME
+
+!define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfReinstall
!insertmacro MUI_PAGE_LICENSE "${NSIS_SOURCE_PATH}\LICENSE"
+
Page Custom PortableModePageCreate PortableModePageLeave
!define MUI_PAGE_CUSTOMFUNCTION_PRE componentsPagePre
!insertmacro MUI_PAGE_COMPONENTS
+
+!define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfReinstall
!insertmacro MUI_PAGE_DIRECTORY
+
+!define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfReinstall
!insertmacro MUI_PAGE_INSTFILES
+
+!define MUI_PAGE_CUSTOMFUNCTION_PRE SkipIfReinstall
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
@@ -73,6 +84,7 @@ ${IfNot} ${Errors}
MessageBox MB_ICONINFORMATION|MB_SETFOREGROUND "\
/PORTABLE : Install in portable mode$\n\
/S : Silent install$\n\
+ /R : Silent upgrade$\n\
/D=%directory% : Specify destination directory$\n"
Quit
${EndIf}
@@ -90,6 +102,16 @@ ${Else}
${EndIf}
${EndIf}
+ClearErrors
+${GetOptions} $9 "/R" $8
+${IfNot} ${Errors}
+ StrCpy $ReinstallMode 1
+ SetSilent silent
+ SetAutoClose true
+${Else}
+ StrCpy $ReinstallMode 0
+${EndIf}
+
${If} $InstDir == ""
; User did not use /D to specify a directory,
; we need to set a default based on the install mode
@@ -97,6 +119,22 @@ ${If} $InstDir == ""
${EndIf}
Call SetModeDestinationFromInstdir
+; --- Detect portable install when using /R ---
+${If} $ReinstallMode = 1
+ IfFileExists "$InstDir\portable.dat" 0 not_portable
+ StrCpy $PortableMode 1
+ Goto portable_done
+
+ not_portable:
+ StrCpy $PortableMode 0
+
+ portable_done:
+${EndIf}
+
+${If} $ReinstallMode = 1
+ Call AutoUninstallIfNeeded
+${EndIf}
+
FunctionEnd
Function un.onInit
@@ -126,8 +164,46 @@ ${Else}
${EndIf}
FunctionEnd
+Function SkipIfReinstall
+${If} $ReinstallMode = 1
+ Abort
+${EndIf}
+FunctionEnd
+
+Function AutoUninstallIfNeeded
+
+SetShellVarContext all
+
+; --- 32-bit uninstall ---
+SetRegView 32
+ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Cockatrice" "QuietUninstallString"
+
+StrCmp $R0 "" done32
+DetailPrint "Removing previous version (32-bit)..."
+ExecWait '$R0'
+
+done32:
+
+; --- 64-bit uninstall ---
+${If} ${RunningX64}
+ SetRegView 64
+ ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Cockatrice" "QuietUninstallString"
+
+ StrCmp $R0 "" done64
+ DetailPrint "Removing previous version (64-bit)..."
+ ExecWait '$R0'
+
+ done64:
+${EndIf}
+
+FunctionEnd
Function PortableModePageCreate
+
+${If} $ReinstallMode = 1
+ Abort
+${EndIf}
+
Call SetModeDestinationFromInstdir ; If the user clicks BACK on the directory page we will remember their mode specific directory
!insertmacro MUI_HEADER_TEXT "Install Mode" "Choose how you want to install Cockatrice."
nsDialogs::Create 1018
@@ -159,6 +235,11 @@ ${EndIf}
FunctionEnd
Function componentsPagePre
+
+${If} $ReinstallMode = 1
+ Return
+${EndIf}
+
${If} $PortableMode = 0
SetShellVarContext all
@@ -168,8 +249,12 @@ ${If} $PortableMode = 0
ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Cockatrice" "UninstallString"
StrCmp $R0 "" done32
- MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "A previous version of Cockatrice must be uninstalled before installing the new one." IDOK uninst32
- Abort
+ ${If} $ReinstallMode = 0
+ MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "A previous version of Cockatrice must be uninstalled before installing the new one." IDOK uninst32
+ Abort
+ ${Else}
+ Goto uninst32
+ ${EndIf}
uninst32:
ClearErrors
@@ -184,8 +269,12 @@ ${If} $PortableMode = 0
ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Cockatrice" "UninstallString"
StrCmp $R0 "" done64
- MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "A previous version of Cockatrice must be uninstalled before installing the new one." IDOK uninst64
- Abort
+ ${If} $ReinstallMode = 0
+ MessageBox MB_OKCANCEL|MB_ICONEXCLAMATION "A previous version of Cockatrice must be uninstalled before installing the new one." IDOK uninst64
+ Abort
+ ${Else}
+ Goto uninst64
+ ${EndIf}
uninst64:
ClearErrors
@@ -277,6 +366,12 @@ ${Else}
FileWrite $0 "PORTABLE"
FileClose $0
${EndIf}
+
+${If} $ReinstallMode = 1
+ IfFileExists "$INSTDIR\cockatrice.exe" 0 +2
+ Exec '"$INSTDIR\cockatrice.exe"'
+${EndIf}
+
SectionEnd
Section "Start menu item" SecStartMenu
diff --git a/cockatrice/src/client/network/interfaces/tapped_out_interface.cpp b/cockatrice/src/client/network/interfaces/tapped_out_interface.cpp
index a30a7f531..af377d176 100644
--- a/cockatrice/src/client/network/interfaces/tapped_out_interface.cpp
+++ b/cockatrice/src/client/network/interfaces/tapped_out_interface.cpp
@@ -89,6 +89,8 @@ void TappedOutInterface::analyzeDeck(const DeckList &deck)
QNetworkRequest request(QUrl("https://tappedout.net/mtg-decks/paste/"));
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
request.setHeader(QNetworkRequest::UserAgentHeader, QString("Cockatrice %1").arg(VERSION_STRING));
+ // we interpret the redirect and open it in the browser instead, do not follow redirects
+ request.setAttribute(QNetworkRequest::RedirectPolicyAttribute, QNetworkRequest::ManualRedirectPolicy);
manager->post(request, data);
}
diff --git a/cockatrice/src/client/settings/shortcuts_settings.h b/cockatrice/src/client/settings/shortcuts_settings.h
index 1de73c165..d9ea494dc 100644
--- a/cockatrice/src/client/settings/shortcuts_settings.h
+++ b/cockatrice/src/client/settings/shortcuts_settings.h
@@ -664,6 +664,9 @@ private:
{"Player/aRollDie", ShortcutKey(QT_TRANSLATE_NOOP("shortcutsTab", "Roll Dice..."),
parseSequenceString("Ctrl+I"),
ShortcutGroup::Gameplay)},
+ {"Player/aFlipCoin", ShortcutKey(QT_TRANSLATE_NOOP("shortcutsTab", "Flip Coin"),
+ parseSequenceString("Ctrl+Shift+I"),
+ ShortcutGroup::Gameplay)},
{"Player/aShuffle", ShortcutKey(QT_TRANSLATE_NOOP("shortcutsTab", "Shuffle Library"),
parseSequenceString("Ctrl+S"),
ShortcutGroup::Gameplay)},
diff --git a/cockatrice/src/game/board/card_item.cpp b/cockatrice/src/game/board/card_item.cpp
index cf3c7db20..62de4a02e 100644
--- a/cockatrice/src/game/board/card_item.cpp
+++ b/cockatrice/src/game/board/card_item.cpp
@@ -460,9 +460,6 @@ void CardItem::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
bool CardItem::animationEvent()
{
- if (owner == nullptr) {
- return false;
- }
int rotation = ROTATION_DEGREES_PER_FRAME;
bool animationIncomplete = true;
if (!tapped)
diff --git a/cockatrice/src/game/game_event_handler.cpp b/cockatrice/src/game/game_event_handler.cpp
index 7bfc4da75..42dd49458 100644
--- a/cockatrice/src/game/game_event_handler.cpp
+++ b/cockatrice/src/game/game_event_handler.cpp
@@ -429,13 +429,13 @@ void GameEventHandler::eventLeave(const Event_Leave &event, int eventPlayerId, c
if (!player)
return;
+ player->clear();
emit playerLeft(eventPlayerId);
emit logLeave(player, getLeaveReason(event.reason()));
game->getPlayerManager()->removePlayer(eventPlayerId);
- player->clear();
player->deleteLater();
// Rearrange all remaining zones so that attachment relationship updates take place
diff --git a/cockatrice/src/game/log/message_log_widget.cpp b/cockatrice/src/game/log/message_log_widget.cpp
index c38e433eb..09f6e656b 100644
--- a/cockatrice/src/game/log/message_log_widget.cpp
+++ b/cockatrice/src/game/log/message_log_widget.cpp
@@ -54,7 +54,7 @@ MessageLogWidget::getFromStr(CardZoneLogic *zone, QString cardName, int position
fromStr = tr(" from the top of their library");
}
}
- } else if (position >= zone->getCards().size() - 1) {
+ } else if (position == zone->getCards().size()) {
if (cardName.isEmpty()) {
if (ownerChange) {
cardName = tr("the bottom card of %1's library").arg(zone->getPlayer()->getPlayerInfo()->getName());
diff --git a/cockatrice/src/game/player/menu/utility_menu.cpp b/cockatrice/src/game/player/menu/utility_menu.cpp
index 37bdcbbaf..bcb4683fd 100644
--- a/cockatrice/src/game/player/menu/utility_menu.cpp
+++ b/cockatrice/src/game/player/menu/utility_menu.cpp
@@ -19,6 +19,9 @@ UtilityMenu::UtilityMenu(Player *_player, QMenu *playerMenu) : QMenu(playerMenu)
aRollDie = new QAction(this);
connect(aRollDie, &QAction::triggered, playerActions, &PlayerActions::actRollDie);
+ aFlipCoin = new QAction(this);
+ connect(aFlipCoin, &QAction::triggered, playerActions, &PlayerActions::actFlipCoin);
+
aCreateToken = new QAction(this);
connect(aCreateToken, &QAction::triggered, playerActions, &PlayerActions::actCreateToken);
@@ -38,6 +41,7 @@ UtilityMenu::UtilityMenu(Player *_player, QMenu *playerMenu) : QMenu(playerMenu)
playerMenu->addAction(aUntapAll);
playerMenu->addSeparator();
playerMenu->addAction(aRollDie);
+ playerMenu->addAction(aFlipCoin);
playerMenu->addSeparator();
playerMenu->addAction(aCreateToken);
playerMenu->addAction(aCreateAnotherToken);
@@ -50,6 +54,7 @@ UtilityMenu::UtilityMenu(Player *_player, QMenu *playerMenu) : QMenu(playerMenu)
aIncrementAllCardCounters = nullptr;
aUntapAll = nullptr;
aRollDie = nullptr;
+ aFlipCoin = nullptr;
}
retranslateUi();
@@ -89,6 +94,7 @@ void UtilityMenu::retranslateUi()
aIncrementAllCardCounters->setText(tr("Increment all card counters"));
aUntapAll->setText(tr("&Untap all permanents"));
aRollDie->setText(tr("R&oll die..."));
+ aFlipCoin->setText(tr("Flip coin"));
aCreateToken->setText(tr("&Create token..."));
aCreateAnotherToken->setText(tr("C&reate another token"));
createPredefinedTokenMenu->setTitle(tr("Cr&eate predefined token"));
@@ -103,6 +109,7 @@ void UtilityMenu::setShortcutsActive()
aIncrementAllCardCounters->setShortcuts(shortcuts.getShortcut("Player/aIncrementAllCardCounters"));
aUntapAll->setShortcuts(shortcuts.getShortcut("Player/aUntapAll"));
aRollDie->setShortcuts(shortcuts.getShortcut("Player/aRollDie"));
+ aFlipCoin->setShortcuts(shortcuts.getShortcut("Player/aFlipCoin"));
aCreateToken->setShortcuts(shortcuts.getShortcut("Player/aCreateToken"));
aCreateAnotherToken->setShortcuts(shortcuts.getShortcut("Player/aCreateAnotherToken"));
}
@@ -113,6 +120,7 @@ void UtilityMenu::setShortcutsInactive()
if (player->getPlayerInfo()->getLocalOrJudge()) {
aUntapAll->setShortcut(QKeySequence());
aRollDie->setShortcut(QKeySequence());
+ aFlipCoin->setShortcut(QKeySequence());
aCreateToken->setShortcut(QKeySequence());
aCreateAnotherToken->setShortcut(QKeySequence());
aIncrementAllCardCounters->setShortcut(QKeySequence());
diff --git a/cockatrice/src/game/player/menu/utility_menu.h b/cockatrice/src/game/player/menu/utility_menu.h
index f6577d7d1..117a7e13a 100644
--- a/cockatrice/src/game/player/menu/utility_menu.h
+++ b/cockatrice/src/game/player/menu/utility_menu.h
@@ -47,7 +47,7 @@ private:
QMenu *createPredefinedTokenMenu;
QAction *aIncrementAllCardCounters;
- QAction *aUntapAll, *aRollDie;
+ QAction *aUntapAll, *aRollDie, *aFlipCoin;
QAction *aCreateToken, *aCreateAnotherToken;
};
diff --git a/cockatrice/src/game/player/player_actions.cpp b/cockatrice/src/game/player/player_actions.cpp
index 20034df16..92c4b16bf 100644
--- a/cockatrice/src/game/player/player_actions.cpp
+++ b/cockatrice/src/game/player/player_actions.cpp
@@ -852,6 +852,14 @@ void PlayerActions::actRollDie()
sendGameCommand(cmd);
}
+void PlayerActions::actFlipCoin()
+{
+ Command_RollDie cmd;
+ cmd.set_sides(2);
+ cmd.set_count(1);
+ sendGameCommand(cmd);
+}
+
void PlayerActions::actCreateToken()
{
DlgCreateToken dlg(player->getPlayerMenu()->getUtilityMenu()->getPredefinedTokens(), player->getGame()->getTab());
diff --git a/cockatrice/src/game/player/player_actions.h b/cockatrice/src/game/player/player_actions.h
index d4c6daacf..08e016f2a 100644
--- a/cockatrice/src/game/player/player_actions.h
+++ b/cockatrice/src/game/player/player_actions.h
@@ -77,6 +77,7 @@ public slots:
void actUntapAll();
void actRollDie();
+ void actFlipCoin();
void actCreateToken();
void actCreateAnotherToken();
void actShuffle();
diff --git a/cockatrice/src/interface/widgets/cards/card_info_picture_widget.cpp b/cockatrice/src/interface/widgets/cards/card_info_picture_widget.cpp
index 816940b0f..555d69381 100644
--- a/cockatrice/src/interface/widgets/cards/card_info_picture_widget.cpp
+++ b/cockatrice/src/interface/widgets/cards/card_info_picture_widget.cpp
@@ -343,11 +343,9 @@ void CardInfoPictureWidget::mousePressEvent(QMouseEvent *event)
QWidget::mousePressEvent(event);
if (event->button() == Qt::RightButton) {
createRightClickMenu()->popup(QCursor::pos());
- } else {
- emit cardClicked();
}
- emit cardClicked();
+ emit cardClicked(event);
}
void CardInfoPictureWidget::hideEvent(QHideEvent *event)
diff --git a/cockatrice/src/interface/widgets/cards/card_info_picture_widget.h b/cockatrice/src/interface/widgets/cards/card_info_picture_widget.h
index 1095d7d74..5eb2d88d9 100644
--- a/cockatrice/src/interface/widgets/cards/card_info_picture_widget.h
+++ b/cockatrice/src/interface/widgets/cards/card_info_picture_widget.h
@@ -43,7 +43,7 @@ signals:
void hoveredOnCard(const ExactCard &hoveredCard);
void cardScaleFactorChanged(int _scale);
void cardChanged(const ExactCard &card);
- void cardClicked();
+ void cardClicked(QMouseEvent *event);
protected:
void resizeEvent(QResizeEvent *event) override;
diff --git a/cockatrice/src/interface/widgets/cards/card_info_text_widget.cpp b/cockatrice/src/interface/widgets/cards/card_info_text_widget.cpp
index 456e1533a..f5f343807 100644
--- a/cockatrice/src/interface/widgets/cards/card_info_text_widget.cpp
+++ b/cockatrice/src/interface/widgets/cards/card_info_text_widget.cpp
@@ -62,7 +62,7 @@ void CardInfoTextWidget::setCard(const ExactCard &exactCard)
text += QString("
%1
%2
")
.arg(tr("Name:"), card->getName().toHtmlEscaped());
- if (exactCard.getPrinting() != PrintingInfo()) {
+ if (!exactCard.getPrinting().isEmpty()) {
QString setShort = exactCard.getPrinting().getSet()->getShortName().toHtmlEscaped();
QString cardNum = exactCard.getPrinting().getProperty("num").toHtmlEscaped();
diff --git a/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.cpp b/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.cpp
index ea61302f0..147675e21 100644
--- a/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.cpp
+++ b/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.cpp
@@ -29,10 +29,14 @@ DeckAnalyticsWidget::DeckAnalyticsWidget(QWidget *parent, DeckListStatisticsAnal
removeButton = new QPushButton(this);
saveButton = new QPushButton(this);
loadButton = new QPushButton(this);
+ includeSideboardCheckBox = new QCheckBox(this);
+ includeSideboardCheckBox->setChecked(false);
+
controlLayout->addWidget(addButton);
controlLayout->addWidget(removeButton);
controlLayout->addWidget(saveButton);
controlLayout->addWidget(loadButton);
+ controlLayout->addWidget(includeSideboardCheckBox);
layout->addWidget(controlContainer);
@@ -40,6 +44,7 @@ DeckAnalyticsWidget::DeckAnalyticsWidget(QWidget *parent, DeckListStatisticsAnal
connect(removeButton, &QPushButton::clicked, this, &DeckAnalyticsWidget::onRemoveSelected);
connect(saveButton, &QPushButton::clicked, this, &DeckAnalyticsWidget::saveLayout);
connect(loadButton, &QPushButton::clicked, this, &DeckAnalyticsWidget::loadLayout);
+ connect(includeSideboardCheckBox, &QCheckBox::clicked, this, &DeckAnalyticsWidget::includeSideboardChanged);
// Scroll area and container
scrollArea = new QScrollArea(this);
@@ -66,6 +71,13 @@ void DeckAnalyticsWidget::retranslateUi()
removeButton->setText(tr("Remove Panel"));
saveButton->setText(tr("Save Layout"));
loadButton->setText(tr("Load Layout"));
+ includeSideboardCheckBox->setText(tr("Include Sideboard"));
+}
+
+void DeckAnalyticsWidget::includeSideboardChanged(bool checked)
+{
+ statsAnalyzer->getConfig().includeSideboard = checked;
+ updateDisplays();
}
void DeckAnalyticsWidget::updateDisplays()
diff --git a/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.h b/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.h
index 31ee36fbb..09618c3f8 100644
--- a/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.h
+++ b/cockatrice/src/interface/widgets/deck_analytics/deck_analytics_widget.h
@@ -11,6 +11,7 @@
#include "deck_list_statistics_analyzer.h"
#include "resizable_panel.h"
+#include
#include
#include
#include
@@ -29,6 +30,7 @@ public slots:
public:
explicit DeckAnalyticsWidget(QWidget *parent, DeckListStatisticsAnalyzer *analyzer);
void retranslateUi();
+ void includeSideboardChanged(bool checked);
private slots:
void onAddPanel();
@@ -57,6 +59,8 @@ private:
QPushButton *saveButton;
QPushButton *loadButton;
+ QCheckBox *includeSideboardCheckBox;
+
QScrollArea *scrollArea;
QWidget *panelContainer;
QVBoxLayout *panelLayout;
diff --git a/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.cpp b/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.cpp
index ad8afb766..073b6d25c 100644
--- a/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.cpp
+++ b/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.cpp
@@ -19,7 +19,13 @@ void DeckListStatisticsAnalyzer::analyze()
{
clearData();
- QList nodes = model->getCardNodes();
+ QList nodes;
+
+ if (config.includeSideboard) {
+ nodes = model->getCardNodes();
+ } else {
+ nodes = model->getCardNodesForZone(DECK_ZONE_MAIN);
+ }
for (auto node : nodes) {
CardInfoPtr info = CardDatabaseManager::query()->getCardInfo(node->getName());
diff --git a/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.h b/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.h
index 946bb0117..52ae751bf 100644
--- a/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.h
+++ b/cockatrice/src/interface/widgets/deck_analytics/deck_list_statistics_analyzer.h
@@ -17,6 +17,7 @@ struct DeckListStatisticsAnalyzerConfig
bool computeCategories = true;
bool computeCurveBreakdowns = true;
bool computeProbabilities = true;
+ bool includeSideboard = false;
};
class DeckListStatisticsAnalyzer : public QObject
@@ -133,6 +134,11 @@ public:
return model;
}
+ DeckListStatisticsAnalyzerConfig &getConfig()
+ {
+ return config;
+ }
+
signals:
void statsUpdated();
diff --git a/cockatrice/src/interface/widgets/dialogs/dlg_update.cpp b/cockatrice/src/interface/widgets/dialogs/dlg_update.cpp
index 0a9244dec..c9adeb270 100644
--- a/cockatrice/src/interface/widgets/dialogs/dlg_update.cpp
+++ b/cockatrice/src/interface/widgets/dialogs/dlg_update.cpp
@@ -219,7 +219,9 @@ void DlgUpdate::downloadSuccessful(const QUrl &filepath)
{
setLabel(tr("Installing..."));
// Try to open the installer. If it opens, quit Cockatrice
- if (QDesktopServices::openUrl(filepath)) {
+ if (QProcess::startDetached(filepath.toLocalFile(),
+ QStringList()
+ << "/R" << QString("/D=%1").arg(QCoreApplication::applicationDirPath()))) {
QMetaObject::invokeMethod(static_cast(parent()), "close", Qt::QueuedConnection);
qCInfo(DlgUpdateLog) << "Opened downloaded update file successfully - closing Cockatrice";
close();
diff --git a/cockatrice/src/interface/widgets/server/game_selector.cpp b/cockatrice/src/interface/widgets/server/game_selector.cpp
index f14cc6d82..0ff2a5542 100644
--- a/cockatrice/src/interface/widgets/server/game_selector.cpp
+++ b/cockatrice/src/interface/widgets/server/game_selector.cpp
@@ -91,6 +91,7 @@ GameSelector::GameSelector(AbstractClient *_client,
bool filtersSetToDefault = showFilters && gameListProxyModel->areFilterParametersSetToDefaults();
clearFilterButton->setEnabled(!filtersSetToDefault);
connect(clearFilterButton, &QPushButton::clicked, this, &GameSelector::actClearFilter);
+ connect(gameListProxyModel, &GamesProxyModel::filtersChanged, this, &GameSelector::checkClearFilterButtonState);
if (room) {
createButton = new QPushButton;
@@ -188,15 +189,16 @@ void GameSelector::actSetFilter()
dlg.getShowOnlyIfSpectatorsCanChat(), dlg.getShowOnlyIfSpectatorsCanSeeHands());
gameListProxyModel->saveFilterParameters(gameTypeMap);
- clearFilterButton->setEnabled(!gameListProxyModel->areFilterParametersSetToDefaults());
-
updateTitle();
}
+void GameSelector::checkClearFilterButtonState()
+{
+ clearFilterButton->setEnabled(!gameListProxyModel->areFilterParametersSetToDefaults());
+}
+
void GameSelector::actClearFilter()
{
- clearFilterButton->setEnabled(false);
-
gameListProxyModel->resetFilterParameters();
gameListProxyModel->saveFilterParameters(gameTypeMap);
diff --git a/cockatrice/src/interface/widgets/server/game_selector.h b/cockatrice/src/interface/widgets/server/game_selector.h
index ea0a4feb0..fa91e5f96 100644
--- a/cockatrice/src/interface/widgets/server/game_selector.h
+++ b/cockatrice/src/interface/widgets/server/game_selector.h
@@ -40,6 +40,7 @@ private slots:
* Updates the proxy model with selected filter parameters and refreshes the displayed game list.
*/
void actSetFilter();
+ void checkClearFilterButtonState();
/**
* @brief Clears all filters applied to the game list.
diff --git a/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.cpp b/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.cpp
index daab4d6eb..f7eacd636 100644
--- a/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.cpp
+++ b/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.cpp
@@ -19,32 +19,46 @@ GameSelectorQuickFilterToolBar::GameSelectorQuickFilterToolBar(QWidget *parent,
mainLayout->setSpacing(5);
searchBar = new QLineEdit(this);
- searchBar->setText(model->getCreatorNameFilters().join(", "));
- connect(searchBar, &QLineEdit::textChanged, this, [this](const QString &text) { model->setGameNameFilter(text); });
+ searchBar->setText(model->getGameNameFilter());
+ connect(searchBar, &QLineEdit::textChanged, this, [this](const QString &text) {
+ applyFilters([&](auto &, auto &, auto &, auto &, auto &, auto &, auto &, QString &gameNameFilter, auto &,
+ auto &, auto &, auto &, auto &, auto &, auto &, auto &, auto &) { gameNameFilter = text; });
+ });
hideGamesNotCreatedByBuddiesCheckBox = new QCheckBox(this);
- hideGamesNotCreatedByBuddiesCheckBox->setChecked(model->getHideBuddiesOnlyGames());
+ hideGamesNotCreatedByBuddiesCheckBox->setChecked(model->getHideNotBuddyCreatedGames());
connect(hideGamesNotCreatedByBuddiesCheckBox, &QCheckBox::toggled, this, [this](bool checked) {
- if (checked) {
- QStringList buddyNames;
- for (auto buddy : tabSupervisor->getUserListManager()->getBuddyList().values()) {
- buddyNames << QString::fromStdString(buddy.name());
+ applyFilters([&](auto &, auto &, auto &, auto &, auto &, bool &hideNotBuddyCreatedGames, auto &, auto &,
+ QStringList &creatorNameFilters, auto &, auto &, auto &, auto &, auto &, auto &, auto &,
+ auto &) {
+ hideNotBuddyCreatedGames = checked;
+
+ if (checked) {
+ QStringList buddyNames;
+ for (auto buddy : tabSupervisor->getUserListManager()->getBuddyList().values()) {
+ buddyNames << QString::fromStdString(buddy.name());
+ }
+ creatorNameFilters = buddyNames;
+ } else {
+ creatorNameFilters.clear();
}
- model->setCreatorNameFilters(buddyNames);
- } else {
- model->setCreatorNameFilters({});
- }
+ });
});
hideFullGamesCheckBox = new QCheckBox(this);
hideFullGamesCheckBox->setChecked(model->getHideFullGames());
- connect(hideFullGamesCheckBox, &QCheckBox::toggled, this,
- [this](bool checked) { model->setHideFullGames(checked); });
+ connect(hideFullGamesCheckBox, &QCheckBox::toggled, this, [this](bool checked) {
+ applyFilters([&](auto &, auto &, bool &hideFullGames, auto &, auto &, auto &, auto &, auto &, auto &, auto &,
+ auto &, auto &, auto &, auto &, auto &, auto &, auto &) { hideFullGames = checked; });
+ });
hideStartedGamesCheckBox = new QCheckBox(this);
hideStartedGamesCheckBox->setChecked(model->getHideGamesThatStarted());
- connect(hideStartedGamesCheckBox, &QCheckBox::toggled, this,
- [this](bool checked) { model->setHideGamesThatStarted(checked); });
+ connect(hideStartedGamesCheckBox, &QCheckBox::toggled, this, [this](bool checked) {
+ applyFilters([&](auto &, auto &, auto &, bool &hideGamesThatStarted, auto &, auto &, auto &, auto &, auto &,
+ auto &, auto &, auto &, auto &, auto &, auto &, auto &,
+ auto &) { hideGamesThatStarted = checked; });
+ });
filterToFormatComboBox = new QComboBox(this);
@@ -69,13 +83,15 @@ GameSelectorQuickFilterToolBar::GameSelectorQuickFilterToolBar(QWidget *parent,
// Update proxy model on selection change
connect(filterToFormatComboBox, QOverload::of(&QComboBox::currentIndexChanged), this, [this](int index) {
- QVariant data = filterToFormatComboBox->itemData(index);
- if (!data.isValid()) {
- model->setGameTypeFilter({}); // empty = no filter
- } else {
- int typeId = data.toInt();
- model->setGameTypeFilter({typeId});
- }
+ applyFilters([&](auto &, auto &, auto &, auto &, auto &, auto &, auto &, auto &, auto &,
+ QSet &gameTypeFilter, auto &, auto &, auto &, auto &, auto &, auto &, auto &) {
+ QVariant data = filterToFormatComboBox->itemData(index);
+ if (!data.isValid()) {
+ gameTypeFilter.clear();
+ } else {
+ gameTypeFilter = {data.toInt()};
+ }
+ });
});
hideGamesNotCreatedByBuddiesCheckBox->setMinimumSize(20, 20);
@@ -96,9 +112,87 @@ GameSelectorQuickFilterToolBar::GameSelectorQuickFilterToolBar(QWidget *parent,
setLayout(mainLayout);
+ syncFromModel();
+
+ connect(model, &GamesProxyModel::filtersChanged, this, &GameSelectorQuickFilterToolBar::syncFromModel);
+
retranslateUi();
}
+void GameSelectorQuickFilterToolBar::syncFromModel()
+{
+ QSignalBlocker b1(searchBar);
+ QSignalBlocker b2(filterToFormatComboBox);
+ QSignalBlocker b3(hideGamesNotCreatedByBuddiesCheckBox);
+ QSignalBlocker b4(hideFullGamesCheckBox);
+ QSignalBlocker b5(hideStartedGamesCheckBox);
+
+ searchBar->setText(model->getGameNameFilter());
+
+ hideGamesNotCreatedByBuddiesCheckBox->setChecked(model->getHideNotBuddyCreatedGames());
+ hideFullGamesCheckBox->setChecked(model->getHideFullGames());
+ hideStartedGamesCheckBox->setChecked(model->getHideGamesThatStarted());
+
+ QSet types = model->getGameTypeFilter();
+ if (types.size() == 1) {
+ int idx = filterToFormatComboBox->findData(*types.begin());
+ filterToFormatComboBox->setCurrentIndex(idx >= 0 ? idx : 0);
+ } else {
+ filterToFormatComboBox->setCurrentIndex(0);
+ }
+}
+
+void GameSelectorQuickFilterToolBar::applyFilters(std::function &,
+ int &,
+ int &,
+ QTime &,
+ bool &,
+ bool &,
+ bool &,
+ bool &)> mutator)
+{
+ bool hideBuddiesOnlyGames = model->getHideBuddiesOnlyGames();
+ bool hideIgnoredUserGames = model->getHideIgnoredUserGames();
+ bool hideFullGames = model->getHideFullGames();
+ bool hideGamesThatStarted = model->getHideGamesThatStarted();
+ bool hidePasswordProtectedGames = model->getHidePasswordProtectedGames();
+ bool hideNotBuddyCreatedGames = model->getHideNotBuddyCreatedGames();
+ bool hideOpenDecklistGames = model->getHideOpenDecklistGames();
+
+ QString gameNameFilter = model->getGameNameFilter();
+ QStringList creatorNameFilters = model->getCreatorNameFilters();
+ QSet gameTypeFilter = model->getGameTypeFilter();
+
+ int minPlayers = model->getMaxPlayersFilterMin();
+ int maxPlayers = model->getMaxPlayersFilterMax();
+ QTime maxGameAge = model->getMaxGameAge();
+
+ bool showOnlyIfSpectatorsCanWatch = model->getShowOnlyIfSpectatorsCanWatch();
+ bool showSpectatorPasswordProtected = model->getShowSpectatorPasswordProtected();
+ bool showOnlyIfSpectatorsCanChat = model->getShowOnlyIfSpectatorsCanChat();
+ bool showOnlyIfSpectatorsCanSeeHands = model->getShowOnlyIfSpectatorsCanSeeHands();
+
+ mutator(hideBuddiesOnlyGames, hideIgnoredUserGames, hideFullGames, hideGamesThatStarted, hidePasswordProtectedGames,
+ hideNotBuddyCreatedGames, hideOpenDecklistGames, gameNameFilter, creatorNameFilters, gameTypeFilter,
+ minPlayers, maxPlayers, maxGameAge, showOnlyIfSpectatorsCanWatch, showSpectatorPasswordProtected,
+ showOnlyIfSpectatorsCanChat, showOnlyIfSpectatorsCanSeeHands);
+
+ model->setGameFilters(hideBuddiesOnlyGames, hideIgnoredUserGames, hideFullGames, hideGamesThatStarted,
+ hidePasswordProtectedGames, hideNotBuddyCreatedGames, hideOpenDecklistGames, gameNameFilter,
+ creatorNameFilters, gameTypeFilter, minPlayers, maxPlayers, maxGameAge,
+ showOnlyIfSpectatorsCanWatch, showSpectatorPasswordProtected, showOnlyIfSpectatorsCanChat,
+ showOnlyIfSpectatorsCanSeeHands);
+}
+
void GameSelectorQuickFilterToolBar::retranslateUi()
{
searchBar->setPlaceholderText(tr("Filter by game name..."));
diff --git a/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.h b/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.h
index 642fdd1c4..c658418f9 100644
--- a/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.h
+++ b/cockatrice/src/interface/widgets/server/game_selector_quick_filter_toolbar.h
@@ -18,6 +18,24 @@ public:
TabSupervisor *tabSupervisor,
GamesProxyModel *model,
const QMap &allGameTypes);
+ void syncFromModel();
+ void applyFilters(std::function &,
+ int &,
+ int &,
+ QTime &,
+ bool &,
+ bool &,
+ bool &,
+ bool &)> mutator);
void retranslateUi();
private:
diff --git a/cockatrice/src/interface/widgets/server/games_model.cpp b/cockatrice/src/interface/widgets/server/games_model.cpp
index 05d363fee..1f05308b8 100644
--- a/cockatrice/src/interface/widgets/server/games_model.cpp
+++ b/cockatrice/src/interface/widgets/server/games_model.cpp
@@ -326,6 +326,7 @@ void GamesProxyModel::setGameFilters(bool _hideBuddiesOnlyGames,
#else
invalidateFilter();
#endif
+ emit filtersChanged();
}
int GamesProxyModel::getNumFilteredGames() const
diff --git a/cockatrice/src/interface/widgets/server/games_model.h b/cockatrice/src/interface/widgets/server/games_model.h
index 56c806fb6..c6884093d 100644
--- a/cockatrice/src/interface/widgets/server/games_model.h
+++ b/cockatrice/src/interface/widgets/server/games_model.h
@@ -138,6 +138,9 @@ private:
bool showOnlyIfSpectatorsCanChat;
bool showOnlyIfSpectatorsCanSeeHands;
+signals:
+ void filtersChanged();
+
public:
/**
* @brief Constructs a GamesProxyModel.
diff --git a/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.cpp b/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.cpp
index 7a424de8b..f51d0f3e7 100644
--- a/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.cpp
+++ b/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.cpp
@@ -4,10 +4,29 @@ void ArchidektApiResponseCardEntry::fromJson(const QJsonObject &json)
{
id = json.value("id").toInt();
+ categories.clear();
+
auto categoriesJson = json.value("categories").toArray();
- for (auto category : categoriesJson) {
- categories.append(category.toString());
+ for (const auto &categoryValue : categoriesJson) {
+ Category cat;
+
+ if (categoryValue.isObject()) {
+ QJsonObject obj = categoryValue.toObject();
+
+ cat.id = obj.value("id").toInt();
+ cat.name = obj.value("name").toString();
+ cat.isPremier = obj.value("isPremier").toBool();
+ cat.includedInDeck = obj.value("includedInDeck").toBool();
+ cat.includedInPrice = obj.value("includedInPrice").toBool();
+ } else if (categoryValue.isString()) {
+ cat.name = categoryValue.toString();
+
+ // assume mainboard unless known otherwise
+ cat.includedInDeck = true;
+ }
+
+ categories.append(cat);
}
companion = json.value("companion").toBool();
@@ -27,7 +46,13 @@ void ArchidektApiResponseCardEntry::fromJson(const QJsonObject &json)
void ArchidektApiResponseCardEntry::debugPrint() const
{
qDebug() << "Id:" << id;
- qDebug() << "Categories:" << categories;
+ for (auto category : categories) {
+ qDebug() << "Category ID:" << category.id;
+ qDebug() << "Category Name:" << category.name;
+ qDebug() << "Category Premier:" << category.isPremier;
+ qDebug() << "Category Included in Deck:" << category.includedInDeck;
+ qDebug() << "Category Included in Price:" << category.includedInPrice;
+ }
qDebug() << "Companion:" << companion;
qDebug() << "FlippedDefault:" << flippedDefault;
qDebug() << "Label:" << label;
diff --git a/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.h b/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.h
index f7f86e9ed..f3961dc6f 100644
--- a/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.h
+++ b/cockatrice/src/interface/widgets/tabs/api/archidekt/api_response/card/archidekt_api_response_card_entry.h
@@ -9,6 +9,15 @@
#include
#include
+struct Category
+{
+ int id;
+ QString name;
+ bool isPremier;
+ bool includedInDeck;
+ bool includedInPrice;
+};
+
class ArchidektApiResponseCardEntry
{
public:
@@ -26,7 +35,7 @@ public:
return card;
};
- QStringList getCategories() const
+ QList getCategories() const
{
return categories;
}
@@ -38,7 +47,7 @@ public:
private:
int id;
- QStringList categories;
+ QList categories;
bool companion;
bool flippedDefault;
QString label;
diff --git a/cockatrice/src/interface/widgets/tabs/api/archidekt/display/archidekt_api_response_deck_display_widget.cpp b/cockatrice/src/interface/widgets/tabs/api/archidekt/display/archidekt_api_response_deck_display_widget.cpp
index 8b17cd49e..66b68d823 100644
--- a/cockatrice/src/interface/widgets/tabs/api/archidekt/display/archidekt_api_response_deck_display_widget.cpp
+++ b/cockatrice/src/interface/widgets/tabs/api/archidekt/display/archidekt_api_response_deck_display_widget.cpp
@@ -63,16 +63,60 @@ ArchidektApiResponseDeckDisplayWidget::ArchidektApiResponseDeckDisplayWidget(QWi
QString tempDeck;
QTextStream deckStream(&tempDeck);
- for (auto card : response.getCards()) {
+ QString mainboardText;
+ QString sideboardText;
+
+ QTextStream mainStream(&mainboardText);
+ QTextStream sideStream(&sideboardText);
+
+ for (const auto &card : response.getCards()) {
QString fullName = card.getCard().getOracleCard().value("name").toString();
// We don't really care about the second card, the card database already has it as a relation
QString cleanName = fullName.split("//").first().trimmed();
- tempDeck += QString("%1 %2 (%3) %4\n")
- .arg(card.getQuantity())
- .arg(cleanName)
- .arg(card.getCard().getEdition().getEditionCode().toUpper())
- .arg(card.getCard().getCollectorNumber());
+ QString line = QString("%1 %2 (%3) %4\n")
+ .arg(card.getQuantity())
+ .arg(cleanName)
+ .arg(card.getCard().getEdition().getEditionCode().toUpper())
+ .arg(card.getCard().getCollectorNumber());
+
+ bool isCommander = false;
+ bool isSideboardCategory = false;
+ bool includedInDeck = false;
+
+ for (const auto &cat : card.getCategories()) {
+
+ if (cat.name.compare("Commander", Qt::CaseInsensitive) == 0) {
+ isCommander = true;
+ }
+
+ if (cat.name.compare("Sideboard", Qt::CaseInsensitive) == 0 ||
+ cat.name.compare("Maybeboard", Qt::CaseInsensitive) == 0) {
+ isSideboardCategory = true;
+ }
+
+ if (cat.includedInDeck) {
+ includedInDeck = true;
+ }
+ }
+
+ QString target;
+
+ if (isCommander || isSideboardCategory) {
+ sideStream << line;
+ } else if (includedInDeck) {
+ mainStream << line;
+ } else {
+ sideStream << line;
+ }
+ }
+
+ // Combine with blank line separator
+ tempDeck = mainboardText;
+
+ if (!sideboardText.isEmpty()) {
+ tempDeck += "\n";
+ tempDeck += sideboardText;
}
model = new DeckListModel(this);
diff --git a/cockatrice/src/interface/widgets/tabs/api/edhrec/display/cards/edhrec_api_response_card_details_display_widget.cpp b/cockatrice/src/interface/widgets/tabs/api/edhrec/display/cards/edhrec_api_response_card_details_display_widget.cpp
index c01c7fa43..9d45f254b 100644
--- a/cockatrice/src/interface/widgets/tabs/api/edhrec/display/cards/edhrec_api_response_card_details_display_widget.cpp
+++ b/cockatrice/src/interface/widgets/tabs/api/edhrec/display/cards/edhrec_api_response_card_details_display_widget.cpp
@@ -3,6 +3,7 @@
#include "../../../../../general/display/background_plate_widget.h"
#include "../../tab_edhrec_main.h"
+#include
#include
EdhrecApiResponseCardDetailsDisplayWidget::EdhrecApiResponseCardDetailsDisplayWidget(
@@ -48,7 +49,7 @@ EdhrecApiResponseCardDetailsDisplayWidget::EdhrecApiResponseCardDetailsDisplayWi
if (parentTab) {
cardPictureWidget->setScaleFactor(parentTab->getCardSizeSlider()->getSlider()->value());
connect(cardPictureWidget, &CardInfoPictureWidget::cardClicked, this,
- &EdhrecApiResponseCardDetailsDisplayWidget::actRequestPageNavigation);
+ &EdhrecApiResponseCardDetailsDisplayWidget::mousePressEvent);
connect(parentTab->getCardSizeSlider()->getSlider(), &QSlider::valueChanged, cardPictureWidget,
&CardInfoPictureWidget::setScaleFactor);
connect(this, &EdhrecApiResponseCardDetailsDisplayWidget::requestUrl, parentTab,
@@ -59,7 +60,9 @@ EdhrecApiResponseCardDetailsDisplayWidget::EdhrecApiResponseCardDetailsDisplayWi
void EdhrecApiResponseCardDetailsDisplayWidget::mousePressEvent(QMouseEvent *event)
{
QWidget::mousePressEvent(event);
- actRequestPageNavigation();
+ if (event->button() == Qt::LeftButton) {
+ actRequestPageNavigation();
+ }
}
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
diff --git a/cockatrice/src/interface/widgets/tabs/tab_game.cpp b/cockatrice/src/interface/widgets/tabs/tab_game.cpp
index cf8269069..161829b35 100644
--- a/cockatrice/src/interface/widgets/tabs/tab_game.cpp
+++ b/cockatrice/src/interface/widgets/tabs/tab_game.cpp
@@ -259,6 +259,9 @@ TabGame::~TabGame()
if (replayManager) {
delete replayManager->replay;
}
+ for (auto &player : game->getPlayerManager()->getPlayers()) {
+ player->clear();
+ }
}
void TabGame::updatePlayerListDockTitle()
diff --git a/cockatrice/src/interface/widgets/tabs/visual_deck_editor/tab_deck_editor_visual_tab_widget.cpp b/cockatrice/src/interface/widgets/tabs/visual_deck_editor/tab_deck_editor_visual_tab_widget.cpp
index 82aeb05a6..8a4d5903d 100644
--- a/cockatrice/src/interface/widgets/tabs/visual_deck_editor/tab_deck_editor_visual_tab_widget.cpp
+++ b/cockatrice/src/interface/widgets/tabs/visual_deck_editor/tab_deck_editor_visual_tab_widget.cpp
@@ -57,6 +57,8 @@ TabDeckEditorVisualTabWidget::TabDeckEditorVisualTabWidget(QWidget *parent,
this->addNewTab(visualDatabaseDisplay, tr("Visual Database Display"));
this->addNewTab(deckAnalytics, tr("Deck Analytics"));
this->addNewTab(sampleHandWidget, tr("Sample Hand"));
+
+ setTabsClosable(false);
}
/**
diff --git a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_filter_button.h b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_filter_button.h
new file mode 100644
index 000000000..5d9f7f944
--- /dev/null
+++ b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_filter_button.h
@@ -0,0 +1,21 @@
+#ifndef COCKATRICE_VISUAL_DATABASE_DISPLAY_FILTER_BUTTON_H
+#define COCKATRICE_VISUAL_DATABASE_DISPLAY_FILTER_BUTTON_H
+
+#include
+
+const QString visualDatabaseDisplayFilterButtonStyle = QString(R"(
+ QPushButton {
+ background-color: palette(button);
+ color: palette(button-text);
+ padding: 5px 10px;
+ border-radius: 4px;
+ border: 1px solid palette(dark);
+ }
+ QPushButton:checked {
+ background-color: palette(highlight);
+ color: palette(highlighted-text);
+ border: 1px solid palette(shadow);
+ }
+)");
+
+#endif // COCKATRICE_VISUAL_DATABASE_DISPLAY_FILTER_BUTTON_H
diff --git a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_format_legality_filter_widget.cpp b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_format_legality_filter_widget.cpp
index 0df948016..633f07af7 100644
--- a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_format_legality_filter_widget.cpp
+++ b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_format_legality_filter_widget.cpp
@@ -1,6 +1,7 @@
#include "visual_database_display_format_legality_filter_widget.h"
#include "../../../filters/filter_tree_model.h"
+#include "visual_database_display_filter_button.h"
#include
#include
@@ -80,8 +81,7 @@ void VisualDatabaseDisplayFormatLegalityFilterWidget::createFormatButtons()
for (auto it = allFormatsWithCount.begin(); it != allFormatsWithCount.end(); ++it) {
auto *button = new QPushButton(it.key(), flowWidget);
button->setCheckable(true);
- button->setStyleSheet("QPushButton { background-color: lightgray; border: 1px solid gray; padding: 5px; }"
- "QPushButton:checked { background-color: green; color: white; }");
+ button->setStyleSheet(visualDatabaseDisplayFilterButtonStyle);
flowWidget->addWidget(button);
formatButtons[it.key()] = button;
diff --git a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_main_type_filter_widget.cpp b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_main_type_filter_widget.cpp
index bc8e914bd..c44489c1b 100644
--- a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_main_type_filter_widget.cpp
+++ b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_main_type_filter_widget.cpp
@@ -1,6 +1,7 @@
#include "visual_database_display_main_type_filter_widget.h"
#include "../../../filters/filter_tree_model.h"
+#include "visual_database_display_filter_button.h"
#include
#include
@@ -75,8 +76,8 @@ void VisualDatabaseDisplayMainTypeFilterWidget::createMainTypeButtons()
for (auto it = allMainCardTypesWithCount.begin(); it != allMainCardTypesWithCount.end(); ++it) {
auto *button = new QPushButton(it.key(), flowWidget);
button->setCheckable(true);
- button->setStyleSheet("QPushButton { background-color: lightgray; border: 1px solid gray; padding: 5px; }"
- "QPushButton:checked { background-color: green; color: white; }");
+
+ button->setStyleSheet(visualDatabaseDisplayFilterButtonStyle);
flowWidget->addWidget(button);
typeButtons[it.key()] = button;
diff --git a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_name_filter_widget.cpp b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_name_filter_widget.cpp
index 5098696dd..2751ee971 100644
--- a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_name_filter_widget.cpp
+++ b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_name_filter_widget.cpp
@@ -3,6 +3,7 @@
#include "../../../interface/widgets/dialogs/dlg_load_deck_from_clipboard.h"
#include "../../../interface/widgets/tabs/abstract_tab_deck_editor.h"
#include "../deck_editor/deck_state_manager.h"
+#include "visual_database_display_filter_button.h"
#include
@@ -95,8 +96,8 @@ void VisualDatabaseDisplayNameFilterWidget::createNameFilter(const QString &name
// Create a button for the filter
auto *button = new QPushButton(name, flowWidget);
- button->setStyleSheet("QPushButton { background-color: lightgray; border: 1px solid gray; padding: 5px; }"
- "QPushButton:hover { background-color: red; color: white; }");
+
+ button->setStyleSheet(visualDatabaseDisplayFilterButtonStyle);
connect(button, &QPushButton::clicked, this, [this, name]() {
removeNameFilter(name);
diff --git a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_set_filter_widget.cpp b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_set_filter_widget.cpp
index 3339bc561..b72116461 100644
--- a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_set_filter_widget.cpp
+++ b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_set_filter_widget.cpp
@@ -2,6 +2,7 @@
#include "../../../client/settings/cache_settings.h"
#include "../../../filters/filter_tree_model.h"
+#include "visual_database_display_filter_button.h"
#include
#include
@@ -101,8 +102,8 @@ void VisualDatabaseDisplaySetFilterWidget::createSetButtons()
auto *button = new QPushButton(longName + " (" + shortName + ")", flowWidget);
button->setCheckable(true);
- button->setStyleSheet("QPushButton { background-color: lightgray; border: 1px solid gray; padding: 5px; }"
- "QPushButton:checked { background-color: green; color: white; }");
+
+ button->setStyleSheet(visualDatabaseDisplayFilterButtonStyle);
flowWidget->addWidget(button);
setButtons[shortName] = button;
diff --git a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_sub_type_filter_widget.cpp b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_sub_type_filter_widget.cpp
index 57559d12c..6d4bcb58e 100644
--- a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_sub_type_filter_widget.cpp
+++ b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_sub_type_filter_widget.cpp
@@ -1,6 +1,7 @@
#include "visual_database_display_sub_type_filter_widget.h"
#include "../../../filters/filter_tree_model.h"
+#include "visual_database_display_filter_button.h"
#include
#include
@@ -80,8 +81,8 @@ void VisualDatabaseDisplaySubTypeFilterWidget::createSubTypeButtons()
for (auto it = allSubCardTypesWithCount.begin(); it != allSubCardTypesWithCount.end(); ++it) {
auto *button = new QPushButton(it.key(), flowWidget);
button->setCheckable(true);
- button->setStyleSheet("QPushButton { background-color: lightgray; border: 1px solid gray; padding: 5px; }"
- "QPushButton:checked { background-color: green; color: white; }");
+
+ button->setStyleSheet(visualDatabaseDisplayFilterButtonStyle);
flowWidget->addWidget(button);
typeButtons[it.key()] = button;
diff --git a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_widget.cpp b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_widget.cpp
index 44a9e98a0..c1076909b 100644
--- a/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_widget.cpp
+++ b/cockatrice/src/interface/widgets/visual_database_display/visual_database_display_widget.cpp
@@ -140,6 +140,7 @@ void VisualDatabaseDisplayWidget::initialize()
databaseLoadIndicator->setVisible(false);
filterContainer->initialize();
+ filterContainer->setVisible(true);
searchLayout->addWidget(colorFilterWidget);
searchLayout->addWidget(clearFilterWidget);
diff --git a/cockatrice/translations/cockatrice_cs.ts b/cockatrice/translations/cockatrice_cs.ts
index c13bfb2df..c210315c7 100644
--- a/cockatrice/translations/cockatrice_cs.ts
+++ b/cockatrice/translations/cockatrice_cs.ts
@@ -23,12 +23,12 @@
AbstractDlgDeckTextEdit
-
+ &Refresh
-
+ Parse Set Name and Number (if available)
@@ -36,60 +36,60 @@
AbstractTabDeckEditor
-
+ Open in new tab
-
+ Are you sure?
-
+ The decklist has been modified.
Do you want to save the changes?
-
-
-
-
-
-
+
+
+
+
+
+ Error
-
+ Could not open deck at %1
-
+ Could not save remote deck
-
-
+
+ The deck could not be saved.
Please check that the directory is writable and try again.
-
+ Save deck
-
+ The deck could not be saved.
-
+ There are no cards in your deck to be exported
@@ -131,190 +131,168 @@ Please check that the directory is writable and try again.
AppearanceSettingsPage
-
+ seconds
-
+ ErrorChyba
-
+ Could not create themes directory at '%1'.
-
- Enabling this feature will disable the use of the Printing Selector.
-
-You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
-
-You will have to use the Set Manager, available through Card Database -> Manage Sets.
-
-Are you sure you would like to enable this feature?
-
-
-
-
- Disabling this feature will enable the Printing Selector.
-
-You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
-
-You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
-
-Are you sure you would like to disable this feature?
-
-
-
-
- Confirm Change
-
-
-
-
+ Theme settingsNastavení vzhledu
-
+ Current theme:Aktuální vzhled
-
+ Open themes folder
-
+ Home tab background source:
-
+ Home tab background shuffle frequency:
-
+ Disabled
-
+
+ Display card name of background in bottom right:
+
+
+
+ Menu settings
-
+ Show keyboard shortcuts in right-click menus
-
+ Show game filter toolbar above list in room tab
-
+ Card renderingVykreslování karet
-
+ Display card names on cards having a pictureZobrazit jména karet na kartách s obrázky
-
+ Auto-Rotate cards with sideways layout
-
+ Override all card art with personal set preference (Pre-ProviderID change behavior)
-
+ Bump sets that the deck contains cards from to the top in the printing selector
-
+ Scale cards on mouse overZvětšovat karty při najetí myši
-
+ Use rounded card corners
-
+ Minimum overlap percentage of cards on the stack and in vertical hand
-
+ Maximum initial height for card view window:
-
-
+
+ rows
-
+ Maximum expanded height for card view window:
-
+ Card counters
-
+ Counter %1
-
+ Hand layoutRozvržení ruky
-
+ Display hand horizontally (wastes space)Zobrazit ruku horizontálně (plýtvá místem)
-
+ Enable left justificationZapnout
-
+ Table grid layoutRozložení herní mřížky
-
+ Invert vertical coordinatePřevrátit vertikální souřadnice
-
+ Minimum player count for multi-column layout:Minimální počet hráčů pro víceřádkové rozvržení:
-
+ Maximum font size for information displayed on cards:Maximální velikost písma pro informace na kartách
@@ -322,7 +300,12 @@ Are you sure you would like to disable this feature?
ArchidektApiResponseDeckDisplayWidget
-
+
+ Back to results
+
+
+
+ Open Deck in Deck Editor
@@ -642,22 +625,22 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
CardInfoPictureWidget
-
+ View related cards
-
+ Add card to deck
-
+ Mainboard
-
+ Sideboard
@@ -693,124 +676,124 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
CardMenu
-
+ Re&veal to...
-
+ &All players
-
+ View related cards
-
+ Token:
-
+ All tokens
-
+ &Select All
-
+ S&elect Row
-
+ S&elect Column
-
+ &Play
-
+ &Hide
-
+ Play &Face Down
-
+ &Tap / UntapTurn sideways or back again
-
- Toggle &normal untapping
+
+ Skip &untapping
-
+ T&urn OverTurn face up/face down
-
+ &Peek at card face
-
+ &Clone
-
+ Attac&h to card...
-
+ Unattac&h
-
+ &Draw arrow...
-
+ &Set annotation...
-
+ Ca&rd counters
-
+ &Add counter (%1)
-
+ &Remove counter (%1)
-
+ &Set counters (%1)...
@@ -826,133 +809,133 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
CardZoneLogic
-
+ their handnominative
-
+ %1's handnominative
-
+ their librarylook at zone
-
+ %1's librarylook at zone
-
+ of their librarytop cards of zone,
-
+ of %1's librarytop cards of zone
-
+ their libraryreveal zone
-
+ %1's libraryreveal zone
-
+ their libraryshuffle
-
+ %1's libraryshuffle
-
+ their librarynominative
-
-
- %1's library
- nominative
-
-
+ %1's library
+ nominative
+
+
+
+ their graveyardnominative
-
+ %1's graveyardnominative
-
+ their exilenominative
-
+ %1's exilenominative
-
-
- their sideboard
- look at zone
-
-
-
-
- %1's sideboard
- look at zone
-
- their sideboard
- nominative
+ look at zone%1's sideboard
+ look at zone
+
+
+
+
+ their sideboardnominative
-
+
+ %1's sideboard
+ nominative
+
+
+
+ their custom zone '%1'nominative
-
+ %1's custom zone '%2'nominative
@@ -1014,7 +997,7 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckEditorCardDatabaseDockWidget
-
+ Card Database
@@ -1022,7 +1005,7 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckEditorCardInfoDockWidget
-
+ Card Info
@@ -1045,32 +1028,32 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
-
+ Select Printing
-
+ Show on EDHRec (Commander)
-
+ Show on EDHRec (Card)
-
+ Show Related cards
-
+ Add card to &maindeck
-
+ Add card to &sideboard
@@ -1078,32 +1061,32 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckEditorDeckDockWidget
-
+ Loading Database...
-
+ Banner Card
-
+ Main Type
-
+ Mana Cost
-
+ Colors
-
+ Select Printing
@@ -1176,17 +1159,17 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckEditorFilterDockWidget
-
+ Filters
-
+ &Clear all filters
-
+ Delete selected
@@ -1309,7 +1292,7 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckEditorPrintingSelectorDockWidget
-
+ Printing Selector
@@ -1317,166 +1300,166 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckEditorSettingsPage
-
-
+
+ Update SpoilersAktualizovat spoilery
-
-
+
+ SuccessÚspěch
-
+ Download URLs have been reset.
-
+ Downloaded card pictures have been reset.Stáhnuté obrázky karet byly resetovány.
-
+ ErrorChyba
-
+ One or more downloaded card pictures could not be cleared.Některé stáhnuté obrázky karet nemohli být vymazány.
-
+ Add URL
-
-
+
+ URL:URL:
-
-
+
+ Edit URL
-
+ Network Cache Size:
-
+ Redirect Cache TTL:
-
+ How long cached redirects for urls are valid for.
-
+ Picture Cache Size:
-
+ Add New URL
-
+ Remove URL
-
+ Day(s)
-
+ Updating...Aktualizuji...
-
+ Choose pathVyberte cestu
-
+ URL Download Priority
-
+ SpoilersSpoilery
-
+ Download Spoilers AutomaticallyStahovat spoilery automaticky
-
+ Spoiler Location:
-
+ Last ChangePoslední změna
-
+ Spoilers download automatically on launchAutomaticky stahovat spoilery při spuštění
-
+ Press the button to manually update without relaunchingManuálně aktualizovat bez restartování
-
+ Do not close settings until manual update is complete
-
+ Download card pictures on the fly
-
+ How to add a custom URL
-
+ Delete Downloaded ImagesSmazat stáhnuté obrázky
-
+ Reset Download URLs
-
+ On-disk cache for downloaded pictures
-
+ In-memory cache for pictures not currently on screen
@@ -1484,32 +1467,32 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckListHistoryManagerWidget
-
+ Undo
-
+ Redo
-
+ Undo/Redo history
-
+ Click on an entry to revert to that point in the history.
-
+ [redo]
-
+ [undo]
@@ -1517,27 +1500,27 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckListModel
-
+ Count
-
+ Set
-
+ NumberPočet
-
+ Provider ID
-
+ CardKarta
@@ -1545,12 +1528,12 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckLoader
-
+ Common deck formats (%1)
-
+ All files (*.*)
@@ -1647,94 +1630,94 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
DeckPreviewWidget
-
+ Banner Card
-
+ Open in deck editor
-
+ Edit Tags
-
+ Rename Deck
-
+ Save Deck to Clipboard
-
+ Annotated
-
+ Annotated (No set info)
-
+ Not Annotated
-
+ Not Annotated (No set info)
-
+ Rename File
-
+ Delete File
-
+ Set Banner Card
-
-
+
+ New name:
-
-
+
+ Error
-
+ Rename failed
-
+ Delete file
-
+ Are you sure you want to delete the selected file?
-
+ Delete failed
@@ -1767,32 +1750,32 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
-
+ Added (%1): %2 (%3) %4
-
+ Moved to %1 1 × "%2" (%3)
-
+ Removed "%1" (all copies)
-
+ %1 1 × "%2" (%3)
-
+ Added
-
+ Removed
@@ -1859,29 +1842,29 @@ Toto je uloženo pouze pro moderátory a banovaná osoba to neuvidí.
-
-
+
+ ErrorChyba
-
+ The selected file could not be loaded.Vybraný soubor se nepodařilo načíst.
-
+ Deck is greater than maximum file size.
-
+ Are you sure you want to force start?
This will kick all non-ready players from the game.
-
+ Cockatrice
@@ -2374,17 +2357,17 @@ Pro odstranění současného avatara potvrďte bez vybrání nového obrázku.<
DlgEditDeckInClipboard
-
+ Edit deck in clipboard
-
+ Error
-
+ Invalid deck list.
@@ -2885,17 +2868,17 @@ Pro správné zobrazení si aktivujte si edici 'Token' v "Nastavi
DlgLoadDeckFromClipboard
-
+ Load deck from clipboardNahrát balíček ze schránky
-
+ ErrorChyba
-
+ Invalid deck list.Neplatný formát balíčku.
@@ -2903,43 +2886,43 @@ Pro správné zobrazení si aktivujte si edici 'Token' v "Nastavi
DlgLoadDeckFromWebsite
-
+ Paste a link to a decklist site here to import it.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
-
-
-
-
+
+
+
+
+ Load Deck from Website
-
+ No parser available for this deck provider.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
+ Network error: %1
-
+ Received empty deck data.
-
+ Failed to parse deck data: %1
-
+ The provided URL is not recognized as a valid deck URL.
Valid deck URLs look like this:
@@ -2958,40 +2941,73 @@ https://tappedout.net/mtg-decks/your-deck-name/Nahrát balíček
+
+ DlgLocalGameOptions
+
+
+ Players:
+
+
+
+
+ General
+
+
+
+
+ Starting life total:
+
+
+
+
+ Game setup options
+
+
+
+
+ Remember settings
+
+
+
+
+ Local game options
+
+
+DlgMoveTopCardsUntil
-
+ Card name (or search expressions):
-
+ Number of hits:
-
+ Auto play hits
-
+ Put top cards on stack until...
-
+ No cards matching the search expression exists in the card database. Proceed anyways?
-
+ Cockatrice
-
+ Invalid filter
@@ -3152,12 +3168,12 @@ Your email will be used to verify your account.
DlgSettings
-
+ Unknown Error loading card databaseNeznámý error při nahrávání databáze karet.
-
+ Your card database is invalid.
Cockatrice may not function correctly with an invalid database
@@ -3174,7 +3190,7 @@ Je možné že bude nutné znovu spustit Oracle pro obnovení databáze karet.
Chtěl/a by jste změnit nastavení lokace databáze?
-
+ Your card database version is too old.
This can cause problems loading card information or images
@@ -3191,7 +3207,7 @@ Je možné to spravit spuštěním Oracle pro aktualizaci vaší databáze karet
Chcete změnit nastavení lokace databáze?
-
+ Your card database did not finish loading
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues with your cards.xml attached
@@ -3200,7 +3216,7 @@ Would you like to change your database location setting?
-
+ File Error loading your card database.
Would you like to change your database location setting?
@@ -3209,7 +3225,7 @@ Would you like to change your database location setting?
Chcete změnit nastavení lokace databáze?
-
+ Your card database was loaded but contains no cards.
Would you like to change your database location setting?
@@ -3218,7 +3234,7 @@ Would you like to change your database location setting?
Chcete změnit nastavení lokace databáze?
-
+ Unknown card database load status
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues
@@ -3227,59 +3243,59 @@ Would you like to change your database location setting?
-
-
-
+
+
+ ErrorChyba
-
+ The path to your deck directory is invalid. Would you like to go back and set the correct path?Cesta k adresáři s balíčky je neplatná. Chcete se vrátit a nastavit správnou?
-
+ The path to your card pictures directory is invalid. Would you like to go back and set the correct path?Cesta k adresáři s obrázky je neplatná. Chcete se vrátit a nastavit správnou?
-
+ SettingsNastavení
-
+ GeneralObecné
-
+ AppearanceVzhled
-
+ User InterfaceRozhraní
-
+ Card Sources
-
+ ChatChat
-
+ SoundZvuk
-
+ ShortcutsSkratky
@@ -3592,67 +3608,67 @@ You may have to manually download the new version.
DrawProbabilityWidget
-
+ Draw Probability
-
+ Probability of drawing
-
+ Card Name
-
+ Type
-
+ Subtype
-
+ Mana Value
-
+ At least
-
+ Exactly
-
+ card(s) having drawn at least
-
+ cards
-
+ Category
-
+ Qty
-
+ Odds (%)
@@ -4100,143 +4116,143 @@ You may have to manually download the new version.
GeneralSettingsPage
-
+ Reset all paths
-
+ All paths have been reset
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Choose pathVyberte cestu
-
+ Personal settingsOsobní nastavení
-
+ Language:Jazyk:
-
+ Paths (editing disabled in portable mode)
-
+ PathsCesty
-
+ How to help with translations
-
+ Decks directory:Adresář s balíčky:
-
+ Filters directory:
-
+ Replays directory:Adresář se záznamy her
-
+ Pictures directory:Adresář s obrázky:
-
+ Card database:Databáze karet:
-
+ Custom database directory:
-
+ Token database:Databáze tokenů:
-
+ Update channel
-
+ Check for client updates on startup
-
+ Check for card database updates on startup
-
+ Don't check
-
+ Prompt for update
-
+ Always update in the background
-
+ Check for card database updates every
-
+ days
-
+ Notify if a feature supported by the server is missing in my client
-
+ Automatically run Oracle when running a new version of CockatriceAutomaticky spustit Oracle při spouštění nové verze Cockatrice
-
+ Show tips on startupUkázat tip při spuštění
-
+ Last update check on %1 (%2 days ago)
@@ -4244,47 +4260,47 @@ You may have to manually download the new version.
GraveyardMenu
-
+ &Graveyard
-
+ &View graveyard
-
+ &Move graveyard to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &All players
-
+ &Hand
-
+ &Exile
-
+ Reveal random card to...
@@ -4292,88 +4308,88 @@ You may have to manually download the new version.
HandMenu
-
+ &Hand
-
+ &View hand
-
+ Sort hand by...
-
+ Name
-
+ Type
-
+ Mana Value
-
+ Take &mulligan (Choose hand size)
-
+ Take mulligan (Same hand size)
-
+ Take mulligan (Hand size - 1)
-
+ &Move hand to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &Graveyard
-
+ &Exile
-
+ &Reveal hand to...
-
-
+
+ All players
-
+ Reveal r&andom card to...
@@ -4381,52 +4397,52 @@ You may have to manually download the new version.
HomeWidget
-
+ Create New Deck
-
+ Browse Decks
-
+ Browse Card Database
-
+ Browse EDHRec
-
+ Browse Archidekt
-
+ View Replays
-
+ Quit
-
+ Connecting...
-
+ Connect
-
+ Play
@@ -4434,193 +4450,213 @@ You may have to manually download the new version.
LibraryMenu
-
+ &Library
-
+ &View library
-
+ View &top cards of library...
-
+ View bottom cards of library...
-
+ Reveal &library to...
-
+ Lend library to...
-
+ Reveal &top cards to...
-
+ &Top of library...
-
+ &Bottom of library...
-
+ &Always reveal top card
-
+ &Always look at top card
-
+ &Open deck in deck editor
-
+ &Draw card
-
+ D&raw cards...
-
+ &Undo last draw
-
+ Shuffle
-
+ &Play top card
-
+ Play top card &face down
-
+ Put top card on &bottom
-
+ Move top card to grave&yard
-
+ Move top card to e&xile
-
+ Move top cards to &graveyard...
-
+
+ Move top cards to graveyard face down...
+
+
+
+ Move top cards to &exile...
-
+
+ Move top cards to exile face down...
+
+
+
+ Put top cards on stack &until...
-
+ Shuffle top cards...
-
+ &Draw bottom card
-
+ D&raw bottom cards...
-
+ &Play bottom card
-
+ Play bottom card &face down
-
+ Move bottom card to grave&yard
-
+ Move bottom card to e&xile
-
+ Move bottom cards to &graveyard...
-
+
+ Move bottom cards to graveyard face down...
+
+
+
+ Move bottom cards to &exile...
-
+
+ Move bottom cards to exile face down...
+
+
+
+ Put bottom card on &top
-
+ Shuffle bottom cards...
-
-
+
+ &All players
-
+ Reveal top cards of library
-
+ Number of cards: (max. %1)
@@ -4712,18 +4748,8 @@ Will now login.
-
- Number of players
- Počet hráčů
-
-
-
- Please enter the number of players.
- Vložte počet hráčů.
-
-
-
-
+
+ Player %1Hráč %1
@@ -4826,8 +4852,8 @@ Will now login.
-
-
+
+ ErrorChyba
@@ -5231,144 +5257,144 @@ Lokální verze je %1, verze serveru je %2.
-
+ New Version
-
+ Congratulations on updating to Cockatrice %1!
Oracle will now launch to update your card database.
-
+ Cockatrice installed
-
+ Congratulations on installing Cockatrice %1!
Oracle will now launch to install the initial card database.
-
+ Card database
-
+ Cockatrice is unable to load the card database.
Do you want to update your card database now?
If unsure or first time user, choose "Yes"
-
-
+
+ Yes
-
-
+
+ No
-
+ Open settings
-
+ New sets found
-
+ %n new set(s) found in the card database
Set code(s): %1
Do you want to enable it/them?
-
+ View sets
-
+ Welcome
-
+ Hi! It seems like you're running this version of Cockatrice for the first time.
All the sets in the card database have been enabled.
Read more about changing the set order or disabling specific sets and consequent effects in the "Manage Sets" dialog.
-
-
+
+ Information
-
+ A card database update is already running.
-
+ Unable to run the card database updater:
-
+ Card database update running.
-
+ Failed to start. The file might be missing, or permissions might be incorrect.
-
+ The process crashed some time after starting successfully.
-
+ Timed out. The process took too long to respond. The last waitFor...() function timed out.
-
+ An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel.
-
+ An error occurred when attempting to read from the process. For example, the process may not be running.
-
+ Unknown error occurred.
-
+ The card database updater exited with an error:
%1
-
+ This server supports additional features that your client doesn't have.
This is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.
@@ -5376,54 +5402,54 @@ To update your client, go to Help -> Check for Updates.
-
-
-
-
-
+
+
+
+
+ Load sets/cards
-
+ Selected file cannot be found.
-
+ You can only import XML databases at this time.
-
+ The new sets/cards have been added successfully.
Cockatrice will now reload the card database.
-
+ Sets/cards failed to import.
-
-
-
+
+
+ Reset Password
-
+ Your password has been reset successfully, you can now log in using the new credentials.
-
+ Failed to reset user account password, please contact the server operator to reset your password.
-
+ Activation request received, please check your email for an activation token.
@@ -5474,7 +5500,7 @@ Cockatrice will now reload the card database.
ManaBaseWidget
-
+ Mana Base
@@ -5628,590 +5654,610 @@ Cockatrice will now reload the card database.
MessageLogWidget
-
+ from play
-
+ from their graveyard
-
+ from exile z exilnutých karet
-
+ from their hand
-
+ the top card of %1's library
-
+ the top card of their library
-
+ from the top of %1's library
-
+ from the top of their library
-
+ the bottom card of %1's library
-
+ the bottom card of their library
-
+ from the bottom of %1's library
-
+ from the bottom of their library
-
+ from %1's library
-
+ from their library
-
+ from sideboard ze sideboardu
-
+ from the stack ze stacku
-
+ from custom zone '%1'
-
+ %1 is now keeping the top card %2 revealed.
-
+ %1 is not revealing the top card %2 any longer.
-
+ %1 can now look at top card %2 at any time.
-
+ %1 no longer can look at top card %2 at any time.
-
+ %1 attaches %2 to %3's %4.
-
+ %1 has conceded the game.
-
+ %1 has unconceded the game.
-
+ %1 has restored connection to the game.
-
+ %1 has lost connection to the game.
-
+ %1 points from their %2 to themselves.
-
+ %1 points from their %2 to %3.
-
+ %1 points from %2's %3 to themselves.
-
+ %1 points from %2's %3 to %4.
-
+ %1 points from their %2 to their %3.
-
+ %1 points from their %2 to %3's %4.
-
+ %1 points from %2's %3 to their own %4.
-
+ %1 points from %2's %3 to %4's %5.
-
+ %1 creates a face down token.
-
+ %1 creates token: %2%3.
-
+ %1 has loaded a deck (%2).
-
+ %1 has loaded a deck with %2 sideboard cards (%3).
-
+ %1 destroys %2.
-
+ a cardkartu
-
+ %1 gives %2 control over %3.%1 předává kontrolu hráči %2 karty %3.
-
+ %1 puts %2 into play%3 face down.
-
+ %1 puts %2 into play%3.%1 dává kartu %2 %3 do hry.
-
+
+ %1 puts %2%3 into their graveyard face down.
+
+
+
+ %1 puts %2%3 into their graveyard.
+
+
+ %1 exiles %2%3 face down.
+
+ %1 exiles %2%3.%1 exiluje %2%3.
-
+ %1 moves %2%3 to their hand.
-
+ %1 puts %2%3 into their library.
-
+ %1 puts %2%3 onto the bottom of their library.
-
+ %1 puts %2%3 on top of their library.
-
+ %1 puts %2%3 into their library %4 cards from the top.
-
+ %1 moves %2%3 to sideboard.%1 přesouvá %2%3 do sideboardu.
-
+
+ %1 plays %2%3 face down.
+
+
+
+ %1 plays %2%3.%1 sesílá %2%3.
-
+
+ %1 moves %2%3 to custom zone '%4' face down.
+
+
+
+ %1 moves %2%3 to custom zone '%4'.
-
+ %1 tries to draw from an empty library
-
+ %1 draws %2 card(s).
-
+ %1 is looking at %2.
-
+ %1 is looking at the %4 %3 card(s) %2.top card for singular, top %3 cards for plural
-
+ bottom
-
+ top
-
+ %1 turns %2 face-down.
-
+ %1 turns %2 face-up.
-
+ The game has been closed.Hra byla ukončena.
-
+ The game has started.Hra začíná.
-
+ You are flooding the game. Please wait a couple of seconds.
-
+ %1 has joined the game.
-
+ %1 is now watching the game.%1 nyní sleduje hru.
-
+ You have been kicked out of the game.
-
+ %1 has left the game (%2).
-
+ %1 is not watching the game any more (%2).
-
+ %1 is not ready to start the game any more.
-
+ %1 shuffles their deck and draws a new hand of %2 card(s).
-
+ %1 shuffles their deck and draws a new hand.
-
+ You are watching a replay of game #%1.
-
+ %1 is ready to start the game.
-
+ cardsan unknown amount of cards
-
+ %1 card(s)a card for singular, %1 cards for plural
-
+ %1 lends %2 to %3.
-
+ %1 reveals %2 to %3.
-
+ %1 reveals %2.
-
+ %1 randomly reveals %2%3 to %4.
-
+ %1 randomly reveals %2%3.
-
+ %1 peeks at face down card #%2.
-
+ %1 peeks at face down card #%2: %3.
-
+ %1 reveals %2%3 to %4.
-
+ %1 reveals %2%3.
-
+ %1 reversed turn order, now it's %2.
-
+ reversed
-
+ normal
-
+ Heads
-
+ Tails
-
+ %1 flipped a coin. It landed as %2.
-
+ %1 rolls a %2 with a %3-sided die.
-
+ %1 flips %2 coins. There are %3 heads and %4 tails.
-
+ %1 rolls a %2-sided dice %3 times: %4.
-
+ %1's turn.
-
+ %1 sets annotation of %2 to %3.
-
+ %1 places %2 "%3" counter(s) on %4 (now %5).
-
+ %1 removes %2 "%3" counter(s) from %4 (now %5).
-
+ %1 sets counter %2 to %3 (%4%5).
-
+ %1 sets %2 to not untap normally.
-
+ %1 sets %2 to untap normally.
-
+ %1 removes the PT of %2.
-
+ %1 changes the PT of %2 from nothing to %4.
-
+ %1 changes the PT of %2 from %3 to %4.
-
+ %1 has locked their sideboard.
-
+ %1 has unlocked their sideboard.
-
+ %1 taps their permanents.
-
+ %1 untaps their permanents.
-
+ %1 taps %2.
-
+ %1 untaps %2.
-
+ %1 shuffles %2.
-
+ %1 shuffles the bottom %3 cards of %2.
-
+ %1 shuffles the top %3 cards of %2.
-
+ %1 shuffles cards %3 - %4 of %2.
-
+ %1 unattaches %2.
-
+ %1 undoes their last draw.
-
+ %1 undoes their last draw (%2).
@@ -6219,110 +6265,110 @@ Cockatrice will now reload the card database.
MessagesSettingsPage
-
+ Word1 Word2 Word3
-
+ Add New Message
-
+ Edit Message
-
+ Remove Message
-
+ Add messagePřidat zprávu
-
-
+
+ Message:Zpráva:
-
+ Edit message
-
+ Chat settings
-
+ Custom alert words
-
+ Enable chat mentions
-
+ Enable mention completer
-
+ In-game message macros
-
+ How to use in-game message macros
-
+ Ignore chat room messages sent by unregistered users
-
+ Ignore private messages sent by unregistered users
-
-
+
+ Invert text color
-
+ Enable desktop notifications for private messages
-
+ Enable desktop notification for mentions
-
+ Enable room message history on join
-
-
+
+ (Color is hexadecimal)
-
+ Separate words with a space, alphanumeric characters only
@@ -6335,32 +6381,37 @@ Cockatrice will now reload the card database.
-
+ &Top of library in random order
-
+ X cards from the top of library...
-
+ &Bottom of library in random order
-
+
+ T&able
+
+
+
+ &Hand
-
+ &Graveyard
-
+ &Exile
@@ -6502,57 +6553,57 @@ Cockatrice will now reload the card database.
PhasesToolbar
-
+ Untap stepOdtapovací fáze
-
+ Upkeep stepUpkeep
-
+ Draw stepLízací fáze
-
+ First main phasePrvní hlavní fáze
-
+ Beginning of combat stepZačátek bojové fáze
-
+ Declare attackers stepOznámení útočníků
-
+ Declare blockers stepOznámení blokujících
-
+ Combat damage stepUdělení bojového zranění
-
+ End of combat stepKonec bojové fáze
-
+ Second main phaseDruhá hlavní fáze
-
+ End of turn stepKonec kola
@@ -6569,134 +6620,138 @@ Cockatrice will now reload the card database.
PlayerActions
-
+ View top cards of library
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Number of cards: (max. %1)
-
+ View bottom cards of library
-
+ Shuffle top cards of library
-
+ Shuffle bottom cards of library
-
+ Draw hand
-
+ 0 and lower are in comparison to current hand size
-
+ Draw cards
+
+
+
+
+
+ grave
+
+
- Move top cards to grave
+
+
+
+ exile
-
- Move top cards to exile
+
+ Move top cards to %1
-
- Move bottom cards to grave
+
+ Move bottom cards to %1
-
- Move bottom cards to exile
-
-
-
-
+ Draw bottom cards
-
-
+
+ C&reate another %1 token
-
+ Create tokens
-
-
+
+ Number:
-
+ Place card X cards from top of library
-
+ Which position should this card be placed:
-
+ (max. %1)
-
+ Change power/toughness
-
+ Change stats to:
-
+ Set annotation
-
+ Please enter the new annotation:
-
+ Set counters
@@ -6704,48 +6759,65 @@ Cockatrice will now reload the card database.
PlayerMenu
-
+ Player "%1"
-
+ &Counters
+
+
+ PrintingDisabledInfoWidget
-
- S&ay
+
+ The Printing Selector is disabled because you have currently enabled the setting to override all selected printings with personal set preferences.
+
+This setting means you'll only see the default printing for each card, instead of being able to select a printing, and will not see the printings other people have selected.
+
+
+
+
+
+
+ Enable printings againPrintingSelector
-
+ Display Navigation Buttons
+
+
+ Printing Selector
+
+ PrintingSelectorCardOverlayWidget
-
+ Preference
-
+ Pin Printing
-
+ Unpin Printing
-
+ Show Related cards
@@ -6794,17 +6866,25 @@ Cockatrice will now reload the card database.
-
-
+
+ Descending
-
+ Ascending
+
+ PrintingSelectorPlaceholderWidget
+
+
+ Select a card to view its available printings
+
+
+PtMenu
@@ -6943,6 +7023,33 @@ Cockatrice will now reload the card database.
A .cod version of this deck already exists. Overwrite it?
+
+
+ Enabling this feature will disable the use of the Printing Selector.
+
+You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
+
+You will have to use the Set Manager, available through Card Database -> Manage Sets.
+
+Are you sure you would like to enable this feature?
+
+
+
+
+ Disabling this feature will enable the Printing Selector.
+
+You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
+
+You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
+
+Are you sure you would like to disable this feature?
+
+
+
+
+ Confirm Change
+
+ QPlatformTheme
@@ -7091,37 +7198,37 @@ Cockatrice will now reload the card database.
RfgMenu
-
+ &Exile
-
+ &View exile
-
+ &Move exile to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &Hand
-
+ &Graveyard
@@ -7164,6 +7271,14 @@ Cockatrice will now reload the card database.
Hry
+
+ SayMenu
+
+
+ S&ay
+
+
+SequenceEdit
@@ -7228,53 +7343,53 @@ Cockatrice will now reload the card database.
ShortcutSettingsPage
-
-
+
+ Restore all default shortcuts
-
+ Do you really want to restore all default shortcuts?
-
+ Clear all default shortcuts
-
+ Do you really want to clear all shortcuts?
-
+ Section:
-
+ Action:
-
+ Shortcut:
-
+ How to set custom shortcuts
-
+ Clear all shortcuts
-
+ Search by shortcut name
@@ -7341,27 +7456,27 @@ Please check your shortcut settings!
SoundSettingsPage
-
+ Enable &sounds
-
+ Current sounds theme:
-
+ Test system sound engine
-
+ Sound settings
-
+ Master volume
@@ -7577,59 +7692,123 @@ Please check your shortcut settings!
TabArchidekt
-
-
+
+
+ Desc.
-
- Asc.
+
+
+ AND
-
-
- Any Bracket
+
+
+ Require ALL selected colors
-
- Deck name contains...
+
+
+ Deck name...
-
- Owner name contains...
+
+
+ Owner...
+
+
+
+
+
+ Packages
+
+
+
+
+
+ Advanced Filters
- Disabled
+ Bracket:
-
+
+
+ Any
+
+
+
+
+
+ Contains card...
+
+
+
+
+
+ Commander...
+
+
+
+
+
+ Tag...
+
+
+
+
+
+ Deck Size
+
+
+
+
+ Cards:
+
+
+
+
+
+ Asc.
+
+
+
+
+ Sort by:
+
+
+
+
+ Filter by:
+
+
+
+
+ Display Settings
+
+
+
+
+ Search
-
+
+ Formats
-
- Min. # of Cards:
-
-
-
-
- Page:
-
-
-
-
+ Archidekt:
@@ -7637,60 +7816,52 @@ Please check your shortcut settings!
TabDeckEditor
-
+ Card Info
-
+ Deck
-
+ Filters
-
+ &View
-
+ Card Database
-
+ Printing
-
-
-
-
-
+ Visible
-
-
-
-
-
+ Floating
-
+ Reset layout
-
+ Deck: %1
@@ -7698,61 +7869,55 @@ Please check your shortcut settings!
TabDeckEditorVisual
-
+ Visual Deck: %1
-
+ &Visual Deck Editor
-
-
+
+ Card Info
-
-
+
+ Deck
-
-
+
+ Filters
-
+ &View
-
+ Printing
-
-
-
-
+ Visible
-
-
-
-
+ Floating
-
+ Reset layout
@@ -7817,7 +7982,7 @@ Please check your shortcut settings!
-
+ New folderNová složka
@@ -7899,18 +8064,18 @@ Prosím vložte jméno:
-
+ Delete remote decks
-
+ Are you sure you want to delete the selected decks?
-
+ Name of new folder:Název nové složky:
@@ -7928,12 +8093,12 @@ Prosím vložte jméno:
-
+ Error
-
+ Could not open deck at %1
@@ -7982,197 +8147,191 @@ Prosím vložte jméno:
TabGame
-
-
-
+
+
+ Replay
-
-
+
+ Game
-
-
+
+ Player List
-
-
+
+ Card Info
-
-
+
+ Messages
-
-
+
+ Replay Timeline
-
+ &Phases&Fáze
-
+ &Game&Hra
-
+ Next &phaseDalší &fáze
-
+ Next phase with &action
-
+ Next &turnDalší &kolo
-
+ Reverse turn order
-
+ &Remove all local arrows&Odstranit všechny lokální šipky
-
+ Rotate View Cl&ockwise
-
+ Rotate View Co&unterclockwise
-
+ Game &information
-
+ Un&concede
-
-
-
+
+
+ &Concede&Ukončit hru
-
+ &Leave game&Opustit hru
-
+ C&lose replay
-
+ &Focus Chat
-
+ &Say:&Chat:
-
+ Selected cards
-
+ &View
-
-
-
-
+ Visible
-
-
-
-
+ Floating
-
+ Reset layout
-
+ ConcedeUkončit hru
-
+ Are you sure you want to concede this game?Opravdu chcete ukončit tuto hru?
-
+ Unconcede
-
+ You have already conceded. Do you want to return to this game?
-
+ Leave gameOpustit hru
-
+ Are you sure you want to leave this game?Opravdu chcete opustit tuto hru?
-
+ A player has joined game #%1
-
+ %1 has joined the game
-
+ You have been kicked out of the game.
@@ -9266,142 +9425,152 @@ Please refrain from engaging in this activity or further actions may be taken ag
UserInterfaceSettingsPage
-
+ General interface settingsObecné
-
+ &Double-click cards to play them (instead of single-click)&Pro zahraní karty je třeba dvojklik
-
+ &Clicking plays all selected cards (instead of just the clicked card)
-
+ &Play all nonlands onto the stack (not the battlefield) by default
-
+ Do not delete &arrows inside of subphases
-
+ Close card view window when last card is removed
-
+ Auto focus search bar when card view window is opened
-
+ Annotate card text on tokens
-
-
- Use tear-off menus, allowing right click menus to persist on screen
-
-
-
-
- Notifications settings
-
-
-
-
- Enable notifications in taskbar
-
-
-
-
- Notify in the taskbar for game events while you are spectating
-
-
-
-
- Notify in the taskbar when users in your buddy list connect
-
-
-
-
- Animation settings
- Animace
-
-
-
- &Tap/untap animation
- &Animace tapnutí/odtapnutí
-
-
-
- Deck editor/storage settings
-
-
-
-
- Open deck in new tab by default
-
-
- Use visual deck storage in game lobby
+ Show selection counter during drag selection
- Use selection animation for Visual Deck Storage
+ Show total selection counter
+
+
+
+
+ Use tear-off menus, allowing right click menus to persist on screen
- When adding a tag in the visual deck storage to a .txt deck:
+ Notifications settings
+
+
+
+
+ Enable notifications in taskbar
- do nothing
+ Notify in the taskbar for game events while you are spectating
+
+
+
+
+ Notify in the taskbar when users in your buddy list connect
- ask to convert to .cod
-
+ Animation settings
+ Animace
+
+
+
+ &Tap/untap animation
+ &Animace tapnutí/odtapnutí
- always convert to .cod
+ Deck editor/storage settings
- Default deck editor type
+ Open deck in new tab by default
- Classic Deck Editor
+ Use visual deck storage in game lobby
- Visual Deck Editor
-
-
-
-
- Replay settings
+ Use selection animation for Visual Deck Storage
+ When adding a tag in the visual deck storage to a .txt deck:
+
+
+
+
+ do nothing
+
+
+
+
+ ask to convert to .cod
+
+
+
+
+ always convert to .cod
+
+
+
+
+ Default deck editor type
+
+
+
+
+ Classic Deck Editor
+
+
+
+
+ Visual Deck Editor
+
+
+
+
+ Replay settings
+
+
+
+ Buffer time for backwards skip via shortcut:
@@ -9465,23 +9634,24 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayColorFilterWidget
-
- Mode: Exact Match
+
+ Exact match
+
+
+
+
+ Includes
- Mode: Includes
+ Include / Exclude
+ Mode: Includes
-
- Mode: Include/Exclude
-
-
-
-
- Filter mode (AND/OR/NOT conjunctions of filters)
+
+ How selected and unselected colors are combined in the filter
@@ -9508,25 +9678,108 @@ Please refrain from engaging in this activity or further actions may be taken ag
+
+ VisualDatabaseDisplayFilterToolbarWidget
+
+
+ Sort by
+
+
+
+
+ Filter by
+
+
+
+
+ Save and load filters
+
+
+
+
+ Filter by exact card name
+
+
+
+
+ Filter by card main-type
+
+
+
+
+ Filter by card sub-type
+
+
+
+
+ Filter by set
+
+
+
+
+ Filter by format legality
+
+
+
+
+ Save/Load
+
+
+
+
+ Name
+
+
+
+
+ Main Type
+
+
+
+
+ Sub Type
+
+
+
+
+ Sets
+
+
+
+
+ Formats
+
+
+VisualDatabaseDisplayFormatLegalityFilterWidget
-
+
+ Show formats with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display formats with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9534,22 +9787,32 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayMainTypeFilterWidget
-
+
+ Show main types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card main-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9585,7 +9848,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayRecentSetFilterSettingsWidget
-
+ Filter to most recent sets
@@ -9593,19 +9856,19 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplaySetFilterWidget
-
+ Search sets...
-
-
+
+ Mode: Exact Match
-
-
+
+ Mode: Includes
@@ -9613,27 +9876,37 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplaySubTypeFilterWidget
-
+ Search subtypes...
-
+
+ Show sub types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card sub-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9647,52 +9920,22 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Visual
-
+ Loading database ...
-
+ Clear all filters
-
- Sort by:
-
-
-
-
- Filter by:
-
-
-
-
- Save and load filters
-
-
-
-
- Filter by exact card name
-
-
-
-
- Filter by card sub-type
-
-
-
-
- Filter by set
-
-
-
-
+ Table
@@ -9700,56 +9943,64 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckDisplayOptionsWidget
-
+ Group by:
-
+ Change how cards are divided into categories/groups.
-
+ Sort by:
-
+ Click and drag to change the sort order within the groups
-
+ Configure how cards are sorted within their groups
-
-
+
+ Toggle Layout: Overlap
-
+ Change how cards are displayed within zones (i.e. overlapped or fully visible.)
-
+ Toggle Layout: Flat
+
+ VisualDeckEditorPlaceholderWidget
+
+
+ Add cards using the search bar or database tab to have them appear here
+
+
+VisualDeckEditorSampleHandWidget
-
+ Draw a new sample hand
-
+ Sample hand size
@@ -9757,17 +10008,17 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckEditorWidget
-
+ Type a card name here for suggestions from the database...
-
+ Quick search and add card
-
+ Search for closest match in the database (with auto-suggestions) and add preferred printing to the deck on pressing enter
@@ -9783,47 +10034,52 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckStorageQuickSettingsWidget
-
+ Show Folders
-
+ Show Tag Filter
-
+
+ Show Color Identity
+
+
+
+ Show Tags On Deck Previews
-
+ Show Banner Card Selection Option
-
+ Draw unused Color Identities
-
+ Unused Color Identities Opacity
-
+ Deck tooltip:
-
+ None
-
+ Filepath
@@ -9924,133 +10180,133 @@ Please refrain from engaging in this activity or further actions may be taken ag
WndSets
-
+ Move selected set to the top
-
+ Move selected set up
-
+ Move selected set down
-
+ Move selected set to the bottom
-
+ Search by set name, code, or type
-
+ Default order
-
+ Restore original art priority order
-
+ Enable all sets
-
+ Disable all sets
-
+ Enable selected set(s)
-
+ Disable selected set(s)
-
+ Deck Editor
-
+ Use CTRL+A to select all sets in the view.
-
+ Only cards in enabled sets will appear in the card list of the deck editor.
-
+ Image priority is decided in the following order:
-
+ first the CUSTOM Folder (%1), then the Enabled Sets in this dialog (Top to Bottom)%1 is a link to the wiki
-
+ Include cards rebalanced for Alchemy [requires restart]
-
+ Card Art
-
+ How to use custom card art
-
+ Hints
-
+ Note
-
+ Sorting by column allows you to find a set while not changing set priority.
-
+ To enable ordering again, click the column header until this message disappears.
-
+ Use the current sorting as the set priority instead
-
+ Sorts the set priority using the same column
-
+ Manage sets
@@ -10058,72 +10314,72 @@ Please refrain from engaging in this activity or further actions may be taken ag
ZoneViewWidget
-
+ Search by card name (or search expressions)
-
+ Ungrouped
-
+ Group by Type
-
+ Group by Mana Value
-
+ Group by Color
-
+ Unsorted
-
+ Sort by Name
-
+ Sort by Type
-
+ Sort by Mana Cost
-
+ Sort by Colors
-
+ Sort by P/T
-
+ Sort by Set
-
+ shuffle when closingzamíchat po zavření
-
+ pile view
@@ -10158,7 +10414,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Deck Editor
@@ -10239,7 +10495,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Replays
@@ -10391,7 +10647,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Reset Layout
@@ -10812,7 +11068,8 @@ Please refrain from engaging in this activity or further actions may be taken ag
- Toggle Untap
+ Toggle Skip Untapping
+ Toggle Untap
@@ -10832,98 +11089,102 @@ Please refrain from engaging in this activity or further actions may be taken ag
- Attach Card...
+ Play Card, Face Down
- Unattach Card
+ Attach Card...
- Clone Card
+ Unattach Card
- Create Token...
+ Clone Card
- Create All Related Tokens
+ Create Token...
- Create Another Token
+ Create All Related Tokens
- Set Annotation...
+ Create Another Token
- Select All Cards in Zone
+ Set Annotation...
- Select All Cards in Row
+ Select All Cards in Zone
- Select All Cards in Column
+ Select All Cards in Row
- Reveal Selected Cards to All Players
+ Select All Cards in Column
-
- Bottom of Library
+ Reveal Selected Cards to All Players
+
+ Bottom of Library
+
+
+
+
-
-
+
+ ExileExil
-
+
-
+ GraveyardHřbitov
-
+ HandRuka
-
-
+
+ Top of Library
-
-
+ Battlefield, Face Down
@@ -10959,234 +11220,246 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Stack
-
+ Graveyard (Multiple)
-
-
+
+
+ Graveyard (Multiple), Face Down
+
+
+
+
+ Exile (Multiple)
-
+
+
+ Exile (Multiple), Face Down
+
+
+
+ Stack Until Found
-
+ Draw Bottom Card
-
+ Draw Multiple Cards from Bottom...
-
+ Draw Arrow...
-
+ Remove Local Arrows
-
+ Leave Game
-
+ ConcedeVzdát hru
-
+ Roll Dice...
-
+ Shuffle Library
-
+ Shuffle Top Cards of Library
-
+ Shuffle Bottom Cards of Library
-
+ MulliganMulligan
-
+ Mulligan (Same hand size)
-
+ Mulligan (Hand size - 1)
-
+ Draw a Card
-
+ Draw Multiple Cards...
-
+ Undo Draw
-
+ Always Reveal Top Card
-
+ Always Look At Top Card
-
+ Sort Hand by Name
-
+ Sort Hand by Type
-
+ Sort Hand by Mana Value
-
+ Reveal Hand to All Players
-
+ Reveal Random Card to All Players
-
+ Rotate View Clockwise
-
+ Rotate View Counterclockwise
-
+ Unfocus Text Box
-
+ Focus Chat
-
+ Clear Chat
-
+ Refresh
-
+ Skip Forward
-
+ Skip Backward
-
+ Skip Forward by a lot
-
+ Skip Backward by a lot
-
+ Play/Pause
-
+ Toggle Fast Forward
-
+ Home
-
+ Visual Deck Storage
-
+ Deck Storage
-
+ Server
-
+ Account
-
+ Administration
-
+ Logs
diff --git a/cockatrice/translations/cockatrice_de.ts b/cockatrice/translations/cockatrice_de.ts
index ed1a88be8..564f39e25 100644
--- a/cockatrice/translations/cockatrice_de.ts
+++ b/cockatrice/translations/cockatrice_de.ts
@@ -23,12 +23,12 @@
AbstractDlgDeckTextEdit
-
+ &Refresh&aktualisieren
-
+ Parse Set Name and Number (if available)Setnamen und -Nummer parsen (falls verfügbar)
@@ -36,62 +36,62 @@
AbstractTabDeckEditor
-
+ Open in new tabIn neuem Reiter öffnen
-
+ Are you sure?Sind Sie sicher?
-
+ The decklist has been modified.
Do you want to save the changes?Die Deckliste wurde bearbeitet.
Änderungen speichern?
-
-
-
-
-
-
+
+
+
+
+
+ ErrorFehler
-
+ Could not open deck at %1Deck an Stelle %1 konnte nicht geöffnet werden
-
+ Could not save remote deckRemote-Deck konnte nicht gespeichert werden
-
-
+
+ The deck could not be saved.
Please check that the directory is writable and try again.Das Deck konnte nicht abgespeichert werden.
Bitte überprüfen Sie, ob das Verzeichnis bearbeitet werden kann und versuchen Sie es erneut.
-
+ Save deckDeck speichern
-
+ The deck could not be saved.Das Deck konnte nicht abgespeichert werden.
-
+ There are no cards in your deck to be exportedEs gibt keine Karten in Ihrem Deck zum Exportieren
@@ -133,202 +133,168 @@ Bitte überprüfen Sie, ob das Verzeichnis bearbeitet werden kann und versuchen
AppearanceSettingsPage
-
+ secondsSekunden
-
+ ErrorFehler
-
+ Could not create themes directory at '%1'.Das Themeverzeichnis '%1' konnte nicht erstellt werden.
-
- Enabling this feature will disable the use of the Printing Selector.
-
-You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
-
-You will have to use the Set Manager, available through Card Database -> Manage Sets.
-
-Are you sure you would like to enable this feature?
- Diese Funktion aktivieren wird die Nutzung der Druckauswahl deaktivieren.
-
-Es wird ihnen nicht möglich sein ihre Druckeinstellungen auf einer Per-Deck Basis zu verwalten, oder die Drucke, die andere Personen für ihre Decks ausgewählt haben, zu sehen.
-
-Sie werden den Set-Manager verwenden müssen, der über Kartendatenbank -> Sets verwalten verfügbar ist.
-
-Sind sie sicher, dass diese Funktion aktiviert werden soll?
-
-
-
- Disabling this feature will enable the Printing Selector.
-
-You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
-
-You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
-
-Are you sure you would like to disable this feature?
- Diese Funktion deaktivieren wird die Nutzung der Druckauswahl aktivieren.
-
-Es wird ihnen nun möglich sein ihre Druckeinstellungen auf einer Per-Deck Basis im Deck-Editor zu verwalten und zu konfigurieren, welcher Druck standardmäßig in ein Deck hinzugefügt wird, indem sie es anheften in der Druckauswahl
-
-Sie können auch den Set-Manager verwenden, um selbstständig die Sortierungsreihenfolge für Drucke in der Druckauswahl festzulegen (andere Sortierungsoptionen wie alphabetisch oder Veröffentlichkeitsdatum sind verfügbar).
-
-Sind sie sicher, dass diese Funktion deaktiviert werden soll?
-
-
-
- Confirm Change
- Änderung bestätigen
-
-
-
+ Theme settingsDarstellungseinstellungen
-
+ Current theme:Aktuelles Theme:
-
+ Open themes folderÖffne Themeverzeichnis
-
+ Home tab background source:Startseitenhintergrund-Quelle:
-
+ Home tab background shuffle frequency:Startseitenhintergrund Wechselfrequenz:
-
+ DisabledDeaktiviert
-
+
+ Display card name of background in bottom right:
+ Kartenname des Hintergrunds unten rechts anzeigen:
+
+
+ Menu settingsEinstellungsmenü
-
+ Show keyboard shortcuts in right-click menusTastatur-Kürzel anzeigen bei Rechtsklickmenü
-
+ Show game filter toolbar above list in room tabSpiel-Filter Symbolleiste über der Liste im Raum-Tab anzeigen
-
+ Card renderingKartendarstellung
-
+ Display card names on cards having a pictureKartennamen auch bei Karten mit Bildern darstellen
-
+ Auto-Rotate cards with sideways layoutAutomatisches Drehen von Karten mit Seitwärts-Ausrichtung
-
+ Override all card art with personal set preference (Pre-ProviderID change behavior)Überschreiben aller Kartenbilder mit persönlichen Set-Präferenzen (Vor-AnbieterID Wechselverhalten)
-
+ Bump sets that the deck contains cards from to the top in the printing selectorPriorisieren von Sets, in welchen Karten des ausgewählten Decks vorhanden sind, nach oben in der Druckauswahl
-
+ Scale cards on mouse overKarten beim Darüberfahren mit der Maus vergrößern
-
+ Use rounded card cornersAbgerundete Kartenecken verwenden
-
+ Minimum overlap percentage of cards on the stack and in vertical handMinimaler Überschneidungsanteil der Karten auf dem Stapel und in der vertikalen Hand
-
+ Maximum initial height for card view window:Maximale Starthöhe für das Kartenansichtsfenster
-
-
+
+ rowsReihen
-
+ Maximum expanded height for card view window:Maximale ausgeklappte Höhe für das Kartenansichtsfenster:
-
+ Card countersKartenzähler
-
+ Counter %1Zähler %1
-
+ Hand layoutHanddarstellung
-
+ Display hand horizontally (wastes space)Hand horizontal anzeigen (verschwendet Platz)
-
+ Enable left justificationLinksbündige Ausrichtung aktivieren
-
+ Table grid layoutSpielfeldraster
-
+ Invert vertical coordinateVertikale Koordinate umkehren
-
+ Minimum player count for multi-column layout:Mindestspieleranzahl für mehrspaltige Anordnung:
-
+ Maximum font size for information displayed on cards:Maximale Schriftgröße für die Anzeige von Informationen auf Karten:
@@ -336,7 +302,12 @@ Sind sie sicher, dass diese Funktion deaktiviert werden soll?
ArchidektApiResponseDeckDisplayWidget
-
+
+ Back to results
+ Zurück zu den Ergebnissen
+
+
+ Open Deck in Deck EditorDeck im Deck-Editor öffnen
@@ -656,22 +627,22 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
CardInfoPictureWidget
-
+ View related cardsZugehörige Karten ansehen
-
+ Add card to deckKarte zum Deck hinzufügen
-
+ MainboardMainboard
-
+ SideboardSideboard
@@ -707,124 +678,124 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
CardMenu
-
+ Re&veal to...Zeigen an....
-
+ &All players&Alle Spieler
-
+ View related cardsVerwandte Karten ansehen
-
+ Token: Spielstein:
-
+ All tokensAlle Spielsteine
-
+ &Select All&Alles auswählen
-
+ S&elect RowReihe auswählen
-
+ S&elect ColumnSpalte auswählen
-
+ &Play&Spielen
-
+ &Hide&Verstecken
-
+ Play &Face DownVerdeckt ausspielen
-
+ &Tap / UntapTurn sideways or back again&Tappen/ Enttappen
-
- Toggle &normal untapping
- Normales Enttapen umschalten
+
+ Skip &untapping
+ Enttappen überspringen
-
+ T&urn OverTurn face up/face downUmdrehen
-
+ &Peek at card face%Kartenvorderseite ansehen
-
+ &Clone&Kopieren
-
+ Attac&h to card...An Karte anhängen
-
+ Unattac&hLösen
-
+ &Draw arrow...&Pfeil zeichnen
-
+ &Set annotation...&Anmerkung setzen
-
+ Ca&rd countersKartenzähler
-
+ &Add counter (%1)&Zähler hinzufügen (%1)
-
+ &Remove counter (%1)&Zähler entfernen (%1)
-
+ &Set counters (%1)...&Zähler setzen (%1)...
@@ -840,133 +811,133 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
CardZoneLogic
-
+ their handnominativeihrer Hand
-
+ %1's handnominative%1's Hand
-
+ their librarylook at zoneihrer Bibliothek
-
+ %1's librarylook at zone%1's Bibliothek
-
+ of their librarytop cards of zone,von ihrer Bibliothek
-
+ of %1's librarytop cards of zonevon %1's Bibliothek
-
+ their libraryreveal zoneihrer Bibliothek
-
+ %1's libraryreveal zone%1's Bibliothek
-
+ their libraryshuffleihrer Bibliothek
-
+ %1's libraryshuffle%1's Bibliothek
-
-
- their library
- nominative
- ihrer Bibliothek
-
-
-
- %1's library
- nominative
- %1's Bibliothek
-
+ their library
+ nominative
+ ihrer Bibliothek
+
+
+
+ %1's library
+ nominative
+ %1's Bibliothek
+
+
+ their graveyardnominativeihres Friedhofs
-
+ %1's graveyardnominative%1's Friedhof
-
+ their exilenominativeihres Exils
-
+ %1's exilenominative%1's Exil
-
-
- their sideboard
- look at zone
- ihres Nebendecks
-
-
-
- %1's sideboard
- look at zone
- %1's Nebendeck
- their sideboard
- nominative
+ look at zoneihres Nebendecks%1's sideboard
+ look at zone
+ %1's Nebendeck
+
+
+
+ their sideboard
+ nominative
+ ihres Nebendecks
+
+
+
+ %1's sideboardnominative%1's Nebendeck
-
+ their custom zone '%1'nominativeihrer individuellen Zone '%1'
-
+ %1's custom zone '%2'nominative%1's individuelle Zone '%2'
@@ -1028,7 +999,7 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckEditorCardDatabaseDockWidget
-
+ Card DatabaseKartendatenbank
@@ -1036,7 +1007,7 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckEditorCardInfoDockWidget
-
+ Card InfoKarteninformation
@@ -1059,32 +1030,32 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
Zum Sideboard hinzufügen
-
+ Select PrintingAuswahl der Auflage
-
+ Show on EDHRec (Commander)Auf EDHRec ansehen (Als Commander)
-
+ Show on EDHRec (Card)Auf EDHRec ansehen (Als Karte)
-
+ Show Related cardsZeige ähnliche Karten
-
+ Add card to &maindeckKarte zum &Hauptdeck hinzufügen
-
+ Add card to &sideboardKarte zum &Sideboard hinzufügen
@@ -1092,32 +1063,32 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckEditorDeckDockWidget
-
+ Loading Database...Datenbank wird geladen...
-
+ Banner CardBannerkarte
-
+ Main TypeHaupttyp
-
+ Mana CostManakosten
-
+ ColorsFarben
-
+ Select PrintingAuswahl der Auflage
@@ -1190,17 +1161,17 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckEditorFilterDockWidget
-
+ FiltersFilter
-
+ &Clear all filters&Alle Filter entfernen
-
+ Delete selectedAuswahl löschen
@@ -1323,7 +1294,7 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckEditorPrintingSelectorDockWidget
-
+ Printing SelectorAuflagenauswahl
@@ -1331,166 +1302,166 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckEditorSettingsPage
-
-
+
+ Update SpoilersSpoiler aktualisieren
-
-
+
+ SuccessErfolgreich
-
+ Download URLs have been reset.Download-URLs wurden zurückgesetzt.
-
+ Downloaded card pictures have been reset.Heruntergeladene Kartenbilder wurden zurückgesetzt.
-
+ ErrorFehler
-
+ One or more downloaded card pictures could not be cleared.Eines oder mehrere Kartenbilder konnten nicht gelöscht werden.
-
+ Add URLURL hinzufügen
-
-
+
+ URL:URL
-
-
+
+ Edit URLURL bearbeiten
-
+ Network Cache Size:Größe des Netzwerkzwischenspeichers:
-
+ Redirect Cache TTL:Umleitungszwischenspeicher TTL:
-
+ How long cached redirects for urls are valid for.Wie lange gespeicherte Umleitungen für URLS gültig sind.
-
+ Picture Cache Size:Größe des Bilderzwischenspeichers:
-
+ Add New URLNeue URL hinzufügen
-
+ Remove URLURL entfernen
-
+ Day(s)Tag(e)
-
+ Updating...Aktualisiere...
-
+ Choose pathPfad auswählen
-
+ URL Download PriorityURL Downloadpriorität
-
+ SpoilersSpoiler
-
+ Download Spoilers AutomaticallyLade Spoiler automatisch herunter
-
+ Spoiler Location:Spoiler Verzeichnis:
-
+ Last ChangeLetzte Änderung
-
+ Spoilers download automatically on launchSpoiler werden beim Start automatisch heruntergeladen
-
+ Press the button to manually update without relaunchingDrücke den Knopf um manuell zu aktualisieren ohne neu zu starten
-
+ Do not close settings until manual update is completeSchließen Sie die Einstellungen nicht solange die manuelle Aktualisierung nicht abgeschlossen ist.
-
+ Download card pictures on the flyKartenbilder dynamisch herunterladen
-
+ How to add a custom URLWie eine benutzerdefinierte URL hinzugefügt wird
-
+ Delete Downloaded ImagesHeruntergeladene Bilder löschen
-
+ Reset Download URLsDownload-URLs zurücksetzen
-
+ On-disk cache for downloaded picturesFestplatten-Cache für heruntergeladene Bilder
-
+ In-memory cache for pictures not currently on screenArbeitsspeicher-Cache für Bilder die gerade nicht angezeigt werden
@@ -1498,32 +1469,32 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckListHistoryManagerWidget
-
+ UndoRückgängig machen
-
+ RedoWiederholen
-
+ Undo/Redo historyRückgängig machen/Wiederholen Verlauf
-
+ Click on an entry to revert to that point in the history.Einen Eintrag anklicken um zu diesem Zeitpunkt im Verlauf zurückzukehren
-
+ [redo] [wiederholen]
-
+ [undo] [rückgängig machen]
@@ -1531,27 +1502,27 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckListModel
-
+ CountAnzahl
-
+ SetFestlegen
-
+ NumberNummer
-
+ Provider IDID des Anbieters
-
+ CardKarte
@@ -1559,12 +1530,12 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckLoader
-
+ Common deck formats (%1)Standarddeckformate (%1)
-
+ All files (*.*)Alle Dateien (*.*)
@@ -1661,94 +1632,94 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
DeckPreviewWidget
-
+ Banner CardBannerkarte
-
+ Open in deck editorIm Deckeditor öffnen
-
+ Edit TagsTags bearbeiten
-
+ Rename DeckDeck umbenennen
-
+ Save Deck to ClipboardDeck in die Zwischenablage speichern
-
+ AnnotatedKommentiert
-
+ Annotated (No set info)Komentiert (keine Setinformationen)
-
+ Not AnnotatedNicht kommentiert
-
+ Not Annotated (No set info)Nicht kommentiert (keine Setinformationen)
-
+ Rename FileDatei umbenennen
-
+ Delete FileDatei löschen
-
+ Set Banner CardBannerkarte setzen
-
-
+
+ New name:Neuer Name:
-
-
+
+ ErrorFehler
-
+ Rename failedUmbenennen fehlgeschlagen
-
+ Delete fileDatei löschen
-
+ Are you sure you want to delete the selected file?Sind Sie sicher, dass die ausgewählte Datei gelöscht werden soll?
-
+ Delete failedLöschen fehlgeschlagen
@@ -1781,32 +1752,32 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
Format setzen zu %1
-
+ Added (%1): %2 (%3) %4(%1): %2 (%3) %4 hinzugefügt
-
+ Moved to %1 1 × "%2" (%3)Nach %1 1 × "%2" (%3) bewegt
-
+ Removed "%1" (all copies)"%1" entfernt (alle Kopien)
-
+ %1 1 × "%2" (%3)%1 1 × "%2" (%3)
-
+ AddedHinzugefügt
-
+ RemovedEntfernt
@@ -1873,30 +1844,30 @@ Dies wird nur für Moderatoren gespeichert und kann von der gebannten Person nic
Sideboard gesperrt
-
-
+
+ ErrorFehler
-
+ The selected file could not be loaded.Die gewählte Datei konnte nicht geladen werden.
-
+ Deck is greater than maximum file size.Deck übersteigt die maximale Dateigröße.
-
+ Are you sure you want to force start?
This will kick all non-ready players from the game.Sind Sie sicher, dass sie den Start erzwingen wollen?
Dies wirft alle nicht bereiten Spieler aus dem Spiel.
-
+ CockatriceCockatrice
@@ -2391,17 +2362,17 @@ Um Ihren derzeitigen Avatar zu entfernen, bestätigen Sie, ohne ein neues Bild z
DlgEditDeckInClipboard
-
+ Edit deck in clipboardDeck in Zwischenablage bearbeiten
-
+ ErrorFehler
-
+ Invalid deck list.Ungültige Deckliste.
@@ -2902,17 +2873,17 @@ Aktivieren Sie die Edition „Token" im „Editionen verwalten...“ Menü
DlgLoadDeckFromClipboard
-
+ Load deck from clipboardDeck aus der Zwischenablage laden
-
+ ErrorFehler
-
+ Invalid deck list.Ungültige Deckliste.
@@ -2920,45 +2891,45 @@ Aktivieren Sie die Edition „Token" im „Editionen verwalten...“ Menü
DlgLoadDeckFromWebsite
-
+ Paste a link to a decklist site here to import it.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)Hier einen Link einer Decklistenseite einfügen um ihn zu importieren.
(Archidekt, Deckstats, Moxfield und TappedOut sind unterstützt.)
-
-
-
-
-
+
+
+
+
+ Load Deck from WebsiteDeck von Internetseite laden
-
+ No parser available for this deck provider.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)Kein Parset verfügbar für diesen Deckanbieter.
(Archidekt, Deckstats, Moxfield und TappedOut sind unterstützt.)
-
+ Network error: %1Netzwerkfehler: %1
-
+ Received empty deck data.Leere Deckdaten erhalten.
-
+ Failed to parse deck data: %1Fehler beim parsen der Deckdaten: %1
-
+ The provided URL is not recognized as a valid deck URL.
Valid deck URLs look like this:
@@ -2983,40 +2954,73 @@ https://tappedout.net/mtg-decks/your-deck-name/
Deck laden
+
+ DlgLocalGameOptions
+
+
+ Players:
+ Spieler:
+
+
+
+ General
+ Allgemein
+
+
+
+ Starting life total:
+ Lebenspunkte zum Spielstart:
+
+
+
+ Game setup options
+ Spieleinstellungen
+
+
+
+ Remember settings
+ Einstellungen merken
+
+
+
+ Local game options
+ Lokale Spieleinstellungen
+
+DlgMoveTopCardsUntil
-
+ Card name (or search expressions):Kartenname (oder Suchbezeichnung)
-
+ Number of hits:Anzahl der Treffer:
-
+ Auto play hitsAutomatisches Ausspielen von Treffern
-
+ Put top cards on stack until...Oberste Karten auf den Stapel legen bis...
-
+ No cards matching the search expression exists in the card database. Proceed anyways?Keine Karten, die den Suchbezeichnungen entsprechen, existieren in der Kartendatenbank. Trotzdem fortfahren?
-
+ CockatriceBasilisk
-
+ Invalid filterUngültiger Filter
@@ -3178,12 +3182,12 @@ Die E-Mail-Adresse wird zur Accountverifikation genutzt.
DlgSettings
-
+ Unknown Error loading card databaseUnbekannter Fehler beim Laden der Kartendatenbank
-
+ Your card database is invalid.
Cockatrice may not function correctly with an invalid database
@@ -3200,7 +3204,7 @@ Sie müssen Oracle unter Umständen nochmals ausführen um Ihre Kartendatenbank
Möchten Sie Ihren Speicherort der Datenbank aktualisieren??
-
+ Your card database version is too old.
This can cause problems loading card information or images
@@ -3217,7 +3221,7 @@ Normalerweise kann dies durch einen erneuten Start von Oracle, um die Kartendate
Möchten Sie Ihren Speicherort der Datenbank aktualisieren?
-
+ Your card database did not finish loading
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues with your cards.xml attached
@@ -3230,7 +3234,7 @@ Bitte erstellen Sie ein Ticket auf https://github.com/Cockatrice/Cockatrice/issu
Möchten Sie die Einstellung des Datenbankspeicherorts ändern?
-
+ File Error loading your card database.
Would you like to change your database location setting?
@@ -3239,7 +3243,7 @@ Would you like to change your database location setting?
Möchten Sie Ihren Speicherort der Datenbank aktualisieren?
-
+ Your card database was loaded but contains no cards.
Would you like to change your database location setting?
@@ -3248,7 +3252,7 @@ Would you like to change your database location setting?
Möchten Sie Ihren Speicherort der Datenbank aktualisieren?
-
+ Unknown card database load status
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues
@@ -3261,59 +3265,59 @@ Bitte erstellen Sie ein Ticket auf https://github.com/Cockatrice/Cockatrice/issu
Möchten Sie die Einstellung des Datenbankspeicherorts ändern?
-
-
-
+
+
+ ErrorFehler
-
+ The path to your deck directory is invalid. Would you like to go back and set the correct path?Der Pfad zu Ihrem Deckordner ist ungültig. Möchten Sie zurückgehen und den korrekten Pfad einstellen?
-
+ The path to your card pictures directory is invalid. Would you like to go back and set the correct path?Der Pfad zu Ihrem Kartenbilderordner ist ungültig. Möchten Sie zurückgehen und den korrekten Pfad einstellen?
-
+ SettingsEinstellungen
-
+ GeneralAllgemeines
-
+ AppearanceErscheinungsbild
-
+ User InterfaceBenutzeroberfläche
-
+ Card SourcesKartenquellen
-
+ ChatChat
-
+ SoundTöne
-
+ ShortcutsTastaturkürzel
@@ -3630,67 +3634,67 @@ Eventuell müssen sie manuell eine neue Version herunterladen.
DrawProbabilityWidget
-
+ Draw ProbabilityZieh-Wahrscheinlichkeit
-
+ Probability of drawingWahrscheinlichkeit des Ziehens
-
+ Card NameKartenname
-
+ TypeTyp
-
+ SubtypeUntertyp
-
+ Mana ValueManawert
-
+ At leastmindestens
-
+ Exactlygenau
-
+ card(s) having drawn at leastKarte(n) gezogen haben mindestens
-
+ cardsKarten
-
+ CategoryKategorie
-
+ QtyMenge
-
+ Odds (%)Wahrscheinlichkeit (%)
@@ -4138,143 +4142,143 @@ Eventuell müssen sie manuell eine neue Version herunterladen.
GeneralSettingsPage
-
+ Reset all pathsAlle Pfade zurücksetzen
-
+ All paths have been resetAlle Pfade wurden zurückgesetzt
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Choose pathPfad auswählen
-
+ Personal settingsPersönliche Einstellungen
-
+ Language:Sprache:
-
+ Paths (editing disabled in portable mode)Pfade (Anpassungen im portablen Modus deaktiviert)
-
+ PathsPfade
-
+ How to help with translationsWie man beim Übersetzen helfen kann
-
+ Decks directory:Verzeichnis mit Decklisten:
-
+ Filters directory:Filterverzeichnis:
-
+ Replays directory:Verzeichnis mit aufgezeichneten Spielen:
-
+ Pictures directory:Verzeichnis mit Bilddateien:
-
+ Card database:Kartendatenbank:
-
+ Custom database directory:Verzeichnis für benutzerdefinierte Datenbank:
-
+ Token database:Spielsteindatenbank:
-
+ Update channelAktualisierungskanal
-
+ Check for client updates on startupNach Aktualisierungen des Klienten beim Start der Anwendung suchen
-
+ Check for card database updates on startupAuf Kartendatenbankaktualisierungen beim Anwendungsstart prüfen
-
+ Don't checkNicht überprüfen
-
+ Prompt for updateZu Aktualisierungen auffordern
-
+ Always update in the backgroundImmer im Hintergrund aktualisieren
-
+ Check for card database updates everyAuf Kartendatenbankaktualisierung prüfen alle
-
+ daysTage
-
+ Notify if a feature supported by the server is missing in my clientBenachrichtigung wenn ein vom Server unterstütze Funktion in meinem Client fehlt
-
+ Automatically run Oracle when running a new version of CockatriceStarte Oracle automatisch, wenn eine neue Version von Cockatrice gestartet wird
-
+ Show tips on startupZeige Tipps beim Start
-
+ Last update check on %1 (%2 days ago)Letzte Aktualisierungsprüfung am %1 (vor %2 Tagen)
@@ -4282,47 +4286,47 @@ Eventuell müssen sie manuell eine neue Version herunterladen.
GraveyardMenu
-
+ &Graveyard&Friedhof
-
+ &View graveyard&Friedhof ansehen
-
+ &Move graveyard to...& Friedhof nach ... bewegen
-
+ &Top of library&Oben in der Bibliothek
-
+ &Bottom of library&Unten in der Bibliothek
-
+ &All players&Alle Spieler
-
+ &Hand&Hand
-
+ &Exile&Exil
-
+ Reveal random card to...Zufällige Karte vorzeigen für ...
@@ -4330,88 +4334,88 @@ Eventuell müssen sie manuell eine neue Version herunterladen.
HandMenu
-
+ &Hand&Hand
-
+ &View hand&Hand ansehen
-
+ Sort hand by...Hand nach ... sortieren
-
+ NameName
-
+ TypeTyp
-
+ Mana ValueManawert
-
+ Take &mulligan (Choose hand size)&Mulligan nehmen (Handgröße wählen)
-
+ Take mulligan (Same hand size)Mulligan nehmen (Gleiche Handgröße)
-
+ Take mulligan (Hand size - 1)Mulligan nehmen (Handgröße -1)
-
+ &Move hand to...&Hand nach ... bewegen
-
+ &Top of library&Oben in der Bibliothek
-
+ &Bottom of library&Unten in der Bibliothek
-
+ &Graveyard&Friedhof
-
+ &Exile&Exil
-
+ &Reveal hand to...&Hand an ... vorzeigen
-
-
+
+ All playersAlle Spieler
-
+ Reveal r&andom card to...Zufällige Karten an ... vorzeigen
@@ -4419,52 +4423,52 @@ Eventuell müssen sie manuell eine neue Version herunterladen.
HomeWidget
-
+ Create New DeckNeues Deck erstellen
-
+ Browse DecksDecks durchsuchen
-
+ Browse Card DatabaseKartendatenbank durchsuchen
-
+ Browse EDHRecEDHRec durchsuchen
-
+ Browse ArchidektArchidekt durchsuchen
-
+ View ReplaysWiederholung ansehen
-
+ QuitVerlassen
-
+ Connecting...Verbinden...
-
+ ConnectVerbinden
-
+ PlaySpielen
@@ -4472,193 +4476,213 @@ Eventuell müssen sie manuell eine neue Version herunterladen.
LibraryMenu
-
+ &Library&Bibliothek
-
+ &View library&Bibliothek ansehen
-
+ View &top cards of library...Die obersten Karten der Bibliothek ansehen
-
+ View bottom cards of library...Die untersten Karten der Bibliothek ansehen
-
+ Reveal &library to...Bibliothek an ... vorzeigen
-
+ Lend library to...Bibliothek ... leihen
-
+ Reveal &top cards to...Die obersten Karten ... zeigen
-
+ &Top of library...&Oben auf die Bibliothek
-
+ &Bottom of library...&Unter die Bibliothek...
-
+ &Always reveal top card&Immer die oberste Karte vorzeigen
-
+ &Always look at top card&Immer die oberste Karte ansehen
-
+ &Open deck in deck editor&Deck in Deckeditor öffnen
-
+ &Draw card&Karte ziehen
-
+ D&raw cards...Karten ziehen...
-
+ &Undo last draw&Letztes Ziehen rückgängig machen
-
+ ShuffleMischen
-
+ &Play top card&Oberste Karte spielen
-
+ Play top card &face downOberste Karte verdeckt ausspielen
-
+ Put top card on &bottomOberste Karte nach unten legen
-
+ Move top card to grave&yardOberste Karte in den Friedhof bewegen
-
+ Move top card to e&xileOberste Karte ins Exil bewegen
-
+ Move top cards to &graveyard...Die obersten Karten in den Friedhof bewegen...
-
+
+ Move top cards to graveyard face down...
+ Die obersten Karten verdeckt in den Friedhof bewegen...
+
+
+ Move top cards to &exile...Die obersten Karten ins Exil bewegen
-
+
+ Move top cards to exile face down...
+ Die obersten Karten verdeckt ins Exil bewegen...
+
+
+ Put top cards on stack &until...Die obersten Karten auf den Stapel packen bis...
-
+ Shuffle top cards...Oberste Karten mischeln...
-
+ &Draw bottom card&Unterste Karte ziehen
-
+ D&raw bottom cards...Untere Karten ziehen...
-
+ &Play bottom card&Unterste Karte ausspielen
-
+ Play bottom card &face downUnterste Karte verdeckt spielen
-
+ Move bottom card to grave&yardUnterste Karte in den Friedhof bewegen
-
+ Move bottom card to e&xileUnterste Karte ins Exil bewegen
-
+ Move bottom cards to &graveyard...Unterste Karten in den Friedhof bewegen...
-
+
+ Move bottom cards to graveyard face down...
+ Die untersten Karten verdeckt in den Friedhof bewegen...
+
+
+ Move bottom cards to &exile...Unterste Karten ins Exil bewegen...
-
+
+ Move bottom cards to exile face down...
+ Die untersten Karten verdeckt ins Exil bewegen...
+
+
+ Put bottom card on &topUnterste Karte nach oben bewegen
-
+ Shuffle bottom cards...Unterste Karten mischen...
-
-
+
+ &All players&Alle Spieler
-
+ Reveal top cards of libraryOberste Karten der Bibliothek vorzeigen
-
+ Number of cards: (max. %1)Anzahl der Karten: (max. %1)
@@ -4756,18 +4780,8 @@ Will now login.
Login läuft.
-
- Number of players
- Spieleranzahl
-
-
-
- Please enter the number of players.
- Bitte die Spieleranzahl eingeben:
-
-
-
-
+
+ Player %1Spieler %1
@@ -4870,8 +4884,8 @@ Login läuft.
-
-
+
+ ErrorFehler
@@ -5279,36 +5293,36 @@ Lokale Version ist %1, Serverversion ist %2.
Ein-/Ausblenden
-
+ New VersionNeue Version
-
+ Congratulations on updating to Cockatrice %1!
Oracle will now launch to update your card database.Herzlichen Glückwunsch zur Aktualisierung auf Cockatrice %1!
Oracle wird gestartet um ihre Kartendatenbank zu aktualisieren.
-
+ Cockatrice installedCockatrice wurde installiert
-
+ Congratulations on installing Cockatrice %1!
Oracle will now launch to install the initial card database.Herzlichen Glückwunsch, dass Sie Cockatrice %1 installiert haben!
Oracle wird jetzt gestartet und installiert die initiale Kartendatenbank.
-
+ Card databaseKartendatenbank
-
+ Cockatrice is unable to load the card database.
Do you want to update your card database now?
If unsure or first time user, choose "Yes"
@@ -5317,29 +5331,29 @@ Möchten Sie Ihre Kartendatenbank jetzt aktualisieren?
Falls Sie unsicher sind oder Cockatrice das erste Mal nutzen, wählen Sie „Ja“
-
-
+
+ YesJa
-
-
+
+ NoNein
-
+ Open settingsEinstellungen öffnen
-
+ New sets foundNeue Editionen gefunden
-
+ %n new set(s) found in the card database
Set code(s): %1
Do you want to enable it/them?
@@ -5350,17 +5364,17 @@ Setcode(s): %1
Möchten Sie es/sie aktivieren?
-
+ View setsEditionen ansehen
-
+ WelcomeWillkommen
-
+ Hi! It seems like you're running this version of Cockatrice for the first time.
All the sets in the card database have been enabled.
Read more about changing the set order or disabling specific sets and consequent effects in the "Manage Sets" dialog.
@@ -5369,65 +5383,65 @@ Alle Editionen der Kartendatenbank wurden aktiviert.
Lesen Sie mehr über das Ändern der Editionsreihenfolge oder die Deaktivierung bestimmter Editionen im „Editionen verwalten...“ Fenster.
-
-
+
+ InformationInformation
-
+ A card database update is already running.Eine Datenbankaktualisierung wird bereits durchgeführt.
-
+ Unable to run the card database updater: Kartendatenbankaktualisierung nicht ausführbar:
-
+ Card database update running.Kartendatenbankaktualisierung läuft.
-
+ Failed to start. The file might be missing, or permissions might be incorrect.Starten fehlgeschlagen. Die Datei könnte fehlen oder die Berechtigung fehlen.
-
+ The process crashed some time after starting successfully.Der Prozess ist einige Zeit nach erfolgreichem Start abgestürzt.
-
+ Timed out. The process took too long to respond. The last waitFor...() function timed out.Zeitüberschreitung. Der Prozess hat zu lange nicht geantwortet. Zeitüberschreitung bei letzter waitFor...() Funktion.
-
+ An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel.Ein Fehler ist beim Schreiben an den Prozess aufgetreten. Beispielsweise könnte der Prozess derzeit nicht ausgeführt werden oder er hat seinen Eingabekanal geschlossen.
-
+ An error occurred when attempting to read from the process. For example, the process may not be running.Ein Fehler ist beim Lesen vom Prozess aufgetreten. Beispielsweise könnte der Prozess derzeit nicht ausgeführt werden.
-
+ Unknown error occurred.Unbekannter Fehler aufgetreten.
-
+ The card database updater exited with an error:
%1Die Kartendatenbankaktualisierung brach mit einem Fehler ab:
%1
-
+ This server supports additional features that your client doesn't have.
This is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.
@@ -5438,55 +5452,55 @@ Dies stellt wahrscheinlich kein Problem dar, allerdings könnte dies bedeuten, d
Um Ihren Client zu aktualisieren, navigieren Sie zu Hilfe -> Auf Aktualisierungen prüfen.
-
-
-
-
-
+
+
+
+
+ Load sets/cardsLade Sets/Karten
-
+ Selected file cannot be found.Die ausgewählte Datei wurde nicht gefunden.
-
+ You can only import XML databases at this time.Im Moment ist es nur möglich XML Datenbanken zu importieren.
-
+ The new sets/cards have been added successfully.
Cockatrice will now reload the card database.Die neuen Sets/Karten wurden erfolgreich hinzugefügt.
Cockatrice wird jetzt die Kartendatenbank neu laden.
-
+ Sets/cards failed to import.Set-/Kartenimport fehlgeschlagen.
-
-
-
+
+
+ Reset PasswordPasswort zurücksetzen
-
+ Your password has been reset successfully, you can now log in using the new credentials.Ihr Passwort wurde erfolgreich zurückgesetzt, Sie können sich jetzt mit den neuen Anmeldedaten anmelden.
-
+ Failed to reset user account password, please contact the server operator to reset your password.Passwortzurücksetzung fehlgeschlagen. Bitte kontaktieren Sie den Serverbetreiber, um Ihr Passwort zurücksetzen zu lassen.
-
+ Activation request received, please check your email for an activation token.Aktivierungsanfrage erhalten. Bitte prüfen Sie Ihre E-Mails nach einem Aktivierungstoken.
@@ -5537,7 +5551,7 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
ManaBaseWidget
-
+ Mana BaseManabasis
@@ -5691,590 +5705,610 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
MessageLogWidget
-
+ from playvom Spielfeld
-
+ from their graveyardvon ihrem Friedhof
-
+ from exile aus dem Exil
-
+ from their handvon ihrer Hand
-
+ the top card of %1's librarydie oberste Karte von %1s Bibliothek
-
+ the top card of their librarydie oberste Karte ihrer Bibliothek
-
+ from the top of %1's library oben von %1s Bibliothek
-
+ from the top of their libraryvon ihrer Bibliothek von oben
-
+ the bottom card of %1's librarydie unterste Karte von %1s Bibliothek
-
+ the bottom card of their librarydie unterste Karte ihrer Bibliothek
-
+ from the bottom of %1's library von der Unterseite von %1s Bibliothek
-
+ from the bottom of their libraryvon ihrer Bibliothek von unten
-
+ from %1's libraryaus %1s Bibliothek
-
+ from their libraryvon ihrer Bibliothek
-
+ from sideboard aus dem Sideboard
-
+ from the stack vom Stapel
-
+ from custom zone '%1'von der benutzerdefinierten Zone '%1'
-
+ %1 is now keeping the top card %2 revealed.%1 lässt nun die oberste Karte %2 aufgedeckt.
-
+ %1 is not revealing the top card %2 any longer.%1 lässt die oberste Karte %2 nicht mehr aufgedeckt.
-
+ %1 can now look at top card %2 at any time.%1 kann nun die oberste Karte %2 jederzeit betrachten.
-
+ %1 no longer can look at top card %2 at any time.%1 kann die oberste Karte %2 nicht mehr jederzeit betrachten.
-
+ %1 attaches %2 to %3's %4.%1 legt %2 an %3s %4 an.
-
+ %1 has conceded the game.%1 hat das Spiel aufgegeben.
-
+ %1 has unconceded the game.%1 hat das Spiel doch nicht aufgegeben.
-
+ %1 has restored connection to the game.%1 ist wieder mit dem Spiel verbunden.
-
+ %1 has lost connection to the game.%1 hat die Verbindung zum Spiel verloren.
-
+ %1 points from their %2 to themselves.%1 zeigt von ihrem %2 auf sich selbst.
-
+ %1 points from their %2 to %3.%1 zeigt von ihrem %2 auf %3.
-
+ %1 points from %2's %3 to themselves.%1 zeigt von %2s %3 auf sich selbst.
-
+ %1 points from %2's %3 to %4.%1 zeigt von %2s %3 auf %4.
-
+ %1 points from their %2 to their %3.%1 zeigt von ihrem %2 auf ihren %3.
-
+ %1 points from their %2 to %3's %4.%1 zeigt von ihrem %2 auf %3s %4.
-
+ %1 points from %2's %3 to their own %4.%1 zeigt von %2s %3 auf ihr %4.
-
+ %1 points from %2's %3 to %4's %5.%1 zeigt von %2s %3 auf %4s %5.
-
+ %1 creates a face down token.%1 erzeugt einen umgedrehten Spielstein.
-
+ %1 creates token: %2%3.%1 erstellt Spielstein: %2%3.
-
+ %1 has loaded a deck (%2).%1 hat ein Deck geladen (%2).
-
+ %1 has loaded a deck with %2 sideboard cards (%3).%1 hat ein Deck mit %2 Sideboardkarten geladen (%3).
-
+ %1 destroys %2.%1 zerstört %2.
-
+ a cardeine Karte
-
+ %1 gives %2 control over %3.%1 überlässt %2 die Kontrolle über %3.
-
+ %1 puts %2 into play%3 face down.%1 bringt %2%3 verdeckt ins Spiel.
-
+ %1 puts %2 into play%3.%1 bringt %2%3 ins Spiel.
-
+
+ %1 puts %2%3 into their graveyard face down.
+ %1 legt %2%3 verdeckt in ihren Friedhof
+
+
+ %1 puts %2%3 into their graveyard.%1 legt %2%3 in ihren Friedhof.
+
+
+ %1 exiles %2%3 face down.
+ %1 schickt %2%3 verdeckt ins Exil.
+ %1 exiles %2%3.%1 schickt %2%3 ins Exil.
-
+ %1 moves %2%3 to their hand.%1 bewegt %2%3 in ihre Hand.
-
+ %1 puts %2%3 into their library.%1 legt %2%3 in ihre Bibliothek.
-
+ %1 puts %2%3 onto the bottom of their library.%1 legt %2%3 unter die Bibliothek.
-
+ %1 puts %2%3 on top of their library.%1 legt %2%3 auf ihre Bibliothek.
-
+ %1 puts %2%3 into their library %4 cards from the top.%1 legt %2%3 in die Bibliothek an %4 Stelle von oben.
-
+ %1 moves %2%3 to sideboard.%1 legt %2%3 in sein Sideboard.
-
+
+ %1 plays %2%3 face down.
+ %1 bringt %2%3 verdeckt ins Spiel.
+
+
+ %1 plays %2%3.%1 spielt %2%3 aus.
-
+
+ %1 moves %2%3 to custom zone '%4' face down.
+ %1 bewegt %2%3 verdeckt zur benutzerdefinierten Zone '%4'.
+
+
+ %1 moves %2%3 to custom zone '%4'.%1 bewegt %2%3 zur benutzerdefinierten Zone '%4'.
-
+ %1 tries to draw from an empty library%1 versucht von einer leeren Bibliothek zu ziehen
-
+ %1 draws %2 card(s).%1 zieht %2 Karte(n).%1 zieht %2 Karte(n).
-
+ %1 is looking at %2.%1 sieht sich %2 an.
-
+ %1 is looking at the %4 %3 card(s) %2.top card for singular, top %3 cards for plural%1 sieht sich die %4 %3 Karte(n) %2 an.%1 sieht sich die %4 %3 Karte(n) %2 an.
-
+ bottomuntersten
-
+ topobersten
-
+ %1 turns %2 face-down.%1 wendet %2 auf die Rückseite.
-
+ %1 turns %2 face-up.%1 wendet %2 auf die Vorderseite.
-
+ The game has been closed.Das Spiel wurde geschlossen.
-
+ The game has started.Das Spiel hat begonnen.
-
+ You are flooding the game. Please wait a couple of seconds.Du überschwemmst das Spiel. Warte bitte einige Sekunden.
-
+ %1 has joined the game.%1 ist dem Spiel beigetreten.
-
+ %1 is now watching the game.%1 schaut nun dem Spiel zu.
-
+ You have been kicked out of the game.Sie wurden aus dem Spiel geworfen.
-
+ %1 has left the game (%2).%1 hat das Spiel verlassen (%2).
-
+ %1 is not watching the game any more (%2).%1 schaut dem Spiel nicht mehr zu (%2).
-
+ %1 is not ready to start the game any more.%1 ist nicht mehr bereit, das Spiel zu starten.
-
+ %1 shuffles their deck and draws a new hand of %2 card(s).%1 mischt sein Deck und zieht eine Hand mit %2 Karte(n).%1 mischt sein Deck und zieht eine neue Hand mit %2 Karte(n).
-
+ %1 shuffles their deck and draws a new hand.%1 mischt sein Deck und zieht eine neue Hand.
-
+ You are watching a replay of game #%1.Sie sehen eine Aufzeichnung des Spiels #%1.
-
+ %1 is ready to start the game.%1 ist bereit, das Spiel zu starten.
-
+ cardsan unknown amount of cardsKarten
-
+ %1 card(s)a card for singular, %1 cards for plural%1 Karte(n)%1 Karte(n)
-
+ %1 lends %2 to %3.%1 verleiht %2 an %3.
-
+ %1 reveals %2 to %3.%1 zeigt %3 %2.
-
+ %1 reveals %2.%1 zeigt %2 offen vor.
-
+ %1 randomly reveals %2%3 to %4.%1 zeigt %4 zufällig %2%3 vor.
-
+ %1 randomly reveals %2%3.%1 zeigt zufällig %2%3 offen vor.
-
+ %1 peeks at face down card #%2.%1 schaut sich die umgedrehte Karte #%2 an.
-
+ %1 peeks at face down card #%2: %3.%1 schaut sich die umgedrehte Karte #%2 an: %3.
-
+ %1 reveals %2%3 to %4.%1 zeigt %4 %2%3 vor.
-
+ %1 reveals %2%3.%1 zeigt %2%3 offen vor.
-
+ %1 reversed turn order, now it's %2.%1 kehrte die Zugreihenfolge um, nun ist es %2.
-
+ reversedumgekehrt
-
+ normalnormal
-
+ HeadsKopf
-
+ TailsZahl
-
+ %1 flipped a coin. It landed as %2.%1 warf eine Münze. Es fiel %2.
-
+ %1 rolls a %2 with a %3-sided die.%1 würfelt eine %2 mit einem %3-seitigen Würfel.
-
+ %1 flips %2 coins. There are %3 heads and %4 tails.%1 wirft %2 Münzen. Es ergab %3 mal Kopf und %4 mal Zahl.
-
+ %1 rolls a %2-sided dice %3 times: %4.%1 wirft einen %2-seitigen Würfel %3 mal: %4.
-
+ %1's turn.%1 ist am Zug.
-
+ %1 sets annotation of %2 to %3.%1 versieht %2 mit dem Hinweis %3.
-
+ %1 places %2 "%3" counter(s) on %4 (now %5).%1 platziert %2 "%3" Zähler auf %4 (jetzt %5).%1 platziert %2 "%3" Zähler auf %4 (jetzt %5).
-
+ %1 removes %2 "%3" counter(s) from %4 (now %5).%1 entfernt %2 "%3" Marke(n) von %4 (jetzt %5).%1 entfernt %2 "%3" Zähler von %4 (jetzt %5).
-
+ %1 sets counter %2 to %3 (%4%5).%1 setzt Zähler %2 auf %3 (%4%5).
-
+ %1 sets %2 to not untap normally.%1 setzt %2 auf explizites Enttappen.
-
+ %1 sets %2 to untap normally.%1 setzt %2 auf normales Enttappen.
-
+ %1 removes the PT of %2.%1 entfernt die Kampfwerte von %2.
-
+ %1 changes the PT of %2 from nothing to %4.%1 ändert die Kampfwerte von %2 von nichts auf %4.
-
+ %1 changes the PT of %2 from %3 to %4.%1 ändert die Kampfwerte von %2 von %3 auf %4.
-
+ %1 has locked their sideboard.%1 hat ihr Sideboard gesperrt.
-
+ %1 has unlocked their sideboard.%1 hat ihr Sideboard entsperrt.
-
+ %1 taps their permanents.%1 tappt ihre bleibenden Karten.
-
+ %1 untaps their permanents.%1 enttappt ihre bleibenden Karten.
-
+ %1 taps %2.%1 tappt %2.
-
+ %1 untaps %2.%1 enttappt %2.
-
+ %1 shuffles %2.%1 mischt %2.
-
+ %1 shuffles the bottom %3 cards of %2.%1 mischt die untersten %3 Karten von %2.
-
+ %1 shuffles the top %3 cards of %2.%1 mischt die obersten %3 Karten von %2.
-
+ %1 shuffles cards %3 - %4 of %2.%1 mischt die Karten %3 - %4 von %2.
-
+ %1 unattaches %2.%1 löst %2 ab.
-
+ %1 undoes their last draw.%1 legt die zuletzt gezogene Karte zurück.
-
+ %1 undoes their last draw (%2).%1 legt die zuletzt gezogene Karte zurück (%2)
@@ -6282,110 +6316,110 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
MessagesSettingsPage
-
+ Word1 Word2 Word3Wort1 Wort2 Wort3
-
+ Add New MessageNeue Nachricht hinzufügen
-
+ Edit MessageNachricht bearbeiten
-
+ Remove MessageNachricht entfernen
-
+ Add messageNachricht hinzufügen
-
-
+
+ Message:Nachricht:
-
+ Edit messageNachricht bearbeiten
-
+ Chat settingsChat Einstellungen
-
+ Custom alert wordsBenutzerdefinierte Benachrichtigungswörter
-
+ Enable chat mentionsChat Erwähnungen aktivieren
-
+ Enable mention completerAutovervollständigung aktivieren
-
+ In-game message macrosMakros für Nachrichten in Spielen
-
+ How to use in-game message macrosAnleitung zum Verwenden der Makros für Nachrichten in Spielen
-
+ Ignore chat room messages sent by unregistered usersNachrichten von unregistrierten Benutzern im Chatroom ignorieren
-
+ Ignore private messages sent by unregistered usersPrivate Nachrichten von unregistrierten Benutzern ignorieren
-
-
+
+ Invert text colorTextfarbe invertieren
-
+ Enable desktop notifications for private messagesDesktop Benachrichtigungen für private Nachrichten aktivieren
-
+ Enable desktop notification for mentionsDesktop Benachrichtigungen für Erwähnungen aktivieren
-
+ Enable room message history on joinNachrichtenverlauf beim Betreten eines Raumes aktivieren
-
-
+
+ (Color is hexadecimal)(Farbcode in hexadezimal)
-
+ Separate words with a space, alphanumeric characters onlyWörter durch Leerzeichen trennen, nur alphanumerische Zeichen
@@ -6398,32 +6432,37 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
Bewegen nach
-
+ &Top of library in random order&Oben auf der Bibliothek in zufälliger Reihenfolge
-
+ X cards from the top of library...X Karten von oben in der Bibliothek...
-
+ &Bottom of library in random order&Unter die Bibliothek in zufälliger Reihenfolge
-
+
+ T&able
+ T&isch
+
+
+ &Hand&Hand
-
+ &Graveyard&Friedhof
-
+ &Exile&Exil
@@ -6565,57 +6604,57 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
PhasesToolbar
-
+ Untap stepEnttappsegment
-
+ Upkeep stepVersorgungssegment
-
+ Draw stepZiehsegment
-
+ First main phaseerste Hauptphase
-
+ Beginning of combat stepAnfangssegment der Kampfphase
-
+ Declare attackers stepAngreifer-Deklarieren-Segment
-
+ Declare blockers stepBlocker-Deklarieren-Segment
-
+ Combat damage stepKampfschadenssegment
-
+ End of combat stepEndsegment der Kampfphase
-
+ Second main phasezweite Hauptphase
-
+ End of turn stepEnde-des-Zuges-Segment
@@ -6632,134 +6671,138 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
PlayerActions
-
+ View top cards of libraryOberste Karten der Bibliothek ansehen
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Number of cards: (max. %1)Anzahl der Karten: (max. %1)
-
+ View bottom cards of libraryUnterste Karten der Bibliothek ansehen
-
+ Shuffle top cards of libraryOberste Karten der Bibliothek mischen
-
+ Shuffle bottom cards of libraryUnterste Karten der Bibliothek mischen
-
+ Draw handHand ziehen
-
+ 0 and lower are in comparison to current hand size0 und kleiner sind im Vergleich zur jetzigen Handgröße
-
+ Draw cardsKarten ziehen
+
+
+
+
+
+ grave
+ Friedhof
+
- Move top cards to grave
- Oberste Karten in den Friedhof bewegen
+
+
+
+ exile
+ Exil
-
- Move top cards to exile
- Oberste Karten ins Exil bewegen
+
+ Move top cards to %1
+ Oberste Karten nach %1 bewegen
-
- Move bottom cards to grave
- Unterste Karten in den Friedhof bewegen
+
+ Move bottom cards to %1
+ Unterste Karten nach %1 bewegen
-
- Move bottom cards to exile
- Unterste Karten ins Exil bewegen
-
-
-
+ Draw bottom cardsUnterste Karten ziehen
-
-
+
+ C&reate another %1 tokenEinen weiteren %1 Spielstein erzeugen
-
+ Create tokensSpielsteine erzeugen
-
-
+
+ Number:Anzahl:
-
+ Place card X cards from top of libraryKarte X Karten von oben in der Bibliothek plazieren
-
+ Which position should this card be placed:In welcher Position sollte diese Karte platziert werden:
-
+ (max. %1)(max. %1)
-
+ Change power/toughnessStärke/Widerstandskraft ändern
-
+ Change stats to:Ändere Werte auf:
-
+ Set annotationAnmerkung setzen
-
+ Please enter the new annotation:Bitte die neue Anmerkung eingeben:
-
+ Set countersZähler setzen
@@ -6767,48 +6810,68 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
PlayerMenu
-
+ Player "%1"Spieler "%1"
-
+ &Counters&Zähler
+
+
+ PrintingDisabledInfoWidget
-
- S&ay
- S&agen
+
+ The Printing Selector is disabled because you have currently enabled the setting to override all selected printings with personal set preferences.
+
+This setting means you'll only see the default printing for each card, instead of being able to select a printing, and will not see the printings other people have selected.
+
+
+ Die Druckauswahl ist deaktiviert, da sie momentan die Einstellung zur Überschreibung aller ausgewählten Drucke mit ihren persönlichen Setpräferenzen aktiviert ist.
+
+Diese Einstellung bedeutet, dass sie nur den Standarddruck für jede Karte sehen, anstatt einen bestimmten Druck auszuwählen, und sie werden auch nicht die von anderen Personen ausgewählten Drucke sehen können.
+
+
+
+
+ Enable printings again
+ Drucke wieder aktivierenPrintingSelector
-
+ Display Navigation ButtonsNavigationstasten anzeigen
+
+
+ Printing Selector
+ Druckauswahl
+ PrintingSelectorCardOverlayWidget
-
+ PreferencePreferenz
-
+ Pin PrintingVersion festsetzen
-
+ Unpin PrintingVersion lösen
-
+ Show Related cardsZugehörige Karten anzeigen
@@ -6857,17 +6920,25 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
Erscheinungsdatum
-
-
+
+ DescendingAbsteigend
-
+ AscendingAufsteigend
+
+ PrintingSelectorPlaceholderWidget
+
+
+ Select a card to view its available printings
+ Wählen sie eine Karte aus, um ihre verfügbaren Drucke anzusehen
+
+PtMenu
@@ -7006,6 +7077,45 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
A .cod version of this deck already exists. Overwrite it?Eine .cod Version dieses Decks existiert bereits. Überschreiben?
+
+
+ Enabling this feature will disable the use of the Printing Selector.
+
+You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
+
+You will have to use the Set Manager, available through Card Database -> Manage Sets.
+
+Are you sure you would like to enable this feature?
+ Diese Funktion zu aktivieren wird die Nutzung der Druckauswahl deaktivieren.
+
+Es wird ihnen nicht möglich sein ihre Druckeinstellungen auf einer Per-Deck Basis zu verwalten, oder die Drucke, die andere Personen für ihre Decks ausgewählt haben, zu sehen.
+
+Sie werden den Set-Manager verwenden müssen, der über Kartendatenbank -> Sets verwalten verfügbar ist.
+
+Sind sie sicher, dass diese Funktion aktiviert werden soll?
+
+
+
+ Disabling this feature will enable the Printing Selector.
+
+You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
+
+You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
+
+Are you sure you would like to disable this feature?
+ Diese Funktion zu deaktivieren wird die Nutzung der Druckauswahl aktivieren.
+
+Es wird ihnen nun möglich sein ihre Druckeinstellungen auf einer Per-Deck Basis im Deck-Editor zu verwalten und zu konfigurieren, welcher Druck standardmäßig in ein Deck hinzugefügt wird, indem sie es anheften in der Druckauswahl
+
+Sie können auch den Set-Manager verwenden, um selbstständig die Sortierungsreihenfolge für Drucke in der Druckauswahl festzulegen (andere Sortierungsoptionen wie alphabetisch oder Veröffentlichkeitsdatum sind verfügbar).
+
+Sind sie sicher, dass diese Funktion deaktiviert werden soll?
+
+
+
+ Confirm Change
+ Änderung bestätigen
+ QPlatformTheme
@@ -7154,37 +7264,37 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
RfgMenu
-
+ &Exile&Exil
-
+ &View exile&Exil ansehen
-
+ &Move exile to...&Exil nach ... bewegen
-
+ &Top of library&Oben in der Bibliothek
-
+ &Bottom of library&Unten in der Bibliothek
-
+ &Hand&Hand
-
+ &Graveyard&Friedhof
@@ -7227,6 +7337,14 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
Spiele
+
+ SayMenu
+
+
+ S&ay
+ S&agen
+
+SequenceEdit
@@ -7291,53 +7409,53 @@ Cockatrice wird jetzt die Kartendatenbank neu laden.
ShortcutSettingsPage
-
-
+
+ Restore all default shortcutsAlle Standard-Tastaturkürzel wiederherstellen
-
+ Do you really want to restore all default shortcuts?Möchten Sie wirklich alle Standard-Tastaturkürzel wiederherstellen?
-
+ Clear all default shortcutsAlle Standard-Tastaturkürzel entfernen
-
+ Do you really want to clear all shortcuts?Möchten Sie wirklich alle Tastaturkürzel entfernen?
-
+ Section:Abschnitt:
-
+ Action:Aktion:
-
+ Shortcut:Tastaturkürzel:
-
+ How to set custom shortcutsWie werden benutzerdefinierte Tastaturkürzel gesetzt
-
+ Clear all shortcutsAlle Tastaturkürzel entfernen
-
+ Search by shortcut nameSuchen nach Name des Tastenkürzels
@@ -7406,27 +7524,27 @@ Bitte überprüfen Sie die Verknüpfungseinstellungen!
SoundSettingsPage
-
+ Enable &soundsTöne aktivieren
-
+ Current sounds theme:Aktuelles Ton-Theme:
-
+ Test system sound engineSystemsound testen
-
+ Sound settingsToneinstellungen
-
+ Master volumeMasterlautstärke
@@ -7642,59 +7760,123 @@ Bitte überprüfen Sie die Verknüpfungseinstellungen!
TabArchidekt
-
-
+
+
+ Desc.Beschreibung.
-
+
+
+ AND
+ UND
+
+
+
+
+ Require ALL selected colors
+ Benötigt ALLE ausgewählten Farben
+
+
+
+
+ Deck name...
+ Deckname...
+
+
+
+
+ Owner...
+ Besitzer...
+
+
+
+
+ Packages
+ Pakete
+
+
+
+
+ Advanced Filters
+ Erweiterte Filter
+
+
+
+ Bracket:
+ Kategorie:
+
+
+
+
+ Any
+ Beliebig
+
+
+
+
+ Contains card...
+ Enthält Karte...
+
+
+
+
+ Commander...
+ Kommandant...
+
+
+
+
+ Tag...
+ Etikett...
+
+
+
+
+ Deck Size
+ Deckgröße
+
+
+
+ Cards:
+ Karten:
+
+
+
+ Asc.Aufsteigend.
-
-
- Any Bracket
- Jede Klammer
+
+ Sort by:
+ Sortieren nach:
-
- Deck name contains...
- Deckname enthält...
+
+ Filter by:
+ Filtern nach:
-
- Owner name contains...
- Besitzername enthält...
+
+ Display Settings
+ Anzeigeeinstellungen
-
- Disabled
- Deaktiviert
-
-
-
+
+ SearchSuche
-
+
+ FormatsFormate
-
- Min. # of Cards:
- Min. # an Karten:
-
-
-
- Page:
- Seite:
-
-
-
+ Archidekt: Archidekt:
@@ -7702,60 +7884,52 @@ Bitte überprüfen Sie die Verknüpfungseinstellungen!
TabDeckEditor
-
+ Card InfoKarteninformationen
-
+ DeckDeck
-
+ FiltersFilter
-
+ &ViewAnsicht
-
+ Card DatabaseKartendatenbank
-
+ PrintingAuflage
-
-
-
-
-
+ VisibleSichtbar
-
-
-
-
-
+ FloatingSchwebend
-
+ Reset layoutDarstellung zurücksetzen
-
+ Deck: %1Deck: %1
@@ -7763,61 +7937,55 @@ Bitte überprüfen Sie die Verknüpfungseinstellungen!
TabDeckEditorVisual
-
+ Visual Deck: %1Visuelles Deck: %1
-
+ &Visual Deck Editor&Visueller Deckeditor
-
-
+
+ Card InfoKarteninformation
-
-
+
+ DeckDeck
-
-
+
+ FiltersFilter
-
+ &View&Ansehen
-
+ PrintingAuflage
-
-
-
-
+ VisibleSichtbar
-
-
-
-
+ FloatingSchwebend
-
+ Reset layoutAnordnung zurücksetzen
@@ -7882,7 +8050,7 @@ Bitte überprüfen Sie die Verknüpfungseinstellungen!
-
+ New folderNeuer Ordner
@@ -7964,18 +8132,18 @@ Bitte geben Sie einen Namen ein:
Sind sie sicher, dass die ausgewählten Dateien gelöscht werden sollen?
-
+ Delete remote decksLöschen der online gespeicherten Decks
-
+ Are you sure you want to delete the selected decks?Sind sie sicher, dass sie die ausgewählten Decks löschen wollen?
-
+ Name of new folder:Name für den neuen Ordner:
@@ -7993,12 +8161,12 @@ Bitte geben Sie einen Namen ein:
Visuelle Deckablage
-
+ ErrorFehler
-
+ Could not open deck at %1Deck an Stelle %1 konnte nicht geöffnet werden
@@ -8047,197 +8215,191 @@ Bitte geben Sie einen Namen ein:
TabGame
-
-
-
+
+
+ ReplayWiederholung
-
-
+
+ GameSpiel
-
-
+
+ Player ListSpielerliste
-
-
+
+ Card InfoKarteninformationen
-
-
+
+ MessagesNachrichten
-
-
+
+ Replay TimelineZeitleiste der Aufzeichnung
-
+ &Phases&Phasen
-
+ &GameSpi&el
-
+ Next &phaseNächste &Phase
-
+ Next phase with &actionNächste Phase mit &Aktion
-
+ Next &turnNächster &Zug
-
+ Reverse turn orderKehre Zugreihenfolge um
-
+ &Remove all local arrows&Lokale Pfeile entfernen
-
+ Rotate View Cl&ockwiseAnsicht im Uhrzeigesinn drehen
-
+ Rotate View Co&unterclockwiseAnsicht gegen den Uhrzeigersinn drehen
-
+ Game &information&Spielinformationen
-
+ Un&concedeAufgabe zurückziehen
-
-
-
+
+
+ &Concede&Aufgeben
-
+ &Leave gameSpiel ver&lassen
-
+ C&lose replayWiederholung sch&ließen
-
+ &Focus ChatChat &fokussieren
-
+ &Say:&Sagen:
-
+ Selected cardsAusgewählte Karten
-
+ &ViewAnsicht
-
-
-
-
+ VisibleSichtbar
-
-
-
-
+ FloatingSchwebend
-
+ Reset layoutDarstellung zurücksetzen
-
+ ConcedeAufgeben
-
+ Are you sure you want to concede this game?Sind Sie sicher, dass Sie das Spiel aufgeben möchten?
-
+ UnconcedeDoch nicht aufgeben
-
+ You have already conceded. Do you want to return to this game?Sie haben bereits aufgegeben. Möchten Sie zu diesem Spiel zurückkehren?
-
+ Leave gameSpiel verlassen
-
+ Are you sure you want to leave this game?Sind Sie sicher, dass Sie das Spiel verlassen möchten?
-
+ A player has joined game #%1Ein Spieler ist Spiel #%1 beigetreten
-
+ %1 has joined the game%1 ist dem Spiel beigetreten
-
+ You have been kicked out of the game.Sie wurden aus dem Spiel geworfen.
@@ -9340,142 +9502,152 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
UserInterfaceSettingsPage
-
+ General interface settingsAllgemeine Bedienung
-
+ &Double-click cards to play them (instead of single-click)Karten durch &Doppelklick ausspielen (statt Einzelklick)
-
+ &Clicking plays all selected cards (instead of just the clicked card)&Anklicken spielt alle ausgewählten Karten aus (anstatt nur der angeklickten Karte)
-
+ &Play all nonlands onto the stack (not the battlefield) by defaultAlle Nichtländer standardmäßig über den Stapel spielen (anstatt direkt auf das Spielfeld)
-
+ Do not delete &arrows inside of subphasesKeine &Pfeile löschen in Unterphasen
-
+ Close card view window when last card is removedSchließe Kartenanzeigefenster, wenn die letzte Karte entfernt wird
-
+ Auto focus search bar when card view window is openedSucheingabe automatisch in den Fokus nehmen, wenn das Kartenansichtsfenster geöffnet wird
-
+ Annotate card text on tokensKartentext auf Spielsteinen anzeigen
-
+
+ Show selection counter during drag selection
+ Auswahlzähler während Zugauswahl anzeigen
+
+
+
+ Show total selection counter
+ Gesamtauswahlszähler anzeigen
+
+
+ Use tear-off menus, allowing right click menus to persist on screenBenutze Abreißmenüs, erlaubt Kontextmenüs auf dem Bildschirm zu verbleiben
-
+ Notifications settingsBenachrichtigungseinstellungen
-
+ Enable notifications in taskbarBenachrichtigungen in der Taskleiste aktivieren
-
+ Notify in the taskbar for game events while you are spectatingBenachrichtigungen für Spielereignisse auch beim Zuschauen anderer Spiele in der Taskbar anzeigen
-
+ Notify in the taskbar when users in your buddy list connectBenachrichtige in der Taskleiste wenn sich Benutzer aus der Freundesliste anmelden
-
+ Animation settingsAnimationseinstellungen
-
+ &Tap/untap animationAnimiertes &Tappen/Enttappen
-
+ Deck editor/storage settingsDeckeditor/-ablage Einstellungen
-
+ Open deck in new tab by defaultDecks in neuem Tab öffnen als Standard
-
+ Use visual deck storage in game lobbyVisuelle Deckablage in der Spielelobby verwenden
-
+ Use selection animation for Visual Deck StorageAuswahlanimation für Visuellen Deckspeicher verwenden
-
+ When adding a tag in the visual deck storage to a .txt deck:Wenn ein Tag im Visuellen Deckspeicher zu einem .txt Deck hinzugefügt wird:
-
+ do nothingtue nichts
-
+ ask to convert to .codfrage, ob zu .cod konvertiert werden soll
-
+ always convert to .codimmer nach .cod konvertieren
-
+ Default deck editor typeStandarddeckeditortyp
-
+ Classic Deck EditorKlassischer Deckeditor
-
+ Visual Deck EditorVisueller Deckeditor
-
+ Replay settingsWiederholungsoptionen
-
+ Buffer time for backwards skip via shortcut:Pufferzeit für Rückwärtsüberspringen durch Tastenkürzel
@@ -9539,24 +9711,25 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDatabaseDisplayColorFilterWidget
-
- Mode: Exact Match
- Modus: Exakte Übereinstimmung
+
+ Exact match
+ Exakte Übereinstimmung
+
+
+
+ Includes
+ Enthält
- Mode: Includes
- Modus: Enthält
+ Include / Exclude
+ Mode: Includes
+ Inkludieren / Exkludieren
-
- Mode: Include/Exclude
- Modus: Inkludieren/Exkludieren
-
-
-
- Filter mode (AND/OR/NOT conjunctions of filters)
- Filtermodus (UND/ODER/NICHT Verknüpfungen der Filter)
+
+ How selected and unselected colors are combined in the filter
+ Wie ausgewählte und nicht ausgewählte Farben im Filter kombiniert werden
@@ -9582,25 +9755,108 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
Dateinamen eingeben...
+
+ VisualDatabaseDisplayFilterToolbarWidget
+
+
+ Sort by
+ Sortieren nach
+
+
+
+ Filter by
+ Filtern nach
+
+
+
+ Save and load filters
+ Filter speichern und laden
+
+
+
+ Filter by exact card name
+ Nach exaktem Kartennamen filtern
+
+
+
+ Filter by card main-type
+ Nach Kartenhaupttyp filtern
+
+
+
+ Filter by card sub-type
+ Nach Kartenuntertyp filtern
+
+
+
+ Filter by set
+ Nach Set filtern
+
+
+
+ Filter by format legality
+ Nach Formatslegalität filtern
+
+
+
+ Save/Load
+ Speichern/Laden
+
+
+
+ Name
+ Name
+
+
+
+ Main Type
+ Haupttyp
+
+
+
+ Sub Type
+ Untertyp
+
+
+
+ Sets
+ Editionen
+
+
+
+ Formats
+ Formate
+
+VisualDatabaseDisplayFormatLegalityFilterWidget
-
+
+ Show formats with at least:
+ Formate anzeigen mit mindestens:
+
+
+
+ cards
+ Karten
+
+
+ Do not display formats with less than this amount of cards in the databaseKeine Formate mit weniger als dieser Anzahl an Karten in der Datenbank anzeigen
-
+ Filter mode (AND/OR/NOT conjunctions of filters)Filtermodus (UND/ODER/NICHT Verbindungen von Filtern)
-
+ Mode: Exact MatchModus: Exakte Übereinstimmung
-
+ Mode: IncludesModus: Enthält
@@ -9608,22 +9864,32 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDatabaseDisplayMainTypeFilterWidget
-
+
+ Show main types with at least:
+ Haupttypen anzeigen mit mindestens:
+
+
+
+ cards
+ Karten
+
+
+ Do not display card main-types with less than this amount of cards in the databaseKartenhaupttypen mit weniger als dieser Anzahl Karten in der Datenbank nicht anzeigen
-
+ Filter mode (AND/OR/NOT conjunctions of filters)Filtermodus (UND/ODER/NICHT Verknüpfungen der Filter)
-
+ Mode: Exact MatchModus: Exakte Übereinstimmung
-
+ Mode: IncludesModus: Enthält
@@ -9659,7 +9925,7 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDatabaseDisplayRecentSetFilterSettingsWidget
-
+ Filter to most recent setsFiltern nach aktuellsten Sets
@@ -9667,19 +9933,19 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDatabaseDisplaySetFilterWidget
-
+ Search sets...Sets durchsuchen...
-
-
+
+ Mode: Exact MatchModus: Exakte Übereinstimmung
-
-
+
+ Mode: IncludesModus: Enthält
@@ -9687,27 +9953,37 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDatabaseDisplaySubTypeFilterWidget
-
+ Search subtypes...Untertypen durchsuchen...
-
+
+ Show sub types with at least:
+ Untertypen anzeigen mit mindestens:
+
+
+
+ cards
+ Karten
+
+
+ Do not display card sub-types with less than this amount of cards in the databaseKartenuntertypen mit weniger als dieser Anzahl Karten in der Datenbank nicht anzeigen
-
+ Filter mode (AND/OR/NOT conjunctions of filters)Filtermodus (UND/ODER/NICHT Verknüpfungen der Filter)
-
+ Mode: Exact MatchModus: Exakte Übereinstimmung
-
+ Mode: IncludesModus: Enthält
@@ -9721,52 +9997,22 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
-
+ VisualVisuell
-
+ Loading database ...Datenbank wird geladen...
-
+ Clear all filtersAlle Filter entfernen
-
- Sort by:
- Sortieren nach:
-
-
-
- Filter by:
- Filtern nach:
-
-
-
- Save and load filters
- Filter speichern und laden
-
-
-
- Filter by exact card name
- Nach exaktem Kartennamen filtern
-
-
-
- Filter by card sub-type
- Nach Kartenuntertyp filtern
-
-
-
- Filter by set
- Nach Set filtern
-
-
-
+ TableTisch
@@ -9774,56 +10020,64 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDeckDisplayOptionsWidget
-
+ Group by:Gruppieren nach:
-
+ Change how cards are divided into categories/groups.Wie Karten innerhalb ihrer Kategorien/Gruppierungen sortiert werden ändern
-
+ Sort by:Sortieren nach:
-
+ Click and drag to change the sort order within the groupsKlicken und ziehen, um die Sortierungsreihenfolge innerhalb von Gruppen zu ändern
-
+ Configure how cards are sorted within their groupsWie Karten innerhalb ihrer Gruppierung sortiert werden einstellen
-
-
+
+ Toggle Layout: OverlapUmschalten des Layouts: Überlappung
-
+ Change how cards are displayed within zones (i.e. overlapped or fully visible.)Wie Karten innerhalb von Zonen angezeigt werden ändern ( z.B. überlappend oder vollständig sichtbar)
-
+ Toggle Layout: FlatUmschalten des Layouts: Flach
+
+ VisualDeckEditorPlaceholderWidget
+
+
+ Add cards using the search bar or database tab to have them appear here
+ Karten über die Suchleiste oder den Datenbanktab hinzufügen, damit sie hier angezeigt werden
+
+VisualDeckEditorSampleHandWidget
-
+ Draw a new sample handEine neue Probehand ziehen
-
+ Sample hand sizeProbehandgröße
@@ -9831,17 +10085,17 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDeckEditorWidget
-
+ Type a card name here for suggestions from the database...Hier einen Kartennahmen eingeben für Vorschläge aus der Datenbank...
-
+ Quick search and add cardSchnellsuche und Karte hinzufügen
-
+ Search for closest match in the database (with auto-suggestions) and add preferred printing to the deck on pressing enterNach bester Entsprechung in der Datenbank suchen (mit automatischen Vorschlägen) und die bevorzugte Auflage beim Betätigen der Eingabetaste dem Deck hinzufügen
@@ -9857,47 +10111,52 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
VisualDeckStorageQuickSettingsWidget
-
+ Show FoldersOrdner anzeigen
-
+ Show Tag FilterTagfilter anzeigen
-
+
+ Show Color Identity
+ Farbidentität anzeigen
+
+
+ Show Tags On Deck PreviewsTags auf Deckvorschauen anzeigen
-
+ Show Banner Card Selection OptionBannerkartenauswahloption anzeigen
-
+ Draw unused Color IdentitiesUngenutzte Farbidentitäten ziehen
-
+ Unused Color Identities OpacityDeckkraft ungenutzter Farbidentitäten
-
+ Deck tooltip:Decktooltip:
-
+ NoneKeine
-
+ FilepathDateipfad
@@ -9998,133 +10257,133 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
WndSets
-
+ Move selected set to the topAusgewählte Edition an die Spitze verschieben
-
+ Move selected set upnach oben verschieben
-
+ Move selected set downnach unten verschieben
-
+ Move selected set to the bottomAusgewählte Edition ans Ende verschieben
-
+ Search by set name, code, or typeSuche nach Setname, Code oder Typ
-
+ Default orderStandardreihenfolge
-
+ Restore original art priority orderStelle die ursprüngliche Reihenfolge für Bilderprioritäten wieder her
-
+ Enable all setsAlle Editionen aktivieren
-
+ Disable all setsAlle Editionen deaktivieren
-
+ Enable selected set(s)Ausgewählte Edition(en) aktivieren
-
+ Disable selected set(s)Ausgewählte Edition(en) deaktivieren
-
+ Deck EditorDeckeditor
-
+ Use CTRL+A to select all sets in the view.Benutzen Sie Strg+A, um alle Sets in der Ansicht auszuwählen.
-
+ Only cards in enabled sets will appear in the card list of the deck editor.Nur Karten aus aktivierten Sets werden in der Kartenliste des Deckeditors angezeigt.
-
+ Image priority is decided in the following order:Bildpriorität wird auf folgende Reihenfolge festgelegt:
-
+ first the CUSTOM Folder (%1), then the Enabled Sets in this dialog (Top to Bottom)%1 is a link to the wikizuerst der BENUTZERDEFINIERTE Ordner (%1), dann die aktivierten Sets aus diesem Dialog (von oben nach unten)
-
+ Include cards rebalanced for Alchemy [requires restart]Karten, die für Alchemy augeglichen wurden, einschließen [erfordert Neustart]
-
+ Card ArtKartenzeichnung
-
+ How to use custom card artWie benutzerdefinierte Kartenbilder verwendet werden
-
+ HintsTipps
-
+ NoteNotiz
-
+ Sorting by column allows you to find a set while not changing set priority.Nach einer Spalte sortieren erlaubt, eine Edition zu finden, ohne die Editionspriorität zu verändern.
-
+ To enable ordering again, click the column header until this message disappears.Um die Sortierung erneut zu aktivieren, klicken Sie auf den Spaltenkopf bis diese Nachricht verschwindet.
-
+ Use the current sorting as the set priority insteadBenutze die momentane Sortierung als Editionspriorität.
-
+ Sorts the set priority using the same columnSortiert die Editionspriorität mit der selben Spalte
-
+ Manage setsEditionen verwalten
@@ -10132,72 +10391,72 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
ZoneViewWidget
-
+ Search by card name (or search expressions)Suche nach Kartennamen (oder Suchausdrücken)
-
+ UngroupedUngruppiert
-
+ Group by TypeGruppieren nach Kartentyp
-
+ Group by Mana ValueGruppieren nach Manabetrag
-
+ Group by ColorGruppieren nach Farbe
-
+ UnsortedUnsortiert
-
+ Sort by NameSortieren nach Name
-
+ Sort by TypeSortieren nach Kartentyp
-
+ Sort by Mana CostSortieren nach Manakosten
-
+ Sort by ColorsSortieren nach Farben
-
+ Sort by P/TSortieren nach P/T
-
+ Sort by SetSortieren nach Auflage
-
+ shuffle when closingbeim Schließen mischen
-
+ pile viewStapelansicht
@@ -10232,7 +10491,7 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
-
+ Deck EditorDeckeditor
@@ -10313,7 +10572,7 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
-
+ ReplaysWiederholungen
@@ -10465,7 +10724,7 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
-
+ Reset LayoutDarstellung zurücksetzen
@@ -10886,8 +11145,9 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
- Toggle Untap
- Enttappen umschalten
+ Toggle Skip Untapping
+ Toggle Untap
+ Enttapen überspringen umschalten
@@ -10906,98 +11166,102 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
+ Play Card, Face Down
+ Karte spielen, verdeckt
+
+
+ Attach Card...Karte anlegen...
-
+ Unattach CardKarte lösen
-
+ Clone CardKarte klonen
-
+ Create Token...Spielstein erstellen...
-
+ Create All Related TokensAlle zugehörigen Spielsteine erstellen
-
+ Create Another TokenEinen weiter Spielstein erstellen
-
+ Set Annotation...Notiz setzen...
-
+ Select All Cards in ZoneAlle Karten in der Zone auswählen
-
+ Select All Cards in RowAlle Karten in der Reihe auswählen
-
+ Select All Cards in ColumnAlle Karten in der Spalte auswählen
-
+ Reveal Selected Cards to All PlayersAusgewählte Karten allen Spielern vorzeigen
-
-
+
+ Bottom of LibraryUntere Karte der Bibliothek
-
+
-
-
+
+ ExileExil
-
+
-
+ GraveyardFriedhof
-
+ HandHand
-
-
+
+ Top of LibraryObere Karte der Bibliothek
-
-
+ Battlefield, Face DownSpielfeld, verdeckt
@@ -11033,234 +11297,246 @@ Bitte unterlassen Sie diese Aktivitäten oder weitere Schritte werden gegen Sie
-
+ StackStapel
-
+ Graveyard (Multiple)Friedhof (mehrere)
-
-
+
+
+ Graveyard (Multiple), Face Down
+ Friedhof (mehrere), verdeckt
+
+
+
+ Exile (Multiple)Exil (mehrere)
-
+
+
+ Exile (Multiple), Face Down
+ Exil (mehrere), verdeckt
+
+
+ Stack Until FoundStapel bis gefunden
-
+ Draw Bottom CardUnterste Karte ziehen
-
+ Draw Multiple Cards from Bottom...Mehrere Karten von unten ziehen...
-
+ Draw Arrow...Pfeil zeichnen...
-
+ Remove Local ArrowsLokale Pfeile entfernen
-
+ Leave GameSpiel verlassen
-
+ ConcedeAufgeben
-
+ Roll Dice...Würfeln...
-
+ Shuffle LibraryBibliothek mischen
-
+ Shuffle Top Cards of LibraryOberste Karten der Bibliothek mischen
-
+ Shuffle Bottom Cards of LibraryUnterste Karten der Bibliothek mischen
-
+ MulliganMulligan
-
+ Mulligan (Same hand size)Mulligan nehmen (Gleiche Handgröße)
-
+ Mulligan (Hand size - 1)Mulligan nehmen (Handgröße -1)
-
+ Draw a CardEine Karte ziehen
-
+ Draw Multiple Cards...Mehrere Karten ziehen...
-
+ Undo DrawZiehen rückgängig machen
-
+ Always Reveal Top CardOberste Karte aufgedeckt lassen
-
+ Always Look At Top CardOberste Karte immer betrachten
-
+ Sort Hand by NameHand sortieren nach Name
-
+ Sort Hand by TypeHand sortieren nach Typ
-
+ Sort Hand by Mana ValueHand sortieren nach Manawert
-
+ Reveal Hand to All PlayersHand allen Spielern vorzeigen
-
+ Reveal Random Card to All PlayersZufällige Karte allen Spielern vorzeigen
-
+ Rotate View ClockwiseAnsicht im Uhrzeigersinn drehen
-
+ Rotate View CounterclockwiseAnsicht gegen den Uhrzeigersinn drehen
-
+ Unfocus Text BoxTextboxfokus aufheben
-
+ Focus ChatChat fokussieren
-
+ Clear ChatChat leeren
-
+ RefreshAktualisieren
-
+ Skip ForwardVorspulen
-
+ Skip BackwardZurückspulen
-
+ Skip Forward by a lotSehr weit vorspulen
-
+ Skip Backward by a lotSehr weit zurückspulen
-
+ Play/PauseAbspielen/Pausieren
-
+ Toggle Fast ForwardSchnelldurchlauf umschalten
-
+ HomeZuhause
-
+ Visual Deck StorageVisuelle Deckablage
-
+ Deck StorageDeckablage
-
+ ServerServer
-
+ AccountBenutzerkonto
-
+ AdministrationAdministration
-
+ LogsLogs
diff --git a/cockatrice/translations/cockatrice_el.ts b/cockatrice/translations/cockatrice_el.ts
index dac77fe01..5bd3b2826 100644
--- a/cockatrice/translations/cockatrice_el.ts
+++ b/cockatrice/translations/cockatrice_el.ts
@@ -23,12 +23,12 @@
AbstractDlgDeckTextEdit
-
+ &Refresh
-
+ Parse Set Name and Number (if available)
@@ -36,60 +36,60 @@
AbstractTabDeckEditor
-
+ Open in new tab
-
+ Are you sure?
-
+ The decklist has been modified.
Do you want to save the changes?
-
-
-
-
-
-
+
+
+
+
+
+ Error
-
+ Could not open deck at %1
-
+ Could not save remote deck
-
-
+
+ The deck could not be saved.
Please check that the directory is writable and try again.
-
+ Save deck
-
+ The deck could not be saved.
-
+ There are no cards in your deck to be exported
@@ -131,190 +131,168 @@ Please check that the directory is writable and try again.
AppearanceSettingsPage
-
+ seconds
-
+ ErrorΣφάλμα
-
+ Could not create themes directory at '%1'.
-
- Enabling this feature will disable the use of the Printing Selector.
-
-You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
-
-You will have to use the Set Manager, available through Card Database -> Manage Sets.
-
-Are you sure you would like to enable this feature?
-
-
-
-
- Disabling this feature will enable the Printing Selector.
-
-You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
-
-You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
-
-Are you sure you would like to disable this feature?
-
-
-
-
- Confirm Change
-
-
-
-
+ Theme settingsΡυθμίσεις θέματος
-
+ Current theme:Τρέχον θέμα:
-
+ Open themes folderΆνοιγμα φακέλου θεμάτων
-
+ Home tab background source:
-
+ Home tab background shuffle frequency:
-
+ Disabled
-
+
+ Display card name of background in bottom right:
+
+
+
+ Menu settings
-
+ Show keyboard shortcuts in right-click menus
-
+ Show game filter toolbar above list in room tab
-
+ Card renderingΑπόδοση κάρτας
-
+ Display card names on cards having a pictureΕμφανίστε τα ονόματα καρτών σε κάρτες με εικόνα
-
+ Auto-Rotate cards with sideways layout
-
+ Override all card art with personal set preference (Pre-ProviderID change behavior)
-
+ Bump sets that the deck contains cards from to the top in the printing selector
-
+ Scale cards on mouse overΑύξηση της κλίμακας των καρτών με την επιλογή του ποντικιού
-
+ Use rounded card corners
-
+ Minimum overlap percentage of cards on the stack and in vertical hand
-
+ Maximum initial height for card view window:
-
-
+
+ rows
-
+ Maximum expanded height for card view window:
-
+ Card counters
-
+ Counter %1
-
+ Hand layoutΔιάταξη χειρός
-
+ Display hand horizontally (wastes space)Εμφάνιση χεριού οριζόντια (σπατάλη χώρου)
-
+ Enable left justificationΕνεργοποιήστε την αριστερή αιτιολόγηση
-
+ Table grid layoutΔιάταξη πλέγματος πίνακα
-
+ Invert vertical coordinateΑνατροπή κάθετης συντεταγμένης
-
+ Minimum player count for multi-column layout:Ελάχιστος αριθμός παικτών για διάταξη πολλαπλών στηλών:
-
+ Maximum font size for information displayed on cards:Μέγιστο μέγεθος γραμματοσειράς για πληροφορίες που εμφανίζονται στις κάρτες:
@@ -322,7 +300,12 @@ Are you sure you would like to disable this feature?
ArchidektApiResponseDeckDisplayWidget
-
+
+ Back to results
+
+
+
+ Open Deck in Deck Editor
@@ -642,22 +625,22 @@ This is only saved for moderators and cannot be seen by the banned person.
CardInfoPictureWidget
-
+ View related cards
-
+ Add card to deck
-
+ Mainboard
-
+ Sideboard
@@ -693,124 +676,124 @@ This is only saved for moderators and cannot be seen by the banned person.
CardMenu
-
+ Re&veal to...
-
+ &All players
-
+ View related cards
-
+ Token:
-
+ All tokens
-
+ &Select All
-
+ S&elect Row
-
+ S&elect Column
-
+ &Play
-
+ &Hide
-
+ Play &Face Down
-
+ &Tap / UntapTurn sideways or back again
-
- Toggle &normal untapping
+
+ Skip &untapping
-
+ T&urn OverTurn face up/face down
-
+ &Peek at card face
-
+ &Clone
-
+ Attac&h to card...
-
+ Unattac&h
-
+ &Draw arrow...
-
+ &Set annotation...
-
+ Ca&rd counters
-
+ &Add counter (%1)
-
+ &Remove counter (%1)
-
+ &Set counters (%1)...
@@ -826,133 +809,133 @@ This is only saved for moderators and cannot be seen by the banned person.
CardZoneLogic
-
+ their handnominative
-
+ %1's handnominative
-
+ their librarylook at zone
-
+ %1's librarylook at zone
-
+ of their librarytop cards of zone,
-
+ of %1's librarytop cards of zone
-
+ their libraryreveal zone
-
+ %1's libraryreveal zone
-
+ their libraryshuffle
-
+ %1's libraryshuffle
-
+ their librarynominative
-
-
- %1's library
- nominative
-
-
+ %1's library
+ nominative
+
+
+
+ their graveyardnominative
-
+ %1's graveyardnominative
-
+ their exilenominative
-
+ %1's exilenominative
-
-
- their sideboard
- look at zone
-
-
-
-
- %1's sideboard
- look at zone
-
- their sideboard
- nominative
+ look at zone%1's sideboard
+ look at zone
+
+
+
+
+ their sideboardnominative
-
+
+ %1's sideboard
+ nominative
+
+
+
+ their custom zone '%1'nominative
-
+ %1's custom zone '%2'nominative
@@ -1014,7 +997,7 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckEditorCardDatabaseDockWidget
-
+ Card Database
@@ -1022,7 +1005,7 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckEditorCardInfoDockWidget
-
+ Card Info
@@ -1045,32 +1028,32 @@ This is only saved for moderators and cannot be seen by the banned person.
-
+ Select Printing
-
+ Show on EDHRec (Commander)
-
+ Show on EDHRec (Card)
-
+ Show Related cards
-
+ Add card to &maindeck
-
+ Add card to &sideboard
@@ -1078,32 +1061,32 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckEditorDeckDockWidget
-
+ Loading Database...
-
+ Banner Card
-
+ Main Type
-
+ Mana Cost
-
+ Colors
-
+ Select Printing
@@ -1176,17 +1159,17 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckEditorFilterDockWidget
-
+ Filters
-
+ &Clear all filters
-
+ Delete selected
@@ -1309,7 +1292,7 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckEditorPrintingSelectorDockWidget
-
+ Printing Selector
@@ -1317,166 +1300,166 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckEditorSettingsPage
-
-
+
+ Update Spoilers
-
-
+
+ SuccessΕπιτυχία
-
+ Download URLs have been reset.
-
+ Downloaded card pictures have been reset.
-
+ ErrorΣφάλμα
-
+ One or more downloaded card pictures could not be cleared.
-
+ Add URL
-
-
+
+ URL:
-
-
+
+ Edit URL
-
+ Network Cache Size:
-
+ Redirect Cache TTL:
-
+ How long cached redirects for urls are valid for.
-
+ Picture Cache Size:
-
+ Add New URL
-
+ Remove URL
-
+ Day(s)
-
+ Updating...
-
+ Choose path
-
+ URL Download Priority
-
+ Spoilers
-
+ Download Spoilers Automatically
-
+ Spoiler Location:
-
+ Last Change
-
+ Spoilers download automatically on launch
-
+ Press the button to manually update without relaunching
-
+ Do not close settings until manual update is complete
-
+ Download card pictures on the fly
-
+ How to add a custom URL
-
+ Delete Downloaded Images
-
+ Reset Download URLs
-
+ On-disk cache for downloaded pictures
-
+ In-memory cache for pictures not currently on screen
@@ -1484,32 +1467,32 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckListHistoryManagerWidget
-
+ Undo
-
+ Redo
-
+ Undo/Redo history
-
+ Click on an entry to revert to that point in the history.
-
+ [redo]
-
+ [undo]
@@ -1517,27 +1500,27 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckListModel
-
+ Count
-
+ Set
-
+ NumberΑριθμός
-
+ Provider ID
-
+ CardΚάρτα
@@ -1545,12 +1528,12 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckLoader
-
+ Common deck formats (%1)
-
+ All files (*.*)
@@ -1647,94 +1630,94 @@ This is only saved for moderators and cannot be seen by the banned person.
DeckPreviewWidget
-
+ Banner Card
-
+ Open in deck editor
-
+ Edit Tags
-
+ Rename Deck
-
+ Save Deck to Clipboard
-
+ Annotated
-
+ Annotated (No set info)
-
+ Not Annotated
-
+ Not Annotated (No set info)
-
+ Rename File
-
+ Delete File
-
+ Set Banner Card
-
-
+
+ New name:
-
-
+
+ Error
-
+ Rename failed
-
+ Delete file
-
+ Are you sure you want to delete the selected file?
-
+ Delete failed
@@ -1767,32 +1750,32 @@ This is only saved for moderators and cannot be seen by the banned person.
-
+ Added (%1): %2 (%3) %4
-
+ Moved to %1 1 × "%2" (%3)
-
+ Removed "%1" (all copies)
-
+ %1 1 × "%2" (%3)
-
+ Added
-
+ Removed
@@ -1859,29 +1842,29 @@ This is only saved for moderators and cannot be seen by the banned person.
-
-
+
+ ErrorΣφάλμα
-
+ The selected file could not be loaded.Δεν ήταν δυνατή η φόρτωση του επιλεγμένου αρχείου.
-
+ Deck is greater than maximum file size.
-
+ Are you sure you want to force start?
This will kick all non-ready players from the game.
-
+ Cockatrice
@@ -2374,17 +2357,17 @@ To remove your current avatar, confirm without choosing a new image.
DlgEditDeckInClipboard
-
+ Edit deck in clipboard
-
+ Error
-
+ Invalid deck list.
@@ -2884,17 +2867,17 @@ Make sure to enable the 'Token' set in the "Manage sets" dia
DlgLoadDeckFromClipboard
-
+ Load deck from clipboardΦόρτωση deck από το clipboard
-
+ ErrorΣφάλμα
-
+ Invalid deck list.Μη έγκυρο deck list
@@ -2902,43 +2885,43 @@ Make sure to enable the 'Token' set in the "Manage sets" dia
DlgLoadDeckFromWebsite
-
+ Paste a link to a decklist site here to import it.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
-
-
-
-
+
+
+
+
+ Load Deck from Website
-
+ No parser available for this deck provider.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
+ Network error: %1
-
+ Received empty deck data.
-
+ Failed to parse deck data: %1
-
+ The provided URL is not recognized as a valid deck URL.
Valid deck URLs look like this:
@@ -2957,40 +2940,73 @@ https://tappedout.net/mtg-decks/your-deck-name/Φόρτωση deck
+
+ DlgLocalGameOptions
+
+
+ Players:
+
+
+
+
+ General
+
+
+
+
+ Starting life total:
+
+
+
+
+ Game setup options
+
+
+
+
+ Remember settings
+
+
+
+
+ Local game options
+
+
+DlgMoveTopCardsUntil
-
+ Card name (or search expressions):
-
+ Number of hits:
-
+ Auto play hits
-
+ Put top cards on stack until...
-
+ No cards matching the search expression exists in the card database. Proceed anyways?
-
+ Cockatrice
-
+ Invalid filter
@@ -3151,12 +3167,12 @@ Your email will be used to verify your account.
DlgSettings
-
+ Unknown Error loading card database
-
+ Your card database is invalid.
Cockatrice may not function correctly with an invalid database
@@ -3167,7 +3183,7 @@ Would you like to change your database location setting?
-
+ Your card database version is too old.
This can cause problems loading card information or images
@@ -3184,7 +3200,7 @@ Would you like to change your database location setting?
Θα θέλατε να αλλάξετε τη ρυθμισμένη θέση της βάσης δεδομένων σας;
-
+ Your card database did not finish loading
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues with your cards.xml attached
@@ -3193,21 +3209,21 @@ Would you like to change your database location setting?
-
+ File Error loading your card database.
Would you like to change your database location setting?
-
+ Your card database was loaded but contains no cards.
Would you like to change your database location setting?
-
+ Unknown card database load status
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues
@@ -3216,59 +3232,59 @@ Would you like to change your database location setting?
-
-
-
+
+
+ ErrorΣφάλμα
-
+ The path to your deck directory is invalid. Would you like to go back and set the correct path?
-
+ The path to your card pictures directory is invalid. Would you like to go back and set the correct path?
-
+ SettingsΡυθμίσεις
-
+ GeneralΓενικά
-
+ AppearanceΕμφάνιση
-
+ User InterfaceΔιεπαφή Χρήστη
-
+ Card Sources
-
+ Chat
-
+ SoundΉχος
-
+ ShortcutsΣυντομεύσεις
@@ -3581,67 +3597,67 @@ You may have to manually download the new version.
DrawProbabilityWidget
-
+ Draw Probability
-
+ Probability of drawing
-
+ Card Name
-
+ Type
-
+ Subtype
-
+ Mana Value
-
+ At least
-
+ Exactly
-
+ card(s) having drawn at least
-
+ cards
-
+ Category
-
+ Qty
-
+ Odds (%)
@@ -4089,143 +4105,143 @@ You may have to manually download the new version.
GeneralSettingsPage
-
+ Reset all paths
-
+ All paths have been reset
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Choose pathΕπιλέξτε θέση
-
+ Personal settings
-
+ Language:Γλώσσα:
-
+ Paths (editing disabled in portable mode)
-
+ Paths
-
+ How to help with translations
-
+ Decks directory:Φάκελος deck:
-
+ Filters directory:
-
+ Replays directory:Φάκελος replay:
-
+ Pictures directory:Φάκελος εικόνων:
-
+ Card database:Βάση δεδομένων καρτών
-
+ Custom database directory:
-
+ Token database:Βάση δεδομένων token:
-
+ Update channel
-
+ Check for client updates on startup
-
+ Check for card database updates on startup
-
+ Don't check
-
+ Prompt for update
-
+ Always update in the background
-
+ Check for card database updates every
-
+ days
-
+ Notify if a feature supported by the server is missing in my client
-
+ Automatically run Oracle when running a new version of Cockatrice
-
+ Show tips on startup
-
+ Last update check on %1 (%2 days ago)
@@ -4233,47 +4249,47 @@ You may have to manually download the new version.
GraveyardMenu
-
+ &Graveyard
-
+ &View graveyard
-
+ &Move graveyard to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &All players
-
+ &Hand
-
+ &Exile
-
+ Reveal random card to...
@@ -4281,88 +4297,88 @@ You may have to manually download the new version.
HandMenu
-
+ &Hand
-
+ &View hand
-
+ Sort hand by...
-
+ Name
-
+ Type
-
+ Mana Value
-
+ Take &mulligan (Choose hand size)
-
+ Take mulligan (Same hand size)
-
+ Take mulligan (Hand size - 1)
-
+ &Move hand to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &Graveyard
-
+ &Exile
-
+ &Reveal hand to...
-
-
+
+ All players
-
+ Reveal r&andom card to...
@@ -4370,52 +4386,52 @@ You may have to manually download the new version.
HomeWidget
-
+ Create New Deck
-
+ Browse Decks
-
+ Browse Card Database
-
+ Browse EDHRec
-
+ Browse Archidekt
-
+ View Replays
-
+ Quit
-
+ Connecting...
-
+ Connect
-
+ Play
@@ -4423,193 +4439,213 @@ You may have to manually download the new version.
LibraryMenu
-
+ &Library
-
+ &View library
-
+ View &top cards of library...
-
+ View bottom cards of library...
-
+ Reveal &library to...
-
+ Lend library to...
-
+ Reveal &top cards to...
-
+ &Top of library...
-
+ &Bottom of library...
-
+ &Always reveal top card
-
+ &Always look at top card
-
+ &Open deck in deck editor
-
+ &Draw card
-
+ D&raw cards...
-
+ &Undo last draw
-
+ Shuffle
-
+ &Play top card
-
+ Play top card &face down
-
+ Put top card on &bottom
-
+ Move top card to grave&yard
-
+ Move top card to e&xile
-
+ Move top cards to &graveyard...
-
+
+ Move top cards to graveyard face down...
+
+
+
+ Move top cards to &exile...
-
+
+ Move top cards to exile face down...
+
+
+
+ Put top cards on stack &until...
-
+ Shuffle top cards...
-
+ &Draw bottom card
-
+ D&raw bottom cards...
-
+ &Play bottom card
-
+ Play bottom card &face down
-
+ Move bottom card to grave&yard
-
+ Move bottom card to e&xile
-
+ Move bottom cards to &graveyard...
-
+
+ Move bottom cards to graveyard face down...
+
+
+
+ Move bottom cards to &exile...
-
+
+ Move bottom cards to exile face down...
+
+
+
+ Put bottom card on &top
-
+ Shuffle bottom cards...
-
-
+
+ &All players
-
+ Reveal top cards of library
-
+ Number of cards: (max. %1)
@@ -4700,18 +4736,8 @@ Will now login.
-
- Number of players
-
-
-
-
- Please enter the number of players.
-
-
-
-
-
+
+ Player %1
@@ -4814,8 +4840,8 @@ Will now login.
-
-
+
+ ErrorΣφάλμα
@@ -5216,144 +5242,144 @@ Local version is %1, remote version is %2.
-
+ New Version
-
+ Congratulations on updating to Cockatrice %1!
Oracle will now launch to update your card database.
-
+ Cockatrice installed
-
+ Congratulations on installing Cockatrice %1!
Oracle will now launch to install the initial card database.
-
+ Card databaseΒάση δεδομένων καρτών
-
+ Cockatrice is unable to load the card database.
Do you want to update your card database now?
If unsure or first time user, choose "Yes"
-
-
+
+ YesΝαι
-
-
+
+ NoΌχι
-
+ Open settingsΆνοιγμα ρυθμίσεων
-
+ New sets foundΒρέθηκαν νέα σετ
-
+ %n new set(s) found in the card database
Set code(s): %1
Do you want to enable it/them?
-
+ View setsΕμφάνιση σετ
-
+ WelcomeΚαλωσήρθατε
-
+ Hi! It seems like you're running this version of Cockatrice for the first time.
All the sets in the card database have been enabled.
Read more about changing the set order or disabling specific sets and consequent effects in the "Manage Sets" dialog.
-
-
+
+ InformationΠληροφορίες
-
+ A card database update is already running.
-
+ Unable to run the card database updater:
-
+ Card database update running.
-
+ Failed to start. The file might be missing, or permissions might be incorrect.
-
+ The process crashed some time after starting successfully.
-
+ Timed out. The process took too long to respond. The last waitFor...() function timed out.
-
+ An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel.
-
+ An error occurred when attempting to read from the process. For example, the process may not be running.
-
+ Unknown error occurred.
-
+ The card database updater exited with an error:
%1
-
+ This server supports additional features that your client doesn't have.
This is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.
@@ -5361,54 +5387,54 @@ To update your client, go to Help -> Check for Updates.
-
-
-
-
-
+
+
+
+
+ Load sets/cardsΦόρτωση σετ/καρτών
-
+ Selected file cannot be found.Το επιλεγμένο αρχείο δε βρέθηκε.
-
+ You can only import XML databases at this time.
-
+ The new sets/cards have been added successfully.
Cockatrice will now reload the card database.
-
+ Sets/cards failed to import.
-
-
-
+
+
+ Reset Password
-
+ Your password has been reset successfully, you can now log in using the new credentials.
-
+ Failed to reset user account password, please contact the server operator to reset your password.
-
+ Activation request received, please check your email for an activation token.
@@ -5459,7 +5485,7 @@ Cockatrice will now reload the card database.
ManaBaseWidget
-
+ Mana Base
@@ -5613,590 +5639,610 @@ Cockatrice will now reload the card database.
MessageLogWidget
-
+ from playαπό το παιχνίδι
-
+ from their graveyard
-
+ from exileαπό την εξορία
-
+ from their hand
-
+ the top card of %1's libraryτην πρώτη κάρτα της βιβλιοθήκης του/της %1
-
+ the top card of their library
-
+ from the top of %1's libraryαπό την κορυφή της βιβλιοθήκης του/της %1
-
+ from the top of their library
-
+ the bottom card of %1's libraryτην τελευταία κάρτα της βιβλιοθήκης του/της %1
-
+ the bottom card of their library
-
+ from the bottom of %1's libraryαπό το τέλος της βιβλιοθήκης του/της %1
-
+ from the bottom of their library
-
+ from %1's libraryαπό τη βιβλιοθήκη του/της %1
-
+ from their library
-
+ from sideboardαπό το sideboard
-
+ from the stackαπό το stack
-
+ from custom zone '%1'
-
+ %1 is now keeping the top card %2 revealed.
-
+ %1 is not revealing the top card %2 any longer.
-
+ %1 can now look at top card %2 at any time.
-
+ %1 no longer can look at top card %2 at any time.
-
+ %1 attaches %2 to %3's %4.
-
+ %1 has conceded the game.
-
+ %1 has unconceded the game.
-
+ %1 has restored connection to the game.
-
+ %1 has lost connection to the game.
-
+ %1 points from their %2 to themselves.
-
+ %1 points from their %2 to %3.
-
+ %1 points from %2's %3 to themselves.
-
+ %1 points from %2's %3 to %4.
-
+ %1 points from their %2 to their %3.
-
+ %1 points from their %2 to %3's %4.
-
+ %1 points from %2's %3 to their own %4.
-
+ %1 points from %2's %3 to %4's %5.
-
+ %1 creates a face down token.
-
+ %1 creates token: %2%3.
-
+ %1 has loaded a deck (%2).Ο/Η %1 φόρτωσε ένα deck (%2).
-
+ %1 has loaded a deck with %2 sideboard cards (%3).Ο/Η %1 φόρτωσε ένα deck με %2 κάτρες στο sideboard (%3).
-
+ %1 destroys %2.
-
+ a cardμία κάρτα
-
+ %1 gives %2 control over %3.ο/η %1 δίνει στον/στην %2 τον έλεγχο του %3 .
-
+ %1 puts %2 into play%3 face down.
-
+ %1 puts %2 into play%3.ο/η %1 βάζει στο παιχνίδι το %2%3.
-
+
+ %1 puts %2%3 into their graveyard face down.
+
+
+
+ %1 puts %2%3 into their graveyard.
+
+
+ %1 exiles %2%3 face down.
+
+ %1 exiles %2%3.ο/η %1 εξορίζει το %2%3.
-
+ %1 moves %2%3 to their hand.
-
+ %1 puts %2%3 into their library.
-
+ %1 puts %2%3 onto the bottom of their library.
-
+ %1 puts %2%3 on top of their library.
-
+ %1 puts %2%3 into their library %4 cards from the top.
-
+ %1 moves %2%3 to sideboard.
-
+
+ %1 plays %2%3 face down.
+
+
+
+ %1 plays %2%3.
-
+
+ %1 moves %2%3 to custom zone '%4' face down.
+
+
+
+ %1 moves %2%3 to custom zone '%4'.
-
+ %1 tries to draw from an empty library
-
+ %1 draws %2 card(s).
-
+ %1 is looking at %2.
-
+ %1 is looking at the %4 %3 card(s) %2.top card for singular, top %3 cards for plural
-
+ bottom
-
+ top
-
+ %1 turns %2 face-down.
-
+ %1 turns %2 face-up.
-
+ The game has been closed.Το παιχνίδι έχει κλείσει
-
+ The game has started.Το παιχνίδι ξεκίνησε.
-
+ You are flooding the game. Please wait a couple of seconds.
-
+ %1 has joined the game.
-
+ %1 is now watching the game.Ο/Η %1 παρακολουθεί το παιχνίδι.
-
+ You have been kicked out of the game.Σας απέβαλαν από το παιχνίδι.
-
+ %1 has left the game (%2).
-
+ %1 is not watching the game any more (%2).
-
+ %1 is not ready to start the game any more.
-
+ %1 shuffles their deck and draws a new hand of %2 card(s).
-
+ %1 shuffles their deck and draws a new hand.
-
+ You are watching a replay of game #%1.
-
+ %1 is ready to start the game.
-
+ cardsan unknown amount of cards
-
+ %1 card(s)a card for singular, %1 cards for plural
-
+ %1 lends %2 to %3.
-
+ %1 reveals %2 to %3.
-
+ %1 reveals %2.
-
+ %1 randomly reveals %2%3 to %4.
-
+ %1 randomly reveals %2%3.
-
+ %1 peeks at face down card #%2.
-
+ %1 peeks at face down card #%2: %3.
-
+ %1 reveals %2%3 to %4.
-
+ %1 reveals %2%3.
-
+ %1 reversed turn order, now it's %2.
-
+ reversed
-
+ normal
-
+ Heads
-
+ Tails
-
+ %1 flipped a coin. It landed as %2.
-
+ %1 rolls a %2 with a %3-sided die.
-
+ %1 flips %2 coins. There are %3 heads and %4 tails.
-
+ %1 rolls a %2-sided dice %3 times: %4.
-
+ %1's turn.
-
+ %1 sets annotation of %2 to %3.
-
+ %1 places %2 "%3" counter(s) on %4 (now %5).
-
+ %1 removes %2 "%3" counter(s) from %4 (now %5).
-
+ %1 sets counter %2 to %3 (%4%5).
-
+ %1 sets %2 to not untap normally.
-
+ %1 sets %2 to untap normally.
-
+ %1 removes the PT of %2.
-
+ %1 changes the PT of %2 from nothing to %4.
-
+ %1 changes the PT of %2 from %3 to %4.
-
+ %1 has locked their sideboard.
-
+ %1 has unlocked their sideboard.
-
+ %1 taps their permanents.
-
+ %1 untaps their permanents.
-
+ %1 taps %2.
-
+ %1 untaps %2.
-
+ %1 shuffles %2.
-
+ %1 shuffles the bottom %3 cards of %2.
-
+ %1 shuffles the top %3 cards of %2.
-
+ %1 shuffles cards %3 - %4 of %2.
-
+ %1 unattaches %2.
-
+ %1 undoes their last draw.
-
+ %1 undoes their last draw (%2).
@@ -6204,110 +6250,110 @@ Cockatrice will now reload the card database.
MessagesSettingsPage
-
+ Word1 Word2 Word3
-
+ Add New Message
-
+ Edit Message
-
+ Remove Message
-
+ Add message
-
-
+
+ Message:
-
+ Edit message
-
+ Chat settings
-
+ Custom alert words
-
+ Enable chat mentions
-
+ Enable mention completer
-
+ In-game message macros
-
+ How to use in-game message macros
-
+ Ignore chat room messages sent by unregistered users
-
+ Ignore private messages sent by unregistered users
-
-
+
+ Invert text color
-
+ Enable desktop notifications for private messages
-
+ Enable desktop notification for mentions
-
+ Enable room message history on join
-
-
+
+ (Color is hexadecimal)
-
+ Separate words with a space, alphanumeric characters only
@@ -6320,32 +6366,37 @@ Cockatrice will now reload the card database.
-
+ &Top of library in random order
-
+ X cards from the top of library...
-
+ &Bottom of library in random order
-
+
+ T&able
+
+
+
+ &Hand
-
+ &Graveyard
-
+ &Exile
@@ -6487,57 +6538,57 @@ Cockatrice will now reload the card database.
PhasesToolbar
-
+ Untap step
-
+ Upkeep step
-
+ Draw step
-
+ First main phase
-
+ Beginning of combat step
-
+ Declare attackers step
-
+ Declare blockers step
-
+ Combat damage step
-
+ End of combat step
-
+ Second main phase
-
+ End of turn step
@@ -6554,134 +6605,138 @@ Cockatrice will now reload the card database.
PlayerActions
-
+ View top cards of library
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Number of cards: (max. %1)
-
+ View bottom cards of library
-
+ Shuffle top cards of library
-
+ Shuffle bottom cards of library
-
+ Draw hand
-
+ 0 and lower are in comparison to current hand size
-
+ Draw cards
+
+
+
+
+
+ grave
+
+
- Move top cards to grave
+
+
+
+ exile
-
- Move top cards to exile
+
+ Move top cards to %1
-
- Move bottom cards to grave
+
+ Move bottom cards to %1
-
- Move bottom cards to exile
-
-
-
-
+ Draw bottom cards
-
-
+
+ C&reate another %1 token
-
+ Create tokens
-
-
+
+ Number:
-
+ Place card X cards from top of library
-
+ Which position should this card be placed:
-
+ (max. %1)
-
+ Change power/toughness
-
+ Change stats to:
-
+ Set annotation
-
+ Please enter the new annotation:
-
+ Set counters
@@ -6689,48 +6744,65 @@ Cockatrice will now reload the card database.
PlayerMenu
-
+ Player "%1"
-
+ &Counters
+
+
+ PrintingDisabledInfoWidget
-
- S&ay
+
+ The Printing Selector is disabled because you have currently enabled the setting to override all selected printings with personal set preferences.
+
+This setting means you'll only see the default printing for each card, instead of being able to select a printing, and will not see the printings other people have selected.
+
+
+
+
+
+
+ Enable printings againPrintingSelector
-
+ Display Navigation Buttons
+
+
+ Printing Selector
+
+ PrintingSelectorCardOverlayWidget
-
+ Preference
-
+ Pin Printing
-
+ Unpin Printing
-
+ Show Related cards
@@ -6779,17 +6851,25 @@ Cockatrice will now reload the card database.
-
-
+
+ Descending
-
+ Ascending
+
+ PrintingSelectorPlaceholderWidget
+
+
+ Select a card to view its available printings
+
+
+PtMenu
@@ -6928,6 +7008,33 @@ Cockatrice will now reload the card database.
A .cod version of this deck already exists. Overwrite it?
+
+
+ Enabling this feature will disable the use of the Printing Selector.
+
+You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
+
+You will have to use the Set Manager, available through Card Database -> Manage Sets.
+
+Are you sure you would like to enable this feature?
+
+
+
+
+ Disabling this feature will enable the Printing Selector.
+
+You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
+
+You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
+
+Are you sure you would like to disable this feature?
+
+
+
+
+ Confirm Change
+
+ QPlatformTheme
@@ -7076,37 +7183,37 @@ Cockatrice will now reload the card database.
RfgMenu
-
+ &Exile
-
+ &View exile
-
+ &Move exile to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &Hand
-
+ &Graveyard
@@ -7149,6 +7256,14 @@ Cockatrice will now reload the card database.
+
+ SayMenu
+
+
+ S&ay
+
+
+SequenceEdit
@@ -7213,53 +7328,53 @@ Cockatrice will now reload the card database.
ShortcutSettingsPage
-
-
+
+ Restore all default shortcuts
-
+ Do you really want to restore all default shortcuts?
-
+ Clear all default shortcuts
-
+ Do you really want to clear all shortcuts?
-
+ Section:
-
+ Action:
-
+ Shortcut:
-
+ How to set custom shortcuts
-
+ Clear all shortcuts
-
+ Search by shortcut name
@@ -7326,27 +7441,27 @@ Please check your shortcut settings!
SoundSettingsPage
-
+ Enable &sounds
-
+ Current sounds theme:
-
+ Test system sound engine
-
+ Sound settings
-
+ Master volume
@@ -7562,59 +7677,123 @@ Please check your shortcut settings!
TabArchidekt
-
-
+
+
+ Desc.
-
- Asc.
+
+
+ AND
-
-
- Any Bracket
+
+
+ Require ALL selected colors
-
- Deck name contains...
+
+
+ Deck name...
-
- Owner name contains...
+
+
+ Owner...
+
+
+
+
+
+ Packages
+
+
+
+
+
+ Advanced Filters
- Disabled
+ Bracket:
-
+
+
+ Any
+
+
+
+
+
+ Contains card...
+
+
+
+
+
+ Commander...
+
+
+
+
+
+ Tag...
+
+
+
+
+
+ Deck Size
+
+
+
+
+ Cards:
+
+
+
+
+
+ Asc.
+
+
+
+
+ Sort by:
+
+
+
+
+ Filter by:
+
+
+
+
+ Display Settings
+
+
+
+
+ Search
-
+
+ Formats
-
- Min. # of Cards:
-
-
-
-
- Page:
-
-
-
-
+ Archidekt:
@@ -7622,60 +7801,52 @@ Please check your shortcut settings!
TabDeckEditor
-
+ Card Info
-
+ Deck
-
+ Filters
-
+ &View
-
+ Card Database
-
+ Printing
-
-
-
-
-
+ Visible
-
-
-
-
-
+ Floating
-
+ Reset layout
-
+ Deck: %1
@@ -7683,61 +7854,55 @@ Please check your shortcut settings!
TabDeckEditorVisual
-
+ Visual Deck: %1
-
+ &Visual Deck Editor
-
-
+
+ Card Info
-
-
+
+ Deck
-
-
+
+ Filters
-
+ &View
-
+ Printing
-
-
-
-
+ Visible
-
-
-
-
+ Floating
-
+ Reset layout
@@ -7802,7 +7967,7 @@ Please check your shortcut settings!
-
+ New folder
@@ -7883,18 +8048,18 @@ Please enter a name:
-
+ Delete remote decks
-
+ Are you sure you want to delete the selected decks?
-
+ Name of new folder:
@@ -7912,12 +8077,12 @@ Please enter a name:
-
+ Error
-
+ Could not open deck at %1
@@ -7966,197 +8131,191 @@ Please enter a name:
TabGame
-
-
-
+
+
+ Replay
-
-
+
+ Game
-
-
+
+ Player List
-
-
+
+ Card Info
-
-
+
+ Messages
-
-
+
+ Replay Timeline
-
+ &Phases
-
+ &Game
-
+ Next &phase
-
+ Next phase with &action
-
+ Next &turn
-
+ Reverse turn order
-
+ &Remove all local arrows
-
+ Rotate View Cl&ockwise
-
+ Rotate View Co&unterclockwise
-
+ Game &information
-
+ Un&concede
-
-
-
+
+
+ &Concede
-
+ &Leave game
-
+ C&lose replay
-
+ &Focus Chat
-
+ &Say:
-
+ Selected cards
-
+ &View
-
-
-
-
+ Visible
-
-
-
-
+ Floating
-
+ Reset layout
-
+ Concede
-
+ Are you sure you want to concede this game?
-
+ Unconcede
-
+ You have already conceded. Do you want to return to this game?
-
+ Leave game
-
+ Are you sure you want to leave this game?
-
+ A player has joined game #%1
-
+ %1 has joined the game
-
+ You have been kicked out of the game.
@@ -9250,142 +9409,152 @@ Please refrain from engaging in this activity or further actions may be taken ag
UserInterfaceSettingsPage
-
+ General interface settings
-
+ &Double-click cards to play them (instead of single-click)
-
+ &Clicking plays all selected cards (instead of just the clicked card)
-
+ &Play all nonlands onto the stack (not the battlefield) by default
-
+ Do not delete &arrows inside of subphases
-
+ Close card view window when last card is removed
-
+ Auto focus search bar when card view window is opened
-
+ Annotate card text on tokens
-
-
- Use tear-off menus, allowing right click menus to persist on screen
-
-
-
-
- Notifications settings
-
-
-
-
- Enable notifications in taskbar
-
-
-
-
- Notify in the taskbar for game events while you are spectating
-
-
-
-
- Notify in the taskbar when users in your buddy list connect
-
-
-
-
- Animation settings
-
-
-
-
- &Tap/untap animation
-
-
-
-
- Deck editor/storage settings
-
-
-
-
- Open deck in new tab by default
-
-
- Use visual deck storage in game lobby
+ Show selection counter during drag selection
- Use selection animation for Visual Deck Storage
+ Show total selection counter
+
+
+
+
+ Use tear-off menus, allowing right click menus to persist on screen
- When adding a tag in the visual deck storage to a .txt deck:
+ Notifications settings
+
+
+
+
+ Enable notifications in taskbar
- do nothing
+ Notify in the taskbar for game events while you are spectating
+
+
+
+
+ Notify in the taskbar when users in your buddy list connect
- ask to convert to .cod
+ Animation settings
+
+
+
+
+ &Tap/untap animation
- always convert to .cod
+ Deck editor/storage settings
- Default deck editor type
+ Open deck in new tab by default
- Classic Deck Editor
+ Use visual deck storage in game lobby
- Visual Deck Editor
-
-
-
-
- Replay settings
+ Use selection animation for Visual Deck Storage
+ When adding a tag in the visual deck storage to a .txt deck:
+
+
+
+
+ do nothing
+
+
+
+
+ ask to convert to .cod
+
+
+
+
+ always convert to .cod
+
+
+
+
+ Default deck editor type
+
+
+
+
+ Classic Deck Editor
+
+
+
+
+ Visual Deck Editor
+
+
+
+
+ Replay settings
+
+
+
+ Buffer time for backwards skip via shortcut:
@@ -9449,23 +9618,24 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayColorFilterWidget
-
- Mode: Exact Match
+
+ Exact match
+
+
+
+
+ Includes
- Mode: Includes
+ Include / Exclude
+ Mode: Includes
-
- Mode: Include/Exclude
-
-
-
-
- Filter mode (AND/OR/NOT conjunctions of filters)
+
+ How selected and unselected colors are combined in the filter
@@ -9492,25 +9662,108 @@ Please refrain from engaging in this activity or further actions may be taken ag
+
+ VisualDatabaseDisplayFilterToolbarWidget
+
+
+ Sort by
+
+
+
+
+ Filter by
+
+
+
+
+ Save and load filters
+
+
+
+
+ Filter by exact card name
+
+
+
+
+ Filter by card main-type
+
+
+
+
+ Filter by card sub-type
+
+
+
+
+ Filter by set
+
+
+
+
+ Filter by format legality
+
+
+
+
+ Save/Load
+
+
+
+
+ Name
+
+
+
+
+ Main Type
+
+
+
+
+ Sub Type
+
+
+
+
+ Sets
+
+
+
+
+ Formats
+
+
+VisualDatabaseDisplayFormatLegalityFilterWidget
-
+
+ Show formats with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display formats with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9518,22 +9771,32 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayMainTypeFilterWidget
-
+
+ Show main types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card main-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9569,7 +9832,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayRecentSetFilterSettingsWidget
-
+ Filter to most recent sets
@@ -9577,19 +9840,19 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplaySetFilterWidget
-
+ Search sets...
-
-
+
+ Mode: Exact Match
-
-
+
+ Mode: Includes
@@ -9597,27 +9860,37 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplaySubTypeFilterWidget
-
+ Search subtypes...
-
+
+ Show sub types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card sub-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9631,52 +9904,22 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Visual
-
+ Loading database ...
-
+ Clear all filters
-
- Sort by:
-
-
-
-
- Filter by:
-
-
-
-
- Save and load filters
-
-
-
-
- Filter by exact card name
-
-
-
-
- Filter by card sub-type
-
-
-
-
- Filter by set
-
-
-
-
+ Table
@@ -9684,56 +9927,64 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckDisplayOptionsWidget
-
+ Group by:
-
+ Change how cards are divided into categories/groups.
-
+ Sort by:
-
+ Click and drag to change the sort order within the groups
-
+ Configure how cards are sorted within their groups
-
-
+
+ Toggle Layout: Overlap
-
+ Change how cards are displayed within zones (i.e. overlapped or fully visible.)
-
+ Toggle Layout: Flat
+
+ VisualDeckEditorPlaceholderWidget
+
+
+ Add cards using the search bar or database tab to have them appear here
+
+
+VisualDeckEditorSampleHandWidget
-
+ Draw a new sample hand
-
+ Sample hand size
@@ -9741,17 +9992,17 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckEditorWidget
-
+ Type a card name here for suggestions from the database...
-
+ Quick search and add card
-
+ Search for closest match in the database (with auto-suggestions) and add preferred printing to the deck on pressing enter
@@ -9767,47 +10018,52 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckStorageQuickSettingsWidget
-
+ Show Folders
-
+ Show Tag Filter
-
+
+ Show Color Identity
+
+
+
+ Show Tags On Deck Previews
-
+ Show Banner Card Selection Option
-
+ Draw unused Color Identities
-
+ Unused Color Identities Opacity
-
+ Deck tooltip:
-
+ None
-
+ Filepath
@@ -9908,133 +10164,133 @@ Please refrain from engaging in this activity or further actions may be taken ag
WndSets
-
+ Move selected set to the top
-
+ Move selected set up
-
+ Move selected set down
-
+ Move selected set to the bottom
-
+ Search by set name, code, or type
-
+ Default order
-
+ Restore original art priority order
-
+ Enable all sets
-
+ Disable all sets
-
+ Enable selected set(s)
-
+ Disable selected set(s)
-
+ Deck Editor
-
+ Use CTRL+A to select all sets in the view.
-
+ Only cards in enabled sets will appear in the card list of the deck editor.
-
+ Image priority is decided in the following order:
-
+ first the CUSTOM Folder (%1), then the Enabled Sets in this dialog (Top to Bottom)%1 is a link to the wiki
-
+ Include cards rebalanced for Alchemy [requires restart]
-
+ Card Art
-
+ How to use custom card art
-
+ Hints
-
+ Note
-
+ Sorting by column allows you to find a set while not changing set priority.
-
+ To enable ordering again, click the column header until this message disappears.
-
+ Use the current sorting as the set priority instead
-
+ Sorts the set priority using the same column
-
+ Manage sets
@@ -10042,72 +10298,72 @@ Please refrain from engaging in this activity or further actions may be taken ag
ZoneViewWidget
-
+ Search by card name (or search expressions)
-
+ Ungrouped
-
+ Group by Type
-
+ Group by Mana Value
-
+ Group by Color
-
+ Unsorted
-
+ Sort by Name
-
+ Sort by Type
-
+ Sort by Mana Cost
-
+ Sort by Colors
-
+ Sort by P/T
-
+ Sort by Set
-
+ shuffle when closing
-
+ pile view
@@ -10142,7 +10398,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Deck Editor
@@ -10223,7 +10479,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Replays
@@ -10375,7 +10631,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Reset Layout
@@ -10796,7 +11052,8 @@ Please refrain from engaging in this activity or further actions may be taken ag
- Toggle Untap
+ Toggle Skip Untapping
+ Toggle Untap
@@ -10816,98 +11073,102 @@ Please refrain from engaging in this activity or further actions may be taken ag
- Attach Card...
+ Play Card, Face Down
- Unattach Card
+ Attach Card...
- Clone Card
+ Unattach Card
- Create Token...
+ Clone Card
- Create All Related Tokens
+ Create Token...
- Create Another Token
+ Create All Related Tokens
- Set Annotation...
+ Create Another Token
- Select All Cards in Zone
+ Set Annotation...
- Select All Cards in Row
+ Select All Cards in Zone
- Select All Cards in Column
+ Select All Cards in Row
- Reveal Selected Cards to All Players
+ Select All Cards in Column
-
- Bottom of Library
+ Reveal Selected Cards to All Players
-
-
-
- Exile
+
+ Bottom of Library
+
+
+
+ Exile
+
+
+
+
-
+ Graveyard
-
+ Hand
-
-
+
+ Top of Library
-
-
+ Battlefield, Face Down
@@ -10943,234 +11204,246 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Stack
-
+ Graveyard (Multiple)
-
-
+
+
+ Graveyard (Multiple), Face Down
+
+
+
+
+ Exile (Multiple)
-
+
+
+ Exile (Multiple), Face Down
+
+
+
+ Stack Until Found
-
+ Draw Bottom Card
-
+ Draw Multiple Cards from Bottom...
-
+ Draw Arrow...
-
+ Remove Local Arrows
-
+ Leave Game
-
+ Concede
-
+ Roll Dice...
-
+ Shuffle Library
-
+ Shuffle Top Cards of Library
-
+ Shuffle Bottom Cards of Library
-
+ Mulligan
-
+ Mulligan (Same hand size)
-
+ Mulligan (Hand size - 1)
-
+ Draw a Card
-
+ Draw Multiple Cards...
-
+ Undo Draw
-
+ Always Reveal Top Card
-
+ Always Look At Top Card
-
+ Sort Hand by Name
-
+ Sort Hand by Type
-
+ Sort Hand by Mana Value
-
+ Reveal Hand to All Players
-
+ Reveal Random Card to All Players
-
+ Rotate View Clockwise
-
+ Rotate View Counterclockwise
-
+ Unfocus Text Box
-
+ Focus Chat
-
+ Clear Chat
-
+ Refresh
-
+ Skip Forward
-
+ Skip Backward
-
+ Skip Forward by a lot
-
+ Skip Backward by a lot
-
+ Play/Pause
-
+ Toggle Fast Forward
-
+ Home
-
+ Visual Deck Storage
-
+ Deck Storage
-
+ Server
-
+ Account
-
+ Administration
-
+ Logs
diff --git a/cockatrice/translations/cockatrice_es.ts b/cockatrice/translations/cockatrice_es.ts
index e80e28b52..53fc9ac61 100644
--- a/cockatrice/translations/cockatrice_es.ts
+++ b/cockatrice/translations/cockatrice_es.ts
@@ -23,12 +23,12 @@
AbstractDlgDeckTextEdit
-
+ &Refresh&Actualizar
-
+ Parse Set Name and Number (if available)
@@ -36,60 +36,60 @@
AbstractTabDeckEditor
-
+ Open in new tabAbrir en nueva pestaña
-
+ Are you sure?¿Estás seguro?
-
+ The decklist has been modified.
Do you want to save the changes?La lista del mazo ha sido modificada. ¿Deseas guardar los cambios?
-
-
-
-
-
-
+
+
+
+
+
+ ErrorError
-
+ Could not open deck at %1
-
+ Could not save remote deck
-
-
+
+ The deck could not be saved.
Please check that the directory is writable and try again.
-
+ Save deckGuardar mazo
-
+ The deck could not be saved.El mazo no puede ser guardado.
-
+ There are no cards in your deck to be exportedNo hay cartas en tu mazo para exportar
@@ -131,190 +131,168 @@ Please check that the directory is writable and try again.
AppearanceSettingsPage
-
+ secondssegundos
-
+ ErrorError
-
+ Could not create themes directory at '%1'.No se pudo crear directorio de temas en '%1'.
-
- Enabling this feature will disable the use of the Printing Selector.
-
-You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
-
-You will have to use the Set Manager, available through Card Database -> Manage Sets.
-
-Are you sure you would like to enable this feature?
-
-
-
-
- Disabling this feature will enable the Printing Selector.
-
-You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
-
-You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
-
-Are you sure you would like to disable this feature?
-
-
-
-
- Confirm Change
-
-
-
-
+ Theme settingsPreferencias del tema
-
+ Current theme:Tema actual:
-
+ Open themes folderAbrir carpeta de temas
-
+ Home tab background source:
-
+ Home tab background shuffle frequency:
-
+ DisabledDeshabilitado
-
+
+ Display card name of background in bottom right:
+
+
+
+ Menu settings
-
+ Show keyboard shortcuts in right-click menus
-
+ Show game filter toolbar above list in room tab
-
+ Card renderingRepresentación de las cartas
-
+ Display card names on cards having a pictureMostrar nombre de las cartas en aquellas que tengan imagen
-
+ Auto-Rotate cards with sideways layout
-
+ Override all card art with personal set preference (Pre-ProviderID change behavior)
-
+ Bump sets that the deck contains cards from to the top in the printing selector
-
+ Scale cards on mouse overCambiar tamaño de las cartas al pasar el ratón por encima
-
+ Use rounded card corners
-
+ Minimum overlap percentage of cards on the stack and in vertical hand
-
+ Maximum initial height for card view window:
-
-
+
+ rowsfilas
-
+ Maximum expanded height for card view window:
-
+ Card countersContadores de carta
-
+ Counter %1
-
+ Hand layoutDisposición de la mano
-
+ Display hand horizontally (wastes space)Mostrar la mano horizontalmente (desperdicia espacio)
-
+ Enable left justificationHabilitar justificación a la izquierda
-
+ Table grid layoutDiseño de la cuadrícula de la mesa
-
+ Invert vertical coordinateInvertir coordenada vertical
-
+ Minimum player count for multi-column layout:Número minimo de jugadores para usar la cuadrícula multicolumna:
-
+ Maximum font size for information displayed on cards:Tamaño de fuente máxima para la información presentada en las cartas:
@@ -322,7 +300,12 @@ Are you sure you would like to disable this feature?
ArchidektApiResponseDeckDisplayWidget
-
+
+ Back to results
+
+
+
+ Open Deck in Deck Editor
@@ -642,22 +625,22 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
CardInfoPictureWidget
-
+ View related cardsVer cartas relacionadas
-
+ Add card to deckAñadir carta al mazo
-
+ MainboardMazo principal
-
+ SideboardBanquillo
@@ -693,124 +676,124 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
CardMenu
-
+ Re&veal to...
-
+ &All players&Todos los jugadores
-
+ View related cardsVer cartas relacionadas
-
+ Token: Ficha:
-
+ All tokensTodas las fichas
-
+ &Select All&Seleccionar todo
-
+ S&elect Row&Seleccionar fila
-
+ S&elect Column&Seleccionar columna
-
+ &Play&Jugar
-
+ &Hide&Ocultar
-
+ Play &Face DownJugar boca abajo
-
+ &Tap / UntapTurn sideways or back again&Girar / Enderezar
-
- Toggle &normal untapping
+
+ Skip &untapping
-
+ T&urn OverTurn face up/face down
-
+ &Peek at card face
-
+ &Clone&Clonar
-
+ Attac&h to card...
-
+ Unattac&h
-
+ &Draw arrow...
-
+ &Set annotation...
-
+ Ca&rd counters
-
+ &Add counter (%1)&Añadir contador (%1)
-
+ &Remove counter (%1)&Quitar contador (%1)
-
+ &Set counters (%1)...&Establecer contadores (%1)
@@ -826,133 +809,133 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
CardZoneLogic
-
+ their handnominativesu mano
-
+ %1's handnominative
-
+ their librarylook at zonesu biblioteca
-
+ %1's librarylook at zone
-
+ of their librarytop cards of zone,de su biblioteca
-
+ of %1's librarytop cards of zone
-
+ their libraryreveal zonesu biblioteca
-
+ %1's libraryreveal zone
-
+ their libraryshufflesu biblioteca
-
+ %1's libraryshuffle
-
-
- their library
- nominative
- su biblioteca
-
-
-
- %1's library
- nominative
-
-
+ their library
+ nominative
+ su biblioteca
+
+
+
+ %1's library
+ nominative
+
+
+
+ their graveyardnominativesu cementerio
-
+ %1's graveyardnominative
-
+ their exilenominativesu zona de exilio
-
+ %1's exilenominative
-
-
- their sideboard
- look at zone
- su banquillo
-
-
-
- %1's sideboard
- look at zone
-
- their sideboard
- nominative
+ look at zonesu banquillo%1's sideboard
+ look at zone
+
+
+
+
+ their sideboard
+ nominative
+ su banquillo
+
+
+
+ %1's sideboardnominative
-
+ their custom zone '%1'nominative
-
+ %1's custom zone '%2'nominative
@@ -1014,7 +997,7 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckEditorCardDatabaseDockWidget
-
+ Card Database
@@ -1022,7 +1005,7 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckEditorCardInfoDockWidget
-
+ Card InfoInformación de la carta
@@ -1045,32 +1028,32 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
Añadir al Banquillo
-
+ Select Printing
-
+ Show on EDHRec (Commander)
-
+ Show on EDHRec (Card)
-
+ Show Related cardsMostrar cartas Relacionadas
-
+ Add card to &maindeckAñadir carta al &mazo principal
-
+ Add card to &sideboardAñadir carta al &banquillo
@@ -1078,32 +1061,32 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckEditorDeckDockWidget
-
+ Loading Database...
-
+ Banner Card
-
+ Main TypeTipo principal de carta
-
+ Mana CostCoste de maná
-
+ ColorsColores
-
+ Select Printing
@@ -1176,17 +1159,17 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckEditorFilterDockWidget
-
+ FiltersFiltros
-
+ &Clear all filters&Limpiar todos los filtros
-
+ Delete selectedBorrar seleccionado
@@ -1309,7 +1292,7 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckEditorPrintingSelectorDockWidget
-
+ Printing Selector
@@ -1317,166 +1300,166 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckEditorSettingsPage
-
-
+
+ Update SpoilersActualizar Spoilers
-
-
+
+ SuccessÉxito
-
+ Download URLs have been reset.Las URL de descarga se han reiniciado.
-
+ Downloaded card pictures have been reset.Las imágenes de las cartas descargadas se han reiniciado.
-
+ ErrorError
-
+ One or more downloaded card pictures could not be cleared.Una o más imágenes descargadas pueden no ser claras
-
+ Add URLAñadir URL
-
-
+
+ URL:URL:
-
-
+
+ Edit URLEditar URL
-
+ Network Cache Size:
-
+ Redirect Cache TTL:
-
+ How long cached redirects for urls are valid for.
-
+ Picture Cache Size:
-
+ Add New URLAñadir URL
-
+ Remove URLBorrar URL
-
+ Day(s)Día(s)
-
+ Updating...Actualizando...
-
+ Choose pathElegir camino
-
+ URL Download PriorityPrioridad de descarga de URL
-
+ SpoilersSpoilers
-
+ Download Spoilers AutomaticallyDescargar Spoilers automáticamente
-
+ Spoiler Location:Localización del Spoiler:
-
+ Last ChangeÚltimo cambio
-
+ Spoilers download automatically on launchSpoilers se descargan automáticamente en lanzamiento
-
+ Press the button to manually update without relaunchingPresione el botón para actualizar manualmente sin reiniciar
-
+ Do not close settings until manual update is completeNo cierre la ventana de configuración hasta que la actualización manual este completa.
-
+ Download card pictures on the flyDescargar imagenes de las cartas rapidamente
-
+ How to add a custom URLCómo agregar una URL personalizada
-
+ Delete Downloaded ImagesEliminar imágenes descargadas
-
+ Reset Download URLsReiniciar descarga de URLs
-
+ On-disk cache for downloaded pictures
-
+ In-memory cache for pictures not currently on screen
@@ -1484,32 +1467,32 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckListHistoryManagerWidget
-
+ Undo
-
+ Redo
-
+ Undo/Redo history
-
+ Click on an entry to revert to that point in the history.
-
+ [redo]
-
+ [undo]
@@ -1517,27 +1500,27 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckListModel
-
+ Count
-
+ Set
-
+ NumberNúmero
-
+ Provider ID
-
+ CardCarta
@@ -1545,12 +1528,12 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckLoader
-
+ Common deck formats (%1)
-
+ All files (*.*)
@@ -1647,94 +1630,94 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
DeckPreviewWidget
-
+ Banner Card
-
+ Open in deck editor
-
+ Edit TagsEditar etiquetas
-
+ Rename DeckRenombrar mazo
-
+ Save Deck to Clipboard
-
+ AnnotatedAnotado
-
+ Annotated (No set info)
-
+ Not AnnotatedNo Anotado
-
+ Not Annotated (No set info)
-
+ Rename FileRenombrar archivo
-
+ Delete FileEliminar archivo
-
+ Set Banner Card
-
-
+
+ New name:Nuevo nombre:
-
-
+
+ ErrorError
-
+ Rename failed
-
+ Delete fileEliminar archivo
-
+ Are you sure you want to delete the selected file?¿Estás seguro de que quieres eliminar el archivo seleccionado?
-
+ Delete failedBorrado fallido
@@ -1767,32 +1750,32 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
-
+ Added (%1): %2 (%3) %4
-
+ Moved to %1 1 × "%2" (%3)
-
+ Removed "%1" (all copies)
-
+ %1 1 × "%2" (%3)
-
+ Added
-
+ Removed
@@ -1859,29 +1842,29 @@ Se almacenará unicamente para moderadores y no podrá ser visto por la persona
Banquillo bloqueado
-
-
+
+ ErrorError
-
+ The selected file could not be loaded.El fichero seleccionado no pudo cargarse.
-
+ Deck is greater than maximum file size.
-
+ Are you sure you want to force start?
This will kick all non-ready players from the game.
-
+ CockatriceCockatrice
@@ -2374,17 +2357,17 @@ Para eliminar tu avatar actual, confirma sin elegir una nueva imagen.
DlgEditDeckInClipboard
-
+ Edit deck in clipboard
-
+ ErrorError
-
+ Invalid deck list.Lista de mazo inválida.
@@ -2885,17 +2868,17 @@ Asegúrese de habilitar la edición 'Fichas' en la opción "Mante
DlgLoadDeckFromClipboard
-
+ Load deck from clipboardCargar mazo del portapapeles
-
+ ErrorError
-
+ Invalid deck list.Lista de mazo inválida.
@@ -2903,43 +2886,43 @@ Asegúrese de habilitar la edición 'Fichas' en la opción "Mante
DlgLoadDeckFromWebsite
-
+ Paste a link to a decklist site here to import it.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
-
-
-
-
+
+
+
+
+ Load Deck from Website
-
+ No parser available for this deck provider.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
+ Network error: %1
-
+ Received empty deck data.
-
+ Failed to parse deck data: %1
-
+ The provided URL is not recognized as a valid deck URL.
Valid deck URLs look like this:
@@ -2958,40 +2941,73 @@ https://tappedout.net/mtg-decks/your-deck-name/Cargar mazo
+
+ DlgLocalGameOptions
+
+
+ Players:
+
+
+
+
+ General
+
+
+
+
+ Starting life total:
+
+
+
+
+ Game setup options
+
+
+
+
+ Remember settings
+
+
+
+
+ Local game options
+
+
+DlgMoveTopCardsUntil
-
+ Card name (or search expressions):
-
+ Number of hits:
-
+ Auto play hits
-
+ Put top cards on stack until...
-
+ No cards matching the search expression exists in the card database. Proceed anyways?
-
+ CockatriceCockatrice
-
+ Invalid filterFiltro no válido
@@ -3153,12 +3169,12 @@ Tu correo electrónico se utilizará para verificar tu cuenta.
DlgSettings
-
+ Unknown Error loading card databaseError desconocido al cargar la base de datos de cartas.
-
+ Your card database is invalid.
Cockatrice may not function correctly with an invalid database
@@ -3175,7 +3191,7 @@ Podrías necesitar volver a ejecutar oracle para actualizar tu base de datos de
¿Quieres cambiar la ubicación de tu base de datos?
-
+ Your card database version is too old.
This can cause problems loading card information or images
@@ -3192,7 +3208,7 @@ Normalmente esto se soluciona volviendo a ejecutar oracle para actualizar tu bas
¿Quieres cambiar la ubicación de tu base de datos?
-
+ Your card database did not finish loading
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues with your cards.xml attached
@@ -3205,7 +3221,7 @@ Por favor, envía un ticket en https://github.com/Cockatrice/Cockatrice/issues c
¿Te gustaría cambiar la configuración de la ubicación de tu base de datos?
-
+ File Error loading your card database.
Would you like to change your database location setting?
@@ -3214,7 +3230,7 @@ Would you like to change your database location setting?
¿Quieres cambiar la ubicación de tu base de datos?
-
+ Your card database was loaded but contains no cards.
Would you like to change your database location setting?
@@ -3223,7 +3239,7 @@ Would you like to change your database location setting?
¿Quieres cambiar la ubicación de tu base de datos?
-
+ Unknown card database load status
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues
@@ -3236,59 +3252,59 @@ Por favor, envía un ticket en https://github.com/Cockatrice/Cockatrice/issues
¿Te gustaría cambiar la configuración de la ubicación de tu base de datos?
-
-
-
+
+
+ ErrorError
-
+ The path to your deck directory is invalid. Would you like to go back and set the correct path?La ruta a tu directorio de mazos no es válida. ¿Deseas volver y seleccionar la ruta correcta?
-
+ The path to your card pictures directory is invalid. Would you like to go back and set the correct path?La ruta a tu directorio de imágenes de las cartas no es válida. ¿Deseas volver y seleccionar la ruta correcta?
-
+ SettingsPreferencias
-
+ GeneralGeneral
-
+ AppearanceApariencia
-
+ User InterfaceInterfaz de usuario
-
+ Card SourcesOrigen de la carta
-
+ ChatChat
-
+ SoundSonido
-
+ ShortcutsAtajos de teclado
@@ -3602,67 +3618,67 @@ You may have to manually download the new version.
DrawProbabilityWidget
-
+ Draw Probability
-
+ Probability of drawing
-
+ Card Name
-
+ Type
-
+ Subtype
-
+ Mana Value
-
+ At least
-
+ Exactly
-
+ card(s) having drawn at least
-
+ cards
-
+ Category
-
+ Qty
-
+ Odds (%)
@@ -4110,143 +4126,143 @@ You may have to manually download the new version.
GeneralSettingsPage
-
+ Reset all pathsReiniciar todos los caminos
-
+ All paths have been resetTodos los caminos se han reiniciado
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Choose pathElija ruta
-
+ Personal settingsPreferencias personales
-
+ Language:Idioma:
-
+ Paths (editing disabled in portable mode)Rutas (edición deshabilitada en modo portatil)
-
+ PathsRutas
-
+ How to help with translationsCómo ayudar con las traducciones
-
+ Decks directory:Directorio de mazos:
-
+ Filters directory:Directorio de filtros:
-
+ Replays directory:Directorio de repeticiones:
-
+ Pictures directory:Directorio de imágenes:
-
+ Card database:Base de datos de cartas:
-
+ Custom database directory:Directorio de base de datos personalizado:
-
+ Token database:Base de datos de tokens:
-
+ Update channelActualizar canal
-
+ Check for client updates on startupComprobar actualizaciones del cliente al arrancar
-
+ Check for card database updates on startupComprobar actualizaciones de la base de datos de cartas al arrancar
-
+ Don't checkNo comprobar
-
+ Prompt for update
-
+ Always update in the backgroundSiempre actualizar en segundo plano
-
+ Check for card database updates everyComprobar actualizaciones de la base de datos de cartas cada
-
+ daysdías
-
+ Notify if a feature supported by the server is missing in my clientNotificar si hace falta en mi cliente alguna característica soportada por el servidor
-
+ Automatically run Oracle when running a new version of CockatriceOracle se ejecutará automáticamente cuando se ejecuté una nueva versión de Cockatrice
-
+ Show tips on startupMostrar tips al inicio
-
+ Last update check on %1 (%2 days ago)
@@ -4254,47 +4270,47 @@ You may have to manually download the new version.
GraveyardMenu
-
+ &Graveyard&Cementerio
-
+ &View graveyardVer &cementerio
-
+ &Move graveyard to...&Mover cementerio a...
-
+ &Top of library&Parte superior de la biblioteca
-
+ &Bottom of library&Parte inferior de la biblioteca
-
+ &All players
-
+ &Hand&Mano
-
+ &Exile&Exilio
-
+ Reveal random card to...Mostrar una carta al azar a...
@@ -4302,88 +4318,88 @@ You may have to manually download the new version.
HandMenu
-
+ &Hand&Mano
-
+ &View hand&Ver mano
-
+ Sort hand by...
-
+ Name
-
+ Type
-
+ Mana Value
-
+ Take &mulligan (Choose hand size)
-
+ Take mulligan (Same hand size)
-
+ Take mulligan (Hand size - 1)
-
+ &Move hand to...&Mover mano a...
-
+ &Top of library&Parte superior de la biblioteca
-
+ &Bottom of library&Parte inferior de la biblioteca
-
+ &Graveyard&Cementerio
-
+ &Exile&Exilio
-
+ &Reveal hand to...&Mostrar mano a...
-
-
+
+ All players
-
+ Reveal r&andom card to...Mostrar una carta al azar a...
@@ -4391,52 +4407,52 @@ You may have to manually download the new version.
HomeWidget
-
+ Create New DeckCrear nuevo mazo
-
+ Browse DecksBuscar mazos
-
+ Browse Card DatabaseBuscar base de datos de cartas
-
+ Browse EDHRec
-
+ Browse Archidekt
-
+ View ReplaysVer repeticiones
-
+ QuitQuitar
-
+ Connecting...Conectando...
-
+ ConnectConectar
-
+ PlayJugar
@@ -4444,193 +4460,213 @@ You may have to manually download the new version.
LibraryMenu
-
+ &Library&Biblioteca
-
+ &View library&Ver biblioteca
-
+ View &top cards of library...Ver cartas de la parte superior de la biblioteca
-
+ View bottom cards of library...Ver cartas de la parte inferior de la biblioteca
-
+ Reveal &library to...Mostrar &biblioteca a...
-
+ Lend library to...
-
+ Reveal &top cards to...Mostrar &cartas de la parte superior a...
-
+ &Top of library...&Parte superior de la biblioteca...
-
+ &Bottom of library...&Parte inferior de la biblioteca...
-
+ &Always reveal top card
-
+ &Always look at top card
-
+ &Open deck in deck editor
-
+ &Draw card&Robar carta
-
+ D&raw cards...
-
+ &Undo last draw
-
+ ShuffleBarajar
-
+ &Play top card&Jugar carta de la parte superior
-
+ Play top card &face down
-
+ Put top card on &bottom
-
+ Move top card to grave&yard
-
+ Move top card to e&xile
-
+ Move top cards to &graveyard...
-
+
+ Move top cards to graveyard face down...
+
+
+
+ Move top cards to &exile...
-
+
+ Move top cards to exile face down...
+
+
+
+ Put top cards on stack &until...
-
+ Shuffle top cards...Barajar cartas de la parte superior...
-
+ &Draw bottom card&Robar carta de la parte inferior
-
+ D&raw bottom cards...
-
+ &Play bottom card&Jugar carta de la parte inferior
-
+ Play bottom card &face down
-
+ Move bottom card to grave&yard
-
+ Move bottom card to e&xile
-
+ Move bottom cards to &graveyard...
-
+
+ Move bottom cards to graveyard face down...
+
+
+
+ Move bottom cards to &exile...
-
+
+ Move bottom cards to exile face down...
+
+
+
+ Put bottom card on &topPoner carta de la parte inferior en la parte superior
-
+ Shuffle bottom cards...Barajar cartas de la parte inferior...
-
-
+
+ &All players
-
+ Reveal top cards of library
-
+ Number of cards: (max. %1)
@@ -4730,18 +4766,8 @@ Will now login.
Iniciando sesión.
-
- Number of players
- Número de jugadores
-
-
-
- Please enter the number of players.
- Por favor, introduzca el número de jugadores.
-
-
-
-
+
+ Player %1Jugador %1
@@ -4844,8 +4870,8 @@ Iniciando sesión.
-
-
+
+ ErrorError
@@ -5252,36 +5278,36 @@ La versión local es %1, la versión remota es %2.
Mostrar/Ocultar
-
+ New VersionNueva Versión
-
+ Congratulations on updating to Cockatrice %1!
Oracle will now launch to update your card database.Felicitaciones se ha actualizado Cockatrice %1!
Oracle actualizará tu base de datos de cartas.
-
+ Cockatrice installedCockatrice está instalado.
-
+ Congratulations on installing Cockatrice %1!
Oracle will now launch to install the initial card database.¡Felicitaciones! Se ha instalado Cockatrice %1
Ahora se ejecutará Oracle para instalar la base de datos de cartas inicial.
-
+ Card databaseBase de datos de cartas
-
+ Cockatrice is unable to load the card database.
Do you want to update your card database now?
If unsure or first time user, choose "Yes"
@@ -5290,29 +5316,29 @@ If unsure or first time user, choose "Yes"
Si no está seguro o es su primera vez, seleccione "Sí"
-
-
+
+ YesSi
-
-
+
+ NoNo
-
+ Open settingsAbrir preferencias
-
+ New sets foundNuevas ediciones encontradas
-
+ %n new set(s) found in the card database
Set code(s): %1
Do you want to enable it/them?
@@ -5325,17 +5351,17 @@ Códigos de sets: %1
¿Quieres habilitarlos?
-
+ View setsVer ediciones
-
+ WelcomeBienvenido/a
-
+ Hi! It seems like you're running this version of Cockatrice for the first time.
All the sets in the card database have been enabled.
Read more about changing the set order or disabling specific sets and consequent effects in the "Manage Sets" dialog.
@@ -5344,64 +5370,64 @@ Todas las ediciones en la base de datos de cartas han sido habilitadas.
Aprenda más sobre cambiar el orden de la edición o deshabilitando ediciones especificas y otras preferencias en la opción "Mantenedor de ediciones".
-
-
+
+ InformationInformación
-
+ A card database update is already running.La actualización de la base de datos de cartas ya está en marcha.
-
+ Unable to run the card database updater: Imposible iniciar el actualizador de la base de datos de cartas:
-
+ Card database update running.
-
+ Failed to start. The file might be missing, or permissions might be incorrect.
-
+ The process crashed some time after starting successfully.
-
+ Timed out. The process took too long to respond. The last waitFor...() function timed out.
-
+ An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel.
-
+ An error occurred when attempting to read from the process. For example, the process may not be running.
-
+ Unknown error occurred.Ocurrió un error desconocido.
-
+ The card database updater exited with an error:
%1
-
+ This server supports additional features that your client doesn't have.
This is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.
@@ -5411,55 +5437,55 @@ Esto no debería ser un problema, pero este mensaje podría significar que hay u
Para actualizar tu cliente, ve a Ayuda -> Buscar Actualizaciones.
-
-
-
-
-
+
+
+
+
+ Load sets/cardsCargar ediciones/cartas
-
+ Selected file cannot be found.El archivo seleccionado no fue encontrado.
-
+ You can only import XML databases at this time.Solo puedes importar bases de datos en XML en este momento.
-
+ The new sets/cards have been added successfully.
Cockatrice will now reload the card database.Las nuevas ediciones/cartas se han agregado correctamente.
Cockatrice está recargando la base de datos de cartas.
-
+ Sets/cards failed to import.Las ediciones/cartas fallaron al ser importadas.
-
-
-
+
+
+ Reset PasswordReiniciar contraseña
-
+ Your password has been reset successfully, you can now log in using the new credentials.Tu contraseña se ha reiniciado con éxito, ahora puedes conectarte con las nuevas credenciales.
-
+ Failed to reset user account password, please contact the server operator to reset your password.No se pudo reiniciar la contraseña, por favor contacte con el operador del servidor para reiniciar su contraseña.
-
+ Activation request received, please check your email for an activation token.Petición de activación recibida, por favor comprueba tu email para el código de activación.
@@ -5510,7 +5536,7 @@ Cockatrice está recargando la base de datos de cartas.
ManaBaseWidget
-
+ Mana BaseBase de maná
@@ -5664,591 +5690,611 @@ Cockatrice está recargando la base de datos de cartas.
MessageLogWidget
-
+ from play del juego
-
+ from their graveyard de su cementerio
-
+ from exile del exilio
-
+ from their hand de su mano
-
+ the top card of %1's libraryla carta superior de la biblioteca de %1
-
+ the top card of their libraryla parte superior de su biblioteca
-
+ from the top of %1's library desde la parte superior de la biblioteca de %1
-
+ from the top of their libraryDesde la parte superior de su biblioteca
-
+ the bottom card of %1's libraryla carta de la parte inferior de la biblioteca de %1
-
+ the bottom card of their libraryLa carta de la parte inferior de su biblioteca
-
+ from the bottom of %1's library desde la parte inferior de la biblioteca de %1
-
+ from the bottom of their libraryDesde la parte inferior de su biblioteca
-
+ from %1's library desde la biblioteca de %1
-
+ from their librarydesde su biblioteca
-
+ from sideboard desde el banquillo
-
+ from the stack desde la pila
-
+ from custom zone '%1'
-
+ %1 is now keeping the top card %2 revealed.%1 está manteniendo la carta superior %2 revelada.
-
+ %1 is not revealing the top card %2 any longer.%1 ya no mantiene revelada la carta superior %2.
-
+ %1 can now look at top card %2 at any time.%1 ahora puede ver la carta superior de %2 en cualquier momento.
-
+ %1 no longer can look at top card %2 at any time.%1 ya no puede ver la carta superior de %2 en cualquier momento.
-
+ %1 attaches %2 to %3's %4.%1 anexa %2 a %3's %4.
-
+ %1 has conceded the game.%1 ha concedido la partida.
-
+ %1 has unconceded the game.%1 ha concedido la partida
-
+ %1 has restored connection to the game.%1 ha recuperado la conexión a la partida.
-
+ %1 has lost connection to the game.%1 ha perdido la conexión a la partida.
-
+ %1 points from their %2 to themselves.%1 apunta desde su %2 a si mismo.
-
+ %1 points from their %2 to %3.%1 apunta desde su %2 a %3.
-
+ %1 points from %2's %3 to themselves.%1 apunta desde el %3 de %2 a si mismo.
-
+ %1 points from %2's %3 to %4.%1 apunta desde el %3 de %2 a %4.
-
+ %1 points from their %2 to their %3.%1 apunta de su %2 a su %3.
-
+ %1 points from their %2 to %3's %4.%1 apunta desde su %2 al %4 de %3.
-
+ %1 points from %2's %3 to their own %4.%1 apunta desde el %3 de %2 a su %4.
-
+ %1 points from %2's %3 to %4's %5.%1 apunta desde el %3 de %2 al %5 de %4.
-
+ %1 creates a face down token.
-
+ %1 creates token: %2%3.%1 crea una ficha: %2%3.
-
+ %1 has loaded a deck (%2).%1 ha cargado un mazo (%2).
-
+ %1 has loaded a deck with %2 sideboard cards (%3).%1 ha cargado un mazo con %2 cartas en el banquillo (%3).
-
+ %1 destroys %2.%1 destruye %2.
-
+ a carduna carta
-
+ %1 gives %2 control over %3.%1 entrega a %2 el control sobre %3.
-
+ %1 puts %2 into play%3 face down.%1 pone %2 en juego %3 bocabajo.
-
+ %1 puts %2 into play%3.%1 pone %2 en juego %3.
-
+
+ %1 puts %2%3 into their graveyard face down.
+
+
+
+ %1 puts %2%3 into their graveyard.%1 pone %2%3 en su cementerio.
+
+
+ %1 exiles %2%3 face down.
+
+ %1 exiles %2%3.%1 exilia %2%3.
-
+ %1 moves %2%3 to their hand.%1 mueve %2%3 a su mano.
-
+ %1 puts %2%3 into their library.%1 pone %2%3 en su biblioteca.
-
+ %1 puts %2%3 onto the bottom of their library.%1 pone %2%3 al fondo de su biblioteca.
-
+ %1 puts %2%3 on top of their library.%1 pone %2%3 en la parte superior de su biblioteca.
-
+ %1 puts %2%3 into their library %4 cards from the top.%1 pone %2%3 en la biblioteca de su propietario en el %4 lugar desde la parte superior
-
+ %1 moves %2%3 to sideboard.%1 mueve %2%3 al banquillo.
-
+
+ %1 plays %2%3 face down.
+
+
+
+ %1 plays %2%3.%1 juega %2%3.
-
+
+ %1 moves %2%3 to custom zone '%4' face down.
+
+
+
+ %1 moves %2%3 to custom zone '%4'.
-
+ %1 tries to draw from an empty library
-
+ %1 draws %2 card(s).%1 roba %2 carta(s).%1 roba %2 c%1 roba %2 c
-
+ %1 is looking at %2.%1 está mirando a %2.
-
+ %1 is looking at the %4 %3 card(s) %2.top card for singular, top %3 cards for plural
-
+ bottomparte inferior
-
+ topparte superior
-
+ %1 turns %2 face-down.%1 pone %2 boca abajo.
-
+ %1 turns %2 face-up.%1 pone %2 boca arriba.
-
+ The game has been closed.La partida ha sido cerrada.
-
+ The game has started.La partida ha comenzado.
-
+ You are flooding the game. Please wait a couple of seconds.
-
+ %1 has joined the game.%1 se ha unido a la partida.
-
+ %1 is now watching the game.%1 está ahora observando la partida.
-
+ You have been kicked out of the game.Has sido expulsado de la partida.
-
+ %1 has left the game (%2).%1 ha dejado la partida (%2).
-
+ %1 is not watching the game any more (%2).%1 ya no está viendo el juego (%2).
-
+ %1 is not ready to start the game any more.%1 está preparado/a para empezar la partida.
-
+ %1 shuffles their deck and draws a new hand of %2 card(s).%1 barajea su mazo y roba una nueva mano de %2 carta(s).%1 barajea su mazo y roba una nueva mano de %2 carta(s)%1 barajea su mazo y roba una nueva mano de %2 carta(s)
-
+ %1 shuffles their deck and draws a new hand.%1 Baraja su maso y robas una nueva mano.
-
+ You are watching a replay of game #%1.Estás viendo una repetición de la partida #%1.
-
+ %1 is ready to start the game.%1 está preparado/a para empezar la partida.
-
+ cardsan unknown amount of cardscartas
-
+ %1 card(s)a card for singular, %1 cards for plural%1 carta(s)%1 cars%1 cars
-
+ %1 lends %2 to %3.
-
+ %1 reveals %2 to %3.%1 revela %2 a %3.
-
+ %1 reveals %2.%1 revela %2.
-
+ %1 randomly reveals %2%3 to %4.%1 revela al azar %2%3 a %4.
-
+ %1 randomly reveals %2%3.%1 revela al azar %2%3.
-
+ %1 peeks at face down card #%2.%1 está mirando la carta #%2 boca abajo.
-
+ %1 peeks at face down card #%2: %3.%1 mira la carta boca abajo #%2: %3.
-
+ %1 reveals %2%3 to %4.%1 revela %2%3 a %4.
-
+ %1 reveals %2%3.%1 revela %2%3.
-
+ %1 reversed turn order, now it's %2.%1 Orden del turno invertido, ahora es %2.
-
+ reversedInvertido.
-
+ normalNormal.
-
+ HeadsCara
-
+ TailsCruz
-
+ %1 flipped a coin. It landed as %2.%1 tira una moneda. Ha salido %2.
-
+ %1 rolls a %2 with a %3-sided die.%1 sacó un %2 con un dado de %3 caras.
-
+ %1 flips %2 coins. There are %3 heads and %4 tails.
-
+ %1 rolls a %2-sided dice %3 times: %4.
-
+ %1's turn.Turno %1.
-
+ %1 sets annotation of %2 to %3.%1 sets annotation of %2 to %3.
-
+ %1 places %2 "%3" counter(s) on %4 (now %5).
-
+ %1 removes %2 "%3" counter(s) from %4 (now %5).
-
+ %1 sets counter %2 to %3 (%4%5).%1 establece el contador %2 a %3 (%4%5).
-
+ %1 sets %2 to not untap normally.%1 establece que %2 no se endereze normalmente.
-
+ %1 sets %2 to untap normally.%1 establece que %2 se endereze normalmente.
-
+ %1 removes the PT of %2.%1 elimina la F/R de %2
-
+ %1 changes the PT of %2 from nothing to %4.%1 cambia la F/R de %2 de nada a %4.
-
+ %1 changes the PT of %2 from %3 to %4.%1 cambia la F/R de %2 de %3 a %4.
-
+ %1 has locked their sideboard.%1 ha bloqueado su banquillo.
-
+ %1 has unlocked their sideboard.%1 ha desbloqueado su banquillo.
-
+ %1 taps their permanents.
%1 gira sus permanentes.
-
+ %1 untaps their permanents.%1 ha enderezado sus permanentes.
-
+ %1 taps %2.%1 gira %2.
-
+ %1 untaps %2.%1 endereza %2.
-
+ %1 shuffles %2.%1 baraja %2.
-
+ %1 shuffles the bottom %3 cards of %2.%1 barajea las últimas %3 cartas de %2.
-
+ %1 shuffles the top %3 cards of %2.%1 barajea las primeras %3 cartas de %2.
-
+ %1 shuffles cards %3 - %4 of %2.%1 barajea las cartas %3 - %4 de %2.
-
+ %1 unattaches %2.%1 desanexa %2.
-
+ %1 undoes their last draw.%1 deshace su último robo.
-
+ %1 undoes their last draw (%2).%1 deshace su último robo (%2).
@@ -6256,110 +6302,110 @@ Cockatrice está recargando la base de datos de cartas.
MessagesSettingsPage
-
+ Word1 Word2 Word3Palabra1 Palabra2 Palabra3
-
+ Add New MessageAñadir nuevo mensaje
-
+ Edit MessageEditar mensaje
-
+ Remove MessageBorrar mensaje
-
+ Add messageAñadir mensaje
-
-
+
+ Message:Mensaje:
-
+ Edit messageEditar mensaje
-
+ Chat settingsPreferencias de Chat
-
+ Custom alert wordsPalabras de alerta personalizadas
-
+ Enable chat mentionsHabilitar las menciones en el chat
-
+ Enable mention completerHabilitar completado de menciones
-
+ In-game message macrosMacros para mensajes durante la partida
-
+ How to use in-game message macros
-
+ Ignore chat room messages sent by unregistered usersIgnorar mensajes de sala de usuarios sin registrar
-
+ Ignore private messages sent by unregistered usersIgnorar mensajes privados de usuarios sin registrar
-
-
+
+ Invert text colorInvertir el color del texto
-
+ Enable desktop notifications for private messagesHabilitar notificaciones de escritorio para los mensajes privados
-
+ Enable desktop notification for mentionsHabilitar notificaciones de escritorio para menciones
-
+ Enable room message history on joinHabilitar historial de mensajes de sala al unirse
-
-
+
+ (Color is hexadecimal)(El color es hexadecimal)
-
+ Separate words with a space, alphanumeric characters onlySepara las palabras con un espacio, solo caracteres alfanuméricos
@@ -6372,32 +6418,37 @@ Cockatrice está recargando la base de datos de cartas.
Mover a
-
+ &Top of library in random order
-
+ X cards from the top of library...
-
+ &Bottom of library in random order
-
+
+ T&able
+
+
+
+ &Hand&Mano
-
+ &Graveyard&Cementerio
-
+ &Exile&Exilio
@@ -6539,57 +6590,57 @@ Cockatrice está recargando la base de datos de cartas.
PhasesToolbar
-
+ Untap stepPaso de enderezar
-
+ Upkeep stepPaso de mantenimiento
-
+ Draw stepPaso de robar
-
+ First main phasePrimera fase principal
-
+ Beginning of combat stepPaso de inicio del combate
-
+ Declare attackers stepPaso de declarar atacantes
-
+ Declare blockers stepPaso de declarar bloqueadores
-
+ Combat damage stepPaso de daño de combate
-
+ End of combat stepPaso de final del combate
-
+ Second main phaseSegunda fase principal
-
+ End of turn stepPaso final
@@ -6606,134 +6657,138 @@ Cockatrice está recargando la base de datos de cartas.
PlayerActions
-
+ View top cards of libraryVer cartas de la parte superior de la biblioteca
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Number of cards: (max. %1)Número de cartas: (máx. %1)
-
+ View bottom cards of libraryVer cartas de la parte inferior de la biblioteca
-
+ Shuffle top cards of library
-
+ Shuffle bottom cards of library
-
+ Draw handRobar mano
-
+ 0 and lower are in comparison to current hand size
-
+ Draw cardsRobar cartas
+
+
+
+
+
+ grave
+
+
- Move top cards to grave
+
+
+
+ exile
-
- Move top cards to exile
+
+ Move top cards to %1
-
- Move bottom cards to grave
+
+ Move bottom cards to %1
-
- Move bottom cards to exile
-
-
-
-
+ Draw bottom cards
-
-
+
+ C&reate another %1 token
-
+ Create tokensCrear fichas
-
-
+
+ Number:Número:
-
+ Place card X cards from top of library
-
+ Which position should this card be placed:
-
+ (max. %1)
-
+ Change power/toughnessCambiar fuerza/resistencia
-
+ Change stats to:
-
+ Set annotation
-
+ Please enter the new annotation:
-
+ Set countersEstablecer contadores
@@ -6741,48 +6796,65 @@ Cockatrice está recargando la base de datos de cartas.
PlayerMenu
-
+ Player "%1"
-
+ &Counters
+
+
+ PrintingDisabledInfoWidget
-
- S&ay
+
+ The Printing Selector is disabled because you have currently enabled the setting to override all selected printings with personal set preferences.
+
+This setting means you'll only see the default printing for each card, instead of being able to select a printing, and will not see the printings other people have selected.
+
+
+
+
+
+
+ Enable printings againPrintingSelector
-
+ Display Navigation Buttons
+
+
+ Printing Selector
+
+ PrintingSelectorCardOverlayWidget
-
+ Preference
-
+ Pin Printing
-
+ Unpin Printing
-
+ Show Related cards
@@ -6831,17 +6903,25 @@ Cockatrice está recargando la base de datos de cartas.
Fecha de lanzamiento
-
-
+
+ DescendingDescendente
-
+ AscendingAscendente
+
+ PrintingSelectorPlaceholderWidget
+
+
+ Select a card to view its available printings
+
+
+PtMenu
@@ -6980,6 +7060,33 @@ Cockatrice está recargando la base de datos de cartas.
A .cod version of this deck already exists. Overwrite it?Ya existe una versión .cod de este mazo. Sobrescribirla?
+
+
+ Enabling this feature will disable the use of the Printing Selector.
+
+You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
+
+You will have to use the Set Manager, available through Card Database -> Manage Sets.
+
+Are you sure you would like to enable this feature?
+
+
+
+
+ Disabling this feature will enable the Printing Selector.
+
+You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
+
+You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
+
+Are you sure you would like to disable this feature?
+
+
+
+
+ Confirm Change
+
+ QPlatformTheme
@@ -7128,37 +7235,37 @@ Cockatrice está recargando la base de datos de cartas.
RfgMenu
-
+ &Exile&Exilio
-
+ &View exileVer &exilio
-
+ &Move exile to...&Mover exilio a...
-
+ &Top of library&Parte superior de la biblioteca
-
+ &Bottom of library&Parte inferior de la biblioteca
-
+ &Hand&Mano
-
+ &Graveyard&Cementerio
@@ -7201,6 +7308,14 @@ Cockatrice está recargando la base de datos de cartas.
Partidas
+
+ SayMenu
+
+
+ S&ay
+
+
+SequenceEdit
@@ -7265,53 +7380,53 @@ Cockatrice está recargando la base de datos de cartas.
ShortcutSettingsPage
-
-
+
+ Restore all default shortcutsRestaurar atajos por defecto
-
+ Do you really want to restore all default shortcuts?¿Realmente quieres restablecer los atajos predeterminados?
-
+ Clear all default shortcutsLimpiar todos los atajos predeterminados
-
+ Do you really want to clear all shortcuts?¿Realmente quieres limpiar los atajos predeterminados?
-
+ Section:Sección:
-
+ Action:Acción:
-
+ Shortcut:Atajo:
-
+ How to set custom shortcutsCómo fijar atajos personalizados
-
+ Clear all shortcuts
-
+ Search by shortcut name
@@ -7379,27 +7494,27 @@ Por favor, revise su configuración de atajos.
SoundSettingsPage
-
+ Enable &soundsActivar &sonidos
-
+ Current sounds theme:Tema de sonidos actual:
-
+ Test system sound engineProbar el audio del sistema
-
+ Sound settingsPreferencias de sonido
-
+ Master volumeVolumen maestro
@@ -7615,59 +7730,123 @@ Por favor, revise su configuración de atajos.
TabArchidekt
-
-
+
+
+ Desc.
-
- Asc.
+
+
+ AND
-
-
- Any Bracket
+
+
+ Require ALL selected colors
-
- Deck name contains...
+
+
+ Deck name...
-
- Owner name contains...
+
+
+ Owner...
+
+
+
+
+
+ Packages
+
+
+
+
+
+ Advanced Filters
- Disabled
+ Bracket:
-
+
+
+ Any
+
+
+
+
+
+ Contains card...
+
+
+
+
+
+ Commander...
+
+
+
+
+
+ Tag...
+
+
+
+
+
+ Deck Size
+
+
+
+
+ Cards:
+
+
+
+
+
+ Asc.
+
+
+
+
+ Sort by:
+
+
+
+
+ Filter by:
+
+
+
+
+ Display Settings
+
+
+
+
+ Search
-
+
+ Formats
-
- Min. # of Cards:
-
-
-
-
- Page:
-
-
-
-
+ Archidekt:
@@ -7675,60 +7854,52 @@ Por favor, revise su configuración de atajos.
TabDeckEditor
-
+ Card InfoInformación de la carta
-
+ DeckMazo
-
+ FiltersFiltros
-
+ &View&Ver
-
+ Card Database
-
+ Printing
-
-
-
-
-
+ VisibleVisible
-
-
-
-
-
+ FloatingFlotante
-
+ Reset layoutReinicializar la disposición
-
+ Deck: %1Mazo: %1
@@ -7736,61 +7907,55 @@ Por favor, revise su configuración de atajos.
TabDeckEditorVisual
-
+ Visual Deck: %1
-
+ &Visual Deck Editor
-
-
+
+ Card InfoInformación de la carta
-
-
+
+ DeckMazo
-
-
+
+ Filters
-
+ &View
-
+ Printing
-
-
-
-
+ VisibleVisible
-
-
-
-
+ Floating
-
+ Reset layout
@@ -7855,7 +8020,7 @@ Por favor, revise su configuración de atajos.
-
+ New folderNueva carpeta
@@ -7937,18 +8102,18 @@ Por favor, introduce un nombre:
-
+ Delete remote decks
-
+ Are you sure you want to delete the selected decks?
-
+ Name of new folder:Nombre de la nueva carpeta:
@@ -7966,12 +8131,12 @@ Por favor, introduce un nombre:
-
+ ErrorError
-
+ Could not open deck at %1
@@ -8020,197 +8185,191 @@ Por favor, introduce un nombre:
TabGame
-
-
-
+
+
+ ReplayRepetir
-
-
+
+ GamePartida
-
-
+
+ Player ListLista de jugadores
-
-
+
+ Card InfoInformación de la carta
-
-
+
+ MessagesMensajes
-
-
+
+ Replay TimelineHistorial de partidas
-
+ &Phases&Fases
-
+ &Game&Partida
-
+ Next &phasePróxima &fase
-
+ Next phase with &actionPróxima fase con &acción
-
+ Next &turnPróximo &turno
-
+ Reverse turn orderOrden del turno invertido.
-
+ &Remove all local arrows&Retirar todas las flechas locales
-
+ Rotate View Cl&ockwiseGirar en sentido horario
-
+ Rotate View Co&unterclockwiseGirar en sentido antih&orario (&U)
-
+ Game &information&Información de la partida
-
+ Un&concede
-
-
-
+
+
+ &Concede&Conceder
-
+ &Leave game&Abandonar la partida
-
+ C&lose replay&Cerrar repetición
-
+ &Focus Chat&Resaltar chat
-
+ &Say:&Decir:
-
+ Selected cardsCartas seleccionadas
-
+ &View&Ver
-
-
-
-
+ VisibleVisible
-
-
-
-
+ FloatingFlotante
-
+ Reset layoutResetear la distribución
-
+ ConcedeConceder
-
+ Are you sure you want to concede this game?¿Estás seguro de que quieres conceder esta partida?
-
+ UnconcedeRevertir rendición
-
+ You have already conceded. Do you want to return to this game?Ya te rendiste. ¿Quieres regresar a este juego?
-
+ Leave gameAbandonar la partida
-
+ Are you sure you want to leave this game?¿Estás seguro de que quieres abandonar la partida?
-
+ A player has joined game #%1Un jugador se ha unido a la partida #%1
-
+ %1 has joined the game%1 se ha unido a la partida
-
+ You have been kicked out of the game.Has sido expulsado de la partida.
@@ -9309,142 +9468,152 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
UserInterfaceSettingsPage
-
+ General interface settingsPreferencias generales de la interfaz
-
+ &Double-click cards to play them (instead of single-click)&Doble click en las cartas para jugarlas (en lugar de un solo click)
-
+ &Clicking plays all selected cards (instead of just the clicked card)
-
+ &Play all nonlands onto the stack (not the battlefield) by default&Jugar todas las cartas que no sean tierras en la pila (en lugar de en el campo de batalla) por defecto.
-
+ Do not delete &arrows inside of subphases
-
+ Close card view window when last card is removed
-
+ Auto focus search bar when card view window is opened
-
+ Annotate card text on tokensAnotar en las fichas.
-
-
- Use tear-off menus, allowing right click menus to persist on screen
- Usar menus flotantes, permitir click derecho para anclar menus en la pantalla
-
-
-
- Notifications settings
- Ajustes de notificaciones
-
-
-
- Enable notifications in taskbar
- Habilitar notificaciones en la barra de tareas
-
-
-
- Notify in the taskbar for game events while you are spectating
- Notificar en la barra de tareas los eventos de la partida mientras estás como espectador
-
-
-
- Notify in the taskbar when users in your buddy list connect
- Recibir una notificación en la barra de tareas cuando alguien de tu lista de amigos se conecte
-
-
-
- Animation settings
- Preferencias de animación
-
-
-
- &Tap/untap animation
- Animación de &girar/enderezar
-
-
-
- Deck editor/storage settings
-
-
-
-
- Open deck in new tab by default
-
-
- Use visual deck storage in game lobby
+ Show selection counter during drag selection
- Use selection animation for Visual Deck Storage
+ Show total selection counter
+
+
+ Use tear-off menus, allowing right click menus to persist on screen
+ Usar menus flotantes, permitir click derecho para anclar menus en la pantalla
+
- When adding a tag in the visual deck storage to a .txt deck:
-
+ Notifications settings
+ Ajustes de notificaciones
+
+
+
+ Enable notifications in taskbar
+ Habilitar notificaciones en la barra de tareas
- do nothing
- no hacer nada
+ Notify in the taskbar for game events while you are spectating
+ Notificar en la barra de tareas los eventos de la partida mientras estás como espectador
+
+
+
+ Notify in the taskbar when users in your buddy list connect
+ Recibir una notificación en la barra de tareas cuando alguien de tu lista de amigos se conecte
- ask to convert to .cod
-
+ Animation settings
+ Preferencias de animación
+
+
+
+ &Tap/untap animation
+ Animación de &girar/enderezar
- always convert to .cod
+ Deck editor/storage settings
- Default deck editor type
+ Open deck in new tab by default
- Classic Deck Editor
+ Use visual deck storage in game lobby
- Visual Deck Editor
-
-
-
-
- Replay settings
+ Use selection animation for Visual Deck Storage
+ When adding a tag in the visual deck storage to a .txt deck:
+
+
+
+
+ do nothing
+ no hacer nada
+
+
+
+ ask to convert to .cod
+
+
+
+
+ always convert to .cod
+
+
+
+
+ Default deck editor type
+
+
+
+
+ Classic Deck Editor
+
+
+
+
+ Visual Deck Editor
+
+
+
+
+ Replay settings
+
+
+
+ Buffer time for backwards skip via shortcut:
@@ -9508,23 +9677,24 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDatabaseDisplayColorFilterWidget
-
- Mode: Exact Match
+
+ Exact match
+
+
+
+
+ Includes
- Mode: Includes
+ Include / Exclude
+ Mode: Includes
-
- Mode: Include/Exclude
-
-
-
-
- Filter mode (AND/OR/NOT conjunctions of filters)
+
+ How selected and unselected colors are combined in the filter
@@ -9551,25 +9721,108 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
+
+ VisualDatabaseDisplayFilterToolbarWidget
+
+
+ Sort by
+
+
+
+
+ Filter by
+
+
+
+
+ Save and load filters
+
+
+
+
+ Filter by exact card name
+
+
+
+
+ Filter by card main-type
+
+
+
+
+ Filter by card sub-type
+
+
+
+
+ Filter by set
+
+
+
+
+ Filter by format legality
+
+
+
+
+ Save/Load
+
+
+
+
+ Name
+
+
+
+
+ Main Type
+
+
+
+
+ Sub Type
+
+
+
+
+ Sets
+
+
+
+
+ Formats
+
+
+VisualDatabaseDisplayFormatLegalityFilterWidget
-
+
+ Show formats with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display formats with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9577,22 +9830,32 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDatabaseDisplayMainTypeFilterWidget
-
+
+ Show main types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card main-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9628,7 +9891,7 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDatabaseDisplayRecentSetFilterSettingsWidget
-
+ Filter to most recent sets
@@ -9636,19 +9899,19 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDatabaseDisplaySetFilterWidget
-
+ Search sets...
-
-
+
+ Mode: Exact Match
-
-
+
+ Mode: Includes
@@ -9656,27 +9919,37 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDatabaseDisplaySubTypeFilterWidget
-
+ Search subtypes...
-
+
+ Show sub types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card sub-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9690,52 +9963,22 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
-
+ Visual
-
+ Loading database ...
-
+ Clear all filtersLimpiar todos los filtros
-
- Sort by:
-
-
-
-
- Filter by:
-
-
-
-
- Save and load filters
-
-
-
-
- Filter by exact card name
-
-
-
-
- Filter by card sub-type
-
-
-
-
- Filter by set
-
-
-
-
+ Table
@@ -9743,56 +9986,64 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDeckDisplayOptionsWidget
-
+ Group by:
-
+ Change how cards are divided into categories/groups.
-
+ Sort by:
-
+ Click and drag to change the sort order within the groups
-
+ Configure how cards are sorted within their groups
-
-
+
+ Toggle Layout: Overlap
-
+ Change how cards are displayed within zones (i.e. overlapped or fully visible.)
-
+ Toggle Layout: Flat
+
+ VisualDeckEditorPlaceholderWidget
+
+
+ Add cards using the search bar or database tab to have them appear here
+
+
+VisualDeckEditorSampleHandWidget
-
+ Draw a new sample handRobar una nueva mano de muestra
-
+ Sample hand size
@@ -9800,17 +10051,17 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDeckEditorWidget
-
+ Type a card name here for suggestions from the database...
-
+ Quick search and add card
-
+ Search for closest match in the database (with auto-suggestions) and add preferred printing to the deck on pressing enter
@@ -9826,47 +10077,52 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
VisualDeckStorageQuickSettingsWidget
-
+ Show Folders
-
+ Show Tag Filter
-
+
+ Show Color Identity
+
+
+
+ Show Tags On Deck Previews
-
+ Show Banner Card Selection Option
-
+ Draw unused Color Identities
-
+ Unused Color Identities Opacity
-
+ Deck tooltip:
-
+ NoneNinguno
-
+ Filepath
@@ -9967,133 +10223,133 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
WndSets
-
+ Move selected set to the topMover el set seleccionado al principio
-
+ Move selected set upMover arriba el set seleccionado
-
+ Move selected set downMover abajo el set seleccionado
-
+ Move selected set to the bottomMover el set seleccionado al final
-
+ Search by set name, code, or typeBuscar por nombre de edición, código, o tipo
-
+ Default orderOrden por defecto
-
+ Restore original art priority orderRestaurar orden predeterminado de arte original
-
+ Enable all setsSeleccionar todos los sets
-
+ Disable all setsDeseleccionar todos los sets
-
+ Enable selected set(s)Habilitar set(s) seleccionados
-
+ Disable selected set(s)Deshabilitar set(s) seleccionados
-
+ Deck EditorEditor de mazo
-
+ Use CTRL+A to select all sets in the view.Usa CTRL+A para seleccionar todas las colecciones aquí mostradas.
-
+ Only cards in enabled sets will appear in the card list of the deck editor.Solo las cartas en las colecciones permitidas aparecerán en la lista de cartas del editor de mazos.
-
+ Image priority is decided in the following order:La prioridad de las imágenes es decidida en el siguiente orden:
-
+ first the CUSTOM Folder (%1), then the Enabled Sets in this dialog (Top to Bottom)%1 is a link to the wikiprimero la Carpeta PERSONALIZADA (%1), luego las Ediciones Habilitadas en este mensaje (de Arriba a Abajo)
-
+ Include cards rebalanced for Alchemy [requires restart]
-
+ Card ArtArte de carta
-
+ How to use custom card artCómo usar arte de carta personalizada.
-
+ HintsConsejos
-
+ NoteNota
-
+ Sorting by column allows you to find a set while not changing set priority.Ordenar por columna te permite encontrar una edición sin cambiar la prioridad de edición.
-
+ To enable ordering again, click the column header until this message disappears.Para habilitar el orden de nuevo, haga click en el encabezado de la columna hasta que este mensaje deje de aparecer.
-
+ Use the current sorting as the set priority insteadUsa el filtro actual como la prioridad de edición
-
+ Sorts the set priority using the same columnOrdena la prioridad de edición usando la misma columna
-
+ Manage setsMantenedor de ediciones
@@ -10101,72 +10357,72 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
ZoneViewWidget
-
+ Search by card name (or search expressions)
-
+ UngroupedDesagrupado
-
+ Group by TypeAgrupar por tipo
-
+ Group by Mana ValueAgrupar por valor de maná
-
+ Group by ColorAgrupar por color
-
+ UnsortedDesordenado
-
+ Sort by NameOrdenar por nombre
-
+ Sort by TypeOrdenar por tipo
-
+ Sort by Mana CostOrdenar por coste de maná
-
+ Sort by ColorsOrdenar por colores
-
+ Sort by P/T
-
+ Sort by Set
-
+ shuffle when closingbarajar al cerrar
-
+ pile viewvista de la pila
@@ -10201,7 +10457,7 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
-
+ Deck EditorEditor de mazos
@@ -10282,7 +10538,7 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
-
+ ReplaysRepeticiones
@@ -10434,7 +10690,7 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
-
+ Reset LayoutRestablecer disposición
@@ -10855,8 +11111,9 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
- Toggle Untap
- Alternar enderezamiento
+ Toggle Skip Untapping
+ Toggle Untap
+
@@ -10875,98 +11132,102 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
+ Play Card, Face Down
+
+
+
+ Attach Card...Anexar carta...
-
+ Unattach CardDesanexar carta...
-
+ Clone CardClonar carta
-
+ Create Token...Crear ficha...
-
+ Create All Related TokensCrear todas las fichas relacionadas
-
+ Create Another TokenCrear otra ficha
-
+ Set Annotation...Escribir anotación...
-
+ Select All Cards in Zone
-
+ Select All Cards in Row
-
+ Select All Cards in Column
-
+ Reveal Selected Cards to All Players
-
-
+
+ Bottom of LibraryParte inferior de la biblioteca
-
+
-
-
+
+ ExileExilio
-
+
-
+ GraveyardCementerio
-
+ HandMano
-
-
+
+ Top of LibraryParte superior de la biblioteca
-
-
+ Battlefield, Face DownCampo de batalla, boca abajo
@@ -11002,234 +11263,246 @@ Por favor, absténgase de realizar de nuevo esta actividad o se tomarán medidas
-
+ StackApilar
-
+ Graveyard (Multiple)Cementerio (Multiple)
-
-
+
+
+ Graveyard (Multiple), Face Down
+
+
+
+
+ Exile (Multiple)Exiliar (Multiple)
-
+
+
+ Exile (Multiple), Face Down
+
+
+
+ Stack Until Found
-
+ Draw Bottom CardRobar carta de la parte inferior
-
+ Draw Multiple Cards from Bottom...Robar múltiples cartas de la parte inferior...
-
+ Draw Arrow...Dibujar flecha
-
+ Remove Local ArrowsEliminar flechas
-
+ Leave GameAbandonar partida
-
+ ConcedeConceder
-
+ Roll Dice...Lanzar dado...
-
+ Shuffle LibraryBarajar biblioteca
-
+ Shuffle Top Cards of Library
-
+ Shuffle Bottom Cards of Library
-
+ MulliganMulligan
-
+ Mulligan (Same hand size)
-
+ Mulligan (Hand size - 1)
-
+ Draw a CardRobar una carta
-
+ Draw Multiple Cards...Robar múltiples cartas...
-
+ Undo DrawDeshacer último robo
-
+ Always Reveal Top CardMostrar siempre la carta superior
-
+ Always Look At Top CardMirar siempre la carta superior
-
+ Sort Hand by Name
-
+ Sort Hand by Type
-
+ Sort Hand by Mana Value
-
+ Reveal Hand to All Players
-
+ Reveal Random Card to All Players
-
+ Rotate View ClockwiseRotar vista en sentido horario
-
+ Rotate View CounterclockwiseRotar vista en sentido antihorario
-
+ Unfocus Text BoxNo resaltar la caja de texto
-
+ Focus ChatResaltar el chat
-
+ Clear ChatBorrar chat
-
+ RefreshActualizar
-
+ Skip Forward
-
+ Skip Backward
-
+ Skip Forward by a lot
-
+ Skip Backward by a lot
-
+ Play/Pause
-
+ Toggle Fast Forward
-
+ HomeInicio
-
+ Visual Deck Storage
-
+ Deck StorageAlmacenamiento de mazos
-
+ ServerServidor
-
+ AccountCuenta
-
+ AdministrationAdministración
-
+ LogsHistorial
diff --git a/cockatrice/translations/cockatrice_fi.ts b/cockatrice/translations/cockatrice_fi.ts
index 16f94f1c0..1202e1f1e 100644
--- a/cockatrice/translations/cockatrice_fi.ts
+++ b/cockatrice/translations/cockatrice_fi.ts
@@ -23,12 +23,12 @@
AbstractDlgDeckTextEdit
-
+ &Refresh
-
+ Parse Set Name and Number (if available)
@@ -36,60 +36,60 @@
AbstractTabDeckEditor
-
+ Open in new tab
-
+ Are you sure?
-
+ The decklist has been modified.
Do you want to save the changes?
-
-
-
-
-
-
+
+
+
+
+
+ Error
-
+ Could not open deck at %1
-
+ Could not save remote deck
-
-
+
+ The deck could not be saved.
Please check that the directory is writable and try again.
-
+ Save deck
-
+ The deck could not be saved.
-
+ There are no cards in your deck to be exported
@@ -131,190 +131,168 @@ Please check that the directory is writable and try again.
AppearanceSettingsPage
-
+ seconds
-
+ Error
-
+ Could not create themes directory at '%1'.
-
- Enabling this feature will disable the use of the Printing Selector.
-
-You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
-
-You will have to use the Set Manager, available through Card Database -> Manage Sets.
-
-Are you sure you would like to enable this feature?
-
-
-
-
- Disabling this feature will enable the Printing Selector.
-
-You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
-
-You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
-
-Are you sure you would like to disable this feature?
-
-
-
-
- Confirm Change
-
-
-
-
+ Theme settingsTeeman asetukset
-
+ Current theme:Nykyinen teema:
-
+ Open themes folder
-
+ Home tab background source:
-
+ Home tab background shuffle frequency:
-
+ Disabled
-
+
+ Display card name of background in bottom right:
+
+
+
+ Menu settings
-
+ Show keyboard shortcuts in right-click menus
-
+ Show game filter toolbar above list in room tab
-
+ Card renderingKortin renderöinti
-
+ Display card names on cards having a pictureNäytä kortin nimi korteissa, joissa on kuva
-
+ Auto-Rotate cards with sideways layout
-
+ Override all card art with personal set preference (Pre-ProviderID change behavior)
-
+ Bump sets that the deck contains cards from to the top in the printing selector
-
+ Scale cards on mouse overSuurenna kortti kun hiiri on kortin päällä
-
+ Use rounded card corners
-
+ Minimum overlap percentage of cards on the stack and in vertical hand
-
+ Maximum initial height for card view window:
-
-
+
+ rows
-
+ Maximum expanded height for card view window:
-
+ Card counters
-
+ Counter %1
-
+ Hand layoutKäden layout
-
+ Display hand horizontally (wastes space)Näytä käsikortit vierekkäin vaakatasossa (vie enemmän tilaa)
-
+ Enable left justificationJärjestä vasemmalta
-
+ Table grid layoutPöydän grid-asetelma
-
+ Invert vertical coordinateKäänteiset pystykoordinaatit
-
+ Minimum player count for multi-column layout:Pelaajien vähimmäismäärä moniosaisessa layoutissa:
-
+ Maximum font size for information displayed on cards:Suurin fonttikoko korteissa näkyville infoteksteille:
@@ -322,7 +300,12 @@ Are you sure you would like to disable this feature?
ArchidektApiResponseDeckDisplayWidget
-
+
+ Back to results
+
+
+
+ Open Deck in Deck Editor
@@ -642,22 +625,22 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
CardInfoPictureWidget
-
+ View related cards
-
+ Add card to deck
-
+ Mainboard
-
+ Sideboard
@@ -693,124 +676,124 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
CardMenu
-
+ Re&veal to...
-
+ &All players
-
+ View related cards
-
+ Token:
-
+ All tokens
-
+ &Select All
-
+ S&elect Row
-
+ S&elect Column
-
+ &Play
-
+ &Hide
-
+ Play &Face Down
-
+ &Tap / UntapTurn sideways or back again
-
- Toggle &normal untapping
+
+ Skip &untapping
-
+ T&urn OverTurn face up/face down
-
+ &Peek at card face
-
+ &Clone
-
+ Attac&h to card...
-
+ Unattac&h
-
+ &Draw arrow...
-
+ &Set annotation...
-
+ Ca&rd counters
-
+ &Add counter (%1)
-
+ &Remove counter (%1)
-
+ &Set counters (%1)...
@@ -826,133 +809,133 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
CardZoneLogic
-
+ their handnominative
-
+ %1's handnominative
-
+ their librarylook at zone
-
+ %1's librarylook at zone
-
+ of their librarytop cards of zone,
-
+ of %1's librarytop cards of zone
-
+ their libraryreveal zone
-
+ %1's libraryreveal zone
-
+ their libraryshuffle
-
+ %1's libraryshuffle
-
+ their librarynominative
-
-
- %1's library
- nominative
-
-
+ %1's library
+ nominative
+
+
+
+ their graveyardnominative
-
+ %1's graveyardnominative
-
+ their exilenominative
-
+ %1's exilenominative
-
-
- their sideboard
- look at zone
-
-
-
-
- %1's sideboard
- look at zone
-
- their sideboard
- nominative
+ look at zone%1's sideboard
+ look at zone
+
+
+
+
+ their sideboardnominative
-
+
+ %1's sideboard
+ nominative
+
+
+
+ their custom zone '%1'nominative
-
+ %1's custom zone '%2'nominative
@@ -1014,7 +997,7 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckEditorCardDatabaseDockWidget
-
+ Card Database
@@ -1022,7 +1005,7 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckEditorCardInfoDockWidget
-
+ Card Info
@@ -1045,32 +1028,32 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
-
+ Select Printing
-
+ Show on EDHRec (Commander)
-
+ Show on EDHRec (Card)
-
+ Show Related cards
-
+ Add card to &maindeck
-
+ Add card to &sideboard
@@ -1078,32 +1061,32 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckEditorDeckDockWidget
-
+ Loading Database...
-
+ Banner Card
-
+ Main Type
-
+ Mana Cost
-
+ Colors
-
+ Select Printing
@@ -1176,17 +1159,17 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckEditorFilterDockWidget
-
+ Filters
-
+ &Clear all filters
-
+ Delete selected
@@ -1309,7 +1292,7 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckEditorPrintingSelectorDockWidget
-
+ Printing Selector
@@ -1317,166 +1300,166 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckEditorSettingsPage
-
-
+
+ Update SpoilersPäivitä spoilerit
-
-
+
+ SuccessOnnistui
-
+ Download URLs have been reset.Latauksen URL:t on resetoitu
-
+ Downloaded card pictures have been reset.Ladattujen korttien kuvat on resetoitu.
-
+ ErrorVirhe
-
+ One or more downloaded card pictures could not be cleared.Ei voitu poistaa yhtä tai useampaa kortin kuvaa
-
+ Add URLLisää URL
-
-
+
+ URL:URL:
-
-
+
+ Edit URLMuokkaa URL
-
+ Network Cache Size:
-
+ Redirect Cache TTL:
-
+ How long cached redirects for urls are valid for.
-
+ Picture Cache Size:
-
+ Add New URL
-
+ Remove URL
-
+ Day(s)
-
+ Updating...Päivitetään...
-
+ Choose pathValitse polku
-
+ URL Download PriorityURL Latausprioriteetti
-
+ SpoilersSpoilerit
-
+ Download Spoilers AutomaticallyLataa spoilerit automaattisesti
-
+ Spoiler Location:Spoilerien sijainti:
-
+ Last ChangeMuokattu viimeksi
-
+ Spoilers download automatically on launchLataa spoilerit latauksen yhteydessä
-
+ Press the button to manually update without relaunchingLataa spoilerit manuaalisesti ilman uudelleenkäynnistystä
-
+ Do not close settings until manual update is completeÄlä sulje asetuksia, ennen kuin manuaalinen päivitys on valmis
-
+ Download card pictures on the flyLataa korttikuvat kun niitä tarvitaan
-
+ How to add a custom URLMiten lisään oman URL:n
-
+ Delete Downloaded ImagesPoista ladatut kuvat
-
+ Reset Download URLsResetoi latausten URL:t
-
+ On-disk cache for downloaded pictures
-
+ In-memory cache for pictures not currently on screen
@@ -1484,32 +1467,32 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckListHistoryManagerWidget
-
+ Undo
-
+ Redo
-
+ Undo/Redo history
-
+ Click on an entry to revert to that point in the history.
-
+ [redo]
-
+ [undo]
@@ -1517,27 +1500,27 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckListModel
-
+ Count
-
+ Set
-
+ NumberNumero
-
+ Provider ID
-
+ CardKortti
@@ -1545,12 +1528,12 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckLoader
-
+ Common deck formats (%1)
-
+ All files (*.*)
@@ -1647,94 +1630,94 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
DeckPreviewWidget
-
+ Banner Card
-
+ Open in deck editor
-
+ Edit Tags
-
+ Rename Deck
-
+ Save Deck to Clipboard
-
+ Annotated
-
+ Annotated (No set info)
-
+ Not Annotated
-
+ Not Annotated (No set info)
-
+ Rename File
-
+ Delete File
-
+ Set Banner Card
-
-
+
+ New name:
-
-
+
+ Error
-
+ Rename failed
-
+ Delete file
-
+ Are you sure you want to delete the selected file?
-
+ Delete failed
@@ -1767,32 +1750,32 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä.
-
+ Added (%1): %2 (%3) %4
-
+ Moved to %1 1 × "%2" (%3)
-
+ Removed "%1" (all copies)
-
+ %1 1 × "%2" (%3)
-
+ Added
-
+ Removed
@@ -1859,29 +1842,29 @@ Tallennetaan moderaattoreita varten. Bännätty henkilö ei näe tätä. Sideboard locked
-
-
+
+ ErrorVirhe
-
+ The selected file could not be loaded.Valittua tiedostoa ei voi avata.
-
+ Deck is greater than maximum file size.
-
+ Are you sure you want to force start?
This will kick all non-ready players from the game.
-
+ Cockatrice
@@ -2374,17 +2357,17 @@ Poistaaksesi nykyisen avatarisi: Hyväksy valitsematta uutta kuvaa.
DlgEditDeckInClipboard
-
+ Edit deck in clipboard
-
+ Error
-
+ Invalid deck list.
@@ -2885,17 +2868,17 @@ Varmista että 'Token' setti on asetettu näkyväksi 'Muokkaa set
DlgLoadDeckFromClipboard
-
+ Load deck from clipboardAvaa pakka leikepöydältä
-
+ ErrorVirhe
-
+ Invalid deck list.Pakka ei ole kelvollinen.
@@ -2903,43 +2886,43 @@ Varmista että 'Token' setti on asetettu näkyväksi 'Muokkaa set
DlgLoadDeckFromWebsite
-
+ Paste a link to a decklist site here to import it.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
-
-
-
-
+
+
+
+
+ Load Deck from Website
-
+ No parser available for this deck provider.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)
-
+ Network error: %1
-
+ Received empty deck data.
-
+ Failed to parse deck data: %1
-
+ The provided URL is not recognized as a valid deck URL.
Valid deck URLs look like this:
@@ -2958,40 +2941,73 @@ https://tappedout.net/mtg-decks/your-deck-name/Lataa pakka
+
+ DlgLocalGameOptions
+
+
+ Players:
+
+
+
+
+ General
+
+
+
+
+ Starting life total:
+
+
+
+
+ Game setup options
+
+
+
+
+ Remember settings
+
+
+
+
+ Local game options
+
+
+DlgMoveTopCardsUntil
-
+ Card name (or search expressions):
-
+ Number of hits:
-
+ Auto play hits
-
+ Put top cards on stack until...
-
+ No cards matching the search expression exists in the card database. Proceed anyways?
-
+ Cockatrice
-
+ Invalid filter
@@ -3152,12 +3168,12 @@ Your email will be used to verify your account.
DlgSettings
-
+ Unknown Error loading card databaseTuntematon virhe ladattaessa korttitietokantaa
-
+ Your card database is invalid.
Cockatrice may not function correctly with an invalid database
@@ -3174,7 +3190,7 @@ Voit joutua ajamaan Oraclen ja päivittämään korttitietokannan uudelleen
Haluatko vaihtaa tietokantasi sijaintia?
-
+ Your card database version is too old.
This can cause problems loading card information or images
@@ -3191,7 +3207,7 @@ Yleensä tämä voidaan korjata palaamalla oracleen päivittämään korttitieto
Haluatko vaihtaa tietokantasi sijaintia?
-
+ Your card database did not finish loading
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues with your cards.xml attached
@@ -3200,7 +3216,7 @@ Would you like to change your database location setting?
-
+ File Error loading your card database.
Would you like to change your database location setting?
@@ -3209,7 +3225,7 @@ Would you like to change your database location setting?
Haluatko vaihtaa tietokantasi sijaintia?
-
+ Your card database was loaded but contains no cards.
Would you like to change your database location setting?
@@ -3218,7 +3234,7 @@ Would you like to change your database location setting?
Haluatko vaihtaa tietokantasi sijaintia?
-
+ Unknown card database load status
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues
@@ -3227,59 +3243,59 @@ Would you like to change your database location setting?
-
-
-
+
+
+ ErrorVirhe
-
+ The path to your deck directory is invalid. Would you like to go back and set the correct path?Pakkojen tiedostosijainti on väärä. Haluatko palata takaisin ja asettaa oikean sijainnin pakat -kansiolle?
-
+ The path to your card pictures directory is invalid. Would you like to go back and set the correct path?Kuvien tiedostosijainti on väärä. Haluatko palata takaisin ja asettaa oikean sijainnin kuvat -kansiolle?
-
+ SettingsAsetukset
-
+ GeneralYleinen
-
+ AppearanceUlkonäkö
-
+ User InterfaceKäyttöliittymä
-
+ Card SourcesKorttien lähteet
-
+ ChatChat
-
+ SoundÄänet
-
+ ShortcutsPikanäppäimet
@@ -3593,67 +3609,67 @@ You may have to manually download the new version.
DrawProbabilityWidget
-
+ Draw Probability
-
+ Probability of drawing
-
+ Card Name
-
+ Type
-
+ Subtype
-
+ Mana Value
-
+ At least
-
+ Exactly
-
+ card(s) having drawn at least
-
+ cards
-
+ Category
-
+ Qty
-
+ Odds (%)
@@ -4101,143 +4117,143 @@ You may have to manually download the new version.
GeneralSettingsPage
-
+ Reset all paths
-
+ All paths have been reset
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Choose pathValitse polku
-
+ Personal settingsHenkilökohtaiset asetukset
-
+ Language:Kieli:
-
+ Paths (editing disabled in portable mode)Polut (editoiminen poistettu käytöstä kannettavassa versiossa)
-
+ PathsPolut
-
+ How to help with translations
-
+ Decks directory:Pakkojen kansio:
-
+ Filters directory:
-
+ Replays directory:Replay kansio:
-
+ Pictures directory:Kuvakansio:
-
+ Card database:Korttitietokanta:
-
+ Custom database directory:
-
+ Token database:Tokenitietokanta:
-
+ Update channelPäivitykset
-
+ Check for client updates on startup
-
+ Check for card database updates on startup
-
+ Don't check
-
+ Prompt for update
-
+ Always update in the background
-
+ Check for card database updates every
-
+ days
-
+ Notify if a feature supported by the server is missing in my clientIlmoita jos ohjelmastani puuttuu jokin serverin tarjoama ominaisuus
-
+ Automatically run Oracle when running a new version of CockatriceSuorita Oracle automaattisesti kun Cockatricen uusi versio on asennettu
-
+ Show tips on startupNäytä vinkit käynnistyksen yhteydessä
-
+ Last update check on %1 (%2 days ago)
@@ -4245,47 +4261,47 @@ You may have to manually download the new version.
GraveyardMenu
-
+ &Graveyard
-
+ &View graveyard
-
+ &Move graveyard to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &All players
-
+ &Hand
-
+ &Exile
-
+ Reveal random card to...
@@ -4293,88 +4309,88 @@ You may have to manually download the new version.
HandMenu
-
+ &Hand
-
+ &View hand
-
+ Sort hand by...
-
+ Name
-
+ Type
-
+ Mana Value
-
+ Take &mulligan (Choose hand size)
-
+ Take mulligan (Same hand size)
-
+ Take mulligan (Hand size - 1)
-
+ &Move hand to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &Graveyard
-
+ &Exile
-
+ &Reveal hand to...
-
-
+
+ All players
-
+ Reveal r&andom card to...
@@ -4382,52 +4398,52 @@ You may have to manually download the new version.
HomeWidget
-
+ Create New Deck
-
+ Browse Decks
-
+ Browse Card Database
-
+ Browse EDHRec
-
+ Browse Archidekt
-
+ View Replays
-
+ Quit
-
+ Connecting...
-
+ Connect
-
+ Play
@@ -4435,193 +4451,213 @@ You may have to manually download the new version.
LibraryMenu
-
+ &Library
-
+ &View library
-
+ View &top cards of library...
-
+ View bottom cards of library...
-
+ Reveal &library to...
-
+ Lend library to...
-
+ Reveal &top cards to...
-
+ &Top of library...
-
+ &Bottom of library...
-
+ &Always reveal top card
-
+ &Always look at top card
-
+ &Open deck in deck editor
-
+ &Draw card
-
+ D&raw cards...
-
+ &Undo last draw
-
+ Shuffle
-
+ &Play top card
-
+ Play top card &face down
-
+ Put top card on &bottom
-
+ Move top card to grave&yard
-
+ Move top card to e&xile
-
+ Move top cards to &graveyard...
-
+
+ Move top cards to graveyard face down...
+
+
+
+ Move top cards to &exile...
-
+
+ Move top cards to exile face down...
+
+
+
+ Put top cards on stack &until...
-
+ Shuffle top cards...
-
+ &Draw bottom card
-
+ D&raw bottom cards...
-
+ &Play bottom card
-
+ Play bottom card &face down
-
+ Move bottom card to grave&yard
-
+ Move bottom card to e&xile
-
+ Move bottom cards to &graveyard...
-
+
+ Move bottom cards to graveyard face down...
+
+
+
+ Move bottom cards to &exile...
-
+
+ Move bottom cards to exile face down...
+
+
+
+ Put bottom card on &top
-
+ Shuffle bottom cards...
-
-
+
+ &All players
-
+ Reveal top cards of library
-
+ Number of cards: (max. %1)
@@ -4719,18 +4755,8 @@ Will now login.
Kirjautuu.
-
- Number of players
- Pelaajien lukumäärä
-
-
-
- Please enter the number of players.
- Anna pelaajien lukumäärä.
-
-
-
-
+
+ Player %1Pelaaja %1
@@ -4833,8 +4859,8 @@ Kirjautuu.
-
-
+
+ ErrorVirhe
@@ -5241,36 +5267,36 @@ Paikallinen versio on %1, etäversio on %2.
-
+ New VersionUusi versio
-
+ Congratulations on updating to Cockatrice %1!
Oracle will now launch to update your card database.Congratulations on updating to Cockatrice %1!
Oracle will now launch to update your card database.
-
+ Cockatrice installedCockatrice asennettu
-
+ Congratulations on installing Cockatrice %1!
Oracle will now launch to install the initial card database.Congratulations on installing Cockatrice %1!
Oracle will now launch to install the initial card database.
-
+ Card databaseKorttitietokanta
-
+ Cockatrice is unable to load the card database.
Do you want to update your card database now?
If unsure or first time user, choose "Yes"
@@ -5279,46 +5305,46 @@ Do you want to update your card database now?
If unsure or first time user, choose "Yes"
-
-
+
+ YesKyllä
-
-
+
+ NoEi
-
+ Open settingsAvaa asetukset
-
+ New sets foundLöytyi uusia settejä!
-
+ %n new set(s) found in the card database
Set code(s): %1
Do you want to enable it/them?
-
+ View setsNäytä setit
-
+ WelcomeTervetuloa
-
+ Hi! It seems like you're running this version of Cockatrice for the first time.
All the sets in the card database have been enabled.
Read more about changing the set order or disabling specific sets and consequent effects in the "Manage Sets" dialog.
@@ -5327,64 +5353,64 @@ All the sets in the card database have been enabled.
Read more about changing the set order or disabling specific sets and consequent effects in the "Manage Sets" dialog.
-
-
+
+ InformationTietoa
-
+ A card database update is already running.Korttitietokannan päivitys on jo käynnissä
-
+ Unable to run the card database updater: Unable to run the card database updater:
-
+ Card database update running.
-
+ Failed to start. The file might be missing, or permissions might be incorrect.
-
+ The process crashed some time after starting successfully.
-
+ Timed out. The process took too long to respond. The last waitFor...() function timed out.
-
+ An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel.
-
+ An error occurred when attempting to read from the process. For example, the process may not be running.
-
+ Unknown error occurred.
-
+ The card database updater exited with an error:
%1
-
+ This server supports additional features that your client doesn't have.
This is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.
@@ -5395,55 +5421,55 @@ This is most likely not a problem, but this message might mean there is a new ve
To update your client, go to Help -> Check for Updates.
-
-
-
-
-
+
+
+
+
+ Load sets/cardsLataa setit/kortit
-
+ Selected file cannot be found.Selected file cannot be found.
-
+ You can only import XML databases at this time.You can only import XML databases at this time.
-
+ The new sets/cards have been added successfully.
Cockatrice will now reload the card database.The new sets/cards have been added successfully.
Cockatrice will now reload the card database.
-
+ Sets/cards failed to import.Sets/cards failed to import.
-
-
-
+
+
+ Reset Password
-
+ Your password has been reset successfully, you can now log in using the new credentials.Salasanasi on muutettu, voit nyt kirjautua sisään uudella salasanallasi.
-
+ Failed to reset user account password, please contact the server operator to reset your password.Failed to reset user account password, please contact the server operator to reset your password.
-
+ Activation request received, please check your email for an activation token.Activation request received, please check your email for an activation token.
@@ -5494,7 +5520,7 @@ Cockatrice will now reload the card database.
ManaBaseWidget
-
+ Mana Base
@@ -5648,590 +5674,610 @@ Cockatrice will now reload the card database.
MessageLogWidget
-
+ from playpelistä
-
+ from their graveyardGraveyardilta
-
+ from exileexilestä
-
+ from their handkädestään
-
+ the top card of %1's library%1n pakan päällimmäinen kortti
-
+ the top card of their librarypakan päällimmäisen kortin
-
+ from the top of %1's library%1n pakan päältä
-
+ from the top of their libraryPakkansa päältä
-
+ the bottom card of %1's library%1n pakan alimmainen kortti
-
+ the bottom card of their librarypakan alimmaisen kortin
-
+ from the bottom of %1's library%1n pakan pohjalta
-
+ from the bottom of their librarypakan alta
-
+ from %1's library%1n pakasta
-
+ from their librarypakasta
-
+ from sideboardsideboardilta
-
+ from the stackstäkistä
-
+ from custom zone '%1'
-
+ %1 is now keeping the top card %2 revealed.%1 pelaa pakan päällimmäinen kortti %2 esillä.
-
+ %1 is not revealing the top card %2 any longer.%1 ei pelaa enää pakan päällimmäinen kortti %2 esillä,
-
+ %1 can now look at top card %2 at any time.
-
+ %1 no longer can look at top card %2 at any time.
-
+ %1 attaches %2 to %3's %4.%1 attaches %2 to %3's %4.
-
+ %1 has conceded the game.%1 luovutti.
-
+ %1 has unconceded the game.%1 has unconceded the game.
-
+ %1 has restored connection to the game.%1 on jälleen yhteydessä peliin.
-
+ %1 has lost connection to the game.%1 menetti yhteyden peliin.
-
+ %1 points from their %2 to themselves.%1 osoittaa kortista %2 itseensä.
-
+ %1 points from their %2 to %3.%1 osoittaa kortista %2 korttiin %3.
-
+ %1 points from %2's %3 to themselves.%1 osoittaa %2n kortista %3 itseensä.
-
+ %1 points from %2's %3 to %4.%1 osoittaa %2n kortista %3 korttiin %4
-
+ %1 points from their %2 to their %3.%1 osoittaa kortistaan %2 korttiin %3.
-
+ %1 points from their %2 to %3's %4.%1 osoittaa kortistaan %2 pelaajan %3 korttiin %4.
-
+ %1 points from %2's %3 to their own %4.%1 osoittaa pelaajan %2 kortista %3 korttiin %4.
-
+ %1 points from %2's %3 to %4's %5.%1 points from %2's %3 to %4's %5.
-
+ %1 creates a face down token.
-
+ %1 creates token: %2%3.%1 tekee tokenin: %2%3.
-
+ %1 has loaded a deck (%2).%1 on ladannut pakan (%2).
-
+ %1 has loaded a deck with %2 sideboard cards (%3).%1 on ladannut pakan, jossa on %2 sideboard korttia (%3)
-
+ %1 destroys %2.%1 tuhoaa kortin %2.
-
+ a cardkortti
-
+ %1 gives %2 control over %3.%1 antaa pelaajalle %2 kontrollin korttiin %3.
-
+ %1 puts %2 into play%3 face down.
-
+ %1 puts %2 into play%3.%1 laittaa kortin %2 peliin%3.
-
+
+ %1 puts %2%3 into their graveyard face down.
+
+
+
+ %1 puts %2%3 into their graveyard.%1 laittaa kortin %2%3 graveyardille
+
+
+ %1 exiles %2%3 face down.
+
+ %1 exiles %2%3.%1 laittaa exileen kortin %2%3.
-
+ %1 moves %2%3 to their hand.%1 laittaa kortin %2%3 käteen.
-
+ %1 puts %2%3 into their library.%1 laittaa kortin %2%3 pakkaan.
-
+ %1 puts %2%3 onto the bottom of their library.
-
+ %1 puts %2%3 on top of their library.%1 laittaa kortin %2%3 pakan päälle.
-
+ %1 puts %2%3 into their library %4 cards from the top.%1 laittaa kortin %2%3 pakkaansa %4 kortiksi päältä lukien.
-
+ %1 moves %2%3 to sideboard.%1 siirtää kortin %2%3 sideboardille.
-
+
+ %1 plays %2%3 face down.
+
+
+
+ %1 plays %2%3.%1 pelaa kortin %2%3.
-
+
+ %1 moves %2%3 to custom zone '%4' face down.
+
+
+
+ %1 moves %2%3 to custom zone '%4'.
-
+ %1 tries to draw from an empty library
-
+ %1 draws %2 card(s).
-
+ %1 is looking at %2.%1 is looking at %2.
-
+ %1 is looking at the %4 %3 card(s) %2.top card for singular, top %3 cards for plural
-
+ bottom
-
+ top
-
+ %1 turns %2 face-down.%1 turns %2 face-down.
-
+ %1 turns %2 face-up.%1 turns %2 face-up.
-
+ The game has been closed.Peli on suljettu.
-
+ The game has started.Peli alkaa.
-
+ You are flooding the game. Please wait a couple of seconds.
-
+ %1 has joined the game.%1 on liittynyt peliin.
-
+ %1 is now watching the game.%1 seuraa peliä.
-
+ You have been kicked out of the game.Sinut on kickattu pois pelistä.
-
+ %1 has left the game (%2).%1 on lähtenyt pelistä. (%2).
-
+ %1 is not watching the game any more (%2).%1 ei enää seuraa peliä (%2)
-
+ %1 is not ready to start the game any more.%1 ei ole enää valmis aloittamaan peliä.
-
+ %1 shuffles their deck and draws a new hand of %2 card(s).
-
+ %1 shuffles their deck and draws a new hand.%1 sekoittaa pakkansa ja nostaa uuden käden.
-
+ You are watching a replay of game #%1.Katsot pelin #%1 replayta.
-
+ %1 is ready to start the game.%1 on valmis aloittamaan pelin.
-
+ cardsan unknown amount of cardscards
-
+ %1 card(s)a card for singular, %1 cards for plural
-
+ %1 lends %2 to %3.
-
+ %1 reveals %2 to %3.%1 reveals %2 to %3.
-
+ %1 reveals %2.%1 reveals %2.
-
+ %1 randomly reveals %2%3 to %4.%1 randomly reveals %2%3 to %4.
-
+ %1 randomly reveals %2%3.%1 randomly reveals %2%3.
-
+ %1 peeks at face down card #%2.%1 peeks at face down card #%2.
-
+ %1 peeks at face down card #%2: %3.%1 peeks at face down card #%2: %3.
-
+ %1 reveals %2%3 to %4.%1 reveals %2%3 to %4.
-
+ %1 reveals %2%3.%1 reveals %2%3.
-
+ %1 reversed turn order, now it's %2.%1 käänsi vuorojärjestyksen; nyt se on %2.
-
+ reversedkäänteinen
-
+ normalnormaali
-
+ HeadsKruuna
-
+ TailsKlaava
-
+ %1 flipped a coin. It landed as %2.%1 heitti kolikkoa ja tulokseksi tuli %2.
-
+ %1 rolls a %2 with a %3-sided die.%1 heitti tuloksen %2. %3 -sivuisella nopalla
-
+ %1 flips %2 coins. There are %3 heads and %4 tails.
-
+ %1 rolls a %2-sided dice %3 times: %4.
-
+ %1's turn.%1n vuoro.
-
+ %1 sets annotation of %2 to %3.%1 sets annotation of %2 to %3.
-
+ %1 places %2 "%3" counter(s) on %4 (now %5).
-
+ %1 removes %2 "%3" counter(s) from %4 (now %5).
-
+ %1 sets counter %2 to %3 (%4%5).%1 asettaa countterin %2 arvoon %3 (%4%5).
-
+ %1 sets %2 to not untap normally.%1 sets %2 to not untap normally.
-
+ %1 sets %2 to untap normally.%1 sets %2 to untap normally.
-
+ %1 removes the PT of %2.%1 removes the PT of %2.
-
+ %1 changes the PT of %2 from nothing to %4.%1 changes the PT of %2 from nothing to %4.
-
+ %1 changes the PT of %2 from %3 to %4.%1 changes the PT of %2 from %3 to %4.
-
+ %1 has locked their sideboard.%1 on lukinnut sideboardinsa.
-
+ %1 has unlocked their sideboard.%1 on avannut sideboardinsa.
-
+ %1 taps their permanents.%1 täppää kaikki permanentit.
-
+ %1 untaps their permanents.%1 untäppää kaikki permanentit.
-
+ %1 taps %2.%1 täppää kortin %2.
-
+ %1 untaps %2.%1 untäppää kortin %2.
-
+ %1 shuffles %2.%1 sekoittaa %2.
-
+ %1 shuffles the bottom %3 cards of %2.%1 shuffles the bottom %3 cards of %2.
-
+ %1 shuffles the top %3 cards of %2.%1 shuffles the top %3 cards of %2.
-
+ %1 shuffles cards %3 - %4 of %2.%1 shuffles cards %3 - %4 of %2.
-
+ %1 unattaches %2.%1 irrottaa kortin %2.
-
+ %1 undoes their last draw.%1 peruuttaa viimeisimmän kortinnostonsa.
-
+ %1 undoes their last draw (%2).%1 peruuttaa viimeisimmän kortinnostonsa. (%2).
@@ -6239,110 +6285,110 @@ Cockatrice will now reload the card database.
MessagesSettingsPage
-
+ Word1 Word2 Word3Word1 Word2 Word3
-
+ Add New Message
-
+ Edit Message
-
+ Remove Message
-
+ Add messageLisää viesti
-
-
+
+ Message:Viesti:
-
+ Edit messageEdit message
-
+ Chat settingsKeskusteluasetukset
-
+ Custom alert wordsCustom alert words
-
+ Enable chat mentionsSalli keskustelumaininnat
-
+ Enable mention completerEnable mention completer
-
+ In-game message macrosPelinsisäiset viestimakrot
-
+ How to use in-game message macros
-
+ Ignore chat room messages sent by unregistered usersIgnore chat room messages sent by unregistered users
-
+ Ignore private messages sent by unregistered usersIgnore private messages sent by unregistered users
-
-
+
+ Invert text colorKäänteinen tekstin väri
-
+ Enable desktop notifications for private messagesEnable desktop notifications for private messages
-
+ Enable desktop notification for mentionsEnable desktop notification for mentions
-
+ Enable room message history on joinEnable room message history on join
-
-
+
+ (Color is hexadecimal)(Väri on heksadesimaaliluku)
-
+ Separate words with a space, alphanumeric characters onlySeparate words with a space, alphanumeric characters only
@@ -6355,32 +6401,37 @@ Cockatrice will now reload the card database.
-
+ &Top of library in random order
-
+ X cards from the top of library...
-
+ &Bottom of library in random order
-
+
+ T&able
+
+
+
+ &Hand
-
+ &Graveyard
-
+ &Exile
@@ -6522,57 +6573,57 @@ Cockatrice will now reload the card database.
PhasesToolbar
-
+ Untap stepUntap-kohta
-
+ Upkeep stepUpkeep-kohta
-
+ Draw stepNostokohta
-
+ First main phaseFirst main phase
-
+ Beginning of combat stepBeginning of combat step
-
+ Declare attackers stepDeclare attackers step
-
+ Declare blockers stepDeclare blockers step
-
+ Combat damage stepCombat damage step
-
+ End of combat stepEnd of combat step
-
+ Second main phaseSecond main phase
-
+ End of turn stepEnd of turn step
@@ -6589,134 +6640,138 @@ Cockatrice will now reload the card database.
PlayerActions
-
+ View top cards of library
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Number of cards: (max. %1)
-
+ View bottom cards of library
-
+ Shuffle top cards of library
-
+ Shuffle bottom cards of library
-
+ Draw hand
-
+ 0 and lower are in comparison to current hand size
-
+ Draw cards
+
+
+
+
+
+ grave
+
+
- Move top cards to grave
+
+
+
+ exile
-
- Move top cards to exile
+
+ Move top cards to %1
-
- Move bottom cards to grave
+
+ Move bottom cards to %1
-
- Move bottom cards to exile
-
-
-
-
+ Draw bottom cards
-
-
+
+ C&reate another %1 token
-
+ Create tokens
-
-
+
+ Number:
-
+ Place card X cards from top of library
-
+ Which position should this card be placed:
-
+ (max. %1)
-
+ Change power/toughness
-
+ Change stats to:
-
+ Set annotation
-
+ Please enter the new annotation:
-
+ Set counters
@@ -6724,48 +6779,65 @@ Cockatrice will now reload the card database.
PlayerMenu
-
+ Player "%1"
-
+ &Counters
+
+
+ PrintingDisabledInfoWidget
-
- S&ay
+
+ The Printing Selector is disabled because you have currently enabled the setting to override all selected printings with personal set preferences.
+
+This setting means you'll only see the default printing for each card, instead of being able to select a printing, and will not see the printings other people have selected.
+
+
+
+
+
+
+ Enable printings againPrintingSelector
-
+ Display Navigation Buttons
+
+
+ Printing Selector
+
+ PrintingSelectorCardOverlayWidget
-
+ Preference
-
+ Pin Printing
-
+ Unpin Printing
-
+ Show Related cards
@@ -6814,17 +6886,25 @@ Cockatrice will now reload the card database.
-
-
+
+ Descending
-
+ Ascending
+
+ PrintingSelectorPlaceholderWidget
+
+
+ Select a card to view its available printings
+
+
+PtMenu
@@ -6963,6 +7043,33 @@ Cockatrice will now reload the card database.
A .cod version of this deck already exists. Overwrite it?
+
+
+ Enabling this feature will disable the use of the Printing Selector.
+
+You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
+
+You will have to use the Set Manager, available through Card Database -> Manage Sets.
+
+Are you sure you would like to enable this feature?
+
+
+
+
+ Disabling this feature will enable the Printing Selector.
+
+You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
+
+You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
+
+Are you sure you would like to disable this feature?
+
+
+
+
+ Confirm Change
+
+ QPlatformTheme
@@ -7111,37 +7218,37 @@ Cockatrice will now reload the card database.
RfgMenu
-
+ &Exile
-
+ &View exile
-
+ &Move exile to...
-
+ &Top of library
-
+ &Bottom of library
-
+ &Hand
-
+ &Graveyard
@@ -7184,6 +7291,14 @@ Cockatrice will now reload the card database.
Games
+
+ SayMenu
+
+
+ S&ay
+
+
+SequenceEdit
@@ -7248,53 +7363,53 @@ Cockatrice will now reload the card database.
ShortcutSettingsPage
-
-
+
+ Restore all default shortcutsRestore all default shortcuts
-
+ Do you really want to restore all default shortcuts?Do you really want to restore all default shortcuts?
-
+ Clear all default shortcutsClear all default shortcuts
-
+ Do you really want to clear all shortcuts?Do you really want to clear all shortcuts?
-
+ Section:Section:
-
+ Action:Action:
-
+ Shortcut:Shortcut:
-
+ How to set custom shortcutsHow to set custom shortcuts
-
+ Clear all shortcuts
-
+ Search by shortcut name
@@ -7363,27 +7478,27 @@ Please check your shortcut settings!
SoundSettingsPage
-
+ Enable &soundsEnable &sounds
-
+ Current sounds theme:Current sounds theme:
-
+ Test system sound engineTest system sound engine
-
+ Sound settingsSound settings
-
+ Master volumeMaster volume
@@ -7599,59 +7714,123 @@ Please check your shortcut settings!
TabArchidekt
-
-
+
+
+ Desc.
-
- Asc.
+
+
+ AND
-
-
- Any Bracket
+
+
+ Require ALL selected colors
-
- Deck name contains...
+
+
+ Deck name...
-
- Owner name contains...
+
+
+ Owner...
+
+
+
+
+
+ Packages
+
+
+
+
+
+ Advanced Filters
- Disabled
+ Bracket:
-
+
+
+ Any
+
+
+
+
+
+ Contains card...
+
+
+
+
+
+ Commander...
+
+
+
+
+
+ Tag...
+
+
+
+
+
+ Deck Size
+
+
+
+
+ Cards:
+
+
+
+
+
+ Asc.
+
+
+
+
+ Sort by:
+
+
+
+
+ Filter by:
+
+
+
+
+ Display Settings
+
+
+
+
+ Search
-
+
+ Formats
-
- Min. # of Cards:
-
-
-
-
- Page:
-
-
-
-
+ Archidekt:
@@ -7659,60 +7838,52 @@ Please check your shortcut settings!
TabDeckEditor
-
+ Card InfoCard Info
-
+ DeckDeck
-
+ FiltersFilters
-
+ &View&View
-
+ Card Database
-
+ Printing
-
-
-
-
-
+ VisibleVisible
-
-
-
-
-
+ FloatingFloating
-
+ Reset layoutReset layout
-
+ Deck: %1Deck: %1
@@ -7720,61 +7891,55 @@ Please check your shortcut settings!
TabDeckEditorVisual
-
+ Visual Deck: %1
-
+ &Visual Deck Editor
-
-
+
+ Card Info
-
-
+
+ Deck
-
-
+
+ Filters
-
+ &View
-
+ Printing
-
-
-
-
+ Visible
-
-
-
-
+ Floating
-
+ Reset layout
@@ -7839,7 +8004,7 @@ Please check your shortcut settings!
-
+ New folderNew folder
@@ -7921,18 +8086,18 @@ Please enter a name:
-
+ Delete remote decks
-
+ Are you sure you want to delete the selected decks?
-
+ Name of new folder:Name of new folder:
@@ -7950,12 +8115,12 @@ Please enter a name:
-
+ Error
-
+ Could not open deck at %1
@@ -8004,197 +8169,191 @@ Please enter a name:
TabGame
-
-
-
+
+
+ ReplayReplay
-
-
+
+ GameGame
-
-
+
+ Player ListPlayer List
-
-
+
+ Card InfoCard Info
-
-
+
+ MessagesMessages
-
-
+
+ Replay TimelineReplay Timeline
-
+ &Phases&Phases
-
+ &Game&Game
-
+ Next &phaseNext &phase
-
+ Next phase with &actionNext phase with &action
-
+ Next &turnNext &turn
-
+ Reverse turn orderKäännä vuorojärjestys
-
+ &Remove all local arrows&Remove all local arrows
-
+ Rotate View Cl&ockwiseRotate View Cl&ockwise
-
+ Rotate View Co&unterclockwiseRotate View Co&unterclockwise
-
+ Game &informationGame &information
-
+ Un&concede
-
-
-
+
+
+ &Concede&Concede
-
+ &Leave game&Leave game
-
+ C&lose replayC&lose replay
-
+ &Focus Chat&Focus Chat
-
+ &Say:&Say:
-
+ Selected cards
-
+ &View&View
-
-
-
-
+ VisibleVisible
-
-
-
-
+ FloatingFloating
-
+ Reset layoutReset layout
-
+ ConcedeConcede
-
+ Are you sure you want to concede this game?Are you sure you want to concede this game?
-
+ UnconcedeUnconcede
-
+ You have already conceded. Do you want to return to this game?You have already conceded. Do you want to return to this game?
-
+ Leave gamePoistu pelistä
-
+ Are you sure you want to leave this game?Haluatko varmasti poistua pelistä?
-
+ A player has joined game #%1Pelaaja on littynyt peliin #%1
-
+ %1 has joined the game
-
+ You have been kicked out of the game.You have been kicked out of the game.
@@ -9296,142 +9455,152 @@ Please refrain from engaging in this activity or further actions may be taken ag
UserInterfaceSettingsPage
-
+ General interface settingsGeneral interface settings
-
+ &Double-click cards to play them (instead of single-click)&Double-click cards to play them (instead of single-click)
-
+ &Clicking plays all selected cards (instead of just the clicked card)
-
+ &Play all nonlands onto the stack (not the battlefield) by default&Play all nonlands onto the stack (not the battlefield) by default
-
+ Do not delete &arrows inside of subphases
-
+ Close card view window when last card is removed
-
+ Auto focus search bar when card view window is opened
-
+ Annotate card text on tokensAnnotate card text on tokens
-
-
- Use tear-off menus, allowing right click menus to persist on screen
- Use tear-off menus, allowing right click menus to persist on screen
-
-
-
- Notifications settings
- Ilmoitusasetukset
-
-
-
- Enable notifications in taskbar
- Ota tehtäväpalkin ilmoitukset käyttöön
-
-
-
- Notify in the taskbar for game events while you are spectating
- Notify in the taskbar for game events while you are spectating
-
-
-
- Notify in the taskbar when users in your buddy list connect
- Notify in the taskbar when users in your buddy list connect
-
-
-
- Animation settings
- Animaatioasetukset
-
-
-
- &Tap/untap animation
- &Tap/untap animation
-
-
-
- Deck editor/storage settings
-
-
-
-
- Open deck in new tab by default
-
-
- Use visual deck storage in game lobby
+ Show selection counter during drag selection
- Use selection animation for Visual Deck Storage
+ Show total selection counter
+
+
+ Use tear-off menus, allowing right click menus to persist on screen
+ Use tear-off menus, allowing right click menus to persist on screen
+
- When adding a tag in the visual deck storage to a .txt deck:
-
+ Notifications settings
+ Ilmoitusasetukset
+
+
+
+ Enable notifications in taskbar
+ Ota tehtäväpalkin ilmoitukset käyttöön
- do nothing
-
+ Notify in the taskbar for game events while you are spectating
+ Notify in the taskbar for game events while you are spectating
+
+
+
+ Notify in the taskbar when users in your buddy list connect
+ Notify in the taskbar when users in your buddy list connect
- ask to convert to .cod
-
+ Animation settings
+ Animaatioasetukset
+
+
+
+ &Tap/untap animation
+ &Tap/untap animation
- always convert to .cod
+ Deck editor/storage settings
- Default deck editor type
+ Open deck in new tab by default
- Classic Deck Editor
+ Use visual deck storage in game lobby
- Visual Deck Editor
-
-
-
-
- Replay settings
+ Use selection animation for Visual Deck Storage
+ When adding a tag in the visual deck storage to a .txt deck:
+
+
+
+
+ do nothing
+
+
+
+
+ ask to convert to .cod
+
+
+
+
+ always convert to .cod
+
+
+
+
+ Default deck editor type
+
+
+
+
+ Classic Deck Editor
+
+
+
+
+ Visual Deck Editor
+
+
+
+
+ Replay settings
+
+
+
+ Buffer time for backwards skip via shortcut:
@@ -9495,23 +9664,24 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayColorFilterWidget
-
- Mode: Exact Match
+
+ Exact match
+
+
+
+
+ Includes
- Mode: Includes
+ Include / Exclude
+ Mode: Includes
-
- Mode: Include/Exclude
-
-
-
-
- Filter mode (AND/OR/NOT conjunctions of filters)
+
+ How selected and unselected colors are combined in the filter
@@ -9538,25 +9708,108 @@ Please refrain from engaging in this activity or further actions may be taken ag
+
+ VisualDatabaseDisplayFilterToolbarWidget
+
+
+ Sort by
+
+
+
+
+ Filter by
+
+
+
+
+ Save and load filters
+
+
+
+
+ Filter by exact card name
+
+
+
+
+ Filter by card main-type
+
+
+
+
+ Filter by card sub-type
+
+
+
+
+ Filter by set
+
+
+
+
+ Filter by format legality
+
+
+
+
+ Save/Load
+
+
+
+
+ Name
+
+
+
+
+ Main Type
+
+
+
+
+ Sub Type
+
+
+
+
+ Sets
+
+
+
+
+ Formats
+
+
+VisualDatabaseDisplayFormatLegalityFilterWidget
-
+
+ Show formats with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display formats with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9564,22 +9817,32 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayMainTypeFilterWidget
-
+
+ Show main types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card main-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9615,7 +9878,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplayRecentSetFilterSettingsWidget
-
+ Filter to most recent sets
@@ -9623,19 +9886,19 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplaySetFilterWidget
-
+ Search sets...
-
-
+
+ Mode: Exact Match
-
-
+
+ Mode: Includes
@@ -9643,27 +9906,37 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDatabaseDisplaySubTypeFilterWidget
-
+ Search subtypes...
-
+
+ Show sub types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card sub-types with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9677,52 +9950,22 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Visual
-
+ Loading database ...
-
+ Clear all filters
-
- Sort by:
-
-
-
-
- Filter by:
-
-
-
-
- Save and load filters
-
-
-
-
- Filter by exact card name
-
-
-
-
- Filter by card sub-type
-
-
-
-
- Filter by set
-
-
-
-
+ Table
@@ -9730,56 +9973,64 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckDisplayOptionsWidget
-
+ Group by:
-
+ Change how cards are divided into categories/groups.
-
+ Sort by:
-
+ Click and drag to change the sort order within the groups
-
+ Configure how cards are sorted within their groups
-
-
+
+ Toggle Layout: Overlap
-
+ Change how cards are displayed within zones (i.e. overlapped or fully visible.)
-
+ Toggle Layout: Flat
+
+ VisualDeckEditorPlaceholderWidget
+
+
+ Add cards using the search bar or database tab to have them appear here
+
+
+VisualDeckEditorSampleHandWidget
-
+ Draw a new sample hand
-
+ Sample hand size
@@ -9787,17 +10038,17 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckEditorWidget
-
+ Type a card name here for suggestions from the database...
-
+ Quick search and add card
-
+ Search for closest match in the database (with auto-suggestions) and add preferred printing to the deck on pressing enter
@@ -9813,47 +10064,52 @@ Please refrain from engaging in this activity or further actions may be taken ag
VisualDeckStorageQuickSettingsWidget
-
+ Show Folders
-
+ Show Tag Filter
-
+
+ Show Color Identity
+
+
+
+ Show Tags On Deck Previews
-
+ Show Banner Card Selection Option
-
+ Draw unused Color Identities
-
+ Unused Color Identities Opacity
-
+ Deck tooltip:
-
+ None
-
+ Filepath
@@ -9954,133 +10210,133 @@ Please refrain from engaging in this activity or further actions may be taken ag
WndSets
-
+ Move selected set to the topMove selected set to the top
-
+ Move selected set upMove selected set up
-
+ Move selected set downMove selected set down
-
+ Move selected set to the bottomMove selected set to the bottom
-
+ Search by set name, code, or typeSearch by set name, code, or type
-
+ Default orderDefault order
-
+ Restore original art priority orderRestore original art priority order
-
+ Enable all setsEnable all sets
-
+ Disable all setsDisable all sets
-
+ Enable selected set(s)Enable selected set(s)
-
+ Disable selected set(s)Disable selected set(s)
-
+ Deck EditorDeck Editor
-
+ Use CTRL+A to select all sets in the view.
-
+ Only cards in enabled sets will appear in the card list of the deck editor.
-
+ Image priority is decided in the following order:
-
+ first the CUSTOM Folder (%1), then the Enabled Sets in this dialog (Top to Bottom)%1 is a link to the wiki
-
+ Include cards rebalanced for Alchemy [requires restart]
-
+ Card ArtCard Art
-
+ How to use custom card artHow to use custom card art
-
+ HintsHints
-
+ NoteNote
-
+ Sorting by column allows you to find a set while not changing set priority.Sorting by column allows you to find a set while not changing set priority.
-
+ To enable ordering again, click the column header until this message disappears.To enable ordering again, click the column header until this message disappears.
-
+ Use the current sorting as the set priority insteadUse the current sorting as the set priority instead
-
+ Sorts the set priority using the same columnSorts the set priority using the same column
-
+ Manage setsManage sets
@@ -10088,72 +10344,72 @@ Please refrain from engaging in this activity or further actions may be taken ag
ZoneViewWidget
-
+ Search by card name (or search expressions)
-
+ Ungrouped
-
+ Group by Type
-
+ Group by Mana Value
-
+ Group by Color
-
+ Unsorted
-
+ Sort by Name
-
+ Sort by Type
-
+ Sort by Mana Cost
-
+ Sort by Colors
-
+ Sort by P/T
-
+ Sort by Set
-
+ shuffle when closingshuffle when closing
-
+ pile viewpile view
@@ -10188,7 +10444,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Deck EditorDeck Editor
@@ -10269,7 +10525,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Replays
@@ -10421,7 +10677,7 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ Reset LayoutReset Layout
@@ -10842,8 +11098,9 @@ Please refrain from engaging in this activity or further actions may be taken ag
- Toggle Untap
- Toggle Untap
+ Toggle Skip Untapping
+ Toggle Untap
+
@@ -10862,98 +11119,102 @@ Please refrain from engaging in this activity or further actions may be taken ag
+ Play Card, Face Down
+
+
+
+ Attach Card...Attach Card...
-
+ Unattach CardUnattach Card
-
+ Clone CardClone Card
-
+ Create Token...Create Token...
-
+ Create All Related TokensCreate All Related Tokens
-
+ Create Another TokenCreate Another Token
-
+ Set Annotation...Set Annotation...
-
+ Select All Cards in Zone
-
+ Select All Cards in Row
-
+ Select All Cards in Column
-
+ Reveal Selected Cards to All Players
-
-
+
+ Bottom of LibraryBottom of Library
-
+
-
-
+
+ ExileExile
-
+
-
+ GraveyardGraveyard
-
+ HandHand
-
-
+
+ Top of LibraryTop of Library
-
-
+ Battlefield, Face DownBattlefield, Face Down
@@ -10989,234 +11250,246 @@ Please refrain from engaging in this activity or further actions may be taken ag
-
+ StackStack
-
+ Graveyard (Multiple)Graveyard (Multiple)
-
-
+
+
+ Graveyard (Multiple), Face Down
+
+
+
+
+ Exile (Multiple)Exile (Multiple)
-
+
+
+ Exile (Multiple), Face Down
+
+
+
+ Stack Until Found
-
+ Draw Bottom Card
-
+ Draw Multiple Cards from Bottom...
-
+ Draw Arrow...Draw Arrow...
-
+ Remove Local ArrowsRemove Local Arrows
-
+ Leave GameLeave Game
-
+ ConcedeConcede
-
+ Roll Dice...Roll Dice...
-
+ Shuffle LibraryShuffle Library
-
+ Shuffle Top Cards of Library
-
+ Shuffle Bottom Cards of Library
-
+ MulliganMulligan
-
+ Mulligan (Same hand size)
-
+ Mulligan (Hand size - 1)
-
+ Draw a CardDraw a Card
-
+ Draw Multiple Cards...Draw Multiple Cards...
-
+ Undo DrawUndo Draw
-
+ Always Reveal Top CardAlways Reveal Top Card
-
+ Always Look At Top Card
-
+ Sort Hand by Name
-
+ Sort Hand by Type
-
+ Sort Hand by Mana Value
-
+ Reveal Hand to All Players
-
+ Reveal Random Card to All Players
-
+ Rotate View ClockwiseRotate View Clockwise
-
+ Rotate View CounterclockwiseRotate View Counterclockwise
-
+ Unfocus Text BoxUnfocus Text Box
-
+ Focus ChatFocus Chat
-
+ Clear ChatClear Chat
-
+ RefreshRefresh
-
+ Skip Forward
-
+ Skip Backward
-
+ Skip Forward by a lot
-
+ Skip Backward by a lot
-
+ Play/Pause
-
+ Toggle Fast Forward
-
+ Home
-
+ Visual Deck Storage
-
+ Deck Storage
-
+ Server
-
+ Account
-
+ Administration
-
+ Logs
diff --git a/cockatrice/translations/cockatrice_fr.ts b/cockatrice/translations/cockatrice_fr.ts
index d01e564c0..f50d3afd6 100644
--- a/cockatrice/translations/cockatrice_fr.ts
+++ b/cockatrice/translations/cockatrice_fr.ts
@@ -23,12 +23,12 @@
AbstractDlgDeckTextEdit
-
+ &Refresh&Rafraîchir
-
+ Parse Set Name and Number (if available)Analyser le nom et le numéro de l'extension (si disponibles)
@@ -36,62 +36,62 @@
AbstractTabDeckEditor
-
+ Open in new tabOuvrir dans un nouvel onglet
-
+ Are you sure?Êtes-vous sûr ?
-
+ The decklist has been modified.
Do you want to save the changes?La liste de deck a été modifiée.
Voulez-vous enregistrer les modifications ?
-
-
-
-
-
-
+
+
+
+
+
+ ErrorErreur
-
+ Could not open deck at %1N'a pas pu ouvrir le deck à %1
-
+ Could not save remote deckN'a pas pu sauvegarder le deck distant
-
-
+
+ The deck could not be saved.
Please check that the directory is writable and try again.Le deck n'a pas pu être enregistré.
Vérifiez que le répertoire ne soit pas en lecture seule et réessayez.
-
+ Save deckSauvegarder le deck
-
+ The deck could not be saved.Le deck n'a pas pu être enregistré.
-
+ There are no cards in your deck to be exportedIl n'y a pas de cartes dans le deck à exporter
@@ -133,202 +133,168 @@ Vérifiez que le répertoire ne soit pas en lecture seule et réessayez.
AppearanceSettingsPage
-
+ secondssecondes
-
+ ErrorErreur
-
+ Could not create themes directory at '%1'.N'a pas pu créer le dossier Thèmes à '%1'
-
- Enabling this feature will disable the use of the Printing Selector.
-
-You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
-
-You will have to use the Set Manager, available through Card Database -> Manage Sets.
-
-Are you sure you would like to enable this feature?
- L'activation de cette fonction désactivera l'utilisation du sélecteur d'impression.
-
-Vous ne pourrez plus gérer les préférences d'impression pour chaque deck ni voir les impressions sélectionnées par d'autres joueurs.
-
-Vous devrez utiliser le Gestionnaire d'extensions, accessible via Base de données de cartes -> Gérer les extensions.
-
-Êtes-vous sûr de vouloir activer cette fonction ?
-
-
-
- Disabling this feature will enable the Printing Selector.
-
-You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
-
-You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
-
-Are you sure you would like to disable this feature?
- Désactiver cette fonction activera le sélecteur d'impression.
-
-Vous pouvez désormais choisir les impressions pour chaque deck dans l'éditeur de deck et configurer l'impression ajoutée par défaut en l'épinglant dans le sélecteur d'impression.
-
-Vous pouvez également utiliser le gestionnaire de d'extension pour personnaliser l'ordre de tri des impressions dans le sélecteur d'impression (d'autres ordres de tri, comme l'ordre alphabétique ou la date de parution, sont disponibles).
-
-Êtes-vous sûr de vouloir désactiver cette fonction ?
-
-
-
- Confirm Change
- Confirmer le changement
-
-
-
+ Theme settingsParamètres du thème
-
+ Current theme:Thème actuel :
-
+ Open themes folderOuvrir le dossier des thèmes
-
+ Home tab background source:Source d'arrière-plan de l'onglet Accueil:
-
+ Home tab background shuffle frequency:Fréquence de mélange de l'arrière-plan de l'onglet Accueil:
-
+ DisabledDésactivé
-
+
+ Display card name of background in bottom right:
+
+
+
+ Menu settingsOptions du Menu
-
+ Show keyboard shortcuts in right-click menusMontrer les raccourcis clavier dans les menus clic-droit
-
+ Show game filter toolbar above list in room tab
-
+ Card renderingRendu des cartes
-
+ Display card names on cards having a pictureAfficher les noms des cartes ayant une image
-
+ Auto-Rotate cards with sideways layoutRotation automatique des cartes avec disposition horizontale
-
+ Override all card art with personal set preference (Pre-ProviderID change behavior)Remplacer toutes les illustrations de cartes par les préférences personnelles (comportement avant modification du ProviderID)
-
+ Bump sets that the deck contains cards from to the top in the printing selectorMettre en avant que ce deck contient des cartes depuis le sommet, dans le sélecteur d'impression
-
+ Scale cards on mouse overAgrandir les cartes lors du survol du curseur
-
+ Use rounded card cornersUtiliser des bords de cartes arrondis
-
+ Minimum overlap percentage of cards on the stack and in vertical handPourcentage minimum de chevauchement des cartes dans la pile et dans la main verticale
-
+ Maximum initial height for card view window:Hauteur initiale maximale pour la fenêtre d'affichage des cartes :
-
-
+
+ rowslignes
-
+ Maximum expanded height for card view window:Hauteur étendue maximale pour la fenêtre d'affichage des cartes :
-
+ Card countersMarqueurs sur la carte
-
+ Counter %1Marqueur %1
-
+ Hand layoutDisposition de la main
-
+ Display hand horizontally (wastes space)Afficher la main horizontalement (perte d'espace)
-
+ Enable left justificationActiver la justification à gauche
-
+ Table grid layoutDisposition en forme de grille
-
+ Invert vertical coordinateInverser la disposition du champ de bataille
-
+ Minimum player count for multi-column layout:Nombre minimum de joueurs pour la disposition multi-colonnes :
-
+ Maximum font size for information displayed on cards:Taille maximale de la police pour les informations affichées sur les cartes :
@@ -336,7 +302,12 @@ Vous pouvez également utiliser le gestionnaire de d'extension pour personn
ArchidektApiResponseDeckDisplayWidget
-
+
+ Back to results
+
+
+
+ Open Deck in Deck Editor
@@ -656,22 +627,22 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
CardInfoPictureWidget
-
+ View related cardsVoir les cartes associées
-
+ Add card to deckAjouter la carte au deck
-
+ MainboardDeck principal
-
+ SideboardRéserve
@@ -707,124 +678,124 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
CardMenu
-
+ Re&veal to...Révéler à...
-
+ &All players&Tous les joueurs
-
+ View related cardsVoir les cartes associées
-
+ Token: Jeton :
-
+ All tokensTout les jetons
-
+ &Select All&Sélectionner Tout
-
+ S&elect RowSél&ectionne une ligne
-
+ S&elect ColumnSél&ectionne une colonne
-
+ &Play&Jouer
-
+ &Hide&Cacher
-
+ Play &Face DownJouer &Face Cachée
-
+ &Tap / UntapTurn sideways or back again&Engager / Dégager
-
- Toggle &normal untapping
- Activer dégagement &normal
+
+ Skip &untapping
+
-
+ T&urn OverTurn face up/face downReto&urner
-
+ &Peek at card face&Regarder furtivement la carte face cachée
-
+ &Clone&Cloner
-
+ Attac&h to card...Attac&her à une carte...
-
+ Unattac&hDétac&her
-
+ &Draw arrow...&Tracer une flèche...
-
+ &Set annotation...&Annoter...
-
+ Ca&rd countersMa&rqueurs sur la carte
-
+ &Add counter (%1)&Ajouter un marqueur (%1)
-
+ &Remove counter (%1)&Retirer un marqueur (%1)
-
+ &Set counters (%1)...&Changer le nombre de marqueurs (%1)...
@@ -840,133 +811,133 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
CardZoneLogic
-
+ their handnominativesa main
-
+ %1's handnominativemain de %1
-
+ their librarylook at zonesa bibliothèque
-
+ %1's librarylook at zonebibliothèque de %1
-
+ of their librarytop cards of zone,de sa bibliothèque
-
+ of %1's librarytop cards of zonede la bibliothèque de %1
-
+ their libraryreveal zonesa bibliothèque
-
+ %1's libraryreveal zonebibliothèque de %1
-
+ their libraryshufflesa bibliothèque
-
+ %1's libraryshufflebibliothèque de %1
-
-
- their library
- nominative
- sa bibliothèque
-
-
-
- %1's library
- nominative
- bibliothèque de %1
-
+ their library
+ nominative
+ sa bibliothèque
+
+
+
+ %1's library
+ nominative
+ bibliothèque de %1
+
+
+ their graveyardnominativeson cimetière
-
+ %1's graveyardnominativele cimetière de %1
-
+ their exilenominativesa zone d'exil
-
+ %1's exilenominativela zone d'exil de %1
-
-
- their sideboard
- look at zone
- sa réserve
-
-
-
- %1's sideboard
- look at zone
- la réserve de %1
- their sideboard
- nominative
+ look at zonesa réserve%1's sideboard
+ look at zone
+ la réserve de %1
+
+
+
+ their sideboard
+ nominative
+ sa réserve
+
+
+
+ %1's sideboardnominativela réserve de %1
-
+ their custom zone '%1'nominativesa zone personnalisée '%1'
-
+ %1's custom zone '%2'nominativeLa zone personnalisée '%2' de %1
@@ -1028,7 +999,7 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckEditorCardDatabaseDockWidget
-
+ Card Database
@@ -1036,7 +1007,7 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckEditorCardInfoDockWidget
-
+ Card InfoInfos de la carte
@@ -1059,32 +1030,32 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
Ajouter à la réserve
-
+ Select PrintingChoisir l'impression
-
+ Show on EDHRec (Commander)Afficher sur EDHRec (Commandant)
-
+ Show on EDHRec (Card)Afficher sur EDHRec (carte)
-
+ Show Related cardsAfficher les cartes associées
-
+ Add card to &maindeckAjouter la carte au &deck
-
+ Add card to &sideboardAjouter carte à la ré&serve
@@ -1092,32 +1063,32 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckEditorDeckDockWidget
-
+ Loading Database...
-
+ Banner CardCarte bannière
-
+ Main TypeType principal
-
+ Mana CostCoût de mana
-
+ ColorsCouleurs
-
+ Select PrintingChoisir l'impression
@@ -1190,17 +1161,17 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckEditorFilterDockWidget
-
+ FiltersFiltres
-
+ &Clear all filters&Effacer tous les filtres
-
+ Delete selectedEnlever la sélection
@@ -1323,7 +1294,7 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckEditorPrintingSelectorDockWidget
-
+ Printing SelectorSélection d'impression
@@ -1331,166 +1302,166 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckEditorSettingsPage
-
-
+
+ Update SpoilersMettre à jour les spoilers
-
-
+
+ SuccessRéussite
-
+ Download URLs have been reset.Les URLs de téléchargement ont été réinitialisées.
-
+ Downloaded card pictures have been reset.Les images des cartes téléchargées ont été supprimées.
-
+ ErrorErreur
-
+ One or more downloaded card pictures could not be cleared.Une ou plusieurs images de cartes téléchargées n'ont pas pu être supprimées.
-
+ Add URLAjouter une URL
-
-
+
+ URL:URL :
-
-
+
+ Edit URLModifier l'URL
-
+ Network Cache Size:Taille du cache du réseau :
-
+ Redirect Cache TTL:Rediriger le TTL du cache :
-
+ How long cached redirects for urls are valid for.Combien de temps les redirections mises en cache pour les URL sont-elles valides.
-
+ Picture Cache Size:Taille du cache des images :
-
+ Add New URLAjouter Nouveau Lien
-
+ Remove URLEffacer Lien
-
+ Day(s)Jour(s)
-
+ Updating...Mise à jour...
-
+ Choose pathChoisir le chemin
-
+ URL Download PriorityURL de téléchargement prioritaire
-
+ SpoilersSpoilers
-
+ Download Spoilers AutomaticallyTélécharger automatiquement les spoilers
-
+ Spoiler Location:Emplacement des spoilers :
-
+ Last ChangeDernier changement
-
+ Spoilers download automatically on launchTélécharger automatiquement les spoilers au lancement
-
+ Press the button to manually update without relaunchingAppuyez sur le bouton pour mettre à jour manuellement sans redémarrer.
-
+ Do not close settings until manual update is completeNe pas fermer la fenêtre des paramètres avant la mise à jour manuelle complète.
-
+ Download card pictures on the flyTélécharger les images des cartes à la volée
-
+ How to add a custom URLComment ajouter une URL personnalisée
-
+ Delete Downloaded ImagesSupprimer les images téléchargées
-
+ Reset Download URLsRéinitialiser les URL de téléchargement
-
+ On-disk cache for downloaded picturesCache pour les images téléchargées
-
+ In-memory cache for pictures not currently on screenCache en mémoire pour les imges non affichées actuellement
@@ -1498,32 +1469,32 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckListHistoryManagerWidget
-
+ Undo
-
+ Redo
-
+ Undo/Redo history
-
+ Click on an entry to revert to that point in the history.
-
+ [redo]
-
+ [undo]
@@ -1531,27 +1502,27 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckListModel
-
+ CountCompter
-
+ SetÉdition
-
+ NumberNombre
-
+ Provider IDProvider ID
-
+ CardCarte
@@ -1559,12 +1530,12 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckLoader
-
+ Common deck formats (%1)Formats de decks courants (%1)
-
+ All files (*.*)Tous les fichiers (*.*)
@@ -1661,94 +1632,94 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
DeckPreviewWidget
-
+ Banner CardCarte bannière
-
+ Open in deck editorOuvrir dans l'éditeur de deck
-
+ Edit TagsÉditer les étiquettes
-
+ Rename DeckRenommer le deck
-
+ Save Deck to ClipboardCopier le deck dans le presse-papier
-
+ AnnotatedAvec annotations
-
+ Annotated (No set info)Avec annotations (pas d'info sur l'extension)
-
+ Not AnnotatedSans annotation
-
+ Not Annotated (No set info)Sans annotation (pas d'info sur l'extension)
-
+ Rename FileRenommer le fichier
-
+ Delete FileSupprimer le fichier
-
+ Set Banner CardChoisir la carte bannière
-
-
+
+ New name:Nouveau nom :
-
-
+
+ ErrorErreur
-
+ Rename failedRenommage échoué
-
+ Delete fileSupprimer le fichier
-
+ Are you sure you want to delete the selected file?Êtes-vous certain de vouloir supprimer le fichier sélectionné ?
-
+ Delete failedSuppression échouée
@@ -1781,32 +1752,32 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
-
+ Added (%1): %2 (%3) %4
-
+ Moved to %1 1 × "%2" (%3)
-
+ Removed "%1" (all copies)
-
+ %1 1 × "%2" (%3)
-
+ Added
-
+ Removed
@@ -1873,30 +1844,30 @@ Cette information sera consultable uniquement par les modérateurs et ne sera pa
Réserve verrouillée
-
-
+
+ ErrorErreur
-
+ The selected file could not be loaded.Le fichier sélectionné n'a pas pu être chargé.
-
+ Deck is greater than maximum file size.Le deck est plus grand que la taille maximum de fichier.
-
+ Are you sure you want to force start?
This will kick all non-ready players from the game.Êtes-vous sûr de vouloir forcer le démarrage ?
Cela va éjecter de la partie tous les joueurs non prêts à démarrer.
-
+ CockatriceCockatrice
@@ -2391,17 +2362,17 @@ Pour enlever votre avatar actuel, confirmez sans choisir une nouvelle image.
DlgEditDeckInClipboard
-
+ Edit deck in clipboardÉditer le deck dans le presse-papier
-
+ ErrorErreur
-
+ Invalid deck list.Liste de deck invalide.
@@ -2902,17 +2873,17 @@ Assurez-vous d'activer l'édition « Fausse édition contenant les je
DlgLoadDeckFromClipboard
-
+ Load deck from clipboardCharger le deck depuis le presse-papier
-
+ ErrorErreur
-
+ Invalid deck list.Liste de Deck invalide.
@@ -2920,43 +2891,43 @@ Assurez-vous d'activer l'édition « Fausse édition contenant les je
DlgLoadDeckFromWebsite
-
+ Paste a link to a decklist site here to import it.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)Collez ici un lien vers un site de liste de deck pour l'importer.(Archidekt, Deckstats, Moxfield et TappedOut sont supportés.)
-
-
-
-
-
+
+
+
+
+ Load Deck from WebsiteCharger un deck depuis un site web
-
+ No parser available for this deck provider.
(Archidekt, Deckstats, Moxfield, and TappedOut are supported.)Aucun analyseur disponible pour ce fournisseur de deck.(Archidekt, Deckstats, Moxfield et TappedOut sont supportés.)
-
+ Network error: %1Erreur réseau : %1
-
+ Received empty deck data.Données de deck vide reçues.
-
+ Failed to parse deck data: %1Échec de l'analyse des données du deck : %1
-
+ The provided URL is not recognized as a valid deck URL.
Valid deck URLs look like this:
@@ -2981,40 +2952,73 @@ https://tappedout.net/mtg-decks/your-deck-name/
Charger Deck
+
+ DlgLocalGameOptions
+
+
+ Players:
+
+
+
+
+ General
+
+
+
+
+ Starting life total:
+
+
+
+
+ Game setup options
+
+
+
+
+ Remember settings
+
+
+
+
+ Local game options
+
+
+DlgMoveTopCardsUntil
-
+ Card name (or search expressions):Nom de la carte (ou expression de recherche) :
-
+ Number of hits:Nombre de cartes trouvées :
-
+ Auto play hitsJouer les cartes trouvées automatiquement
-
+ Put top cards on stack until...Placer la carte du dessus sur la pile jusqu'à...
-
+ No cards matching the search expression exists in the card database. Proceed anyways?Aucune carte ne correspondant à l'expression recherchée n'existe dans la base de données de cartes. Continuer malgré tout ?
-
+ CockatriceCockatrice
-
+ Invalid filterFiltre invalide
@@ -3175,12 +3179,12 @@ Your email will be used to verify your account.
DlgSettings
-
+ Unknown Error loading card databaseErreur inconnue lors du chargement de la base de données de cartes.
-
+ Your card database is invalid.
Cockatrice may not function correctly with an invalid database
@@ -3197,7 +3201,7 @@ Vous devrez peut-être redémarrer Oracle pour mettre à jour votre base de donn
Voulez-vous changer l'emplacement de votre base de données ?
-
+ Your card database version is too old.
This can cause problems loading card information or images
@@ -3214,7 +3218,7 @@ Généralement, il suffit de redémarrer oracle pour mettre à jour votre base d
Voulez-vous changer l'emplacement de votre base de données ?
-
+ Your card database did not finish loading
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues with your cards.xml attached
@@ -3227,7 +3231,7 @@ Veuillez ouvrir un ticket sur https://github.com/Cockatrice/Cockatrice/issues av
Voulez-vous changer l'emplacement des données ?
-
+ File Error loading your card database.
Would you like to change your database location setting?
@@ -3236,7 +3240,7 @@ Would you like to change your database location setting?
Voulez-vous changer l'emplacement de votre base de données ?
-
+ Your card database was loaded but contains no cards.
Would you like to change your database location setting?
@@ -3245,7 +3249,7 @@ Would you like to change your database location setting?
Voulez-vous changer l'emplacement de votre base de données ?
-
+ Unknown card database load status
Please file a ticket at https://github.com/Cockatrice/Cockatrice/issues
@@ -3258,59 +3262,59 @@ Veuillez ouvrir un ticket sur https://github.com/Cockatrice/Cockatrice/issues
Voulez-vous changer l'emplacement de votre base de données ?
-
-
-
+
+
+ ErrorErreur
-
+ The path to your deck directory is invalid. Would you like to go back and set the correct path?Le chemin d'accès vers votre répertoire de decks est invalide. Voulez-vous redéfinir le chemin d'accès ?
-
+ The path to your card pictures directory is invalid. Would you like to go back and set the correct path?Le chemin d'accès vers votre répertoire d'illustrations de cartes est invalide. Voulez-vous redéfinir le chemin d'accès ?
-
+ SettingsParamètres
-
+ GeneralGénéral
-
+ AppearanceApparence
-
+ User InterfaceInterface utilisateur
-
+ Card SourcesOrigine de carte
-
+ ChatChat
-
+ SoundSon
-
+ ShortcutsRaccourcis
@@ -3627,67 +3631,67 @@ Vous allez peut-être devoir télécharger manuellement la nouvelle version.
DrawProbabilityWidget
-
+ Draw Probability
-
+ Probability of drawing
-
+ Card Name
-
+ Type
-
+ Subtype
-
+ Mana Value
-
+ At least
-
+ Exactly
-
+ card(s) having drawn at least
-
+ cards
-
+ Category
-
+ Qty
-
+ Odds (%)
@@ -4135,143 +4139,143 @@ Vous allez peut-être devoir télécharger manuellement la nouvelle version.
GeneralSettingsPage
-
+ Reset all pathsRéinitialiser tous les chemins
-
+ All paths have been resetLes chemins ont été réinitialisés
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Choose pathChoisir un chemin d'accès
-
+ Personal settingsParamètres personnels
-
+ Language:Langue :
-
+ Paths (editing disabled in portable mode)Chemins (édition impossible en mode portable)
-
+ PathsChemins d’accès
-
+ How to help with translationsComment aider avec les traductions
-
+ Decks directory:Répertoire des decks :
-
+ Filters directory:Répertoire des filtres :
-
+ Replays directory:Répertoire des replays :
-
+ Pictures directory:Répertoire des images :
-
+ Card database:Base de données des cartes :
-
+ Custom database directory:Répertoire de la base de données personnalisé
-
+ Token database:Bases de données des jetons :
-
+ Update channelBranche de la mise à jour :
-
+ Check for client updates on startupVérifier les mises à jour du client au démarrage
-
+ Check for card database updates on startupVérifier les mises à jour de la base de données des cartes au démarrage...
-
+ Don't checkNe pas vérifier
-
+ Prompt for updateConfirmer les mises à jour
-
+ Always update in the backgroundToujours mettre à jour en tâche de fond
-
+ Check for card database updates everyVérifier les mises à jour de la base de données des cartes tous les
-
+ daysjour(s)
-
+ Notify if a feature supported by the server is missing in my clientM'avertir si une fonctionnalité supportée par le serveur est manquante sur mon client.
-
+ Automatically run Oracle when running a new version of CockatriceLancer Oracle automatiquement quand Cockatrice a été mis à jour.
-
+ Show tips on startupAfficher les astuces au démarrage.
-
+ Last update check on %1 (%2 days ago)Dernière vérification de mise à jour le %1 (il y a %2 jours)
@@ -4279,47 +4283,47 @@ Vous allez peut-être devoir télécharger manuellement la nouvelle version.
GraveyardMenu
-
+ &Graveyard&Cimetière
-
+ &View graveyard&Voir le cimetière
-
+ &Move graveyard to...&Déplacer le cimetière vers...
-
+ &Top of library&Dessus de la bibliothèque
-
+ &Bottom of library&Dessous de la bibliothèque
-
+ &All players&Tous les joueurs
-
+ &Hand&Main
-
+ &Exile&Exil
-
+ Reveal random card to...Révéler une carte au hasard à...
@@ -4327,88 +4331,88 @@ Vous allez peut-être devoir télécharger manuellement la nouvelle version.
HandMenu
-
+ &Hand&Main
-
+ &View hand&Voir la main
-
+ Sort hand by...
-
+ Name
-
+ Type
-
+ Mana Value
-
+ Take &mulligan (Choose hand size)
-
+ Take mulligan (Same hand size)
-
+ Take mulligan (Hand size - 1)
-
+ &Move hand to...&Déplacer la main vers…
-
+ &Top of library&Dessus de la bibliothèque
-
+ &Bottom of library&Dessous de la bibliothèque
-
+ &Graveyard&Cimetière
-
+ &Exile&Exil
-
+ &Reveal hand to...&Révéler la main à...
-
-
+
+ All players
-
+ Reveal r&andom card to...Révéler une c&arte au hasard à...
@@ -4416,52 +4420,52 @@ Vous allez peut-être devoir télécharger manuellement la nouvelle version.
HomeWidget
-
+ Create New DeckCréer un Nouveau Deck
-
+ Browse DecksParcourir les Decks
-
+ Browse Card DatabaseParcourir la Base de Carte
-
+ Browse EDHRecParcourir EDHRec
-
+ Browse Archidekt
-
+ View ReplaysVoir les replays
-
+ QuitQuitter
-
+ Connecting...Connection...
-
+ ConnectSe connecter
-
+ PlayJouer
@@ -4469,193 +4473,213 @@ Vous allez peut-être devoir télécharger manuellement la nouvelle version.
LibraryMenu
-
+ &Library&Bibliothèque
-
+ &View library&Voir la bibliothèque
-
+ View &top cards of library...Voir les cartes du &dessus de la bibliothèque...
-
+ View bottom cards of library...Voir les cartes du dessous de la bibliothèque...
-
+ Reveal &library to...Révéler la &bibliothèque à...
-
+ Lend library to...Prêter la bibliothèque à...
-
+ Reveal &top cards to...Révéler les cartes du &dessus à...
-
+ &Top of library...&Dessus de la bibliothèque...
-
+ &Bottom of library...&Dessous de la bibliothèque...
-
+ &Always reveal top card&Toujours révéler la carte du dessus
-
+ &Always look at top card&Toujours voir la carte du dessus
-
+ &Open deck in deck editor&Ouvrir le deck dans l'éditeur
-
+ &Draw card&Piocher une carte
-
+ D&raw cards...P&iocher plusieurs cartes...
-
+ &Undo last draw&Annuler la dernière pioche
-
+ ShuffleMélanger
-
+ &Play top card&Jouer la carte du dessus
-
+ Play top card &face downJouer la carte du dessus &face cachée
-
+ Put top card on &bottomPlacer la carte du dessus au-&dessous
-
+ Move top card to grave&yardMettre la carte du dessus dans le cime&tière
-
+ Move top card to e&xileE&xiler la carte du dessus
-
+ Move top cards to &graveyard...Mettre les cartes du dessus dans le &cimetière...
-
+
+ Move top cards to graveyard face down...
+
+
+
+ Move top cards to &exile...&Exiler les cartes du dessus...
-
+
+ Move top cards to exile face down...
+
+
+
+ Put top cards on stack &until...Placer les cartes du dessus sur la pile &jusqu'à...
-
+ Shuffle top cards...Mélanger les cartes du dessus...
-
+ &Draw bottom card&Piocher la carte du dessous
-
+ D&raw bottom cards...P&iocher les cartes du dessous...
-
+ &Play bottom card&Jouer la carte du dessous
-
+ Play bottom card &face downJouer la carte du dessous &face cachée
-
+ Move bottom card to grave&yardMettre la carte du dessous dans le cime&tière
-
+ Move bottom card to e&xileE&xiler la carte du dessous
-
+ Move bottom cards to &graveyard...Mettre les cartes du dessus dans le &cimetière...
-
+
+ Move bottom cards to graveyard face down...
+
+
+
+ Move bottom cards to &exile...&Exiler les cartes du dessous...
-
+
+ Move bottom cards to exile face down...
+
+
+
+ Put bottom card on &topPlacer la carte du dessous au-&dessus
-
+ Shuffle bottom cards...Mélanger les cartes du dessous...
-
-
+
+ &All players&Tous les joueurs
-
+ Reveal top cards of libraryRévéler les cartes du dessus de la bibliothèque
-
+ Number of cards: (max. %1)Nombre de cartes : (max. %1)
@@ -4755,18 +4779,8 @@ Will now login.
Connexion en cours.
-
- Number of players
- Nombre de joueurs
-
-
-
- Please enter the number of players.
- Entrez s'il vous plaît le nombre de joueurs.
-
-
-
-
+
+ Player %1Joueur %1
@@ -4869,8 +4883,8 @@ Connexion en cours.
-
-
+
+ ErrorErreur
@@ -5278,36 +5292,36 @@ La version locale est %1, la nouvelle version est %2.
Montrer/Cacher
-
+ New VersionNouvelle version
-
+ Congratulations on updating to Cockatrice %1!
Oracle will now launch to update your card database.Bravo pour avoir mis à jour Cockatrice %1 !
Oracle va maintenant se lancer pour mettre à jour votre base de données de cartes.
-
+ Cockatrice installedInstallation de Cockatrice terminée
-
+ Congratulations on installing Cockatrice %1!
Oracle will now launch to install the initial card database.Félicitations ! Vous venez d'installer Cockatrice %1 !
Oracle va maintenant se lancer pour installer la base de données de cartes initiale.
-
+ Card databaseBase de données de cartes
-
+ Cockatrice is unable to load the card database.
Do you want to update your card database now?
If unsure or first time user, choose "Yes"
@@ -5316,29 +5330,29 @@ Voulez-vous la mettre à jour maintenant ?
Si vous n’êtes pas sûr, ou si c'est la première fois que vous jouez, choisissez « Oui ».
-
-
+
+ YesOui
-
-
+
+ NoNon
-
+ Open settingsOuvrir les paramètres
-
+ New sets foundNouvelles éditions détectées
-
+ %n new set(s) found in the card database
Set code(s): %1
Do you want to enable it/them?
@@ -5351,17 +5365,17 @@ Code(s) d'édition(s) : %1
Voulez-vous l'(les) activer ?
-
+ View setsVoir les éditions
-
+ WelcomeBienvenue
-
+ Hi! It seems like you're running this version of Cockatrice for the first time.
All the sets in the card database have been enabled.
Read more about changing the set order or disabling specific sets and consequent effects in the "Manage Sets" dialog.
@@ -5370,65 +5384,65 @@ Toutes les éditions de la base de données de cartes ont été activées.
Pour plus d'informations sur la modification de l'ordre des éditions, la désactivation d'éditions spécifiques, et leurs effets, consultez le menu « Gérer les éditions… ».
-
-
+
+ InformationInformations
-
+ A card database update is already running.Une mise à jour de la base de données de cartes est déjà en cours.
-
+ Unable to run the card database updater: Impossible de lancer la mise à jour de la base de données de cartes :
-
+ Card database update running.Une mise à jour de la base de données de cartes est en cours.
-
+ Failed to start. The file might be missing, or permissions might be incorrect.Échec au démarrage. Le fichier peut être manquant, ou les permissions sont incorrectes.
-
+ The process crashed some time after starting successfully.Le processus a échoué quelque temps après avoir démarré avec succès.
-
+ Timed out. The process took too long to respond. The last waitFor...() function timed out.Temps limite dépassé. Le processus a pris trop longtemps pour répondre. La dernière fonction waitFor...() a terminé.
-
+ An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel.Une erreur a eu lieu en essayant d'écrire vers le processus. Par exemple, le processus pourrait ne pas tourner, ou il pourrait avoir son canal d'entrée fermé.
-
+ An error occurred when attempting to read from the process. For example, the process may not be running.Une erreur a eu lieu en essayant d'écrire vers le processus. Par exemple, le processus pourrait ne pas tourner, ou il pourrait avoir son canal de sortie inactif.
-
+ Unknown error occurred.Une erreur inconnue est arrivée.
-
+ The card database updater exited with an error:
%1L'outil de mise à jour de la base de données de cartes s'est arrêté avec l'erreur :
%1
-
+ This server supports additional features that your client doesn't have.
This is most likely not a problem, but this message might mean there is a new version of Cockatrice available or this server is running a custom or pre-release version.
@@ -5439,55 +5453,55 @@ Ce n'est probablement pas un problème, mais ce message peut signifier qu&a
Pour mettre à jour votre client, allez dans « Aide -> Vérifier les mises à jour ».
-
-
-
-
-
+
+
+
+
+ Load sets/cardsCharger des éditions/cartes
-
+ Selected file cannot be found.Le fichier sélectionné n'a pas pu être trouvé.
-
+ You can only import XML databases at this time.Il n'est actuellement possible que d'importer des bases de données XML.
-
+ The new sets/cards have been added successfully.
Cockatrice will now reload the card database.Les nouvelles éditions/cartes ont été ajoutées avec succès.
Cockactrice va maintenant recharger la base de données de cartes.
-
+ Sets/cards failed to import.Échec de l'importation des éditions/cartes.
-
-
-
+
+
+ Reset PasswordRéinitialiser le mot de passe
-
+ Your password has been reset successfully, you can now log in using the new credentials.Votre mot de passe a été réinitialisé avec succès. Vous pouvez maintenant vous connecter en utilisant vos nouveaux identifiants.
-
+ Failed to reset user account password, please contact the server operator to reset your password.Échec de la réinitialisation du mot de passe du compte. Veuillez contacter l'administrateur du serveur pour réinitialiser votre mot de passe.
-
+ Activation request received, please check your email for an activation token.Demande d'activation reçue, vérifiez votre courrier électronique pour un jeton d'activation.
@@ -5538,7 +5552,7 @@ Cockactrice va maintenant recharger la base de données de cartes.
ManaBaseWidget
-
+ Mana BaseBase de mana
@@ -5692,590 +5706,610 @@ Cockactrice va maintenant recharger la base de données de cartes.
MessageLogWidget
-
+ from playdepuis le jeu
-
+ from their graveyard depuis son cimetière
-
+ from exile depuis l'exil
-
+ from their hand depuis sa main
-
+ the top card of %1's libraryla carte du dessus de la bibliothèque de %1
-
+ the top card of their libraryle carte du dessus de sa bibliothèque
-
+ from the top of %1's libraryà partir du dessus de la bibliothèque de %1
-
+ from the top of their librarydu dessus de sa bibliothèque
-
+ the bottom card of %1's libraryla carte du dessous de la bibliothèque de %1
-
+ the bottom card of their libraryla carte du dessous de sa bibliothèque
-
+ from the bottom of %1's libraryà partir du dessous de la bibliothèque de %1
-
+ from the bottom of their librarydu dessous de sa bibliothèque
-
+ from %1's libraryde la bibliothèque de %1
-
+ from their librarydepuis sa bibliothèque
-
+ from sideboarddepuis sa réserve
-
+ from the stackdepuis la pile
-
+ from custom zone '%1' depuis la zone personnalisée '%1'
-
+ %1 is now keeping the top card %2 revealed.%1 garde maintenant la carte du dessus de sa bibliothèque %2 révélée.
-
+ %1 is not revealing the top card %2 any longer.%1 ne révèle plus la carte du dessus de sa bibliothèque %2.
-
+ %1 can now look at top card %2 at any time.%1 peut maintenant regarder la carte du dessus de sa bibliothèque %2 à n'importe quel moment.
-
+ %1 no longer can look at top card %2 at any time.%1 ne peut plus regarder la carte du dessus de sa bibliothèque %2 à n'importe quel moment.
-
+ %1 attaches %2 to %3's %4.%1 attache %2 à %4 de %3.
-
+ %1 has conceded the game.%1 a concédé la partie.
-
+ %1 has unconceded the game.%1 reste dans la partie.
-
+ %1 has restored connection to the game.%1 est revenu dans la partie.
-
+ %1 has lost connection to the game.%1 a perdu la connexion à la partie.
-
+ %1 points from their %2 to themselves.%1 se cible avec son %2.
-
+ %1 points from their %2 to %3.%1 cible %3 avec son %2.
-
+ %1 points from %2's %3 to themselves.%1 se cible avec %3 de %2.
-
+ %1 points from %2's %3 to %4.%1 cible %4 avec %3 de %2.
-
+ %1 points from their %2 to their %3.%1 cible de son %3 vers son %2.
-
+ %1 points from their %2 to %3's %4.%1 cible %3 de %4 avec %2.
-
+ %1 points from %2's %3 to their own %4.%1 cible son %4 avec %3 de %2.
-
+ %1 points from %2's %3 to %4's %5.%1 cible %5 de %4 avec %3 de %2.
-
+ %1 creates a face down token.%1 crée un jeton face-cachée.
-
+ %1 creates token: %2%3.%1 crée un jeton %2%3.
-
+ %1 has loaded a deck (%2).%1 a chargé un deck (%2).
-
+ %1 has loaded a deck with %2 sideboard cards (%3).%1 a chargé un deck avec %2 cartes en réserve (%3).
-
+ %1 destroys %2.%1 détruit %2.
-
+ a cardune carte
-
+ %1 gives %2 control over %3.%1 donne le contrôle de %2 à %3.
-
+ %1 puts %2 into play%3 face down.%1 met %2 en jeu%3 face cachée.
-
+ %1 puts %2 into play%3.%1 met %2 en jeu %3.
-
+
+ %1 puts %2%3 into their graveyard face down.
+
+
+
+ %1 puts %2%3 into their graveyard.%1 met %2%3 dans son cimetière.
+
+
+ %1 exiles %2%3 face down.
+
+ %1 exiles %2%3.%1 exile %2%3.
-
+ %1 moves %2%3 to their hand.%1 met %2%3 dans sa main.
-
+ %1 puts %2%3 into their library.%1 met %2%3 dans sa bibliothèque.
-
+ %1 puts %2%3 onto the bottom of their library.%1 met %2%3 au-dessous de sa bibliothèque.
-
+ %1 puts %2%3 on top of their library.%1 met %2%3 au-dessus de sa bibliothèque.
-
+ %1 puts %2%3 into their library %4 cards from the top.%1 met %2%3 dans sa bibliothèque %4 cartes depuis le dessus
-
+ %1 moves %2%3 to sideboard.%1 met %2%3 à sa réserve.
-
+
+ %1 plays %2%3 face down.
+
+
+
+ %1 plays %2%3.%1 joue %2%3.
-
+
+ %1 moves %2%3 to custom zone '%4' face down.
+
+
+
+ %1 moves %2%3 to custom zone '%4'.%1 déplace %2%3 vers la zone personnalisée '%4'.
-
+ %1 tries to draw from an empty library%1 essaie de piocher dans une bibliothèque vide
-
+ %1 draws %2 card(s).%1 pioche %2 carte.%1 pioche %2 cartes.%1 pioche %2 carte(s).
-
+ %1 is looking at %2.%1 regarde %2.
-
+ %1 is looking at the %4 %3 card(s) %2.top card for singular, top %3 cards for plural%1 regarde la %4 %3 carte %2.%1 regarde les %4 %3 cartes %2.%1 regarde la / les %4 %3 carte(s) %2.
-
+ bottomdessous
-
+ topdessus
-
+ %1 turns %2 face-down.%1 retourne %2 face cachée.
-
+ %1 turns %2 face-up.%1 retourne %2 face visible.
-
+ The game has been closed.La partie a été fermée.
-
+ The game has started.La partie commence.
-
+ You are flooding the game. Please wait a couple of seconds.Vous floodez la partie. Veuillez patienter quelques secondes.
-
+ %1 has joined the game.%1 a rejoint la partie.
-
+ %1 is now watching the game.%1 est maintenant spectateur.
-
+ You have been kicked out of the game.Vous avez été expulsé de la partie.
-
+ %1 has left the game (%2).%1 a quitté la partie (%2).
-
+ %1 is not watching the game any more (%2).%1 n'observe plus la partie (%2).
-
+ %1 is not ready to start the game any more.%1 n'est plus prêt à démarrer la partie.
-
+ %1 shuffles their deck and draws a new hand of %2 card(s).%1 mélange son deck et pioche une nouvelle main de %2 carte.%1 mélange sa bibliothèque et pioche une nouvelle main de %2 cartes.%1 mélange sa bibliothèque et pioche une nouvelle main de %2 carte(s).
-
+ %1 shuffles their deck and draws a new hand.%1 mélange sa bibliothèque et pioche une nouvelle main.
-
+ You are watching a replay of game #%1.Vous regardez un replay de la partie n° %1.
-
+ %1 is ready to start the game.%1 est prêt à démarrer la partie.
-
+ cardsan unknown amount of cardscartes
-
+ %1 card(s)a card for singular, %1 cards for plural%1 carte%1 cartes%1 carte(s)
-
+ %1 lends %2 to %3.%1 prêtes %2 à %3.
-
+ %1 reveals %2 to %3.%1 révèle %2 à %3.
-
+ %1 reveals %2.%1 révèle %2.
-
+ %1 randomly reveals %2%3 to %4.%1 révèle au hasard %2%3 à %4.
-
+ %1 randomly reveals %2%3.%1 révèle au hasard %2%3.
-
+ %1 peeks at face down card #%2.%1 regarde furtivement la carte face cachée n° %2.
-
+ %1 peeks at face down card #%2: %3.%1 regarde furtivement la carte face cachée n° %2 : %3.
-
+ %1 reveals %2%3 to %4.%1 révèle %2%3 à %4.
-
+ %1 reveals %2%3.%1 révèle %2%3.
-
+ %1 reversed turn order, now it's %2.%1 a inversé l'ordre des tours, c'est maintenant %2.
-
+ reversedinversé
-
+ normalnormal
-
+ HeadsFace
-
+ TailsPile
-
+ %1 flipped a coin. It landed as %2.%1 a lancé une pièce. Il a fait %2.
-
+ %1 rolls a %2 with a %3-sided die.%1 a fait %2 avec un dé %3 faces.
-
+ %1 flips %2 coins. There are %3 heads and %4 tails.%1 lances %2 pièces. Il y'a %3 faces et %4 piles.
-
+ %1 rolls a %2-sided dice %3 times: %4.%1 lances un dé à %2-faces %3 fois: %4.
-
+ %1's turn.Tour de %1
-
+ %1 sets annotation of %2 to %3.%1 met l'annotation %3 à %2.
-
+ %1 places %2 "%3" counter(s) on %4 (now %5).%1 place %2 "%3" compteur sur %4 (désormais %5).%1 place %2 "%3" compteurs sur %4 (désormais %5).%1 place %2 "%3" compteur(s) sur %4 (désormais %5).
-
+ %1 removes %2 "%3" counter(s) from %4 (now %5).%1 retire %2 "%3" compteur sur %4 (désormais %5).%1 retire %2 "%3" compteurs sur %4 (désormais %5).%1 retire %2 "%3" compteur(s) sur %4 (désormais %5).
-
+ %1 sets counter %2 to %3 (%4%5).%1 met les marqueurs %2 à %3 (%4%5).
-
+ %1 sets %2 to not untap normally.%2 de %1 ne se dégagera pas lors de l'étape de dégagement.
-
+ %1 sets %2 to untap normally.%2 de %1 se dégagera lors de l'étape de dégagement.
-
+ %1 removes the PT of %2.%1 retire la F/E de %2.
-
+ %1 changes the PT of %2 from nothing to %4.%1 met la F/E de %2 à %4.
-
+ %1 changes the PT of %2 from %3 to %4.%1 passe la F/E de %2 de %3 à %4.
-
+ %1 has locked their sideboard.%1 a verrouillé sa réserve.
-
+ %1 has unlocked their sideboard.%1 a déverrouillé sa réserve.
-
+ %1 taps their permanents.%1 engage ses permanents.
-
+ %1 untaps their permanents.%1 dégage ses permanents.
-
+ %1 taps %2.%1 engage %2.
-
+ %1 untaps %2.%1 dégage %2.
-
+ %1 shuffles %2.%1 mélange %2.
-
+ %1 shuffles the bottom %3 cards of %2.%1 mélange les %3 cartes du dessous de la bibliothèque de %2.
-
+ %1 shuffles the top %3 cards of %2.%1 mélange les %3 cartes du dessus de la bibliothèque de %2.
-
+ %1 shuffles cards %3 - %4 of %2.%1 mélange les cartes %3 - %4 de %2.
-
+ %1 unattaches %2.%1 détache %2.
-
+ %1 undoes their last draw.%1 annule sa dernière pioche.
-
+ %1 undoes their last draw (%2).%1 annule sa dernière pioche (%2).
@@ -6283,110 +6317,110 @@ Cockactrice va maintenant recharger la base de données de cartes.
MessagesSettingsPage
-
+ Word1 Word2 Word3Mot1 Mot2 Mot3
-
+ Add New MessageAjouter un message
-
+ Edit MessageÉditer le message
-
+ Remove MessageSupprimer le message
-
+ Add messageAjouter message
-
-
+
+ Message:Message :
-
+ Edit messageÉditer le message
-
+ Chat settingsParamètres du chat
-
+ Custom alert wordsMots d'alertes personnalisées
-
+ Enable chat mentionsActiver les mentions dans le chat
-
+ Enable mention completerActiver les mentions dans le chat
-
+ In-game message macrosMacros de message en jeu
-
+ How to use in-game message macrosComment utiliser les macro pour les messages en jeu
-
+ Ignore chat room messages sent by unregistered usersIgnorer les messages dans le chat principal envoyés par des joueurs non enregistrés.
-
+ Ignore private messages sent by unregistered usersIgnorer les messages privés envoyés par des joueurs non enregistrés.
-
-
+
+ Invert text colorInverser la couleur du texte
-
+ Enable desktop notifications for private messagesActiver les notifications de bureau pour les messages privés.
-
+ Enable desktop notification for mentionsActiver les notifications de bureau pour les mentions.
-
+ Enable room message history on joinActiver l'historique des messages du chat principal dès la connexion
-
-
+
+ (Color is hexadecimal)(La couleur est hexadécimale)
-
+ Separate words with a space, alphanumeric characters onlySéparer les mots avec un espace, seulement les caractères alphanumériques
@@ -6399,32 +6433,37 @@ Cockactrice va maintenant recharger la base de données de cartes.
Déplacer vers
-
+ &Top of library in random order&Dessus de la bibliothèque dans un ordre aléatoire
-
+ X cards from the top of library...X cartes du dessus de la bibliothèque...
-
+ &Bottom of library in random order&Dessous de la bibliothèque dans un ordre aléatoire
-
+
+ T&able
+
+
+
+ &Hand&Main
-
+ &Graveyard&Cimetière
-
+ &Exile&Exil
@@ -6566,57 +6605,57 @@ Cockactrice va maintenant recharger la base de données de cartes.
PhasesToolbar
-
+ Untap stepÉtape de dégagement
-
+ Upkeep stepÉtape d'entretien
-
+ Draw stepÉtape de pioche
-
+ First main phasePremière phase principale
-
+ Beginning of combat stepÉtape de début de combat
-
+ Declare attackers stepÉtape de déclaration des attaquants
-
+ Declare blockers stepÉtape de déclaration des bloqueurs
-
+ Combat damage stepÉtape d'assignation des blessures de combat
-
+ End of combat stepÉtape de fin de combat
-
+ Second main phaseSeconde phase principale
-
+ End of turn stepPhase de fin de tour
@@ -6633,134 +6672,138 @@ Cockactrice va maintenant recharger la base de données de cartes.
PlayerActions
-
+ View top cards of libraryVoir les cartes du dessus de la bibliothèque
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ Number of cards: (max. %1)Nombre de cartes : (max. %1)
-
+ View bottom cards of libraryVoir les cartes du dessous de la bibliothèque
-
+ Shuffle top cards of libraryMélanger les cartes du dessus de la bibliothèque
-
+ Shuffle bottom cards of libraryMélanger les cartes du dessous de la bibliothèque
-
+ Draw handPiocher une main
-
+ 0 and lower are in comparison to current hand size0 et moins sont en comparaison avec la taille actuelle de la main
-
+ Draw cardsPiocher des cartes
+
+
+
+
+
+ grave
+
+
- Move top cards to grave
- Mettre les cartes du dessus dans le cimetière
+
+
+
+ exile
+
-
- Move top cards to exile
- Exiler les cartes du dessus
+
+ Move top cards to %1
+
-
- Move bottom cards to grave
- Mettre les cartes du dessous dans le cimetière
+
+ Move bottom cards to %1
+
-
- Move bottom cards to exile
- Exiler les cartes du dessous
-
-
-
+ Draw bottom cardsPiocher les cartes du dessous
-
-
+
+ C&reate another %1 tokenC&réer un autre jeton %1
-
+ Create tokensCréer des jetons
-
-
+
+ Number:Nombre :
-
+ Place card X cards from top of libraryPlacer les X cartes depuis le dessus de la bibliothèque
-
+ Which position should this card be placed:Dans quelle position cette carte doit-elle être placée :
-
+ (max. %1)(max. %1)
-
+ Change power/toughnessChanger la force/l'endurance
-
+ Change stats to:Changer les stats pour :
-
+ Set annotationAnnoter
-
+ Please enter the new annotation:Veuillez entrer la nouvelle annotation :
-
+ Set countersDéfinir les marqueurs
@@ -6768,48 +6811,65 @@ Cockactrice va maintenant recharger la base de données de cartes.
PlayerMenu
-
+ Player "%1"Joueur "%1"
-
+ &Counters&Marqueurs
+
+
+ PrintingDisabledInfoWidget
-
- S&ay
- D&ire
+
+ The Printing Selector is disabled because you have currently enabled the setting to override all selected printings with personal set preferences.
+
+This setting means you'll only see the default printing for each card, instead of being able to select a printing, and will not see the printings other people have selected.
+
+
+
+
+
+
+ Enable printings again
+ PrintingSelector
-
+ Display Navigation ButtonsAfficher les boutons de navigation
+
+
+ Printing Selector
+
+ PrintingSelectorCardOverlayWidget
-
+ PreferencePréférence
-
+ Pin PrintingÉpingler Imprimer
-
+ Unpin PrintingDésépingler Imprimer
-
+ Show Related cardsAfficher les cartes associées
@@ -6858,17 +6918,25 @@ Cockactrice va maintenant recharger la base de données de cartes.
Date de Sortie
-
-
+
+ DescendingDescendant
-
+ AscendingAscendant
+
+ PrintingSelectorPlaceholderWidget
+
+
+ Select a card to view its available printings
+
+
+PtMenu
@@ -7007,6 +7075,33 @@ Cockactrice va maintenant recharger la base de données de cartes.
A .cod version of this deck already exists. Overwrite it?Une version en fichier .cod existe déjà pour ce deck. L'écraser ?
+
+
+ Enabling this feature will disable the use of the Printing Selector.
+
+You will not be able to manage printing preferences on a per-deck basis, or see printings other people have selected for their decks.
+
+You will have to use the Set Manager, available through Card Database -> Manage Sets.
+
+Are you sure you would like to enable this feature?
+
+
+
+
+ Disabling this feature will enable the Printing Selector.
+
+You can now choose printings on a per-deck basis in the Deck Editor and configure which printing gets added to a deck by default by pinning it in the Printing Selector.
+
+You can also use the Set Manager to adjust custom sort order for printings in the Printing Selector (other sort orders like alphabetical or release date are available).
+
+Are you sure you would like to disable this feature?
+
+
+
+
+ Confirm Change
+
+ QPlatformTheme
@@ -7155,37 +7250,37 @@ Cockactrice va maintenant recharger la base de données de cartes.
RfgMenu
-
+ &Exile&Exil
-
+ &View exile&Voir la zone d'exil
-
+ &Move exile to...&Déplacer la zone d'exil vers...
-
+ &Top of library&Dessus de la bibliothèque
-
+ &Bottom of library&Dessous de la bibliothèque
-
+ &Hand&Main
-
+ &Graveyard&Cimetière
@@ -7228,6 +7323,14 @@ Cockactrice va maintenant recharger la base de données de cartes.
Parties
+
+ SayMenu
+
+
+ S&ay
+
+
+SequenceEdit
@@ -7292,53 +7395,53 @@ Cockactrice va maintenant recharger la base de données de cartes.
ShortcutSettingsPage
-
-
+
+ Restore all default shortcutsRéinitialiser tous les raccourcis
-
+ Do you really want to restore all default shortcuts?Êtes-vous sûr de vouloir réinitialiser tous les raccourcis ?
-
+ Clear all default shortcutsEffacer tous les raccourcis par défaut
-
+ Do you really want to clear all shortcuts?Êtes-vous sûr de vouloir effacer tous les raccourcis ?
-
+ Section:Section :
-
+ Action:Action :
-
+ Shortcut:Raccourci :
-
+ How to set custom shortcutsComment assigner des raccourcis personnalisés
-
+ Clear all shortcutsEffacer tous les raccourcis
-
+ Search by shortcut nameRechercher par nom de raccourci
@@ -7406,27 +7509,27 @@ Please check your shortcut settings!
SoundSettingsPage
-
+ Enable &soundsActiver les &sons
-
+ Current sounds theme:Thème sonore actuel:
-
+ Test system sound engineTester les effets sonores
-
+ Sound settingsParamètres de son
-
+ Master volumeVolume principal
@@ -7642,59 +7745,123 @@ Please check your shortcut settings!
TabArchidekt
-
-
+
+
+ Desc.
-
- Asc.
+
+
+ AND
-
-
- Any Bracket
+
+
+ Require ALL selected colors
-
- Deck name contains...
+
+
+ Deck name...
-
- Owner name contains...
+
+
+ Owner...
+
+
+
+
+
+ Packages
+
+
+
+
+
+ Advanced Filters
- Disabled
+ Bracket:
-
+
+
+ Any
+
+
+
+
+
+ Contains card...
+
+
+
+
+
+ Commander...
+
+
+
+
+
+ Tag...
+
+
+
+
+
+ Deck Size
+
+
+
+
+ Cards:
+
+
+
+
+
+ Asc.
+
+
+
+
+ Sort by:
+
+
+
+
+ Filter by:
+
+
+
+
+ Display Settings
+
+
+
+
+ Search
-
+
+ Formats
-
- Min. # of Cards:
-
-
-
-
- Page:
-
-
-
-
+ Archidekt:
@@ -7702,60 +7869,52 @@ Please check your shortcut settings!
TabDeckEditor
-
+ Card InfoInfos de la carte
-
+ DeckBibliothèque
-
+ FiltersFiltres
-
+ &View&Voir
-
+ Card Database
-
+ PrintingImprimer
-
-
-
-
-
+ VisibleVisible
-
-
-
-
-
+ FloatingFlottant
-
+ Reset layoutRéinitialiser l'interface
-
+ Deck: %1Deck : %1
@@ -7763,61 +7922,55 @@ Please check your shortcut settings!
TabDeckEditorVisual
-
+ Visual Deck: %1Deck visuel : %1
-
+ &Visual Deck Editor&Éditeur de deck visuel
-
-
+
+ Card InfoInfos de la carte
-
-
+
+ DeckDeck
-
-
+
+ FiltersFiltres
-
+ &View&Voir
-
+ PrintingImprimer
-
-
-
-
+ VisibleVisible
-
-
-
-
+ FloatingFlottant
-
+ Reset layoutRéinitialiser l'interface
@@ -7882,7 +8035,7 @@ Please check your shortcut settings!
-
+ New folderNouveau dossier
@@ -7964,18 +8117,18 @@ Veuillez entrer un nom:
Êtes-vous certain de vouloir supprimer les fichiers sélectionnés ?
-
+ Delete remote decksSupprimer les decks dinstants
-
+ Are you sure you want to delete the selected decks?Êtes-vous certain de vouloir supprimer les decks sélectionnés ?
-
+ Name of new folder:Nom du nouveau dossier :
@@ -7993,12 +8146,12 @@ Veuillez entrer un nom:
Stockage visuel de deck
-
+ ErrorErreur
-
+ Could not open deck at %1N'a pas pu ouvrir le deck à %1
@@ -8047,197 +8200,191 @@ Veuillez entrer un nom:
TabGame
-
-
-
+
+
+ ReplayReplay
-
-
+
+ GamePartie
-
-
+
+ Player ListListe des joueurs
-
-
+
+ Card InfoInfos de la carte
-
-
+
+ MessagesMessages
-
-
+
+ Replay TimelineHistorique des replays
-
+ &Phases&Phases
-
+ &Game&Partie
-
+ Next &phaseÉtape &suivante
-
+ Next phase with &actionÉtape suivante avec &action
-
+ Next &turn&Tour suivant
-
+ Reverse turn orderInverser l'ordre des tours
-
+ &Remove all local arrows&Retirer toutes les flèches locales
-
+ Rotate View Cl&ockwisePivoter la vue dans le sens h&oraire
-
+ Rotate View Co&unterclockwisePivoter la vue dans le sens &anti-horaire
-
+ Game &information&Informations sur la partie
-
+ Un&concedeAnnuler la &concession
-
-
-
+
+
+ &Concede&Concéder
-
+ &Leave game&Quitter la partie
-
+ C&lose replayFermer &le replay
-
+ &Focus Chat&Focus sur le chat
-
+ &Say:&Dire :
-
+ Selected cardsCartes sélectionnées
-
+ &View&Voir
-
-
-
-
+ VisibleVisible
-
-
-
-
+ FloatingFlottant
-
+ Reset layoutRéinitialiser l'interface
-
+ ConcedeConcéder
-
+ Are you sure you want to concede this game?Êtes-vous sûr de vouloir concéder la partie ?
-
+ UnconcedeRester dans la partie
-
+ You have already conceded. Do you want to return to this game?Vous avez déjà concédé la partie. Voulez-vous la reprendre ?
-
+ Leave gameQuitter la partie
-
+ Are you sure you want to leave this game?Êtes-vous sûr de vouloir quitter la partie ?
-
+ A player has joined game #%1Un joueur a rejoint la partie #%1.
-
+ %1 has joined the game%1 a rejoint la partie.
-
+ You have been kicked out of the game.Vous avez été expulsé de la partie.
@@ -9339,142 +9486,152 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
UserInterfaceSettingsPage
-
+ General interface settingsParamètres généraux de l'interface
-
+ &Double-click cards to play them (instead of single-click)&Double cliquer sur les cartes pour les jouer (au lieu d'un simple clic)
-
+ &Clicking plays all selected cards (instead of just the clicked card)&Cliquer joue toutes les cartes sélectionnées (à la place de seulement la carte cliquée)
-
+ &Play all nonlands onto the stack (not the battlefield) by default&Jouer toutes les cartes non terrain dans la pile (pas sur le champ de bataille) par défaut
-
+ Do not delete &arrows inside of subphases
-
+ Close card view window when last card is removedFermer la fenêtre d'affichage des cartes lorsque la dernière carte est supprimée
-
+ Auto focus search bar when card view window is openedFocalise automatiquement la barre de recherche lorsque la fenêtre d'affichage des cartes est ouverte
-
+ Annotate card text on tokensAnnoter le texte des cartes sur les jetons
-
+
+ Show selection counter during drag selection
+
+
+
+
+ Show total selection counter
+
+
+
+ Use tear-off menus, allowing right click menus to persist on screenUtiliser les menus détachables, permettant les clics droits sur les rendre persistants
-
+ Notifications settingsParamètres des notifications
-
+ Enable notifications in taskbarActiver les notifications dans la barre des tâches
-
+ Notify in the taskbar for game events while you are spectatingNotifier dans la barre des tâches pour les évènements des parties quand vous y êtes spectateur
-
+ Notify in the taskbar when users in your buddy list connectNotifier dans la barre des tâches quand un ami se connecte
-
+ Animation settingsParamètres des animations
-
+ &Tap/untap animation&Animation d'engagement / dégagement
-
+ Deck editor/storage settingsParamètres d'éditeur et de stockage de deck
-
+ Open deck in new tab by defaultOuvre le deck dans un nouvel onglet par défaut
-
+ Use visual deck storage in game lobbyUtiliser le stockage visuel de decks dans le lobby des parties
-
+ Use selection animation for Visual Deck StorageUtilisez l'animation de sélection pour le stockage visuel des deck
-
+ When adding a tag in the visual deck storage to a .txt deck:Lorsque vous ajoutez une étiquette dans le stockage visuel du deck à un deck stocké comme un fichier .txt :
-
+ do nothingne rien faire
-
+ ask to convert to .coddemander à convertir en fichier .cod
-
+ always convert to .codtoujours convertir en fichier .cod
-
+ Default deck editor typeType d'éditeur de deck par défaut
-
+ Classic Deck EditorÉditeur de deck classique
-
+ Visual Deck EditorÉditeur de deck visuel
-
+ Replay settingsParamètres du replay
-
+ Buffer time for backwards skip via shortcut:Temps de tampon pour les sauts en arrière via un raccourci :
@@ -9538,24 +9695,25 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDatabaseDisplayColorFilterWidget
-
- Mode: Exact Match
- Mode : correspondance exacte
+
+ Exact match
+
+
+
+
+ Includes
+
- Mode: Includes
- Mode : inclure
+ Include / Exclude
+ Mode: Includes
+
-
- Mode: Include/Exclude
- Mode : inclure / exclure
-
-
-
- Filter mode (AND/OR/NOT conjunctions of filters)
- Mode de filtre (conjonctions AND/OR/NOT de filtres)
+
+ How selected and unselected colors are combined in the filter
+
@@ -9581,25 +9739,108 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
Entrer le nom du fichier...
+
+ VisualDatabaseDisplayFilterToolbarWidget
+
+
+ Sort by
+
+
+
+
+ Filter by
+
+
+
+
+ Save and load filters
+
+
+
+
+ Filter by exact card name
+
+
+
+
+ Filter by card main-type
+
+
+
+
+ Filter by card sub-type
+
+
+
+
+ Filter by set
+
+
+
+
+ Filter by format legality
+
+
+
+
+ Save/Load
+
+
+
+
+ Name
+
+
+
+
+ Main Type
+
+
+
+
+ Sub Type
+
+
+
+
+ Sets
+
+
+
+
+ Formats
+
+
+VisualDatabaseDisplayFormatLegalityFilterWidget
-
+
+ Show formats with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display formats with less than this amount of cards in the database
-
+ Filter mode (AND/OR/NOT conjunctions of filters)
-
+ Mode: Exact Match
-
+ Mode: Includes
@@ -9607,22 +9848,32 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDatabaseDisplayMainTypeFilterWidget
-
+
+ Show main types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card main-types with less than this amount of cards in the databaseNe pas afficher les types principaux de cartes dont le nombre est inférieur à ce montant dans la base de données
-
+ Filter mode (AND/OR/NOT conjunctions of filters)Mode de filtre (conjonctions AND/OR/NOT de filtres)
-
+ Mode: Exact MatchMode : correspondance exacte
-
+ Mode: IncludesMode : inclure
@@ -9658,7 +9909,7 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDatabaseDisplayRecentSetFilterSettingsWidget
-
+ Filter to most recent setsFiltrer par extensions récentes
@@ -9666,19 +9917,19 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDatabaseDisplaySetFilterWidget
-
+ Search sets...Rechercher les extensions...
-
-
+
+ Mode: Exact MatchMode : correspondance exacte
-
-
+
+ Mode: IncludesMode : inclure
@@ -9686,27 +9937,37 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDatabaseDisplaySubTypeFilterWidget
-
+ Search subtypes...Rechercher par sous-types...
-
+
+ Show sub types with at least:
+
+
+
+
+ cards
+
+
+
+ Do not display card sub-types with less than this amount of cards in the databaseNe pas afficher les sous-types de cartes dont le nombre est inférieur à ce montant dans la base de données
-
+ Filter mode (AND/OR/NOT conjunctions of filters)Mode de filtre (conjonctions AND/OR/NOT de filtres)
-
+ Mode: Exact MatchMode : correspondance exacte
-
+ Mode: IncludesMode : inclure
@@ -9720,52 +9981,22 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
-
+ Visual
-
+ Loading database ...Chargement de la base de données...
-
+ Clear all filtersEffacer tous les filtres
-
- Sort by:
-
-
-
-
- Filter by:
-
-
-
-
- Save and load filters
- Sauvegarder et charger des filtres
-
-
-
- Filter by exact card name
- Filtrer par nom exact de carte
-
-
-
- Filter by card sub-type
- Filtrer par sous-type de carte
-
-
-
- Filter by set
- Filtrer par extension
-
-
-
+ Table
@@ -9773,56 +10004,64 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDeckDisplayOptionsWidget
-
+ Group by:
-
+ Change how cards are divided into categories/groups.
-
+ Sort by:
-
+ Click and drag to change the sort order within the groups
-
+ Configure how cards are sorted within their groups
-
-
+
+ Toggle Layout: Overlap
-
+ Change how cards are displayed within zones (i.e. overlapped or fully visible.)
-
+ Toggle Layout: Flat
+
+ VisualDeckEditorPlaceholderWidget
+
+
+ Add cards using the search bar or database tab to have them appear here
+
+
+VisualDeckEditorSampleHandWidget
-
+ Draw a new sample handPiocher un nouvel exemple de main
-
+ Sample hand sizeTaille de l'exemple de main
@@ -9830,17 +10069,17 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDeckEditorWidget
-
+ Type a card name here for suggestions from the database...
-
+ Quick search and add cardRecherche et ajout rapide d'une carte
-
+ Search for closest match in the database (with auto-suggestions) and add preferred printing to the deck on pressing enterRecherchez la correspondance la plus proche dans la base de données (avec suggestions automatiques) et ajoutez l'impression souhaitée au deck en appuyant sur Entrée
@@ -9856,47 +10095,52 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
VisualDeckStorageQuickSettingsWidget
-
+ Show FoldersMontrer les dossiers
-
+ Show Tag FilterMontrer le filtre à étiquette
-
+
+ Show Color Identity
+
+
+
+ Show Tags On Deck PreviewsMontrer les étiquettes sur les aperçus de decks
-
+ Show Banner Card Selection OptionMontrer l'option de sélection de carte bannière
-
+ Draw unused Color IdentitiesAffiche les identités de couleurs non utilisées
-
+ Unused Color Identities OpacityOpacité des identités de couleur inutilisées
-
+ Deck tooltip:Aide contextuelle du deck :
-
+ NoneAucun(e)
-
+ FilepathChemin de fichier
@@ -9997,133 +10241,133 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
WndSets
-
+ Move selected set to the topDéplacer l'édition sélectionnée tout en haut
-
+ Move selected set upDéplacer l'édition sélectionnée vers le haut
-
+ Move selected set downDéplacer l'édition sélectionnée vers le bas
-
+ Move selected set to the bottomDéplacer l'édition sélectionnée tout en bas
-
+ Search by set name, code, or typeRechercher par ensemble de nom, code ou type
-
+ Default orderOrdre par défaut
-
+ Restore original art priority orderRestaurer l'ordre original de priorité artistique
-
+ Enable all setsActiver toutes les éditions
-
+ Disable all setsDésactiver toutes les éditions
-
+ Enable selected set(s)Activer l(es) édition(s) sélectionnée(s)
-
+ Disable selected set(s)Désactiver l(es) éditions(s) sélectionné(s)
-
+ Deck EditorÉditeur de deck
-
+ Use CTRL+A to select all sets in the view.Utiliser Ctrl+A pour sélectionner toutes les éditions dans la vue actuelle.
-
+ Only cards in enabled sets will appear in the card list of the deck editor.Seules les cartes des éditions activées apparaitront dans la liste de cartes de l'éditeur de deck.
-
+ Image priority is decided in the following order:La priorité des images est décidé dans l'ordre suivant:
-
+ first the CUSTOM Folder (%1), then the Enabled Sets in this dialog (Top to Bottom)%1 is a link to the wikiD'abord le dossier PERSONNALISÉ (%1), puis les éditions activées dans cette fenêtre (de haut en bas)
-
+ Include cards rebalanced for Alchemy [requires restart]Inclure les cartes rééquilibrées pour Alchemy [nécessite un redémarrage]
-
+ Card ArtImages des cartes
-
+ How to use custom card artComment utiliser une illustration personnalisée de carte
-
+ HintsAstuces
-
+ NoteNote
-
+ Sorting by column allows you to find a set while not changing set priority.Trier par colonne vous permet de trouver une édition sans changer la priorité des éditions.
-
+ To enable ordering again, click the column header until this message disappears.Pour trier à nouveau, cliquez sur l'entête de la colonne jusqu'à ce que ce message disparaisse.
-
+ Use the current sorting as the set priority insteadUtiliser le tri actuel comme ordre de priorité des éditions
-
+ Sorts the set priority using the same columnSortir la priorité sur la même colonne
-
+ Manage setsGérer les éditions
@@ -10131,72 +10375,72 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
ZoneViewWidget
-
+ Search by card name (or search expressions)Rechercher par nom de carte (ou expression de recherche)
-
+ UngroupedNon groupé
-
+ Group by TypeGrouper par Types
-
+ Group by Mana ValueGrouper par Valeur de Mana
-
+ Group by ColorGrouper par Couleurs
-
+ UnsortedNon trié
-
+ Sort by NameTrier par Nom
-
+ Sort by TypeTrier par Type
-
+ Sort by Mana CostTrier par Coût de Mana
-
+ Sort by ColorsTrier par Couleurs
-
+ Sort by P/TTrier par F/E
-
+ Sort by SetTrier par extension
-
+ shuffle when closingmélanger en quittant
-
+ pile viewvue de la pile
@@ -10231,7 +10475,7 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
-
+ Deck EditorÉditeur de deck
@@ -10312,7 +10556,7 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
-
+ ReplaysReplays
@@ -10464,7 +10708,7 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
-
+ Reset LayoutRéinitialiser l'interface
@@ -10885,8 +11129,9 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
- Toggle Untap
- Activer / désactiver le dégagement normal
+ Toggle Skip Untapping
+ Toggle Untap
+
@@ -10905,98 +11150,102 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
+ Play Card, Face Down
+
+
+
+ Attach Card...Attacher la carte…
-
+ Unattach CardDétacher la carte
-
+ Clone CardCloner la carte
-
+ Create Token...Créer un jeton…
-
+ Create All Related TokensCréer tous les jetons associés
-
+ Create Another TokenCréer un autre jeton
-
+ Set Annotation...Annoter…
-
+ Select All Cards in ZoneSélectionne toutes les cartes dans la zone
-
+ Select All Cards in RowSélectionne toutes les cartes dans la ligne
-
+ Select All Cards in ColumnSélectionne toutes les cartes dans la colonne
-
+ Reveal Selected Cards to All Players
-
-
+
+ Bottom of LibraryDessous de la bibliothèque
-
+
-
-
+
+ ExileExil
-
+
-
+ GraveyardCimetière
-
+ HandMain
-
-
+
+ Top of LibraryDessus de la bibliothèque
-
-
+ Battlefield, Face DownChamp de bataille, face cachée
@@ -11032,234 +11281,246 @@ Merci de ne pas recommencer ou d'autres mesures peuvent être prises contre
-
+ StackPile
-
+ Graveyard (Multiple)Cimetière (plusieurs)
-
-
+
+
+ Graveyard (Multiple), Face Down
+
+
+
+
+ Exile (Multiple)Exil (plusieurs)
-
+
+
+ Exile (Multiple), Face Down
+
+
+
+ Stack Until FoundEmpiler jusqu'à ce que trouvé
-
+ Draw Bottom CardPiocher la carte du dessous
-
+ Draw Multiple Cards from Bottom...Piocher plusieurs cartes du dessous...
-
+ Draw Arrow...Tracer une flèche…
-
+ Remove Local ArrowsRetirer les flèches locales
-
+ Leave GameQuitter la partie
-
+ ConcedeConcéder
-
+ Roll Dice...Lancer un dé…
-
+ Shuffle LibraryMélanger la bibliothèque
-
+ Shuffle Top Cards of LibraryMélanger les cartes du dessus de la bibliothèque
-
+ Shuffle Bottom Cards of LibraryMélanger les cartes du dessous de la bibliothèque
-
+ MulliganMulligan
-
+ Mulligan (Same hand size)
-
+ Mulligan (Hand size - 1)
-
+ Draw a CardPiocher une carte
-
+ Draw Multiple Cards...Piocher plusieurs cartes…
-
+ Undo DrawAnnuler la dernière pioche
-
+ Always Reveal Top CardToujours révéler la carte du dessus
-
+ Always Look At Top CardToujours révéler la carte du dessus
-
+ Sort Hand by Name
-
+ Sort Hand by Type
-
+ Sort Hand by Mana Value
-
+ Reveal Hand to All Players
-
+ Reveal Random Card to All Players
-
+ Rotate View ClockwisePivoter la vue dans le sens horaire
-
+ Rotate View CounterclockwisePivoter la vue dans le sens anti-horaire
-
+ Unfocus Text BoxLâcher le focus de la boîte de texte
-
+ Focus ChatFocus sur le chat
-
+ Clear ChatEffacer le chat
-
+ RefreshRafraichir
-
+ Skip ForwardAvance en avant
-
+ Skip BackwardAvant en arrière
-
+ Skip Forward by a lotAvance beaucoup en avant
-
+ Skip Backward by a lotAvance beaucoup en arrière
-
+ Play/PauseJouer/Pause
-
+ Toggle Fast ForwardActiver l'avance rapide
-
+ HomeAccueil
-
+ Visual Deck StorageStockage visuel de deck
-
+ Deck StorageStockage de deck
-
+ ServerServeur
-
+ AccountCompte
-
+ AdministrationAdministration
-
+ LogsJournaux
diff --git a/cockatrice/translations/cockatrice_it.ts b/cockatrice/translations/cockatrice_it.ts
index 5893d4121..8356063d6 100644
--- a/cockatrice/translations/cockatrice_it.ts
+++ b/cockatrice/translations/cockatrice_it.ts
@@ -23,12 +23,12 @@
AbstractDlgDeckTextEdit
-
+ &Refresh&Ricarica
-
+ Parse Set Name and Number (if available)Acquisisci set e numero (se disponibili)
@@ -36,62 +36,62 @@
AbstractTabDeckEditor
-